Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc1425 DCHECK(last_instruction_ == nullptr); in AddInstruction()
1426 first_instruction_ = last_instruction_ = instruction; in AddInstruction()
1428 DCHECK(last_instruction_ != nullptr); in AddInstruction()
1429 last_instruction_->next_ = instruction; in AddInstruction()
1430 instruction->previous_ = last_instruction_; in AddInstruction()
1431 last_instruction_ = instruction; in AddInstruction()
1451 if (cursor == last_instruction_) { in InsertInstructionAfter()
1454 last_instruction_ = instruction; in InsertInstructionAfter()
1473 if (instruction == last_instruction_) { in RemoveInstruction()
1474 last_instruction_ = instruction->previous_; in RemoveInstruction()
[all …]
Dnodes.h153 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList()
172 void Clear() { first_instruction_ = last_instruction_ = nullptr; } in Clear()
186 HInstruction* last_instruction_; variable
1207 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
1210 HInstruction* GetLastPhi() const { return phis_.last_instruction_; } in GetLastPhi()
2886 : instruction_(instructions.last_instruction_) {