Lines Matching refs:Callable
137 Callable callable = CodeFactory::CompareIC(isolate(), token, str);
142 inputs.push_back(jsgraph()->HeapConstant(callable.code()));
160 isolate(), zone(), callable.descriptor(), 0,
212 void JSGenericLowering::ReplaceWithStubCall(Node* node, Callable callable,
216 isolate(), zone(), callable.descriptor(), 0, flags, properties);
217 Node* stub_code = jsgraph()->HeapConstant(callable.code());
242 Callable callable = CodeFactory::Typeof(isolate());
243 ReplaceWithStubCall(node, callable, flags);
249 Callable callable = CodeFactory::ToBoolean(isolate());
250 ReplaceWithStubCall(node, callable,
257 Callable callable = CodeFactory::ToNumber(isolate());
258 ReplaceWithStubCall(node, callable, flags);
264 Callable callable = CodeFactory::ToString(isolate());
265 ReplaceWithStubCall(node, callable, flags);
276 Callable callable = CodeFactory::ToObject(isolate());
277 ReplaceWithStubCall(node, callable, flags);
284 Callable callable = CodeFactory::KeyedLoadICInOptimizedCode(
287 ReplaceWithStubCall(node, callable, flags);
294 Callable callable = CodeFactory::LoadICInOptimizedCode(
298 ReplaceWithStubCall(node, callable, flags);
307 Callable callable = CodeFactory::LoadICInOptimizedCode(
322 ReplaceWithStubCall(node, callable, flags);
330 Callable callable = CodeFactory::KeyedStoreICInOptimizedCode(
334 ReplaceWithStubCall(node, callable,
342 Callable callable = CodeFactory::StoreICInOptimizedCode(
347 ReplaceWithStubCall(node, callable,
357 Callable callable = CodeFactory::StoreICInOptimizedCode(
373 ReplaceWithStubCall(node, callable,
393 Callable callable = CodeFactory::InstanceOf(isolate());
394 ReplaceWithStubCall(node, callable, flags);
528 Callable callable = CodeFactory::FastCloneRegExp(isolate());
535 ReplaceWithStubCall(node, callable, flags);
564 Callable callable = CodeFactory::Construct(isolate());
566 isolate(), zone(), callable.descriptor(), arg_count + 1, flags);
567 Node* stub_code = jsgraph()->HeapConstant(callable.code());
584 Callable callable = CodeFactory::Call(isolate(), mode);
590 isolate(), zone(), callable.descriptor(), arg_count + 1, flags);
591 Node* stub_code = jsgraph()->HeapConstant(callable.code());