Searched refs:instruction_list (Results 1 – 2 of 2) sorted by relevance
806 static void Add(HInstructionList* instruction_list, in Add() argument814 instruction_list->AddInstruction(instruction); in Add()862 static void Remove(HInstructionList* instruction_list, in Remove() argument868 instruction_list->RemoveInstruction(instruction); in Remove()1647 void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) { in AddAfter() argument1649 if (!instruction_list.IsEmpty()) { in AddAfter()1651 last_instruction_ = instruction_list.last_instruction_; in AddAfter()1653 cursor->next_->previous_ = instruction_list.last_instruction_; in AddAfter()1655 instruction_list.last_instruction_->next_ = cursor->next_; in AddAfter()1656 cursor->next_ = instruction_list.first_instruction_; in AddAfter()[all …]
137 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);138 void AddBefore(HInstruction* cursor, const HInstructionList& instruction_list);139 void Add(const HInstructionList& instruction_list);