Chromium Code Reviews| Index: runtime/vm/flow_graph_compiler_x64.cc |
| =================================================================== |
| --- runtime/vm/flow_graph_compiler_x64.cc (revision 6196) |
| +++ runtime/vm/flow_graph_compiler_x64.cc (working copy) |
| @@ -813,6 +813,18 @@ |
| } |
| +void FlowGraphCompiler::VisitCloneContext(CloneContextComp* comp) { |
| + __ popq(RAX); // Get context value from stack. |
| + __ PushObject(Object::ZoneHandle()); // Make room for the result. |
| + __ pushq(RAX); |
| + GenerateCallRuntime(comp->node_id(), |
| + comp->token_index(), |
| + kCloneContextRuntimeEntry); |
| + __ popq(RAX); // Remove argument. |
| + __ popq(RAX); // Get result (cloned context).nn |
|
regis
2012/04/04 22:37:19
.nn?
srdjan
2012/04/04 23:10:23
An I wondered why the review did not jump to next
|
| +} |
| + |
| + |
| void FlowGraphCompiler::VisitBlocks() { |
| for (intptr_t i = 0; i < block_order_.length(); ++i) { |
| // Compile the block entry. |