| 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 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 void fprem(); | 1042 void fprem(); |
| 1043 void fprem1(); | 1043 void fprem1(); |
| 1044 | 1044 |
| 1045 void fxch(int i = 1); | 1045 void fxch(int i = 1); |
| 1046 void fincstp(); | 1046 void fincstp(); |
| 1047 void ffree(int i = 0); | 1047 void ffree(int i = 0); |
| 1048 | 1048 |
| 1049 void ftst(); | 1049 void ftst(); |
| 1050 void fucomp(int i); | 1050 void fucomp(int i); |
| 1051 void fucompp(); | 1051 void fucompp(); |
| 1052 void fucomi(int i); |
| 1052 void fucomip(); | 1053 void fucomip(); |
| 1053 | 1054 |
| 1054 void fcompp(); | 1055 void fcompp(); |
| 1055 void fnstsw_ax(); | 1056 void fnstsw_ax(); |
| 1056 void fwait(); | 1057 void fwait(); |
| 1057 void fnclex(); | 1058 void fnclex(); |
| 1058 | 1059 |
| 1059 void fsin(); | 1060 void fsin(); |
| 1060 void fcos(); | 1061 void fcos(); |
| 1061 | 1062 |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1364 private: | 1365 private: |
| 1365 Assembler* assembler_; | 1366 Assembler* assembler_; |
| 1366 #ifdef DEBUG | 1367 #ifdef DEBUG |
| 1367 int space_before_; | 1368 int space_before_; |
| 1368 #endif | 1369 #endif |
| 1369 }; | 1370 }; |
| 1370 | 1371 |
| 1371 } } // namespace v8::internal | 1372 } } // namespace v8::internal |
| 1372 | 1373 |
| 1373 #endif // V8_X64_ASSEMBLER_X64_H_ | 1374 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |