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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
432 }; | 432 }; |
433 | 433 |
434 | 434 |
435 enum Cop1Function { | 435 enum Cop1Function { |
436 COP1_ADD = 0x00, | 436 COP1_ADD = 0x00, |
437 COP1_SUB = 0x01, | 437 COP1_SUB = 0x01, |
438 COP1_MUL = 0x02, | 438 COP1_MUL = 0x02, |
439 COP1_DIV = 0x03, | 439 COP1_DIV = 0x03, |
440 COP1_SQRT = 0x04, | 440 COP1_SQRT = 0x04, |
441 COP1_MOV = 0x06, | 441 COP1_MOV = 0x06, |
| 442 COP1_NEG = 0x07, |
442 COP1_CVT_S = 0x20, | 443 COP1_CVT_S = 0x20, |
443 COP1_CVT_D = 0x21, | 444 COP1_CVT_D = 0x21, |
444 COP1_CVT_W = 0x24, | 445 COP1_CVT_W = 0x24, |
445 COP1_C_F = 0x30, | 446 COP1_C_F = 0x30, |
446 COP1_C_UN = 0x31, | 447 COP1_C_UN = 0x31, |
447 COP1_C_EQ = 0x32, | 448 COP1_C_EQ = 0x32, |
448 COP1_C_UEQ = 0x33, | 449 COP1_C_UEQ = 0x33, |
449 COP1_C_OLT = 0x34, | 450 COP1_C_OLT = 0x34, |
450 COP1_C_ULT = 0x35, | 451 COP1_C_ULT = 0x35, |
451 COP1_C_OLE = 0x36, | 452 COP1_C_OLE = 0x36, |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
651 #endif // defined(DEBUG) | 652 #endif // defined(DEBUG) |
652 | 653 |
653 private: | 654 private: |
654 DISALLOW_ALLOCATION(); | 655 DISALLOW_ALLOCATION(); |
655 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); | 656 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); |
656 }; | 657 }; |
657 | 658 |
658 } // namespace dart | 659 } // namespace dart |
659 | 660 |
660 #endif // VM_CONSTANTS_MIPS_H_ | 661 #endif // VM_CONSTANTS_MIPS_H_ |
OLD | NEW |