| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 #if !defined(DART_PRECOMPILED_RUNTIME) |
| 6 |
| 5 #include "vm/regexp_assembler_ir.h" | 7 #include "vm/regexp_assembler_ir.h" |
| 6 | 8 |
| 7 #include "vm/bit_vector.h" | 9 #include "vm/bit_vector.h" |
| 8 #include "vm/compiler.h" | 10 #include "vm/compiler.h" |
| 9 #include "vm/dart_entry.h" | 11 #include "vm/dart_entry.h" |
| 10 #include "vm/flow_graph_builder.h" | 12 #include "vm/flow_graph_builder.h" |
| 11 #include "vm/il_printer.h" | 13 #include "vm/il_printer.h" |
| 12 #include "vm/object_store.h" | 14 #include "vm/object_store.h" |
| 13 #include "vm/regexp.h" | 15 #include "vm/regexp.h" |
| 14 #include "vm/resolver.h" | 16 #include "vm/resolver.h" |
| (...skipping 1710 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1725 Value* index_val = BindLoadLocal(*index); | 1727 Value* index_val = BindLoadLocal(*index); |
| 1726 | 1728 |
| 1727 return Bind(new (Z) LoadCodeUnitsInstr(pattern_val, index_val, characters, | 1729 return Bind(new (Z) LoadCodeUnitsInstr(pattern_val, index_val, characters, |
| 1728 specialization_cid_, | 1730 specialization_cid_, |
| 1729 TokenPosition::kNoSource)); | 1731 TokenPosition::kNoSource)); |
| 1730 } | 1732 } |
| 1731 | 1733 |
| 1732 #undef __ | 1734 #undef __ |
| 1733 | 1735 |
| 1734 } // namespace dart | 1736 } // namespace dart |
| 1737 |
| 1738 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
| OLD | NEW |