| 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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 void clrldi(Register dst, Register src, const Operand& val, | 900 void clrldi(Register dst, Register src, const Operand& val, |
| 901 RCBit rc = LeaveRC); | 901 RCBit rc = LeaveRC); |
| 902 void sradi(Register ra, Register rs, int sh, RCBit r = LeaveRC); | 902 void sradi(Register ra, Register rs, int sh, RCBit r = LeaveRC); |
| 903 void srd(Register dst, Register src1, Register src2, RCBit r = LeaveRC); | 903 void srd(Register dst, Register src1, Register src2, RCBit r = LeaveRC); |
| 904 void sld(Register dst, Register src1, Register src2, RCBit r = LeaveRC); | 904 void sld(Register dst, Register src1, Register src2, RCBit r = LeaveRC); |
| 905 void srad(Register dst, Register src1, Register src2, RCBit r = LeaveRC); | 905 void srad(Register dst, Register src1, Register src2, RCBit r = LeaveRC); |
| 906 void rotld(Register ra, Register rs, Register rb, RCBit r = LeaveRC); | 906 void rotld(Register ra, Register rs, Register rb, RCBit r = LeaveRC); |
| 907 void rotldi(Register ra, Register rs, int sh, RCBit r = LeaveRC); | 907 void rotldi(Register ra, Register rs, int sh, RCBit r = LeaveRC); |
| 908 void rotrdi(Register ra, Register rs, int sh, RCBit r = LeaveRC); | 908 void rotrdi(Register ra, Register rs, int sh, RCBit r = LeaveRC); |
| 909 void cntlzd_(Register dst, Register src, RCBit rc = LeaveRC); | 909 void cntlzd_(Register dst, Register src, RCBit rc = LeaveRC); |
| 910 void popcntd(Register dst, Register src); |
| 910 void mulld(Register dst, Register src1, Register src2, OEBit o = LeaveOE, | 911 void mulld(Register dst, Register src1, Register src2, OEBit o = LeaveOE, |
| 911 RCBit r = LeaveRC); | 912 RCBit r = LeaveRC); |
| 912 void divd(Register dst, Register src1, Register src2, OEBit o = LeaveOE, | 913 void divd(Register dst, Register src1, Register src2, OEBit o = LeaveOE, |
| 913 RCBit r = LeaveRC); | 914 RCBit r = LeaveRC); |
| 914 void divdu(Register dst, Register src1, Register src2, OEBit o = LeaveOE, | 915 void divdu(Register dst, Register src1, Register src2, OEBit o = LeaveOE, |
| 915 RCBit r = LeaveRC); | 916 RCBit r = LeaveRC); |
| 916 #endif | 917 #endif |
| 917 | 918 |
| 918 void rlwinm(Register ra, Register rs, int sh, int mb, int me, | 919 void rlwinm(Register ra, Register rs, int sh, int mb, int me, |
| 919 RCBit rc = LeaveRC); | 920 RCBit rc = LeaveRC); |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1445 | 1446 |
| 1446 | 1447 |
| 1447 class EnsureSpace BASE_EMBEDDED { | 1448 class EnsureSpace BASE_EMBEDDED { |
| 1448 public: | 1449 public: |
| 1449 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1450 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
| 1450 }; | 1451 }; |
| 1451 } // namespace internal | 1452 } // namespace internal |
| 1452 } // namespace v8 | 1453 } // namespace v8 |
| 1453 | 1454 |
| 1454 #endif // V8_PPC_ASSEMBLER_PPC_H_ | 1455 #endif // V8_PPC_ASSEMBLER_PPC_H_ |
| OLD | NEW |