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

Unified Diff: src/hydrogen.cc

Issue 7634022: Insert representation changes before doing range analysis. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 4 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-instructions.h » ('j') | src/hydrogen-instructions.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen.cc
===================================================================
--- src/hydrogen.cc (revision 8984)
+++ src/hydrogen.cc (working copy)
@@ -2325,15 +2325,15 @@
HInferRepresentation rep(graph());
rep.Analyze();
+ graph()->InsertRepresentationChanges();
Vyacheslav Egorov (Chromium) 2011/08/22 12:53:31 InsertRepresentationChange depends on kDeoptimizeO
fschneider 2011/08/23 07:36:10 Done.
+
if (FLAG_use_range) {
HRangeAnalysis rangeAnalysis(graph());
rangeAnalysis.Analyze();
}
-
graph()->InitializeInferredTypes();
graph()->Canonicalize();
graph()->MarkDeoptimizeOnUndefined();
- graph()->InsertRepresentationChanges();
graph()->ComputeMinusZeroChecks();
// Eliminate redundant stack checks on backwards branches.
« no previous file with comments | « no previous file | src/hydrogen-instructions.h » ('j') | src/hydrogen-instructions.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698