Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc1161 DCHECK(last_instruction_ == nullptr); in AddInstruction()
1162 first_instruction_ = last_instruction_ = instruction; in AddInstruction()
1164 DCHECK(last_instruction_ != nullptr); in AddInstruction()
1165 last_instruction_->next_ = instruction; in AddInstruction()
1166 instruction->previous_ = last_instruction_; in AddInstruction()
1167 last_instruction_ = instruction; in AddInstruction()
1187 if (cursor == last_instruction_) { in InsertInstructionAfter()
1190 last_instruction_ = instruction; in InsertInstructionAfter()
1209 if (instruction == last_instruction_) { in RemoveInstruction()
1210 last_instruction_ = instruction->previous_; in RemoveInstruction()
[all …]
Dnodes.h147 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList()
166 void Clear() { first_instruction_ = last_instruction_ = nullptr; } in Clear()
180 HInstruction* last_instruction_; variable
1147 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
1150 HInstruction* GetLastPhi() const { return phis_.last_instruction_; } in GetLastPhi()
2700 : instruction_(instructions.last_instruction_) { in HBackwardInstructionIterator()