Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc990 static void Add(HInstructionList* instruction_list, in Add()
1046 static void Remove(HInstructionList* instruction_list, in Remove()
1159 void HInstructionList::AddInstruction(HInstruction* instruction) { in AddInstruction()
1171 void HInstructionList::InsertInstructionBefore(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionBefore()
1185 void HInstructionList::InsertInstructionAfter(HInstruction* instruction, HInstruction* cursor) { in InsertInstructionAfter()
1199 void HInstructionList::RemoveInstruction(HInstruction* instruction) { in RemoveInstruction()
1214 bool HInstructionList::Contains(HInstruction* instruction) const { in Contains()
1223 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.h270 void RemoveDeadInstructions(const HInstructionList& list);
Dnodes.h145 class HInstructionList : public ValueObject {
147 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList() function
171 void AddAfter(HInstruction* cursor, const HInstructionList& instruction_list);
172 void AddBefore(HInstruction* cursor, const HInstructionList& instruction_list);
173 void Add(const HInstructionList& instruction_list);
189 DISALLOW_COPY_AND_ASSIGN(HInstructionList);
1148 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions()
1151 const HInstructionList& GetPhis() const { return phis_; } in GetPhis()
1393 HInstructionList instructions_;
1394 HInstructionList phis_;
[all …]
Dgraph_checker.cc389 const HInstructionList& list = input->IsPhi() in VisitInstruction()
405 const HInstructionList& list = user->IsPhi() in VisitInstruction()
Dgraph_visualizer.cc729 void PrintInstructions(const HInstructionList& list) { in PrintInstructions()
Dinduction_var_analysis.cc32 const HInstructionList& phis = loop->GetHeader()->GetPhis(); in RotateEntryPhiFirst()
Dloop_optimization.cc2468 void HLoopOptimization::RemoveDeadInstructions(const HInstructionList& list) { in RemoveDeadInstructions()