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

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

Issue 2140683002: Remove remaining stub code for IC range profiling. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « runtime/vm/flag_list.h ('k') | runtime/vm/intermediate_language.cc » ('j') | 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 FLAG_inline_getters_setters_smaller_than = 5; 79 FLAG_inline_getters_setters_smaller_than = 5;
80 FLAG_inlining_callee_size_threshold = 20; 80 FLAG_inlining_callee_size_threshold = 20;
81 FLAG_inlining_depth_threshold = 2; 81 FLAG_inlining_depth_threshold = 2;
82 FLAG_inlining_caller_size_threshold = 1000; 82 FLAG_inlining_caller_size_threshold = 1000;
83 FLAG_inlining_constant_arguments_max_size_threshold = 100; 83 FLAG_inlining_constant_arguments_max_size_threshold = 100;
84 FLAG_inlining_constant_arguments_min_size_threshold = 30; 84 FLAG_inlining_constant_arguments_min_size_threshold = 30;
85 85
86 FLAG_background_compilation = false; 86 FLAG_background_compilation = false;
87 FLAG_always_megamorphic_calls = true; 87 FLAG_always_megamorphic_calls = true;
88 FLAG_fields_may_be_reset = true; 88 FLAG_fields_may_be_reset = true;
89 FLAG_ic_range_profiling = false;
90 FLAG_interpret_irregexp = true; 89 FLAG_interpret_irregexp = true;
91 FLAG_lazy_dispatchers = false; 90 FLAG_lazy_dispatchers = false;
92 FLAG_link_natives_lazily = true; 91 FLAG_link_natives_lazily = true;
93 FLAG_optimization_counter_threshold = -1; 92 FLAG_optimization_counter_threshold = -1;
94 FLAG_polymorphic_with_deopt = false; 93 FLAG_polymorphic_with_deopt = false;
95 FLAG_precompiled_mode = true; 94 FLAG_precompiled_mode = true;
96 FLAG_reorder_basic_blocks = false; 95 FLAG_reorder_basic_blocks = false;
97 FLAG_use_field_guards = false; 96 FLAG_use_field_guards = false;
98 FLAG_use_cha_deopt = false; 97 FLAG_use_cha_deopt = false;
99 98
(...skipping 1903 matching lines...) Expand 10 before | Expand all | Expand 10 after
2003 2002
2004 2003
2005 void FlowGraphCompiler::FrameStateClear() { 2004 void FlowGraphCompiler::FrameStateClear() {
2006 ASSERT(!is_optimizing()); 2005 ASSERT(!is_optimizing());
2007 frame_state_.TruncateTo(0); 2006 frame_state_.TruncateTo(0);
2008 } 2007 }
2009 #endif // defined(DEBUG) && !defined(TARGET_ARCH_DBC) 2008 #endif // defined(DEBUG) && !defined(TARGET_ARCH_DBC)
2010 2009
2011 2010
2012 } // namespace dart 2011 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/flag_list.h ('k') | runtime/vm/intermediate_language.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698