Home
last modified time | relevance | path

Searched refs:last_instruction_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dnodes.cc967 DCHECK(last_instruction_ == nullptr); in AddInstruction()
968 first_instruction_ = last_instruction_ = instruction; in AddInstruction()
970 DCHECK(last_instruction_ != nullptr); in AddInstruction()
971 last_instruction_->next_ = instruction; in AddInstruction()
972 instruction->previous_ = last_instruction_; in AddInstruction()
973 last_instruction_ = instruction; in AddInstruction()
993 if (cursor == last_instruction_) { in InsertInstructionAfter()
996 last_instruction_ = instruction; in InsertInstructionAfter()
1015 if (instruction == last_instruction_) { in RemoveInstruction()
1016 last_instruction_ = instruction->previous_; in RemoveInstruction()
[all …]
Dnodes.h138 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList()
157 void Clear() { first_instruction_ = last_instruction_ = nullptr; } in Clear()
171 HInstruction* last_instruction_; variable
1005 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
1008 HInstruction* GetLastPhi() const { return phis_.last_instruction_; } in GetLastPhi()
2416 : instruction_(instructions.last_instruction_) { in HBackwardInstructionIterator()