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

Unified Diff: vm/flow_graph_compiler.cc

Issue 10836239: Change indexed load and store IL instructions to fit with SSA backend. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 4 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: vm/flow_graph_compiler.cc
===================================================================
--- vm/flow_graph_compiler.cc (revision 10725)
+++ vm/flow_graph_compiler.cc (working copy)
@@ -507,28 +507,6 @@
}
-void FlowGraphCompiler::EmitLoadIndexedGeneric(LoadIndexedComp* comp) {
- const String& function_name =
- String::ZoneHandle(Symbols::New(Token::Str(Token::kINDEX)));
-
- AddCurrentDescriptor(PcDescriptors::kDeopt,
- comp->deopt_id(),
- comp->token_pos(),
- comp->try_index());
-
- const intptr_t kNumArguments = 2;
- const intptr_t kNumArgsChecked = 1; // Type-feedback.
- GenerateInstanceCall(comp->deopt_id(),
- comp->token_pos(),
- comp->try_index(),
- function_name,
- kNumArguments,
- Array::ZoneHandle(), // No optional arguments.
- kNumArgsChecked,
- comp->locs()->stack_bitmap());
-}
-
-
void FlowGraphCompiler::EmitTestAndCall(const ICData& ic_data,
Register class_id_reg,
intptr_t arg_count,

Powered by Google App Engine
This is Rietveld 408576698