Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc1267 DCHECK(last_instruction_ == nullptr); in AddInstruction()
1268 first_instruction_ = last_instruction_ = instruction; in AddInstruction()
1270 DCHECK(last_instruction_ != nullptr); in AddInstruction()
1271 last_instruction_->next_ = instruction; in AddInstruction()
1272 instruction->previous_ = last_instruction_; in AddInstruction()
1273 last_instruction_ = instruction; in AddInstruction()
1293 if (cursor == last_instruction_) { in InsertInstructionAfter()
1296 last_instruction_ = instruction; in InsertInstructionAfter()
1315 if (instruction == last_instruction_) { in RemoveInstruction()
1316 last_instruction_ = instruction->previous_; in RemoveInstruction()
[all …]
Dnodes.h155 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList()
174 void Clear() { first_instruction_ = last_instruction_ = nullptr; } in Clear()
188 HInstruction* last_instruction_; variable
1214 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
1217 HInstruction* GetLastPhi() const { return phis_.last_instruction_; } in GetLastPhi()
2914 : instruction_(instructions.last_instruction_) {