| 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 985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 996 void aghik(Register r1, Register r3, const Operand& opnd); | 996 void aghik(Register r1, Register r3, const Operand& opnd); |
| 997 void agr(Register r1, Register r2); | 997 void agr(Register r1, Register r2); |
| 998 void agrk(Register r1, Register r2, Register r3); | 998 void agrk(Register r1, Register r2, Register r3); |
| 999 void agsi(const MemOperand&, const Operand&); | 999 void agsi(const MemOperand&, const Operand&); |
| 1000 | 1000 |
| 1001 // 32-bit Add Logical Instructions | 1001 // 32-bit Add Logical Instructions |
| 1002 void al_z(Register r1, const MemOperand& opnd); | 1002 void al_z(Register r1, const MemOperand& opnd); |
| 1003 void aly(Register r1, const MemOperand& opnd); | 1003 void aly(Register r1, const MemOperand& opnd); |
| 1004 void alfi(Register r1, const Operand& opnd); | 1004 void alfi(Register r1, const Operand& opnd); |
| 1005 void alr(Register r1, Register r2); | 1005 void alr(Register r1, Register r2); |
| 1006 void alcr(Register r1, Register r2); |
| 1006 void alrk(Register r1, Register r2, Register r3); | 1007 void alrk(Register r1, Register r2, Register r3); |
| 1007 | 1008 |
| 1008 // 64-bit Add Logical Instructions | 1009 // 64-bit Add Logical Instructions |
| 1009 void alg(Register r1, const MemOperand& opnd); | 1010 void alg(Register r1, const MemOperand& opnd); |
| 1010 void algfi(Register r1, const Operand& opnd); | 1011 void algfi(Register r1, const Operand& opnd); |
| 1011 void algr(Register r1, Register r2); | 1012 void algr(Register r1, Register r2); |
| 1012 void algrk(Register r1, Register r2, Register r3); | 1013 void algrk(Register r1, Register r2, Register r3); |
| 1013 | 1014 |
| 1014 // 32-bit Subtract Instructions | 1015 // 32-bit Subtract Instructions |
| 1015 void s(Register r1, const MemOperand& opnd); | 1016 void s(Register r1, const MemOperand& opnd); |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1452 | 1453 |
| 1453 class EnsureSpace BASE_EMBEDDED { | 1454 class EnsureSpace BASE_EMBEDDED { |
| 1454 public: | 1455 public: |
| 1455 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1456 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
| 1456 }; | 1457 }; |
| 1457 | 1458 |
| 1458 } // namespace internal | 1459 } // namespace internal |
| 1459 } // namespace v8 | 1460 } // namespace v8 |
| 1460 | 1461 |
| 1461 #endif // V8_S390_ASSEMBLER_S390_H_ | 1462 #endif // V8_S390_ASSEMBLER_S390_H_ |
| OLD | NEW |