OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions | 5 // modification, are permitted provided that the following conditions |
6 // are met: | 6 // are met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 1185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1196 void cgdbr(Condition m, Register fixReg, DoubleRegister fltReg); | 1196 void cgdbr(Condition m, Register fixReg, DoubleRegister fltReg); |
1197 void cfebr(Condition m3, Register fixReg, DoubleRegister fltReg); | 1197 void cfebr(Condition m3, Register fixReg, DoubleRegister fltReg); |
1198 void cefbr(Condition m3, DoubleRegister fltReg, Register fixReg); | 1198 void cefbr(Condition m3, DoubleRegister fltReg, Register fixReg); |
1199 | 1199 |
1200 // Floating Point Compare Instructions | 1200 // Floating Point Compare Instructions |
1201 void cdb(DoubleRegister r1, const MemOperand& opnd); | 1201 void cdb(DoubleRegister r1, const MemOperand& opnd); |
1202 void ceb(DoubleRegister r1, const MemOperand& opnd); | 1202 void ceb(DoubleRegister r1, const MemOperand& opnd); |
1203 | 1203 |
1204 // Floating Point Arithmetic Instructions | 1204 // Floating Point Arithmetic Instructions |
1205 void adb(DoubleRegister r1, const MemOperand& opnd); | 1205 void adb(DoubleRegister r1, const MemOperand& opnd); |
| 1206 void aeb(DoubleRegister r1, const MemOperand& opnd); |
1206 void sdb(DoubleRegister r1, const MemOperand& opnd); | 1207 void sdb(DoubleRegister r1, const MemOperand& opnd); |
| 1208 void seb(DoubleRegister r1, const MemOperand& opnd); |
1207 void mdb(DoubleRegister r1, const MemOperand& opnd); | 1209 void mdb(DoubleRegister r1, const MemOperand& opnd); |
| 1210 void meeb(DoubleRegister r1, const MemOperand& opnd); |
1208 void ddb(DoubleRegister r1, const MemOperand& opnd); | 1211 void ddb(DoubleRegister r1, const MemOperand& opnd); |
| 1212 void deb(DoubleRegister r1, const MemOperand& opnd); |
1209 void sqdb(DoubleRegister r1, const MemOperand& opnd); | 1213 void sqdb(DoubleRegister r1, const MemOperand& opnd); |
1210 void ldeb(DoubleRegister r1, const MemOperand& opnd); | 1214 void ldeb(DoubleRegister r1, const MemOperand& opnd); |
1211 | 1215 |
1212 enum FIDBRA_MASK3 { | 1216 enum FIDBRA_MASK3 { |
1213 FIDBRA_CURRENT_ROUNDING_MODE = 0, | 1217 FIDBRA_CURRENT_ROUNDING_MODE = 0, |
1214 FIDBRA_ROUND_TO_NEAREST_AWAY_FROM_0 = 1, | 1218 FIDBRA_ROUND_TO_NEAREST_AWAY_FROM_0 = 1, |
1215 // ... | 1219 // ... |
1216 FIDBRA_ROUND_TOWARD_0 = 5, | 1220 FIDBRA_ROUND_TOWARD_0 = 5, |
1217 FIDBRA_ROUND_TOWARD_POS_INF = 6, | 1221 FIDBRA_ROUND_TOWARD_POS_INF = 6, |
1218 FIDBRA_ROUND_TOWARD_NEG_INF = 7 | 1222 FIDBRA_ROUND_TOWARD_NEG_INF = 7 |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1465 | 1469 |
1466 class EnsureSpace BASE_EMBEDDED { | 1470 class EnsureSpace BASE_EMBEDDED { |
1467 public: | 1471 public: |
1468 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1472 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
1469 }; | 1473 }; |
1470 | 1474 |
1471 } // namespace internal | 1475 } // namespace internal |
1472 } // namespace v8 | 1476 } // namespace v8 |
1473 | 1477 |
1474 #endif // V8_S390_ASSEMBLER_S390_H_ | 1478 #endif // V8_S390_ASSEMBLER_S390_H_ |
OLD | NEW |