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.cc2037 if (block_->instructions_.first_instruction_ == this) { in MoveBefore()
2038 block_->instructions_.first_instruction_ = next_; in MoveBefore()
2040 DCHECK_NE(block_->instructions_.last_instruction_, this); in MoveBefore()
2048 block_ = cursor->block_; in MoveBefore()
2050 if (block_->instructions_.first_instruction_ == cursor) { in MoveBefore()
2051 block_->instructions_.first_instruction_ = this; in MoveBefore()
Dnodes.h2198 block_(nullptr), in HInstruction()
2239 HBasicBlock* GetBlock() const { return block_; } in GetBlock()
2240 ArenaAllocator* GetAllocator() const { return block_->GetGraph()->GetAllocator(); } in GetAllocator()
2241 void SetBlock(HBasicBlock* block) { block_ = block; } in SetBlock()
2242 bool IsInBlock() const { return block_ != nullptr; } in IsInBlock()
2243 bool IsInLoop() const { return block_->IsInLoop(); } in IsInLoop()
2244 bool IsLoopHeaderPhi() const { return IsPhi() && block_->IsLoopHeader(); } in IsLoopHeaderPhi()
2306 bool CanThrowIntoCatchBlock() const { return CanThrow() && block_->IsTryBlock(); } in CanThrowIntoCatchBlock()
2670 block_(nullptr), in HInstruction()
2729 HBasicBlock* block_; variable