Chromium Code Reviews| Index: runtime/vm/flow_graph_compiler_ia32.cc |
| =================================================================== |
| --- runtime/vm/flow_graph_compiler_ia32.cc (revision 15037) |
| +++ runtime/vm/flow_graph_compiler_ia32.cc (working copy) |
| @@ -1092,6 +1092,7 @@ |
| intptr_t deopt_id, |
| intptr_t token_pos, |
| LocationSummary* locs) { |
| + // TODO(srdjan): Remove load RCX with function. |
|
siva
2012/11/16 23:15:23
load ECX with function
srdjan
2012/11/17 00:47:24
Done.
|
| __ LoadObject(ECX, function); |
| __ LoadObject(EDX, arguments_descriptor); |
| // Do not use the code from the function, but let the code be patched so that |
| @@ -1101,6 +1102,7 @@ |
| &StubCode::CallStaticFunctionLabel(), |
| PcDescriptors::kFuncCall, |
| locs); |
| + AddStaticCallTarget(function); |
| __ Drop(argument_count); |
| } |