Home
last modified time | relevance | path

Searched refs:feedback_slot_index (Results 1 – 3 of 3) sorted by relevance

/external/v8/src/interpreter/
Dbytecode-generator.cc3682 int feedback_slot_index = feedback_index(feedback_spec()->AddCallICSlot()); in VisitCall() local
3686 builder()->CallWithSpread(callee, args, feedback_slot_index); in VisitCall()
3691 builder()->CallProperty(callee, args, feedback_slot_index); in VisitCall()
3693 builder()->CallUndefinedReceiver(callee, args, feedback_slot_index); in VisitCall()
3695 builder()->CallAnyReceiver(callee, args, feedback_slot_index); in VisitCall()
3746 int feedback_slot_index = feedback_index(feedback_spec()->AddCallICSlot()); in VisitCallSuper() local
3750 feedback_slot_index); in VisitCallSuper()
3760 builder()->Construct(constructor, args_regs, feedback_slot_index); in VisitCallSuper()
3803 int feedback_slot_index = feedback_index(feedback_spec()->AddCallICSlot()); in VisitCallNew() local
3805 builder()->ConstructWithSpread(constructor, args, feedback_slot_index); in VisitCallNew()
[all …]
/external/v8/src/compiler/
Dbytecode-graph-builder.cc971 uint32_t feedback_slot_index, in BuildLoadGlobal() argument
973 VectorSlotPair feedback = CreateVectorSlotPair(feedback_slot_index); in BuildLoadGlobal()
983 uint32_t feedback_slot_index = bytecode_iterator().GetIndexOperand(1); in VisitLdaGlobal() local
985 BuildLoadGlobal(name, feedback_slot_index, TypeofMode::NOT_INSIDE_TYPEOF); in VisitLdaGlobal()
993 uint32_t feedback_slot_index = bytecode_iterator().GetIndexOperand(1); in VisitLdaGlobalInsideTypeof() local
995 BuildLoadGlobal(name, feedback_slot_index, TypeofMode::INSIDE_TYPEOF); in VisitLdaGlobalInsideTypeof()
1251 uint32_t feedback_slot_index = bytecode_iterator().GetIndexOperand(1); in BuildLdaLookupGlobalSlot() local
1252 Node* node = BuildLoadGlobal(name, feedback_slot_index, typeof_mode); in BuildLdaLookupGlobalSlot()
Dbytecode-graph-builder.h163 Node* BuildLoadGlobal(Handle<Name> name, uint32_t feedback_slot_index,