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

Side by Side Diff: runtime/vm/flow_graph_compiler.cc

Issue 1130133002: Reenable eager local var descriptors until issue with one test resolved. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_XXX. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_XXX.
6 6
7 #include "vm/flow_graph_compiler.h" 7 #include "vm/flow_graph_compiler.h"
8 8
9 #include "vm/bit_vector.h" 9 #include "vm/bit_vector.h"
10 #include "vm/cha.h" 10 #include "vm/cha.h"
(...skipping 13 matching lines...) Expand all
24 #include "vm/stack_frame.h" 24 #include "vm/stack_frame.h"
25 #include "vm/stub_code.h" 25 #include "vm/stub_code.h"
26 #include "vm/symbols.h" 26 #include "vm/symbols.h"
27 27
28 namespace dart { 28 namespace dart {
29 29
30 DEFINE_FLAG(bool, always_megamorphic_calls, false, 30 DEFINE_FLAG(bool, always_megamorphic_calls, false,
31 "Instance call always as megamorphic."); 31 "Instance call always as megamorphic.");
32 DEFINE_FLAG(bool, trace_inlining_intervals, false, 32 DEFINE_FLAG(bool, trace_inlining_intervals, false,
33 "Inlining interval diagnostics"); 33 "Inlining interval diagnostics");
34 DEFINE_FLAG(bool, eager_info_computation, false, 34 DEFINE_FLAG(bool, eager_info_computation, true,
35 "TRANSITIONAL: Eagerly compute local var descriptors."); 35 "TRANSITIONAL: Eagerly compute local var descriptors.");
36 DEFINE_FLAG(bool, enable_simd_inline, true, 36 DEFINE_FLAG(bool, enable_simd_inline, true,
37 "Enable inlining of SIMD related method calls."); 37 "Enable inlining of SIMD related method calls.");
38 DEFINE_FLAG(int, min_optimization_counter_threshold, 5000, 38 DEFINE_FLAG(int, min_optimization_counter_threshold, 5000,
39 "The minimum invocation count for a function."); 39 "The minimum invocation count for a function.");
40 DEFINE_FLAG(int, optimization_counter_scale, 2000, 40 DEFINE_FLAG(int, optimization_counter_scale, 2000,
41 "The scale of invocation count, by size of the function."); 41 "The scale of invocation count, by size of the function.");
42 DEFINE_FLAG(bool, source_lines, false, "Emit source line as assembly comment."); 42 DEFINE_FLAG(bool, source_lines, false, "Emit source line as assembly comment.");
43 DEFINE_FLAG(bool, use_megamorphic_stub, true, "Out of line megamorphic lookup"); 43 DEFINE_FLAG(bool, use_megamorphic_stub, true, "Out of line megamorphic lookup");
44 44
(...skipping 1681 matching lines...) Expand 10 before | Expand all | Expand 10 after
1726 1726
1727 1727
1728 void FlowGraphCompiler::FrameStateClear() { 1728 void FlowGraphCompiler::FrameStateClear() {
1729 ASSERT(!is_optimizing()); 1729 ASSERT(!is_optimizing());
1730 frame_state_.TruncateTo(0); 1730 frame_state_.TruncateTo(0);
1731 } 1731 }
1732 #endif 1732 #endif
1733 1733
1734 1734
1735 } // namespace dart 1735 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698