Lines Matching refs:slot_id
573 VectorSlotPair BytecodeGraphBuilder::CreateVectorSlotPair(int slot_id) { in CreateVectorSlotPair() argument
574 return VectorSlotPair(feedback_vector(), FeedbackVector::ToSlot(slot_id)); in CreateVectorSlotPair()
1565 int const slot_id = bytecode_iterator().GetIndexOperand(1); in VisitCreateRegExpLiteral() local
1566 VectorSlotPair pair = CreateVectorSlotPair(slot_id); in VisitCreateRegExpLiteral()
1578 int const slot_id = bytecode_iterator().GetIndexOperand(1); in VisitCreateArrayLiteral() local
1579 VectorSlotPair pair = CreateVectorSlotPair(slot_id); in VisitCreateArrayLiteral()
1598 int const slot_id = bytecode_iterator().GetIndexOperand(0); in VisitCreateEmptyArrayLiteral() local
1599 VectorSlotPair pair = CreateVectorSlotPair(slot_id); in VisitCreateEmptyArrayLiteral()
1609 int const slot_id = bytecode_iterator().GetIndexOperand(1); in VisitCreateObjectLiteral() local
1610 VectorSlotPair pair = CreateVectorSlotPair(slot_id); in VisitCreateObjectLiteral()
1711 int slot_id) { in BuildCall() argument
1717 VectorSlotPair feedback = CreateVectorSlotPair(slot_id); in BuildCall()
1719 CallFrequency frequency = ComputeCallFrequency(slot_id); in BuildCall()
1722 GetSpeculationMode(slot_id)); in BuildCall()
1769 int const slot_id = bytecode_iterator().GetIndexOperand(3); in BuildCallVarArgs() local
1777 slot_id); in BuildCallVarArgs()
1793 int const slot_id = bytecode_iterator().GetIndexOperand(2); in VisitCallProperty0() local
1795 slot_id); in VisitCallProperty0()
1805 int const slot_id = bytecode_iterator().GetIndexOperand(3); in VisitCallProperty1() local
1807 slot_id); in VisitCallProperty1()
1819 int const slot_id = bytecode_iterator().GetIndexOperand(4); in VisitCallProperty2() local
1821 {callee, receiver, arg0, arg1}, slot_id); in VisitCallProperty2()
1832 int const slot_id = bytecode_iterator().GetIndexOperand(1); in VisitCallUndefinedReceiver0() local
1833 BuildCall(ConvertReceiverMode::kNullOrUndefined, {callee, receiver}, slot_id); in VisitCallUndefinedReceiver0()
1842 int const slot_id = bytecode_iterator().GetIndexOperand(2); in VisitCallUndefinedReceiver1() local
1844 slot_id); in VisitCallUndefinedReceiver1()
1855 int const slot_id = bytecode_iterator().GetIndexOperand(3); in VisitCallUndefinedReceiver2() local
1857 {callee, receiver, arg0, arg1}, slot_id); in VisitCallUndefinedReceiver2()
1871 int const slot_id = bytecode_iterator().GetIndexOperand(3); in VisitCallWithSpread() local
1872 VectorSlotPair feedback = CreateVectorSlotPair(slot_id); in VisitCallWithSpread()
1874 CallFrequency frequency = ComputeCallFrequency(slot_id); in VisitCallWithSpread()
1984 int const slot_id = bytecode_iterator().GetIndexOperand(3); in VisitConstruct() local
1985 VectorSlotPair feedback = CreateVectorSlotPair(slot_id); in VisitConstruct()
1990 CallFrequency frequency = ComputeCallFrequency(slot_id); in VisitConstruct()
2015 int const slot_id = bytecode_iterator().GetIndexOperand(3); in VisitConstructWithSpread() local
2016 VectorSlotPair feedback = CreateVectorSlotPair(slot_id); in VisitConstructWithSpread()
2021 CallFrequency frequency = ComputeCallFrequency(slot_id); in VisitConstructWithSpread()
2214 CallFrequency BytecodeGraphBuilder::ComputeCallFrequency(int slot_id) const { in ComputeCallFrequency()
2216 FeedbackNexus nexus(feedback_vector(), FeedbackVector::ToSlot(slot_id)); in ComputeCallFrequency()
2221 SpeculationMode BytecodeGraphBuilder::GetSpeculationMode(int slot_id) const { in GetSpeculationMode()
2222 FeedbackNexus nexus(feedback_vector(), FeedbackVector::ToSlot(slot_id)); in GetSpeculationMode()