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 368 DCHECK(last_instruction_ == nullptr);
369 first_instruction_ = last_instruction_ = instruction;
371 last_instruction_->next_ = instruction;
372 instruction->previous_ = last_instruction_;
373 last_instruction_ = instruction;
390 if (instruction == last_instruction_) {
391 last_instruction_ = instruction->previous_;
nodes.h 54 HInstructionList() : first_instruction_(nullptr), last_instruction_(nullptr) {}
61 HInstruction* last_instruction_; member in class:art::HInstructionList
303 HInstruction* GetLastInstruction() const { return instructions_.last_instruction_; }
711 : instruction_(instructions.last_instruction_) {
    [all...]

Completed in 53 milliseconds