Chromium Code Reviews| 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 |