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

/art/compiler/optimizing/
H A Dnodes.cc908 if (block_->instructions_.first_instruction_ == this) {
909 block_->instructions_.first_instruction_ = next_;
911 DCHECK_NE(block_->instructions_.last_instruction_, this);
919 block_ = cursor->block_;
921 if (block_->instructions_.first_instruction_ == cursor) {
922 block_->instructions_.first_instruction_ = this;
H A Dssa_liveness_analysis.h33 : block_(block),
37 UNUSED(block_);
44 const HBasicBlock& block_; member in class:art::BlockInfo
H A Dnodes.h1296 block_(nullptr),
1320 HBasicBlock* GetBlock() const { return block_; }
1321 void SetBlock(HBasicBlock* block) { block_ = block; }
1322 bool IsInBlock() const { return block_ != nullptr; }
1323 bool IsInLoop() const { return block_->IsInLoop(); }
1324 bool IsLoopHeaderPhi() { return IsPhi() && block_->IsLoopHeader(); }
1538 HBasicBlock* block_; member in class:art::HInstruction

Completed in 244 milliseconds