Home
last modified time | relevance | path

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

/art/compiler/sea_ir/ir/
Dsea.h156 return &instructions_; in GetInstructions()
241 std::vector<sea_ir::InstructionNode*> instructions_; variable
Dsea.cc469 instructions_.push_back(instruction); in AddChild()
474 if (instructions_.size() > 0) { in GetLastChild()
475 return instructions_.back(); in GetLastChild()
481 for (std::vector<InstructionNode*>::const_iterator inst_it = instructions_.begin(); in ComputeDownExposedDefs()
482 inst_it != instructions_.end(); inst_it++) { in ComputeDownExposedDefs()
/art/compiler/optimizing/
Dnodes.cc302 instructions_.first_instruction_ = instruction; in InsertInstructionBefore()
321 Add(&instructions_, this, instruction); in AddInstruction()
343 Remove(&instructions_, this, instruction); in RemoveInstruction()
Dnodes.h302 HInstruction* GetFirstInstruction() const { return instructions_.first_instruction_; } in GetFirstInstruction()
303 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
304 const HInstructionList& GetInstructions() const { return instructions_; } in GetInstructions()
400 HInstructionList instructions_; variable