Home | History | Annotate | Download | only in interpreter

Lines Matching refs:Callable

422 Node* Interpreter::BuildLoadGlobal(Callable ic, Node* context,
441 Callable ic =
457 Callable ic =
468 void Interpreter::DoStaGlobal(Callable ic, InterpreterAssembler* assembler) {
496 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, SLOPPY);
505 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, STRICT);
649 Callable ic = CodeFactory::LoadGlobalICInOptimizedCode(
721 Callable ic = CodeFactory::LoadICInOptimizedCode(isolate_);
745 Callable ic = CodeFactory::KeyedLoadICInOptimizedCode(isolate_);
762 void Interpreter::DoStoreIC(Callable ic, InterpreterAssembler* assembler) {
787 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, SLOPPY);
797 Callable ic = CodeFactory::StoreICInOptimizedCode(isolate_, STRICT);
801 void Interpreter::DoKeyedStoreIC(Callable ic, InterpreterAssembler* assembler) {
825 Callable ic = CodeFactory::KeyedStoreICInOptimizedCode(isolate_, SLOPPY);
834 Callable ic = CodeFactory::KeyedStoreICInOptimizedCode(isolate_, STRICT);
1284 Callable callable =
1285 Callable(stub.GetCode(), AddWithFeedbackStub::Descriptor(__ isolate()));
1287 var_result.Bind(__ CallStubN(callable, args, 1));
1338 Callable callable = Callable(
1341 var_result.Bind(__ CallStubN(callable, args, 1));
1467 Node* Interpreter::BuildUnaryOp(Callable callable,
1469 Node* target = __ HeapConstant(callable.code());
1472 return __ CallStub(callable.descriptor(), target, context, accumulator);
1647 // Call <callable> <receiver> <arg_count> <feedback_slot_id>
1649 // Call a JSfunction or Callable in |callable| with the |receiver| and
1656 // CallProperty <callable> <receiver> <arg_count> <feedback_slot_id>
1658 // Call a JSfunction or Callable in |callable| with the |receiver| and
1660 // |feedback_slot_id|. The callable is known to be a property of the receiver.
1667 // TailCall <callable> <receiver> <arg_count> <feedback_slot_id>
1669 // Tail call a JSfunction or Callable in |callable| with the |receiver| and
1766 Callable ic = CodeFactory::InterpreterPushArgsAndConstruct(isolate_);
2070 Callable callable = CodeFactory::InterpreterOnStackReplacement(isolate_);
2071 Node* target = __ HeapConstant(callable.code());
2073 __ CallStub(callable.descriptor(), target, context);
2310 Callable callable = CodeFactory::FastNewSloppyArguments(isolate_, true);
2311 Node* target = __ HeapConstant(callable.code());
2312 Node* result = __ CallStub(callable.descriptor(), target, context, closure);
2331 Callable callable = CodeFactory::FastNewStrictArguments(isolate_, true);
2332 Node* target = __ HeapConstant(callable.code());
2335 Node* result = __ CallStub(callable.descriptor(), target, context, closure);
2345 Callable callable = CodeFactory::FastNewRestParameter(isolate_, true);
2346 Node* target = __ HeapConstant(callable.code());
2349 Node* result = __ CallStub(callable.descriptor(), target, context, closure);
2553 Callable callable = CodeFactory::ForInFilter(assembler->isolate());
2554 Node* result = __ CallStub(callable, context, key, receiver);