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 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1056 | 1056 |
1057 // Compare Instructions | 1057 // Compare Instructions |
1058 void chi(Register r, const Operand& opnd); | 1058 void chi(Register r, const Operand& opnd); |
1059 void cghi(Register r, const Operand& opnd); | 1059 void cghi(Register r, const Operand& opnd); |
1060 | 1060 |
1061 // Compare Logical Instructions | 1061 // Compare Logical Instructions |
1062 void cli(const MemOperand& mem, const Operand& imm); | 1062 void cli(const MemOperand& mem, const Operand& imm); |
1063 void cliy(const MemOperand& mem, const Operand& imm); | 1063 void cliy(const MemOperand& mem, const Operand& imm); |
1064 void clc(const MemOperand& opnd1, const MemOperand& opnd2, Length length); | 1064 void clc(const MemOperand& opnd1, const MemOperand& opnd2, Length length); |
1065 | 1065 |
| 1066 // Compare and Swap Instructions |
| 1067 void cs(Register r1, Register r2, const MemOperand& src); |
| 1068 void csy(Register r1, Register r2, const MemOperand& src); |
| 1069 void csg(Register r1, Register r2, const MemOperand& src); |
| 1070 |
1066 // Test Under Mask Instructions | 1071 // Test Under Mask Instructions |
1067 void tm(const MemOperand& mem, const Operand& imm); | 1072 void tm(const MemOperand& mem, const Operand& imm); |
1068 void tmy(const MemOperand& mem, const Operand& imm); | 1073 void tmy(const MemOperand& mem, const Operand& imm); |
1069 | 1074 |
1070 // Rotate Instructions | 1075 // Rotate Instructions |
1071 void rll(Register r1, Register r3, Register opnd); | 1076 void rll(Register r1, Register r3, Register opnd); |
1072 void rll(Register r1, Register r3, const Operand& opnd); | 1077 void rll(Register r1, Register r3, const Operand& opnd); |
1073 void rll(Register r1, Register r3, Register r2, const Operand& opnd); | 1078 void rll(Register r1, Register r3, Register r2, const Operand& opnd); |
1074 void rllg(Register r1, Register r3, const Operand& opnd); | 1079 void rllg(Register r1, Register r3, const Operand& opnd); |
1075 void rllg(Register r1, Register r3, const Register opnd); | 1080 void rllg(Register r1, Register r3, const Register opnd); |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1467 | 1472 |
1468 class EnsureSpace BASE_EMBEDDED { | 1473 class EnsureSpace BASE_EMBEDDED { |
1469 public: | 1474 public: |
1470 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1475 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
1471 }; | 1476 }; |
1472 | 1477 |
1473 } // namespace internal | 1478 } // namespace internal |
1474 } // namespace v8 | 1479 } // namespace v8 |
1475 | 1480 |
1476 #endif // V8_S390_ASSEMBLER_S390_H_ | 1481 #endif // V8_S390_ASSEMBLER_S390_H_ |
OLD | NEW |