Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(113)

Side by Side Diff: runtime/vm/intrinsifier_arm.cc

Issue 25463004: Fix build: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/intrinsifier_mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/intrinsifier_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698