diff options
| author | 2014-12-02 12:28:11 +0000 | |
|---|---|---|
| committer | 2014-12-02 12:28:12 +0000 | |
| commit | 68af004aa1e8c82ddb503261c5e3080238e77b59 (patch) | |
| tree | 08851014d687b0e08accfdc2f1553a89789b4fd4 /compiler/optimizing/nodes.h | |
| parent | 10a573a1f8708dbe2bcb7835341cbd8e9606af63 (diff) | |
| parent | f537012ceb6cba8a78b36a5065beb9588451a250 (diff) | |
Merge "Treat SSA transformation special, as we may have to bailout."
Diffstat (limited to 'compiler/optimizing/nodes.h')
| -rw-r--r-- | compiler/optimizing/nodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/optimizing/nodes.h b/compiler/optimizing/nodes.h index 28496e4ad2..9d0b4a971e 100644 --- a/compiler/optimizing/nodes.h +++ b/compiler/optimizing/nodes.h @@ -112,10 +112,10 @@ class HGraph : public ArenaObject<kArenaAllocMisc> { void TransformToSSA(); void SimplifyCFG(); - // Find all natural loops in this graph. Aborts computation and returns false - // if one loop is not natural, that is the header does not dominate the back - // edge. - bool FindNaturalLoops() const; + // Analyze all natural loops in this graph. Returns false if one + // loop is not natural, that is the header does not dominate the + // back edge. + bool AnalyzeNaturalLoops() const; void SplitCriticalEdge(HBasicBlock* block, HBasicBlock* successor); void SimplifyLoop(HBasicBlock* header); |