Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc1164 static void Add(HInstructionList* instruction_list, in Add()
1220 static void Remove(HInstructionList* instruction_list, in Remove()
1382 void HInstructionList::AddInstruction(HInstruction* instruction) { in AddInstruction()
1394 void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore()
1408 void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionAfter()
1422 void HInstructionList::RemoveInstruction(HInstruction* instruction) { in RemoveInstruction()
1437 bool HInstructionList::Contains(HInstruction* instruction) const { in Contains()
1446 bool HInstructionList::FoundBefore(const HInstruction* instruction1, in FoundBefore()
2323 size_t HInstructionList::CountSize() const { in CountSize()
2332 void HInstructionList::SetBlockOfInstructions(HBasicBlock* block) const { in SetBlockOfInstructions()
[all …]
Dloop_optimization.h271 void RemoveDeadInstructions(const HInstructionList& list);
Dnodes.h148 class HInstructionList : public ValueObject {
150 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList() function
174 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);
175 void AddBefore(HInstruction* cursor, const HInstructionList& instruction_list);
176 void Add(const HInstructionList& instruction_list);
192 DISALLOW_COPY_AND_ASSIGN(HInstructionList);
1188 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions()
1191 const HInstructionList& GetPhis() const { return phis_; } in GetPhis()
1433 HInstructionList instructions_;
1434 HInstructionList phis_;
[all …]
Dgraph_checker.cc389 const HInstructionList& list = input->IsPhi() in VisitInstruction()
405 const HInstructionList& list = user->IsPhi() in VisitInstruction()
Dgraph_visualizer.cc782 void PrintInstructions(const HInstructionList& list) { in PrintInstructions()
Dinduction_var_analysis.cc32 const HInstructionList& phis = loop->GetHeader()->GetPhis(); in RotateEntryPhiFirst()
Dloop_optimization.cc2572 void HLoopOptimization::RemoveDeadInstructions(const HInstructionList& list) { in RemoveDeadInstructions()