| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 namespace dart { | 10 namespace dart { |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 bool Intrinsifier::Integer_modulo(Assembler* assembler) { | 118 bool Intrinsifier::Integer_modulo(Assembler* assembler) { |
| 119 return false; | 119 return false; |
| 120 } | 120 } |
| 121 | 121 |
| 122 | 122 |
| 123 bool Intrinsifier::Integer_truncDivide(Assembler* assembler) { | 123 bool Intrinsifier::Integer_truncDivide(Assembler* assembler) { |
| 124 return false; | 124 return false; |
| 125 } | 125 } |
| 126 | 126 |
| 127 | 127 |
| 128 bool Intrinsifier::Integer_negate(Assembler* assembler) { | |
| 129 return false; | |
| 130 } | |
| 131 | |
| 132 | |
| 133 bool Intrinsifier::Integer_bitAndFromInteger(Assembler* assembler) { | 128 bool Intrinsifier::Integer_bitAndFromInteger(Assembler* assembler) { |
| 134 return false; | 129 return false; |
| 135 } | 130 } |
| 136 | 131 |
| 137 | 132 |
| 138 bool Intrinsifier::Integer_bitAnd(Assembler* assembler) { | 133 bool Intrinsifier::Integer_bitAnd(Assembler* assembler) { |
| 139 return false; | 134 return false; |
| 140 } | 135 } |
| 141 | 136 |
| 142 | 137 |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 } | 319 } |
| 325 | 320 |
| 326 | 321 |
| 327 bool Intrinsifier::String_isEmpty(Assembler* assembler) { | 322 bool Intrinsifier::String_isEmpty(Assembler* assembler) { |
| 328 return false; | 323 return false; |
| 329 } | 324 } |
| 330 | 325 |
| 331 } // namespace dart | 326 } // namespace dart |
| 332 | 327 |
| 333 #endif // defined TARGET_ARCH_ARM | 328 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |