| Index: runtime/vm/flow_graph_compiler_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler_ia32.cc (revision 14749)
|
| +++ runtime/vm/flow_graph_compiler_ia32.cc (working copy)
|
| @@ -20,7 +20,6 @@
|
|
|
| DECLARE_FLAG(bool, print_ast);
|
| DECLARE_FLAG(bool, print_scopes);
|
| -DECLARE_FLAG(bool, trace_functions);
|
| DEFINE_FLAG(bool, trap_on_deoptimization, false, "Trap on deoptimization.");
|
| DEFINE_FLAG(bool, unbox_mints, true, "Optimize 64-bit integer arithmetic.");
|
|
|
| @@ -833,23 +832,6 @@
|
| 0); // No registers.
|
| }
|
|
|
| - if (FLAG_trace_functions) {
|
| - __ pushl(EAX); // Preserve result.
|
| - __ PushObject(Function::ZoneHandle(function.raw()));
|
| - // We do not use GenerateCallRuntime because of the non-standard (empty)
|
| - // stackmap used here.
|
| - __ CallRuntime(kTraceFunctionExitRuntimeEntry);
|
| - AddCurrentDescriptor(PcDescriptors::kOther,
|
| - Isolate::kNoDeoptId,
|
| - 0); // No token position.
|
| - if (is_optimizing()) {
|
| - stackmap_table_builder_->AddEntry(assembler()->CodeSize(),
|
| - empty_stack_bitmap,
|
| - 0); // No registers.
|
| - }
|
| - __ popl(EAX); // Remove argument.
|
| - __ popl(EAX); // Restore result.
|
| - }
|
| __ LeaveFrame();
|
| __ ret();
|
|
|
|
|