Searched refs:block_ (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dssa_liveness_analysis.h33 : block_(block),
37 UNUSED(block_);
44 const HBasicBlock& block_; member in class:art::BlockInfo
H A Dnodes.cc1358 if (block_->instructions_.first_instruction_ == this) {
1359 block_->instructions_.first_instruction_ = next_;
1361 DCHECK_NE(block_->instructions_.last_instruction_, this);
1369 block_ = cursor->block_;
1371 if (block_->instructions_.first_instruction_ == cursor) {
1372 block_->instructions_.first_instruction_ = this;
H A Dnodes.h1763 block_(nullptr),
1791 HBasicBlock* GetBlock() const { return block_; }
1792 ArenaAllocator* GetArena() const { return block_->GetGraph()->GetArena(); }
1793 void SetBlock(HBasicBlock* block) { block_ = block; }
1794 bool IsInBlock() const { return block_ != nullptr; }
1795 bool IsInLoop() const { return block_->IsInLoop(); }
1796 bool IsLoopHeaderPhi() const { return IsPhi() && block_->IsLoopHeader(); }
1819 bool CanThrowIntoCatchBlock() const { return CanThrow() && block_->IsTryBlock(); }
2126 HBasicBlock* block_; member in class:art::HInstruction

Completed in 68 milliseconds