| 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 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 void friz(const DoubleRegister frt, const DoubleRegister frb, | 1042 void friz(const DoubleRegister frt, const DoubleRegister frb, |
| 1043 RCBit rc = LeaveRC); | 1043 RCBit rc = LeaveRC); |
| 1044 void frip(const DoubleRegister frt, const DoubleRegister frb, | 1044 void frip(const DoubleRegister frt, const DoubleRegister frb, |
| 1045 RCBit rc = LeaveRC); | 1045 RCBit rc = LeaveRC); |
| 1046 void frim(const DoubleRegister frt, const DoubleRegister frb, | 1046 void frim(const DoubleRegister frt, const DoubleRegister frb, |
| 1047 RCBit rc = LeaveRC); | 1047 RCBit rc = LeaveRC); |
| 1048 void frsp(const DoubleRegister frt, const DoubleRegister frb, | 1048 void frsp(const DoubleRegister frt, const DoubleRegister frb, |
| 1049 RCBit rc = LeaveRC); | 1049 RCBit rc = LeaveRC); |
| 1050 void fcfid(const DoubleRegister frt, const DoubleRegister frb, | 1050 void fcfid(const DoubleRegister frt, const DoubleRegister frb, |
| 1051 RCBit rc = LeaveRC); | 1051 RCBit rc = LeaveRC); |
| 1052 void fcfids(const DoubleRegister frt, const DoubleRegister frb, |
| 1053 RCBit rc = LeaveRC); |
| 1052 void fctid(const DoubleRegister frt, const DoubleRegister frb, | 1054 void fctid(const DoubleRegister frt, const DoubleRegister frb, |
| 1053 RCBit rc = LeaveRC); | 1055 RCBit rc = LeaveRC); |
| 1054 void fctidz(const DoubleRegister frt, const DoubleRegister frb, | 1056 void fctidz(const DoubleRegister frt, const DoubleRegister frb, |
| 1055 RCBit rc = LeaveRC); | 1057 RCBit rc = LeaveRC); |
| 1056 void fsel(const DoubleRegister frt, const DoubleRegister fra, | 1058 void fsel(const DoubleRegister frt, const DoubleRegister fra, |
| 1057 const DoubleRegister frc, const DoubleRegister frb, | 1059 const DoubleRegister frc, const DoubleRegister frb, |
| 1058 RCBit rc = LeaveRC); | 1060 RCBit rc = LeaveRC); |
| 1059 void fneg(const DoubleRegister frt, const DoubleRegister frb, | 1061 void fneg(const DoubleRegister frt, const DoubleRegister frb, |
| 1060 RCBit rc = LeaveRC); | 1062 RCBit rc = LeaveRC); |
| 1061 void mtfsfi(int bf, int immediate, RCBit rc = LeaveRC); | 1063 void mtfsfi(int bf, int immediate, RCBit rc = LeaveRC); |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1445 | 1447 |
| 1446 | 1448 |
| 1447 class EnsureSpace BASE_EMBEDDED { | 1449 class EnsureSpace BASE_EMBEDDED { |
| 1448 public: | 1450 public: |
| 1449 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } | 1451 explicit EnsureSpace(Assembler* assembler) { assembler->CheckBuffer(); } |
| 1450 }; | 1452 }; |
| 1451 } // namespace internal | 1453 } // namespace internal |
| 1452 } // namespace v8 | 1454 } // namespace v8 |
| 1453 | 1455 |
| 1454 #endif // V8_PPC_ASSEMBLER_PPC_H_ | 1456 #endif // V8_PPC_ASSEMBLER_PPC_H_ |
| OLD | NEW |