Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(403)

Unified Diff: src/hydrogen-escape-analysis.h

Issue 23533003: Implement fixpoint iteration for escape analysis. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Simplified and rebased. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/hydrogen-escape-analysis.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-escape-analysis.h
diff --git a/src/hydrogen-escape-analysis.h b/src/hydrogen-escape-analysis.h
index 3e27cc1b48b62d652a2b922c3278bd55b3f2bcaa..1fee852dd204072a0d91cde362ca25ac97e1a066 100644
--- a/src/hydrogen-escape-analysis.h
+++ b/src/hydrogen-escape-analysis.h
@@ -70,6 +70,9 @@ class HEscapeAnalysisPhase : public HPhase {
block_states_.Set(block->block_id(), state);
}
+ // Maximum number of escape analysis iterations.
+ static const int kMaxFixpointIterationCount = 2;
titzer 2013/09/30 11:38:06 How about a flag?
Michael Starzinger 2013/10/16 08:40:13 Done.
+
// List of allocations captured during collection phase.
ZoneList<HInstruction*> captured_;
« no previous file with comments | « no previous file | src/hydrogen-escape-analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698