| 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_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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 bool Intrinsifier::Math_sin(Assembler* assembler) { | 304 bool Intrinsifier::Math_sin(Assembler* assembler) { |
| 305 return false; | 305 return false; |
| 306 } | 306 } |
| 307 | 307 |
| 308 | 308 |
| 309 bool Intrinsifier::Math_cos(Assembler* assembler) { | 309 bool Intrinsifier::Math_cos(Assembler* assembler) { |
| 310 return false; | 310 return false; |
| 311 } | 311 } |
| 312 | 312 |
| 313 | 313 |
| 314 bool Intrinsifier::Random_nextState(Assembler* assembler) { |
| 315 return false; |
| 316 } |
| 317 |
| 318 |
| 314 bool Intrinsifier::Object_equal(Assembler* assembler) { | 319 bool Intrinsifier::Object_equal(Assembler* assembler) { |
| 315 return false; | 320 return false; |
| 316 } | 321 } |
| 317 | 322 |
| 318 | 323 |
| 319 bool Intrinsifier::String_getHashCode(Assembler* assembler) { | 324 bool Intrinsifier::String_getHashCode(Assembler* assembler) { |
| 320 return false; | 325 return false; |
| 321 } | 326 } |
| 322 | 327 |
| 323 | 328 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 351 } | 356 } |
| 352 | 357 |
| 353 | 358 |
| 354 bool Intrinsifier::OneByteString_allocate(Assembler* assembler) { | 359 bool Intrinsifier::OneByteString_allocate(Assembler* assembler) { |
| 355 return false; | 360 return false; |
| 356 } | 361 } |
| 357 | 362 |
| 358 } // namespace dart | 363 } // namespace dart |
| 359 | 364 |
| 360 #endif // defined TARGET_ARCH_MIPS | 365 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |