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

Unified Diff: runtime/vm/flow_graph_compiler.h

Issue 1756403002: VM: Add smi fast path operations for precompiled code (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: addressed comments Created 4 years, 10 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 | « runtime/vm/constant_propagator.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.h
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h
index 60ce3845759a449ff153e04cfcaec6b4f0607e01..3dc31a07ce518b5f6c1f50b04a6c28d830138b35 100644
--- a/runtime/vm/flow_graph_compiler.h
+++ b/runtime/vm/flow_graph_compiler.h
@@ -460,7 +460,8 @@ class FlowGraphCompiler : public ValueObject {
intptr_t deopt_id,
TokenPosition token_pos,
LocationSummary* locs,
- intptr_t try_index = CatchClauseNode::kInvalidTryIndex);
+ intptr_t try_index,
+ intptr_t slow_path_argument_count = 0);
void EmitSwitchableInstanceCall(const ICData& ic_data,
intptr_t argument_count,
@@ -514,7 +515,8 @@ class FlowGraphCompiler : public ValueObject {
intptr_t deopt_id,
TokenPosition token_pos);
- void RecordSafepoint(LocationSummary* locs);
+ void RecordSafepoint(LocationSummary* locs,
+ intptr_t slow_path_argument_count = 0);
Label* AddDeoptStub(intptr_t deopt_id,
ICData::DeoptReasonId reason,
« no previous file with comments | « runtime/vm/constant_propagator.cc ('k') | runtime/vm/flow_graph_compiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698