Searched refs:instruction_list (Results 1 – 2 of 2) sorted by relevance
991 static void Add(HInstructionList* instruction_list, in Add() argument999 instruction_list->AddInstruction(instruction); in Add()1047 static void Remove(HInstructionList* instruction_list, in Remove() argument1053 instruction_list->RemoveInstruction(instruction); in Remove()2068 void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) { in AddAfter() argument2070 if (!instruction_list.IsEmpty()) { in AddAfter()2072 last_instruction_ = instruction_list.last_instruction_; in AddAfter()2074 cursor->next_->previous_ = instruction_list.last_instruction_; in AddAfter()2076 instruction_list.last_instruction_->next_ = cursor->next_; in AddAfter()2077 cursor->next_ = instruction_list.first_instruction_; in AddAfter()[all …]
168 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);169 void AddBefore(HInstruction* cursor, const HInstructionList& instruction_list);170 void Add(const HInstructionList& instruction_list);