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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
695 void fprem(); | 695 void fprem(); |
696 void fprem1(); | 696 void fprem1(); |
697 | 697 |
698 void fxch(int i = 1); | 698 void fxch(int i = 1); |
699 void fincstp(); | 699 void fincstp(); |
700 void ffree(int i = 0); | 700 void ffree(int i = 0); |
701 | 701 |
702 void ftst(); | 702 void ftst(); |
703 void fucomp(int i); | 703 void fucomp(int i); |
704 void fucompp(); | 704 void fucompp(); |
| 705 void fucomi(int i); |
705 void fucomip(); | 706 void fucomip(); |
706 void fcompp(); | 707 void fcompp(); |
707 void fnstsw_ax(); | 708 void fnstsw_ax(); |
708 void fwait(); | 709 void fwait(); |
709 void fnclex(); | 710 void fnclex(); |
710 | 711 |
711 void frndint(); | 712 void frndint(); |
712 | 713 |
713 void sahf(); | 714 void sahf(); |
714 void setcc(Condition cc, Register reg); | 715 void setcc(Condition cc, Register reg); |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
874 private: | 875 private: |
875 Assembler* assembler_; | 876 Assembler* assembler_; |
876 #ifdef DEBUG | 877 #ifdef DEBUG |
877 int space_before_; | 878 int space_before_; |
878 #endif | 879 #endif |
879 }; | 880 }; |
880 | 881 |
881 } } // namespace v8::internal | 882 } } // namespace v8::internal |
882 | 883 |
883 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 884 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
OLD | NEW |