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.cc1765 if (block_->instructions_.first_instruction_ == this) { in MoveBefore()
1766 block_->instructions_.first_instruction_ = next_; in MoveBefore()
1768 DCHECK_NE(block_->instructions_.last_instruction_, this); in MoveBefore()
1776 block_ = cursor->block_; in MoveBefore()
1778 if (block_->instructions_.first_instruction_ == cursor) { in MoveBefore()
1779 block_->instructions_.first_instruction_ = this; in MoveBefore()
Dnodes.h2103 block_(nullptr), in HInstruction()
2128 HBasicBlock* GetBlock() const { return block_; } in GetBlock()
2129 ArenaAllocator* GetAllocator() const { return block_->GetGraph()->GetAllocator(); } in GetAllocator()
2130 void SetBlock(HBasicBlock* block) { block_ = block; } in SetBlock()
2131 bool IsInBlock() const { return block_ != nullptr; } in IsInBlock()
2132 bool IsInLoop() const { return block_->IsInLoop(); } in IsInLoop()
2133 bool IsLoopHeaderPhi() const { return IsPhi() && block_->IsLoopHeader(); } in IsLoopHeaderPhi()
2191 bool CanThrowIntoCatchBlock() const { return CanThrow() && block_->IsTryBlock(); } in CanThrowIntoCatchBlock()
2543 block_(nullptr), in HInstruction()
2602 HBasicBlock* block_; variable