| 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 SLT = 42, | 372 SLT = 42, |
| 373 SLTU = 43, | 373 SLTU = 43, |
| 374 TGE = 48, | 374 TGE = 48, |
| 375 TGEU = 49, | 375 TGEU = 49, |
| 376 TLT = 50, | 376 TLT = 50, |
| 377 TLTU = 51, | 377 TLTU = 51, |
| 378 TEQ = 52, | 378 TEQ = 52, |
| 379 TNE = 54, | 379 TNE = 54, |
| 380 | 380 |
| 381 // SPECIAL2 opcodes. | 381 // SPECIAL2 opcodes. |
| 382 MADD = 0, |
| 383 MADDU = 1, |
| 382 CLZ = 32, | 384 CLZ = 32, |
| 383 CLO = 33, | 385 CLO = 33, |
| 384 }; | 386 }; |
| 385 | 387 |
| 386 | 388 |
| 387 enum RtRegImm { | 389 enum RtRegImm { |
| 388 BLTZ = 0, | 390 BLTZ = 0, |
| 389 BGEZ = 1, | 391 BGEZ = 1, |
| 390 BLTZL = 2, | 392 BLTZL = 2, |
| 391 BGEZL = 3, | 393 BGEZL = 3, |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 #endif // defined(DEBUG) | 593 #endif // defined(DEBUG) |
| 592 | 594 |
| 593 private: | 595 private: |
| 594 DISALLOW_ALLOCATION(); | 596 DISALLOW_ALLOCATION(); |
| 595 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); | 597 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); |
| 596 }; | 598 }; |
| 597 | 599 |
| 598 } // namespace dart | 600 } // namespace dart |
| 599 | 601 |
| 600 #endif // VM_CONSTANTS_MIPS_H_ | 602 #endif // VM_CONSTANTS_MIPS_H_ |
| OLD | NEW |