| 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 are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // 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 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 | 1052 |
| 1053 void fild_s(const Operand& adr); | 1053 void fild_s(const Operand& adr); |
| 1054 void fild_d(const Operand& adr); | 1054 void fild_d(const Operand& adr); |
| 1055 | 1055 |
| 1056 void fist_s(const Operand& adr); | 1056 void fist_s(const Operand& adr); |
| 1057 | 1057 |
| 1058 void fistp_s(const Operand& adr); | 1058 void fistp_s(const Operand& adr); |
| 1059 void fistp_d(const Operand& adr); | 1059 void fistp_d(const Operand& adr); |
| 1060 | 1060 |
| 1061 void fisttp_s(const Operand& adr); | 1061 void fisttp_s(const Operand& adr); |
| 1062 void fisttp_d(const Operand& adr); |
| 1062 | 1063 |
| 1063 void fabs(); | 1064 void fabs(); |
| 1064 void fchs(); | 1065 void fchs(); |
| 1065 | 1066 |
| 1066 void fadd(int i); | 1067 void fadd(int i); |
| 1067 void fsub(int i); | 1068 void fsub(int i); |
| 1068 void fmul(int i); | 1069 void fmul(int i); |
| 1069 void fdiv(int i); | 1070 void fdiv(int i); |
| 1070 | 1071 |
| 1071 void fisub_s(const Operand& adr); | 1072 void fisub_s(const Operand& adr); |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1402 private: | 1403 private: |
| 1403 Assembler* assembler_; | 1404 Assembler* assembler_; |
| 1404 #ifdef DEBUG | 1405 #ifdef DEBUG |
| 1405 int space_before_; | 1406 int space_before_; |
| 1406 #endif | 1407 #endif |
| 1407 }; | 1408 }; |
| 1408 | 1409 |
| 1409 } } // namespace v8::internal | 1410 } } // namespace v8::internal |
| 1410 | 1411 |
| 1411 #endif // V8_X64_ASSEMBLER_X64_H_ | 1412 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |