Index: runtime/vm/flow_graph_compiler.h |
=================================================================== |
--- runtime/vm/flow_graph_compiler.h (revision 35546) |
+++ runtime/vm/flow_graph_compiler.h (working copy) |
@@ -416,7 +416,9 @@ |
Label* AddDeoptStub(intptr_t deopt_id, ICData::DeoptReasonId reason); |
- void AddDeoptIndexAtCall(intptr_t deopt_id, intptr_t token_pos); |
+ void AddDeoptIndexAtCall(intptr_t deopt_id, |
+ intptr_t token_pos, |
+ intptr_t stack_adjustment = 0); |
srdjan
2014/04/30 15:41:58
Since this is public, please explain briefly what
Florian Schneider
2014/04/30 16:02:19
Done. Added comment to the implementation and rena
|
void AddSlowPathCode(SlowPathCode* slow_path); |
@@ -470,6 +472,7 @@ |
private: |
friend class CheckStackOverflowSlowPath; // For pending_deoptimization_env_. |
+ friend class ClosureCallInstr; // For pending_deoptimization_env_. |
void EmitFrameEntry(); |