Lines Matching refs:slot_id
541 VectorSlotPair BytecodeGraphBuilder::CreateVectorSlotPair(int slot_id) { in CreateVectorSlotPair() argument
543 if (slot_id >= FeedbackVector::kReservedIndexCount) { in CreateVectorSlotPair()
544 slot = feedback_vector()->ToSlot(slot_id); in CreateVectorSlotPair()
1164 int const slot_id = bytecode_iterator().GetIndexOperand(1); in VisitCreateClosure() local
1165 VectorSlotPair pair = CreateVectorSlotPair(slot_id); in VisitCreateClosure()
1324 int const slot_id = bytecode_iterator().GetIndexOperand(3); in BuildCall() local
1325 VectorSlotPair feedback = CreateVectorSlotPair(slot_id); in BuildCall()
1327 float const frequency = ComputeCallFrequency(slot_id); in BuildCall()
1483 int const slot_id = bytecode_iterator().GetIndexOperand(3); in VisitConstruct() local
1484 VectorSlotPair feedback = CreateVectorSlotPair(slot_id); in VisitConstruct()
1489 float const frequency = ComputeCallFrequency(slot_id); in VisitConstruct()
1575 float BytecodeGraphBuilder::ComputeCallFrequency(int slot_id) const { in ComputeCallFrequency()
1576 CallICNexus nexus(feedback_vector(), feedback_vector()->ToSlot(slot_id)); in ComputeCallFrequency()