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

Unified Diff: src/deoptimizer.h

Issue 192513002: Checking for stack height equality between full codegen and hydrogen. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebase Created 6 years, 7 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 | « build/features.gypi ('k') | src/deoptimizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/deoptimizer.h
diff --git a/src/deoptimizer.h b/src/deoptimizer.h
index 3262f9c81a6585a5cc0c7079a846ef855c5d0db6..9aaf2d0bee03536f8d8abdab6d7753ef85005009 100644
--- a/src/deoptimizer.h
+++ b/src/deoptimizer.h
@@ -212,9 +212,18 @@ class Deoptimizer : public Malloced {
static int GetDeoptimizationId(Isolate* isolate,
Address addr,
BailoutType type);
+ static int GetOutputInfoIndex(DeoptimizationOutputData* data,
+ BailoutId node_id,
+ SharedFunctionInfo* shared);
static int GetOutputInfo(DeoptimizationOutputData* data,
BailoutId node_id,
SharedFunctionInfo* shared);
+#if defined(COMPARE_OPT_STACK_HEIGHT)
+ static int GetOutputInfoStackHeight(
+ DeoptimizationOutputData* data,
+ BailoutId node_id,
+ SharedFunctionInfo* shared);
+#endif
// Code generation support.
static int input_offset() { return OFFSET_OF(Deoptimizer, input_); }
« no previous file with comments | « build/features.gypi ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698