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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 | 922 |
923 void fld1(); | 923 void fld1(); |
924 void fldz(); | 924 void fldz(); |
925 void fldpi(); | 925 void fldpi(); |
926 void fldln2(); | 926 void fldln2(); |
927 | 927 |
928 void fld_s(const Operand& adr); | 928 void fld_s(const Operand& adr); |
929 void fld_d(const Operand& adr); | 929 void fld_d(const Operand& adr); |
930 | 930 |
931 void fstp_s(const Operand& adr); | 931 void fstp_s(const Operand& adr); |
| 932 void fst_s(const Operand& adr); |
932 void fstp_d(const Operand& adr); | 933 void fstp_d(const Operand& adr); |
933 void fst_d(const Operand& adr); | 934 void fst_d(const Operand& adr); |
934 | 935 |
935 void fild_s(const Operand& adr); | 936 void fild_s(const Operand& adr); |
936 void fild_d(const Operand& adr); | 937 void fild_d(const Operand& adr); |
937 | 938 |
938 void fist_s(const Operand& adr); | 939 void fist_s(const Operand& adr); |
939 | 940 |
940 void fistp_s(const Operand& adr); | 941 void fistp_s(const Operand& adr); |
941 void fistp_d(const Operand& adr); | 942 void fistp_d(const Operand& adr); |
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1230 private: | 1231 private: |
1231 Assembler* assembler_; | 1232 Assembler* assembler_; |
1232 #ifdef DEBUG | 1233 #ifdef DEBUG |
1233 int space_before_; | 1234 int space_before_; |
1234 #endif | 1235 #endif |
1235 }; | 1236 }; |
1236 | 1237 |
1237 } } // namespace v8::internal | 1238 } } // namespace v8::internal |
1238 | 1239 |
1239 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1240 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
OLD | NEW |