| 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 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 void fistp_d(const Operand& adr); | 917 void fistp_d(const Operand& adr); |
| 918 | 918 |
| 919 // The fisttp instructions require SSE3. | 919 // The fisttp instructions require SSE3. |
| 920 void fisttp_s(const Operand& adr); | 920 void fisttp_s(const Operand& adr); |
| 921 void fisttp_d(const Operand& adr); | 921 void fisttp_d(const Operand& adr); |
| 922 | 922 |
| 923 void fabs(); | 923 void fabs(); |
| 924 void fchs(); | 924 void fchs(); |
| 925 void fcos(); | 925 void fcos(); |
| 926 void fsin(); | 926 void fsin(); |
| 927 void fptan(); |
| 927 void fyl2x(); | 928 void fyl2x(); |
| 928 | 929 |
| 929 void fadd(int i); | 930 void fadd(int i); |
| 930 void fsub(int i); | 931 void fsub(int i); |
| 931 void fmul(int i); | 932 void fmul(int i); |
| 932 void fdiv(int i); | 933 void fdiv(int i); |
| 933 | 934 |
| 934 void fisub_s(const Operand& adr); | 935 void fisub_s(const Operand& adr); |
| 935 | 936 |
| 936 void faddp(int i = 1); | 937 void faddp(int i = 1); |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1199 private: | 1200 private: |
| 1200 Assembler* assembler_; | 1201 Assembler* assembler_; |
| 1201 #ifdef DEBUG | 1202 #ifdef DEBUG |
| 1202 int space_before_; | 1203 int space_before_; |
| 1203 #endif | 1204 #endif |
| 1204 }; | 1205 }; |
| 1205 | 1206 |
| 1206 } } // namespace v8::internal | 1207 } } // namespace v8::internal |
| 1207 | 1208 |
| 1208 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1209 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |