| 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 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 | 682 |
| 683 void fld1(); | 683 void fld1(); |
| 684 void fldz(); | 684 void fldz(); |
| 685 | 685 |
| 686 void fld_s(const Operand& adr); | 686 void fld_s(const Operand& adr); |
| 687 void fld_d(const Operand& adr); | 687 void fld_d(const Operand& adr); |
| 688 | 688 |
| 689 void fstp_s(const Operand& adr); | 689 void fstp_s(const Operand& adr); |
| 690 void fstp_d(const Operand& adr); | 690 void fstp_d(const Operand& adr); |
| 691 | 691 |
| 692 void fstp(int index); |
| 693 |
| 692 void fild_s(const Operand& adr); | 694 void fild_s(const Operand& adr); |
| 693 void fild_d(const Operand& adr); | 695 void fild_d(const Operand& adr); |
| 694 | 696 |
| 695 void fist_s(const Operand& adr); | 697 void fist_s(const Operand& adr); |
| 696 | 698 |
| 697 void fistp_s(const Operand& adr); | 699 void fistp_s(const Operand& adr); |
| 698 void fistp_d(const Operand& adr); | 700 void fistp_d(const Operand& adr); |
| 699 | 701 |
| 700 void fisttp_s(const Operand& adr); | 702 void fisttp_s(const Operand& adr); |
| 701 void fisttp_d(const Operand& adr); | 703 void fisttp_d(const Operand& adr); |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 private: | 908 private: |
| 907 Assembler* assembler_; | 909 Assembler* assembler_; |
| 908 #ifdef DEBUG | 910 #ifdef DEBUG |
| 909 int space_before_; | 911 int space_before_; |
| 910 #endif | 912 #endif |
| 911 }; | 913 }; |
| 912 | 914 |
| 913 } } // namespace v8::internal | 915 } } // namespace v8::internal |
| 914 | 916 |
| 915 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 917 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |