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

  /art/compiler/sea_ir/ir/
instruction_nodes.h 44 DCHECK(NULL != instruction_) << "Tried to access NULL instruction in an InstructionNode.";
45 return instruction_;
98 SeaNode(), instruction_(in), used_in_(), de_def_(false), region_(NULL) { }
101 const art::Instruction* const instruction_; member in class:sea_ir::InstructionNode::art
  /art/compiler/optimizing/
nodes.h 674 explicit HInputIterator(HInstruction* instruction) : instruction_(instruction), index_(0) {}
676 bool Done() const { return index_ == instruction_->InputCount(); }
677 HInstruction* Current() const { return instruction_->InputAt(index_); }
681 HInstruction* instruction_; member in class:art::HInputIterator
690 : instruction_(instructions.first_instruction_) {
691 next_ = Done() ? nullptr : instruction_->GetNext();
694 bool Done() const { return instruction_ == nullptr; }
695 HInstruction* Current() const { return instruction_; }
697 instruction_ = next_;
698 next_ = Done() ? nullptr : instruction_->GetNext()
702 HInstruction* instruction_; member in class:art::HInstructionIterator
723 HInstruction* instruction_; member in class:art::HBackwardInstructionIterator
    [all...]

Completed in 44 milliseconds