Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.cc1385 DCHECK(last_instruction_ == nullptr); in AddInstruction()
1386 first_instruction_ = last_instruction_ = instruction; in AddInstruction()
1388 DCHECK(last_instruction_ != nullptr); in AddInstruction()
1389 last_instruction_->next_ = instruction; in AddInstruction()
1390 instruction->previous_ = last_instruction_; in AddInstruction()
1391 last_instruction_ = instruction; in AddInstruction()
1411 if (cursor == last_instruction_) { in InsertInstructionAfter()
1414 last_instruction_ = instruction; in InsertInstructionAfter()
1433 if (instruction == last_instruction_) { in RemoveInstruction()
1434 last_instruction_ = instruction->previous_; in RemoveInstruction()
[all …]
Dnodes.h152 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {} in HInstructionList()
171 void Clear() { first_instruction_ = last_instruction_ = nullptr; } in Clear()
185 HInstruction* last_instruction_; variable
1192 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; } in GetLastInstruction()
1195 HInstruction* GetLastPhi() const { return phis_.last_instruction_; } in GetLastPhi()
2849 : instruction_(instructions.last_instruction_) {