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

Unified Diff: runtime/vm/constants_mips.h

Issue 15038008: Impelemnts some FPU arithmetic function for the 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/assembler_mips_test.cc ('k') | runtime/vm/disassembler_mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/constants_mips.h
===================================================================
--- runtime/vm/constants_mips.h (revision 22804)
+++ runtime/vm/constants_mips.h (working copy)
@@ -378,9 +378,14 @@
enum Cop1Function {
- COP1_ADD = 0,
- COP1_MOV = 6,
+ COP1_ADD = 0x00,
+ COP1_SUB = 0x01,
+ COP1_MUL = 0x02,
+ COP1_DIV = 0x03,
+ COP1_SQRT = 0x04,
+ COP1_MOV = 0x06,
COP1_CVT_D = 0x21, // 100001
regis 2013/05/16 21:00:33 You should remove the binary representation commen
zra 2013/05/16 21:15:19 Done.
+ COP1_CVT_W = 0x24, // 100100
COP1_C_F = 0x30, // 110000
COP1_C_UN = 0x31, // 110001
COP1_C_EQ = 0x32, // 110010
« 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