OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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/dart_entry.h" | 8 #include "vm/dart_entry.h" |
9 #include "vm/flow_graph_allocator.h" | 9 #include "vm/flow_graph_allocator.h" |
10 #include "vm/flow_graph_builder.h" | 10 #include "vm/flow_graph_builder.h" |
(...skipping 2639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2650 return String::length_offset(); | 2650 return String::length_offset(); |
2651 case kArrayCid: | 2651 case kArrayCid: |
2652 case kImmutableArrayCid: | 2652 case kImmutableArrayCid: |
2653 return Array::length_offset(); | 2653 return Array::length_offset(); |
2654 default: | 2654 default: |
2655 UNREACHABLE(); | 2655 UNREACHABLE(); |
2656 return -1; | 2656 return -1; |
2657 } | 2657 } |
2658 } | 2658 } |
2659 | 2659 |
| 2660 |
2660 #undef __ | 2661 #undef __ |
2661 | 2662 |
2662 } // namespace dart | 2663 } // namespace dart |
OLD | NEW |