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