OLD | NEW |
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/intermediate_language.h" | 5 #include "vm/intermediate_language.h" |
6 | 6 |
7 #include "vm/bit_vector.h" | 7 #include "vm/bit_vector.h" |
8 #include "vm/constant_propagator.h" | 8 #include "vm/constant_propagator.h" |
9 #include "vm/cpu.h" | 9 #include "vm/cpu.h" |
10 #include "vm/dart_entry.h" | 10 #include "vm/dart_entry.h" |
11 #include "vm/flow_graph_allocator.h" | 11 #include "vm/flow_graph_allocator.h" |
12 #include "vm/flow_graph_builder.h" | 12 #include "vm/flow_graph_builder.h" |
13 #include "vm/flow_graph_compiler.h" | 13 #include "vm/flow_graph_compiler.h" |
14 #include "vm/flow_graph_optimizer.h" | 14 #include "vm/flow_graph_optimizer.h" |
15 #include "vm/flow_graph_range_analysis.h" | 15 #include "vm/flow_graph_range_analysis.h" |
16 #include "vm/locations.h" | 16 #include "vm/locations.h" |
17 #include "vm/method_recognizer.h" | 17 #include "vm/method_recognizer.h" |
18 #include "vm/object.h" | 18 #include "vm/object.h" |
19 #include "vm/object_store.h" | 19 #include "vm/object_store.h" |
20 #include "vm/os.h" | 20 #include "vm/os.h" |
21 #include "vm/regexp_assembler.h" | 21 #include "vm/regexp_assembler_ir.h" |
22 #include "vm/resolver.h" | 22 #include "vm/resolver.h" |
23 #include "vm/scopes.h" | 23 #include "vm/scopes.h" |
24 #include "vm/stub_code.h" | 24 #include "vm/stub_code.h" |
25 #include "vm/symbols.h" | 25 #include "vm/symbols.h" |
26 | 26 |
27 #include "vm/il_printer.h" | 27 #include "vm/il_printer.h" |
28 | 28 |
29 namespace dart { | 29 namespace dart { |
30 | 30 |
31 DEFINE_FLAG(bool, ic_range_profiling, true, | 31 DEFINE_FLAG(bool, ic_range_profiling, true, |
(...skipping 3604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3636 case Token::kTRUNCDIV: return 0; | 3636 case Token::kTRUNCDIV: return 0; |
3637 case Token::kMOD: return 1; | 3637 case Token::kMOD: return 1; |
3638 default: UNIMPLEMENTED(); return -1; | 3638 default: UNIMPLEMENTED(); return -1; |
3639 } | 3639 } |
3640 } | 3640 } |
3641 | 3641 |
3642 | 3642 |
3643 #undef __ | 3643 #undef __ |
3644 | 3644 |
3645 } // namespace dart | 3645 } // namespace dart |
OLD | NEW |