Lines Matching refs:stub
17 Callable make_callable(Stub& stub) { in make_callable() argument
19 return Callable(stub.GetCode(), Descriptor(stub.isolate())); in make_callable()
26 LoadICTrampolineStub stub(isolate); in LoadIC() local
27 return make_callable(stub); in LoadIC()
32 CallApiGetterStub stub(isolate); in ApiGetter() local
33 return make_callable(stub); in ApiGetter()
38 LoadICStub stub(isolate); in LoadICInOptimizedCode() local
39 return make_callable(stub); in LoadICInOptimizedCode()
44 LoadGlobalICTrampolineStub stub(isolate, LoadGlobalICState(typeof_mode)); in LoadGlobalIC() local
45 return make_callable(stub); in LoadGlobalIC()
51 LoadGlobalICStub stub(isolate, LoadGlobalICState(typeof_mode)); in LoadGlobalICInOptimizedCode() local
52 return make_callable(stub); in LoadGlobalICInOptimizedCode()
57 KeyedLoadICTrampolineTFStub stub(isolate); in KeyedLoadIC() local
58 return make_callable(stub); in KeyedLoadIC()
63 KeyedLoadICTFStub stub(isolate); in KeyedLoadICInOptimizedCode() local
64 return make_callable(stub); in KeyedLoadICInOptimizedCode()
76 CallICTrampolineStub stub(isolate, CallICState(mode, tail_call_mode)); in CallIC() local
77 return make_callable(stub); in CallIC()
84 CallICStub stub(isolate, CallICState(mode, tail_call_mode)); in CallICInOptimizedCode() local
85 return make_callable(stub); in CallICInOptimizedCode()
90 StoreICTrampolineStub stub(isolate, StoreICState(language_mode)); in StoreIC() local
91 return make_callable(stub); in StoreIC()
97 StoreICStub stub(isolate, StoreICState(language_mode)); in StoreICInOptimizedCode() local
98 return make_callable(stub); in StoreICInOptimizedCode()
105 KeyedStoreICTrampolineTFStub stub(isolate, StoreICState(language_mode)); in KeyedStoreIC() local
106 return make_callable(stub); in KeyedStoreIC()
108 KeyedStoreICTrampolineStub stub(isolate, StoreICState(language_mode)); in KeyedStoreIC() local
109 return make_callable(stub); in KeyedStoreIC()
116 KeyedStoreICTFStub stub(isolate, StoreICState(language_mode)); in KeyedStoreICInOptimizedCode() local
117 return make_callable(stub); in KeyedStoreICInOptimizedCode()
119 KeyedStoreICStub stub(isolate, StoreICState(language_mode)); in KeyedStoreICInOptimizedCode() local
120 return make_callable(stub); in KeyedStoreICInOptimizedCode()
141 CompareICStub stub(isolate, op); in CompareIC() local
142 return make_callable(stub); in CompareIC()
147 BinaryOpICStub stub(isolate, op); in BinaryOpIC() local
148 return make_callable(stub); in BinaryOpIC()
153 GetPropertyStub stub(isolate); in GetProperty() local
154 return make_callable(stub); in GetProperty()
203 NumberToStringStub stub(isolate); in NumberToString() local
204 return make_callable(stub); in NumberToString()
209 RegExpExecStub stub(isolate); in RegExpExec() local
210 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); in RegExpExec()
264 IncStub stub(isolate); local
265 return make_callable(stub);
270 DecStub stub(isolate); in Dec() local
271 return make_callable(stub); in Dec()
277 StringAddStub stub(isolate, flags, pretenure_flag); in StringAdd() local
278 return make_callable(stub); in StringAdd()
343 SubStringStub stub(isolate); in SubString() local
344 return Callable(stub.GetCode(), stub.GetCallInterfaceDescriptor()); in SubString()
355 FastCloneRegExpStub stub(isolate); in FastCloneRegExp() local
356 return make_callable(stub); in FastCloneRegExp()
362 FastCloneShallowArrayStub stub(isolate, DONT_TRACK_ALLOCATION_SITE); in FastCloneShallowArray() local
363 return make_callable(stub); in FastCloneShallowArray()
368 FastCloneShallowObjectStub stub(isolate, length); in FastCloneShallowObject() local
369 return make_callable(stub); in FastCloneShallowObject()
375 FastNewFunctionContextStub stub(isolate); in FastNewFunctionContext() local
376 return make_callable(stub); in FastNewFunctionContext()
381 FastNewClosureStub stub(isolate); in FastNewClosure() local
382 return make_callable(stub); in FastNewClosure()
387 FastNewObjectStub stub(isolate); in FastNewObject() local
388 return make_callable(stub); in FastNewObject()
394 FastNewRestParameterStub stub(isolate, skip_stub_frame); in FastNewRestParameter() local
395 return make_callable(stub); in FastNewRestParameter()
401 FastNewSloppyArgumentsStub stub(isolate, skip_stub_frame); in FastNewSloppyArguments() local
402 return make_callable(stub); in FastNewSloppyArguments()
408 FastNewStrictArgumentsStub stub(isolate, skip_stub_frame); in FastNewStrictArguments() local
409 return make_callable(stub); in FastNewStrictArguments()
432 AllocateHeapNumberStub stub(isolate); in AllocateHeapNumber() local
433 return make_callable(stub); in AllocateHeapNumber()
438 Allocate##Type##Stub stub(isolate); \
439 return make_callable(stub); \
502 CEntryStub stub(isolate, result_size, kDontSaveFPRegs, kArgvInRegister); in InterpreterCEntry() local
503 return Callable(stub.GetCode(), InterpreterCEntryDescriptor(isolate)); in InterpreterCEntry()