Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc1162 DCHECK(last_instruction_ == nullptr); in AddInstruction()
1163 first_instruction_ = last_instruction_ = instruction; in AddInstruction()
1165 DCHECK(last_instruction_ != nullptr); in AddInstruction()
1166 last_instruction_->next_ = instruction; in AddInstruction()
1167 instruction->previous_ = last_instruction_; in AddInstruction()
1168 last_instruction_ = instruction; in AddInstruction()
1188 if (cursor == last_instruction_) { in InsertInstructionAfter()
1191 last_instruction_ = instruction; in InsertInstructionAfter()
1210 if (instruction == last_instruction_) { in RemoveInstruction()
1211 last_instruction_ = instruction->previous_; in RemoveInstruction()
[all …]
Dnodes.h144 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList()
163 void Clear() { first_instruction_ = last_instruction_ = nullptr; } in Clear()
177 HInstruction* last_instruction_; variable
1074 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
1077 HInstruction* GetLastPhi() const { return phis_.last_instruction_; } in GetLastPhi()
2628 : instruction_(instructions.last_instruction_) { in HBackwardInstructionIterator()