Lines Matching defs:cs

27     const CallSignature *cs = RuntimeStubCSigns::Get(RTSTUB_ID(CallRuntime));
39 MachineType machineType = cs->GetReturnType().GetMachineType();
40 GateType type = cs->GetReturnType().GetGateType();
60 const CallSignature *cs = env_->IsBaselineBuiltin() ? BaselineStubCSigns::Get(index) :
62 ASSERT(cs->IsCommonStub() || cs->IsBaselineStub());
69 result = Call(cs, glue, target, depend, args, hirGate, comment);
71 result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment);
87 const CallSignature *cs = RuntimeStubCSigns::Get(index);
93 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), name.c_str());
105 const CallSignature *cs = RuntimeStubCSigns::Get(index);
111 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), name.c_str());
115 GateRef CircuitBuilder::Call(const CallSignature* cs, GateRef glue, GateRef target, GateRef depend,
131 if (cs->IsCommonStub()) {
133 } else if (cs->IsRuntimeVAStub()) {
135 } else if (cs->IsRuntimeStub()) {
137 } else if (cs->IsBCDebuggerStub()) {
139 } else if (cs->IsBCHandlerStub()) {
141 } else if (cs->IsBuiltinsStub()) {
143 } else if (cs->IsBuiltinsWithArgvStub()) {
145 } else if (cs->IsRuntimeNGCStub()) {
147 } else if (cs->IsOptimizedStub()) {
150 } else if (cs->IsOptimizedFastCallStub()) {
153 } else if (cs->IsBaselineStub()) {
155 } else if (cs->IsASMCallBarrierStub()) {
161 MachineType machineType = cs->GetReturnType().GetMachineType();
162 GateType type = cs->GetReturnType().GetGateType();
173 const CallSignature *cs = BytecodeStubCSigns::BCHandler();
174 ASSERT(cs->IsBCStub());
177 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment);
185 const CallSignature *cs = BuiltinsStubCSigns::BuiltinsCSign();
186 ASSERT(cs->IsBuiltinsStub());
189 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment);
197 const CallSignature *cs = BuiltinsStubCSigns::BuiltinsWithArgvCSign();
198 ASSERT(cs->IsBuiltinsWithArgvStub());
201 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment);
209 const CallSignature *cs = BytecodeStubCSigns::BCDebuggerHandler();
210 ASSERT(cs->IsBCDebuggerStub());
213 GateRef result = Call(cs, glue, target, depend, args, Circuit::NullGate(), comment);
221 const CallSignature *cs = RuntimeStubCSigns::Get(RTSTUB_ID(CallRuntime));
222 ASSERT(cs->IsRuntimeStub());
232 GateRef result = Call(cs, glue, target, depend, args, filteredHirGate, comment);
239 const CallSignature *cs = RuntimeStubCSigns::Get(RTSTUB_ID(CallRuntimeWithArgv));
243 ASSERT(cs->IsRuntimeVAStub());
244 GateRef result = Call(cs, glue, target, depend, {argc, argv}, Circuit::NullGate(), comment);
251 const CallSignature *cs = RuntimeStubCSigns::Get(index);
252 ASSERT(cs->IsRuntimeNGCStub());
263 GateRef result = Call(cs, glue, target, depend, args, filteredHirGate, comment);
275 const CallSignature *cs = RuntimeStubCSigns::Get(index);
277 GateRef result = Call(cs, glue, target, GetDepend(), args, gate, name.c_str());
307 const CallSignature *cs = RuntimeStubCSigns::GetOptimizedFastCallSign();
308 ASSERT(cs->IsOptimizedFastCallStub());
318 GateRef result = Call(cs, glue, code, depend, args, filteredHirGate, "fastCallOptimized");
325 const CallSignature *cs = RuntimeStubCSigns::GetOptimizedCallSign();
326 ASSERT(cs->IsOptimizedStub());
336 GateRef result = Call(cs, glue, code, depend, args, filteredHirGate, "callOptimized");