Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: runtime/vm/constants_mips.h

Issue 12519007: Adds MIPS instructions to simulator, assembler, disassembler (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698