Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dssa_liveness_analysis.h38 : block_(block), in BlockInfo()
42 UNUSED(block_); in BlockInfo()
49 const HBasicBlock& block_;
Dnodes.cc1724 if (block_->instructions_.first_instruction_ == this) { in MoveBefore()
1725 block_->instructions_.first_instruction_ = next_; in MoveBefore()
1727 DCHECK_NE(block_->instructions_.last_instruction_, this); in MoveBefore()
1735 block_ = cursor->block_; in MoveBefore()
1737 if (block_->instructions_.first_instruction_ == cursor) { in MoveBefore()
1738 block_->instructions_.first_instruction_ = this; in MoveBefore()
Dnodes.h1965 block_(nullptr), in HInstruction()
1989 HBasicBlock* GetBlock() const { return block_; } in GetBlock()
1990 ArenaAllocator* GetAllocator() const { return block_->GetGraph()->GetAllocator(); } in GetAllocator()
1991 void SetBlock(HBasicBlock* block) { block_ = block; } in SetBlock()
1992 bool IsInBlock() const { return block_ != nullptr; } in IsInBlock()
1993 bool IsInLoop() const { return block_->IsInLoop(); } in IsInLoop()
1994 bool IsLoopHeaderPhi() const { return IsPhi() && block_->IsLoopHeader(); } in IsLoopHeaderPhi()
2050 bool CanThrowIntoCatchBlock() const { return CanThrow() && block_->IsTryBlock(); } in CanThrowIntoCatchBlock()
2393 block_(nullptr), in HInstruction()
2452 HBasicBlock* block_; variable