• Home
  • Raw
  • Download

Lines Matching refs:callable

145   Callable callable = CodeFactory::CompareIC(isolate(), token);  in ReplaceWithCompareIC()  local
148 callable.descriptor(), 0, in ReplaceWithCompareIC()
152 inputs.push_back(CodeConstant(callable.code())); in ReplaceWithCompareIC()
186 void JSGenericLowering::ReplaceWithStubCall(Node* node, Callable callable, in ReplaceWithStubCall() argument
189 callable.descriptor(), 0, flags | FlagsForNode(node)); in ReplaceWithStubCall()
190 Node* stub_code = CodeConstant(callable.code()); in ReplaceWithStubCall()
199 Callable callable = in ReplaceWithBuiltinCall() local
202 linkage()->GetStubCallDescriptor(callable.descriptor(), nargs); in ReplaceWithBuiltinCall()
207 Node* stub_code = CodeConstant(callable.code()); in ReplaceWithBuiltinCall()
248 Callable callable = CodeFactory::ToBoolean( in LowerJSUnaryNot() local
250 ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite); in LowerJSUnaryNot()
255 Callable callable = in LowerJSToBoolean() local
257 ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite); in LowerJSToBoolean()
262 Callable callable = CodeFactory::ToNumber(isolate()); in LowerJSToNumber() local
263 ReplaceWithStubCall(node, callable, CallDescriptor::kNoFlags); in LowerJSToNumber()
278 Callable callable = CodeFactory::KeyedLoadIC(isolate()); in LowerJSLoadProperty() local
279 ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite); in LowerJSLoadProperty()
285 Callable callable = CodeFactory::LoadIC(isolate(), p.contextual_mode); in LowerJSLoadNamed() local
287 ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite); in LowerJSLoadNamed()
293 Callable callable = CodeFactory::KeyedStoreIC(isolate(), strict_mode); in LowerJSStoreProperty() local
294 ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite); in LowerJSStoreProperty()
300 Callable callable = CodeFactory::StoreIC(isolate(), params.strict_mode); in LowerJSStoreNamed() local
302 ReplaceWithStubCall(node, callable, CallDescriptor::kPatchableCallSite); in LowerJSStoreNamed()