Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc991 static void Add(HInstructionList* instruction_list, in Add()
1047 static void Remove(HInstructionList* instruction_list, in Remove()
1160 void HInstructionList::AddInstruction(HInstruction* instruction) { in AddInstruction()
1172 void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore()
1186 void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionAfter()
1200 void HInstructionList::RemoveInstruction(HInstruction* instruction) { in RemoveInstruction()
1215 bool HInstructionList::Contains(HInstruction* instruction) const { in Contains()
1224 bool HInstructionList::FoundBefore(const HInstruction* instruction1, in FoundBefore()
2051 size_t HInstructionList::CountSize() const { in CountSize()
2060 void HInstructionList::SetBlockOfInstructions(HBasicBlock* block) const { in SetBlockOfInstructions()
[all …]
Dloop_optimization.h262 void RemoveDeadInstructions(const HInstructionList& list);
Dnodes.h142 class HInstructionList : public ValueObject {
144 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList() function
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);
186 DISALLOW_COPY_AND_ASSIGN(HInstructionList);
1075 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions()
1078 const HInstructionList& GetPhis() const { return phis_; } in GetPhis()
1320 HInstructionList instructions_;
1321 HInstructionList phis_;
[all …]
Dgraph_checker.cc388 const HInstructionList& list = input->IsPhi() in VisitInstruction()
404 const HInstructionList& list = user->IsPhi() in VisitInstruction()
Dgraph_visualizer.cc726 void PrintInstructions(const HInstructionList& list) { in PrintInstructions()
Dinduction_var_analysis.cc32 const HInstructionList& phis = loop->GetHeader()->GetPhis(); in RotateEntryPhiFirst()
Dloop_optimization.cc2501 void HLoopOptimization::RemoveDeadInstructions(const HInstructionList& list) { in RemoveDeadInstructions()