| 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/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" |
| 11 #include "vm/dart_entry.h" | 11 #include "vm/dart_entry.h" |
| 12 #include "vm/debugger.h" | 12 #include "vm/debugger.h" |
| 13 #include "vm/deopt_instructions.h" | 13 #include "vm/deopt_instructions.h" |
| 14 #include "vm/exceptions.h" | 14 #include "vm/exceptions.h" |
| 15 #include "vm/flow_graph_allocator.h" | 15 #include "vm/flow_graph_allocator.h" |
| 16 #include "vm/il_printer.h" | 16 #include "vm/il_printer.h" |
| 17 #include "vm/intrinsifier.h" | 17 #include "vm/intrinsifier.h" |
| 18 #include "vm/locations.h" | 18 #include "vm/locations.h" |
| 19 #include "vm/log.h" |
| 19 #include "vm/longjump.h" | 20 #include "vm/longjump.h" |
| 20 #include "vm/object_store.h" | 21 #include "vm/object_store.h" |
| 21 #include "vm/parser.h" | 22 #include "vm/parser.h" |
| 22 #include "vm/raw_object.h" | 23 #include "vm/raw_object.h" |
| 23 #include "vm/stack_frame.h" | 24 #include "vm/stack_frame.h" |
| 24 #include "vm/stub_code.h" | 25 #include "vm/stub_code.h" |
| 25 #include "vm/symbols.h" | 26 #include "vm/symbols.h" |
| 26 | 27 |
| 27 namespace dart { | 28 namespace dart { |
| 28 | 29 |
| (...skipping 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1574 case kUnboxedMint: | 1575 case kUnboxedMint: |
| 1575 return mint_class(); | 1576 return mint_class(); |
| 1576 default: | 1577 default: |
| 1577 UNREACHABLE(); | 1578 UNREACHABLE(); |
| 1578 return Class::ZoneHandle(); | 1579 return Class::ZoneHandle(); |
| 1579 } | 1580 } |
| 1580 } | 1581 } |
| 1581 | 1582 |
| 1582 | 1583 |
| 1583 } // namespace dart | 1584 } // namespace dart |
| OLD | NEW |