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

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

Issue 15144004: Implements int to double conversion instructions for MIPS simulator, assembler, disassembler. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 BGEZAL = 17, 373 BGEZAL = 17,
374 BLTZALL = 18, 374 BLTZALL = 18,
375 BGEZALL = 19, 375 BGEZALL = 19,
376 SYNCI = 31, 376 SYNCI = 31,
377 }; 377 };
378 378
379 379
380 enum Cop1Function { 380 enum Cop1Function {
381 COP1_ADD = 0, 381 COP1_ADD = 0,
382 COP1_MOV = 6, 382 COP1_MOV = 6,
383 COP1_CVT_D = 0b100001,
383 COP1_C_F = 0b110000, 384 COP1_C_F = 0b110000,
384 COP1_C_UN = 0b110001, 385 COP1_C_UN = 0b110001,
385 COP1_C_EQ = 0b110010, 386 COP1_C_EQ = 0b110010,
386 COP1_C_UEQ = 0b110011, 387 COP1_C_UEQ = 0b110011,
387 COP1_C_OLT = 0b110100, 388 COP1_C_OLT = 0b110100,
388 COP1_C_ULT = 0b110101, 389 COP1_C_ULT = 0b110101,
389 COP1_C_OLE = 0b110110, 390 COP1_C_OLE = 0b110110,
390 COP1_C_ULE = 0b110111, 391 COP1_C_ULE = 0b110111,
391 }; 392 };
392 393
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 #endif // defined(DEBUG) 557 #endif // defined(DEBUG)
557 558
558 private: 559 private:
559 DISALLOW_ALLOCATION(); 560 DISALLOW_ALLOCATION();
560 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr); 561 DISALLOW_IMPLICIT_CONSTRUCTORS(Instr);
561 }; 562 };
562 563
563 } // namespace dart 564 } // namespace dart
564 565
565 #endif // VM_CONSTANTS_MIPS_H_ 566 #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