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

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

Issue 19145002: Fix possible stack overflow in range analysis. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: No side-effects in comparisons. Created 7 years, 5 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-range-analysis.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/hydrogen-range-analysis.h
diff --git a/src/hydrogen-range-analysis.h b/src/hydrogen-range-analysis.h
index b699d3a3f0d702466b859671f739bfa774813a0d..a1e9737c5e08c0ad79e0c1a215c25d660c617619 100644
--- a/src/hydrogen-range-analysis.h
+++ b/src/hydrogen-range-analysis.h
@@ -39,13 +39,10 @@ class HRangeAnalysisPhase : public HPhase {
explicit HRangeAnalysisPhase(HGraph* graph)
: HPhase("H_Range analysis", graph), changed_ranges_(16, zone()) { }
- void Run() {
- Analyze(graph()->entry_block());
- }
+ void Run();
private:
void TraceRange(const char* msg, ...);
- void Analyze(HBasicBlock* block);
void InferControlFlowRange(HCompareNumericAndBranch* test,
HBasicBlock* dest);
void UpdateControlFlowRange(Token::Value op, HValue* value, HValue* other);
« no previous file with comments | « no previous file | src/hydrogen-range-analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698