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

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

Issue 14426006: Rename dart:typeddata to dart:typed_data. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 | « runtime/vm/intrinsifier_ia32.cc ('k') | runtime/vm/intrinsifier_x64.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_MIPS. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS.
6 #if defined(TARGET_ARCH_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
7 7
8 #include "vm/intrinsifier.h" 8 #include "vm/intrinsifier.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 bool Intrinsifier::GrowableArray_add(Assembler* assembler) { 78 bool Intrinsifier::GrowableArray_add(Assembler* assembler) {
79 return false; 79 return false;
80 } 80 }
81 81
82 82
83 bool Intrinsifier::TypedData_getLength(Assembler* assembler) { 83 bool Intrinsifier::TypedData_getLength(Assembler* assembler) {
84 return false; 84 return false;
85 } 85 }
86 86
87 87
88 #define TYPEDDATA_ALLOCATOR(clazz) \ 88 #define TYPED_DATA_ALLOCATOR(clazz) \
89 bool Intrinsifier::TypedData_##clazz##_new(Assembler* assembler) { \ 89 bool Intrinsifier::TypedData_##clazz##_new(Assembler* assembler) { \
90 return false; \ 90 return false; \
91 } \ 91 } \
92 bool Intrinsifier::TypedData_##clazz##_factory(Assembler* assembler) { \ 92 bool Intrinsifier::TypedData_##clazz##_factory(Assembler* assembler) { \
93 return false; \ 93 return false; \
94 } 94 }
95 CLASS_LIST_TYPED_DATA(TYPEDDATA_ALLOCATOR) 95 CLASS_LIST_TYPED_DATA(TYPED_DATA_ALLOCATOR)
96 #undef TYPEDDATA_ALLOCATOR 96 #undef TYPED_DATA_ALLOCATOR
97 97
98 98
99 bool Intrinsifier::Integer_addFromInteger(Assembler* assembler) { 99 bool Intrinsifier::Integer_addFromInteger(Assembler* assembler) {
100 return false; 100 return false;
101 } 101 }
102 102
103 103
104 bool Intrinsifier::Integer_add(Assembler* assembler) { 104 bool Intrinsifier::Integer_add(Assembler* assembler) {
105 return false; 105 return false;
106 } 106 }
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 } 341 }
342 342
343 343
344 bool Intrinsifier::OneByteString_substringUnchecked(Assembler* assembler) { 344 bool Intrinsifier::OneByteString_substringUnchecked(Assembler* assembler) {
345 return false; 345 return false;
346 } 346 }
347 347
348 } // namespace dart 348 } // namespace dart
349 349
350 #endif // defined TARGET_ARCH_MIPS 350 #endif // defined TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier_ia32.cc ('k') | runtime/vm/intrinsifier_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698