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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 }; | 401 }; |
402 | 402 |
403 | 403 |
404 enum Cop1Function { | 404 enum Cop1Function { |
405 COP1_ADD = 0x00, | 405 COP1_ADD = 0x00, |
406 COP1_SUB = 0x01, | 406 COP1_SUB = 0x01, |
407 COP1_MUL = 0x02, | 407 COP1_MUL = 0x02, |
408 COP1_DIV = 0x03, | 408 COP1_DIV = 0x03, |
409 COP1_SQRT = 0x04, | 409 COP1_SQRT = 0x04, |
410 COP1_MOV = 0x06, | 410 COP1_MOV = 0x06, |
| 411 COP1_CVT_S = 0x20, |
411 COP1_CVT_D = 0x21, | 412 COP1_CVT_D = 0x21, |
412 COP1_CVT_W = 0x24, | 413 COP1_CVT_W = 0x24, |
413 COP1_C_F = 0x30, | 414 COP1_C_F = 0x30, |
414 COP1_C_UN = 0x31, | 415 COP1_C_UN = 0x31, |
415 COP1_C_EQ = 0x32, | 416 COP1_C_EQ = 0x32, |
416 COP1_C_UEQ = 0x33, | 417 COP1_C_UEQ = 0x33, |
417 COP1_C_OLT = 0x34, | 418 COP1_C_OLT = 0x34, |
418 COP1_C_ULT = 0x35, | 419 COP1_C_ULT = 0x35, |
419 COP1_C_OLE = 0x36, | 420 COP1_C_OLE = 0x36, |
420 COP1_C_ULE = 0x37, | 421 COP1_C_ULE = 0x37, |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
589 #endif // defined(DEBUG) | 590 #endif // defined(DEBUG) |
590 | 591 |
591 private: | 592 private: |
592 DISALLOW_ALLOCATION(); | 593 DISALLOW_ALLOCATION(); |
593 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); | 594 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); |
594 }; | 595 }; |
595 | 596 |
596 } // namespace dart | 597 } // namespace dart |
597 | 598 |
598 #endif // VM_CONSTANTS_MIPS_H_ | 599 #endif // VM_CONSTANTS_MIPS_H_ |
OLD | NEW |