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

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

Issue 1154423007: Typo; fix windows build (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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 | « 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 25 matching lines...) Expand all
36 "Enable inlining of SIMD related method calls."); 36 "Enable inlining of SIMD related method calls.");
37 DEFINE_FLAG(int, min_optimization_counter_threshold, 5000, 37 DEFINE_FLAG(int, min_optimization_counter_threshold, 5000,
38 "The minimum invocation count for a function."); 38 "The minimum invocation count for a function.");
39 DEFINE_FLAG(int, optimization_counter_scale, 2000, 39 DEFINE_FLAG(int, optimization_counter_scale, 2000,
40 "The scale of invocation count, by size of the function."); 40 "The scale of invocation count, by size of the function.");
41 DEFINE_FLAG(bool, source_lines, false, "Emit source line as assembly comment."); 41 DEFINE_FLAG(bool, source_lines, false, "Emit source line as assembly comment.");
42 DEFINE_FLAG(bool, use_megamorphic_stub, true, "Out of line megamorphic lookup"); 42 DEFINE_FLAG(bool, use_megamorphic_stub, true, "Out of line megamorphic lookup");
43 43
44 DECLARE_FLAG(bool, code_comments); 44 DECLARE_FLAG(bool, code_comments);
45 DECLARE_FLAG(bool, deoptimize_alot); 45 DECLARE_FLAG(bool, deoptimize_alot);
46 DECLARE_FLAG(bool, deoptimize_every); 46 DECLARE_FLAG(int, deoptimize_every);
47 DECLARE_FLAG(charp, deoptimize_filter); 47 DECLARE_FLAG(charp, deoptimize_filter);
48 DECLARE_FLAG(bool, disassemble); 48 DECLARE_FLAG(bool, disassemble);
49 DECLARE_FLAG(bool, disassemble_optimized); 49 DECLARE_FLAG(bool, disassemble_optimized);
50 DECLARE_FLAG(bool, emit_edge_counters); 50 DECLARE_FLAG(bool, emit_edge_counters);
51 DECLARE_FLAG(bool, ic_range_profiling); 51 DECLARE_FLAG(bool, ic_range_profiling);
52 DECLARE_FLAG(bool, intrinsify); 52 DECLARE_FLAG(bool, intrinsify);
53 DECLARE_FLAG(bool, load_deferred_eagerly); 53 DECLARE_FLAG(bool, load_deferred_eagerly);
54 DECLARE_FLAG(int, optimization_counter_threshold); 54 DECLARE_FLAG(int, optimization_counter_threshold);
55 DECLARE_FLAG(bool, propagate_ic_data); 55 DECLARE_FLAG(bool, propagate_ic_data);
56 DECLARE_FLAG(int, regexp_optimization_counter_threshold); 56 DECLARE_FLAG(int, regexp_optimization_counter_threshold);
(...skipping 1680 matching lines...) Expand 10 before | Expand all | Expand 10 after
1737 1737
1738 1738
1739 void FlowGraphCompiler::FrameStateClear() { 1739 void FlowGraphCompiler::FrameStateClear() {
1740 ASSERT(!is_optimizing()); 1740 ASSERT(!is_optimizing());
1741 frame_state_.TruncateTo(0); 1741 frame_state_.TruncateTo(0);
1742 } 1742 }
1743 #endif 1743 #endif
1744 1744
1745 1745
1746 } // namespace dart 1746 } // 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