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

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

Issue 16272004: Implements intrinsics for MIPS. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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
« no previous file with comments | « runtime/vm/assembler_mips_test.cc ('k') | runtime/vm/disassembler_mips.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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
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
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_
OLDNEW
« no previous file with comments | « runtime/vm/assembler_mips_test.cc ('k') | runtime/vm/disassembler_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698