Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc472 static void Add(HInstructionList* instruction_list, in Add() argument
480 instruction_list->AddInstruction(instruction); in Add()
528 static void Remove(HInstructionList* instruction_list, in Remove() argument
534 instruction_list->RemoveInstruction(instruction); in Remove()
995 void HInstructionList::AddAfter(HInstruction* cursor, const HInstructionList& instruction_list) { in AddAfter() argument
997 if (!instruction_list.IsEmpty()) { in AddAfter()
999 last_instruction_ = instruction_list.last_instruction_; in AddAfter()
1001 cursor->next_->previous_ = instruction_list.last_instruction_; in AddAfter()
1003 instruction_list.last_instruction_->next_ = cursor->next_; in AddAfter()
1004 cursor->next_ = instruction_list.first_instruction_; in AddAfter()
[all …]
Dnodes.h98 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);
99 void Add(const HInstructionList& instruction_list);