| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 bool Intrinsifier::Double_equal(Assembler* assembler) { | 228 bool Intrinsifier::Double_equal(Assembler* assembler) { |
| 229 return false; | 229 return false; |
| 230 } | 230 } |
| 231 | 231 |
| 232 | 232 |
| 233 bool Intrinsifier::Double_lessEqualThan(Assembler* assembler) { | 233 bool Intrinsifier::Double_lessEqualThan(Assembler* assembler) { |
| 234 return false; | 234 return false; |
| 235 } | 235 } |
| 236 | 236 |
| 237 | 237 |
| 238 bool Intrinsifier::Double_toDouble(Assembler* assembler) { | |
| 239 return false; | |
| 240 } | |
| 241 | |
| 242 bool Intrinsifier::Double_add(Assembler* assembler) { | 238 bool Intrinsifier::Double_add(Assembler* assembler) { |
| 243 return false; | 239 return false; |
| 244 } | 240 } |
| 245 | 241 |
| 246 | 242 |
| 247 bool Intrinsifier::Double_mul(Assembler* assembler) { | 243 bool Intrinsifier::Double_mul(Assembler* assembler) { |
| 248 return false; | 244 return false; |
| 249 } | 245 } |
| 250 | 246 |
| 251 | 247 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 } | 320 } |
| 325 | 321 |
| 326 | 322 |
| 327 bool Intrinsifier::String_getIsEmpty(Assembler* assembler) { | 323 bool Intrinsifier::String_getIsEmpty(Assembler* assembler) { |
| 328 return false; | 324 return false; |
| 329 } | 325 } |
| 330 | 326 |
| 331 } // namespace dart | 327 } // namespace dart |
| 332 | 328 |
| 333 #endif // defined TARGET_ARCH_ARM | 329 #endif // defined TARGET_ARCH_ARM |
| OLD | NEW |