Chromium Code Reviews| 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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 689 void fprem(); | 689 void fprem(); |
| 690 void fprem1(); | 690 void fprem1(); |
| 691 | 691 |
| 692 void fxch(int i = 1); | 692 void fxch(int i = 1); |
| 693 void fincstp(); | 693 void fincstp(); |
| 694 void ffree(int i = 0); | 694 void ffree(int i = 0); |
| 695 | 695 |
| 696 void ftst(); | 696 void ftst(); |
| 697 void fucomp(int i); | 697 void fucomp(int i); |
| 698 void fucompp(); | 698 void fucompp(); |
| 699 void fucomip(); | |
|
Søren Thygesen Gjesse
2009/10/21 11:53:23
I this instruction supported by the disassembler?
| |
| 699 void fcompp(); | 700 void fcompp(); |
| 700 void fnstsw_ax(); | 701 void fnstsw_ax(); |
| 701 void fwait(); | 702 void fwait(); |
| 702 void fnclex(); | 703 void fnclex(); |
| 703 | 704 |
| 704 void frndint(); | 705 void frndint(); |
| 705 | 706 |
| 706 void sahf(); | 707 void sahf(); |
| 707 void setcc(Condition cc, Register reg); | 708 void setcc(Condition cc, Register reg); |
| 708 | 709 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 865 private: | 866 private: |
| 866 Assembler* assembler_; | 867 Assembler* assembler_; |
| 867 #ifdef DEBUG | 868 #ifdef DEBUG |
| 868 int space_before_; | 869 int space_before_; |
| 869 #endif | 870 #endif |
| 870 }; | 871 }; |
| 871 | 872 |
| 872 } } // namespace v8::internal | 873 } } // namespace v8::internal |
| 873 | 874 |
| 874 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 875 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |