Home
last modified time | relevance | path

Searched refs:instruction_list (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dnodes.cc806 static void Add(HInstructionList* instruction_list, in Add() argument
814 instruction_list->AddInstruction(instruction); in Add()
862 static void Remove(HInstructionList* instruction_list, in Remove() argument
868 instruction_list->RemoveInstruction(instruction); in Remove()
1647 void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) { in AddAfter() argument
1649 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 …]
Dnodes.h137 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);
138 void AddBefore(HInstruction* cursor, const HInstructionList& instruction_list);
139 void Add(const HInstructionList& instruction_list);