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/bigint_operations.h" | 7 #include "vm/bigint_operations.h" |
8 #include "vm/bit_vector.h" | 8 #include "vm/bit_vector.h" |
| 9 #include "vm/cpu.h" |
9 #include "vm/dart_entry.h" | 10 #include "vm/dart_entry.h" |
10 #include "vm/flow_graph_allocator.h" | 11 #include "vm/flow_graph_allocator.h" |
11 #include "vm/flow_graph_builder.h" | 12 #include "vm/flow_graph_builder.h" |
12 #include "vm/flow_graph_compiler.h" | 13 #include "vm/flow_graph_compiler.h" |
13 #include "vm/flow_graph_optimizer.h" | 14 #include "vm/flow_graph_optimizer.h" |
14 #include "vm/locations.h" | 15 #include "vm/locations.h" |
15 #include "vm/object.h" | 16 #include "vm/object.h" |
16 #include "vm/object_store.h" | 17 #include "vm/object_store.h" |
17 #include "vm/os.h" | 18 #include "vm/os.h" |
18 #include "vm/resolver.h" | 19 #include "vm/resolver.h" |
(...skipping 3009 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3028 case Token::kTRUNCDIV: return 0; | 3029 case Token::kTRUNCDIV: return 0; |
3029 case Token::kMOD: return 1; | 3030 case Token::kMOD: return 1; |
3030 default: UNIMPLEMENTED(); return -1; | 3031 default: UNIMPLEMENTED(); return -1; |
3031 } | 3032 } |
3032 } | 3033 } |
3033 | 3034 |
3034 | 3035 |
3035 #undef __ | 3036 #undef __ |
3036 | 3037 |
3037 } // namespace dart | 3038 } // namespace dart |
OLD | NEW |