HomeSort by relevance Sort by last modified time
    Searched refs:last_instruction_ (Results 1 - 2 of 2) sorted by null

  /art/compiler/optimizing/
nodes.cc 624 DCHECK(last_instruction_ == nullptr);
625 first_instruction_ = last_instruction_ = instruction;
627 last_instruction_->next_ = instruction;
628 instruction->previous_ = last_instruction_;
629 last_instruction_ = instruction;
649 if (cursor == last_instruction_) {
652 last_instruction_ = instruction;
671 if (instruction == last_instruction_) {
672 last_instruction_ = instruction->previous_;
911 DCHECK_NE(block_->instructions_.last_instruction_, this)
    [all...]
nodes.h 74 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {}
93 void Clear() { first_instruction_ = last_instruction_ = nullptr; }
106 HInstruction* last_instruction_; member in class:art::HInstructionList
560 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; }
563 HInstruction* GetLastPhi() const { return phis_.last_instruction_; }
    [all...]

Completed in 54 milliseconds