Home
last modified time | relevance | path

Searched refs:HInstructionList (Results 1 – 4 of 4) sorted by relevance

/art/compiler/optimizing/
Dnodes.cc472 static void Add(HInstructionList* instruction_list, in Add()
528 static void Remove(HInstructionList* instruction_list, in Remove()
622 void HInstructionList::AddInstruction(HInstruction* instruction) { in AddInstruction()
633 void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore()
647 void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionAfter()
661 void HInstructionList::RemoveInstruction(HInstruction* instruction) { in RemoveInstruction()
676 bool HInstructionList::Contains(HInstruction* instruction) const { in Contains()
685 bool HInstructionList::FoundBefore(const HInstruction* instruction1, in FoundBefore()
978 size_t HInstructionList::CountSize() const { in CountSize()
987 void HInstructionList::SetBlockOfInstructions(HBasicBlock* block) const { in SetBlockOfInstructions()
[all …]
Dnodes.h72 class HInstructionList {
74 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList() function
98 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);
99 void Add(const HInstructionList& instruction_list);
114 DISALLOW_COPY_AND_ASSIGN(HInstructionList);
561 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions()
564 const HInstructionList& GetPhis() const { return phis_; } in GetPhis()
762 HInstructionList instructions_;
763 HInstructionList phis_;
1577 friend class HInstructionList; variable
[all …]
Dgraph_checker.cc162 const HInstructionList& list = input->IsPhi() in VisitInstruction()
178 const HInstructionList& list = use->IsPhi() in VisitInstruction()
Dgraph_visualizer.cc269 void PrintInstructions(const HInstructionList& list) { in PrintInstructions()