| 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 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ARM | 350 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |