Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dnodes.h1104 loop_information_(nullptr), in graph_()
1162 if (loop_information_ == nullptr) { in AddBackEdge()
1163 loop_information_ = new (graph_->GetAllocator()) HLoopInformation(this, graph_); in AddBackEdge()
1165 DCHECK_EQ(loop_information_->GetHeader(), this); in AddBackEdge()
1166 loop_information_->AddBackEdge(back_edge); in AddBackEdge()
1175 if (loop_information_ == nullptr || loop_information_->GetHeader() != this) { in AddBackEdgeWhileUpdating()
1176 loop_information_ = new (graph_->GetAllocator()) HLoopInformation(this, graph_); in AddBackEdgeWhileUpdating()
1178 loop_information_->AddBackEdge(back_edge); in AddBackEdgeWhileUpdating()
1203 return IsLoopHeader() ? loop_information_->NumberOfBackEdges() : 0; in NumberOfBackEdges()
1383 return IsInLoop() && (loop_information_->GetHeader() == this); in IsLoopHeader()
[all …]