Chromium Code Reviews| 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 namespace dart { | 8 namespace dart { |
| 9 | 9 |
| 10 enum Register { | 10 enum Register { |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 254 TGE = 48, | 254 TGE = 48, |
| 255 TGEU = 49, | 255 TGEU = 49, |
| 256 TLT = 50, | 256 TLT = 50, |
| 257 TLTU = 51, | 257 TLTU = 51, |
| 258 TEQ = 52, | 258 TEQ = 52, |
| 259 TNE = 54, | 259 TNE = 54, |
| 260 | 260 |
| 261 // SPECIAL2 opcodes. | 261 // SPECIAL2 opcodes. |
| 262 CLZ = 32, | 262 CLZ = 32, |
| 263 CLO = 33, | 263 CLO = 33, |
| 264 | |
| 265 // SPECIAL3 opcodes. | |
| 266 EXT = 0, | |
| 267 INS = 4, | |
|
regis
2013/03/11 20:14:01
Will there be other SPECIAL3 opcodes? If not, we m
zra
2013/03/11 20:25:01
I don't think so. I have removed it.
| |
| 264 }; | 268 }; |
| 265 | 269 |
| 266 | 270 |
| 267 enum RtRegImm { | 271 enum RtRegImm { |
| 268 BLTZ = 0, | 272 BLTZ = 0, |
| 269 BGEZ = 1, | 273 BGEZ = 1, |
| 270 BLTZL = 2, | 274 BLTZL = 2, |
| 271 BGEZL = 3, | 275 BGEZL = 3, |
| 272 TGEI = 8, | 276 TGEI = 8, |
| 273 TGEIU = 9, | 277 TGEIU = 9, |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 351 } | 355 } |
| 352 | 356 |
| 353 private: | 357 private: |
| 354 DISALLOW_ALLOCATION(); | 358 DISALLOW_ALLOCATION(); |
| 355 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); | 359 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); |
| 356 }; | 360 }; |
| 357 | 361 |
| 358 } // namespace dart | 362 } // namespace dart |
| 359 | 363 |
| 360 #endif // VM_CONSTANTS_MIPS_H_ | 364 #endif // VM_CONSTANTS_MIPS_H_ |
| OLD | NEW |