| 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 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 949 void fchs(); | 949 void fchs(); |
| 950 void fcos(); | 950 void fcos(); |
| 951 void fsin(); | 951 void fsin(); |
| 952 void fptan(); | 952 void fptan(); |
| 953 void fyl2x(); | 953 void fyl2x(); |
| 954 void f2xm1(); | 954 void f2xm1(); |
| 955 void fscale(); | 955 void fscale(); |
| 956 void fninit(); | 956 void fninit(); |
| 957 | 957 |
| 958 void fadd(int i); | 958 void fadd(int i); |
| 959 void fadd_i(int i); |
| 959 void fsub(int i); | 960 void fsub(int i); |
| 961 void fsub_i(int i); |
| 960 void fmul(int i); | 962 void fmul(int i); |
| 961 void fmul_i(int i); | 963 void fmul_i(int i); |
| 962 void fdiv(int i); | 964 void fdiv(int i); |
| 965 void fdiv_i(int i); |
| 963 | 966 |
| 964 void fisub_s(const Operand& adr); | 967 void fisub_s(const Operand& adr); |
| 965 | 968 |
| 966 void faddp(int i = 1); | 969 void faddp(int i = 1); |
| 967 void fsubp(int i = 1); | 970 void fsubp(int i = 1); |
| 968 void fsubrp(int i = 1); | 971 void fsubrp(int i = 1); |
| 969 void fmulp(int i = 1); | 972 void fmulp(int i = 1); |
| 970 void fdivp(int i = 1); | 973 void fdivp(int i = 1); |
| 971 void fprem(); | 974 void fprem(); |
| 972 void fprem1(); | 975 void fprem1(); |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 private: | 1234 private: |
| 1232 Assembler* assembler_; | 1235 Assembler* assembler_; |
| 1233 #ifdef DEBUG | 1236 #ifdef DEBUG |
| 1234 int space_before_; | 1237 int space_before_; |
| 1235 #endif | 1238 #endif |
| 1236 }; | 1239 }; |
| 1237 | 1240 |
| 1238 } } // namespace v8::internal | 1241 } } // namespace v8::internal |
| 1239 | 1242 |
| 1240 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1243 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |