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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 10928232: Deoptimization support in inlined code. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
Index: runtime/vm/flow_graph_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 4a8a5dd61c5b1d47e9c0d4b99129f3a376b54c5a..5735dcb804cfe7efd2bbaa6394b8a22f278652bf 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -70,6 +70,9 @@ class CompilerDeoptInfo : public ZoneAllocated {
RawDeoptInfo* CreateDeoptInfo(FlowGraphCompiler* compiler);
+ void AllocateIncommingParametersRecusive(Environment* env,
+ intptr_t* stack_height);
Kevin Millikin (Google) 2012/09/18 11:01:55 Spell check :)
zerny-google 2012/09/18 11:53:07 Thanks! Done.
+
// No code needs to be generated.
virtual void GenerateCode(FlowGraphCompiler* compiler, intptr_t stub_ix) {}
@@ -85,7 +88,7 @@ class CompilerDeoptInfo : public ZoneAllocated {
private:
const intptr_t deopt_id_;
const DeoptReasonId reason_;
- const Environment* deoptimization_env_;
+ Environment* deoptimization_env_;
DISALLOW_COPY_AND_ASSIGN(CompilerDeoptInfo);
};

Powered by Google App Engine
This is Rietveld 408576698