| 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 #ifndef VM_CONSTANTS_MIPS_H_ | 5 #ifndef VM_CONSTANTS_MIPS_H_ |
| 6 #define VM_CONSTANTS_MIPS_H_ | 6 #define VM_CONSTANTS_MIPS_H_ |
| 7 | 7 |
| 8 #include "platform/assert.h" | 8 #include "platform/assert.h" |
| 9 | 9 |
| 10 namespace dart { | 10 namespace dart { |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 BGEZAL = 17, | 373 BGEZAL = 17, |
| 374 BLTZALL = 18, | 374 BLTZALL = 18, |
| 375 BGEZALL = 19, | 375 BGEZALL = 19, |
| 376 SYNCI = 31, | 376 SYNCI = 31, |
| 377 }; | 377 }; |
| 378 | 378 |
| 379 | 379 |
| 380 enum Cop1Function { | 380 enum Cop1Function { |
| 381 COP1_ADD = 0, | 381 COP1_ADD = 0, |
| 382 COP1_MOV = 6, | 382 COP1_MOV = 6, |
| 383 COP1_CVT_D = 0b100001, |
| 383 COP1_C_F = 0b110000, | 384 COP1_C_F = 0b110000, |
| 384 COP1_C_UN = 0b110001, | 385 COP1_C_UN = 0b110001, |
| 385 COP1_C_EQ = 0b110010, | 386 COP1_C_EQ = 0b110010, |
| 386 COP1_C_UEQ = 0b110011, | 387 COP1_C_UEQ = 0b110011, |
| 387 COP1_C_OLT = 0b110100, | 388 COP1_C_OLT = 0b110100, |
| 388 COP1_C_ULT = 0b110101, | 389 COP1_C_ULT = 0b110101, |
| 389 COP1_C_OLE = 0b110110, | 390 COP1_C_OLE = 0b110110, |
| 390 COP1_C_ULE = 0b110111, | 391 COP1_C_ULE = 0b110111, |
| 391 }; | 392 }; |
| 392 | 393 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 #endif // defined(DEBUG) | 557 #endif // defined(DEBUG) |
| 557 | 558 |
| 558 private: | 559 private: |
| 559 DISALLOW_ALLOCATION(); | 560 DISALLOW_ALLOCATION(); |
| 560 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); | 561 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); |
| 561 }; | 562 }; |
| 562 | 563 |
| 563 } // namespace dart | 564 } // namespace dart |
| 564 | 565 |
| 565 #endif // VM_CONSTANTS_MIPS_H_ | 566 #endif // VM_CONSTANTS_MIPS_H_ |
| OLD | NEW |