| 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_ARM. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM. |
| 6 #if defined(TARGET_ARCH_ARM) | 6 #if defined(TARGET_ARCH_ARM) |
| 7 | 7 |
| 8 #include "vm/intrinsifier.h" | 8 #include "vm/intrinsifier.h" |
| 9 | 9 |
| 10 #include "vm/assembler.h" | 10 #include "vm/assembler.h" |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 | 161 |
| 162 | 162 |
| 163 void Intrinsifier::ImmutableList_getIndexed(Assembler* assembler) { | 163 void Intrinsifier::ImmutableList_getIndexed(Assembler* assembler) { |
| 164 return Array_getIndexed(assembler); | 164 return Array_getIndexed(assembler); |
| 165 } | 165 } |
| 166 | 166 |
| 167 | 167 |
| 168 static intptr_t ComputeObjectArrayTypeArgumentsOffset() { | 168 static intptr_t ComputeObjectArrayTypeArgumentsOffset() { |
| 169 const Library& core_lib = Library::Handle(Library::CoreLibrary()); | 169 const Library& core_lib = Library::Handle(Library::CoreLibrary()); |
| 170 const Class& cls = Class::Handle( | 170 const Class& cls = Class::Handle( |
| 171 core_lib.LookupClassAllowPrivate(Symbols::ObjectArray())); | 171 core_lib.LookupClassAllowPrivate(Symbols::_List())); |
| 172 ASSERT(!cls.IsNull()); | 172 ASSERT(!cls.IsNull()); |
| 173 ASSERT(cls.HasTypeArguments()); | 173 ASSERT(cls.HasTypeArguments()); |
| 174 ASSERT(cls.NumTypeArguments() == 1); | 174 ASSERT(cls.NumTypeArguments() == 1); |
| 175 const intptr_t field_offset = cls.type_arguments_field_offset(); | 175 const intptr_t field_offset = cls.type_arguments_field_offset(); |
| 176 ASSERT(field_offset != Class::kNoTypeArguments); | 176 ASSERT(field_offset != Class::kNoTypeArguments); |
| 177 return field_offset; | 177 return field_offset; |
| 178 } | 178 } |
| 179 | 179 |
| 180 | 180 |
| 181 // Intrinsify only for Smi value and index. Non-smi values need a store buffer | 181 // Intrinsify only for Smi value and index. Non-smi values need a store buffer |
| (...skipping 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1651 | 1651 |
| 1652 __ Bind(&ok); | 1652 __ Bind(&ok); |
| 1653 __ Ret(); | 1653 __ Ret(); |
| 1654 | 1654 |
| 1655 __ Bind(&fall_through); | 1655 __ Bind(&fall_through); |
| 1656 } | 1656 } |
| 1657 | 1657 |
| 1658 } // namespace dart | 1658 } // namespace dart |
| 1659 | 1659 |
| 1660 #endif // defined TARGET_ARCH_ARM | 1660 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |