| 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 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1039 | 1039 |
| 1040 // Conditional short jump | 1040 // Conditional short jump |
| 1041 void j(Condition cc, NearLabel* L, Hint hint = no_hint); | 1041 void j(Condition cc, NearLabel* L, Hint hint = no_hint); |
| 1042 | 1042 |
| 1043 // Floating-point operations | 1043 // Floating-point operations |
| 1044 void fld(int i); | 1044 void fld(int i); |
| 1045 | 1045 |
| 1046 void fld1(); | 1046 void fld1(); |
| 1047 void fldz(); | 1047 void fldz(); |
| 1048 void fldpi(); | 1048 void fldpi(); |
| 1049 void fldln2(); |
| 1049 | 1050 |
| 1050 void fld_s(const Operand& adr); | 1051 void fld_s(const Operand& adr); |
| 1051 void fld_d(const Operand& adr); | 1052 void fld_d(const Operand& adr); |
| 1052 | 1053 |
| 1053 void fstp_s(const Operand& adr); | 1054 void fstp_s(const Operand& adr); |
| 1054 void fstp_d(const Operand& adr); | 1055 void fstp_d(const Operand& adr); |
| 1055 void fstp(int index); | 1056 void fstp(int index); |
| 1056 | 1057 |
| 1057 void fild_s(const Operand& adr); | 1058 void fild_s(const Operand& adr); |
| 1058 void fild_d(const Operand& adr); | 1059 void fild_d(const Operand& adr); |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1093 void fucomi(int i); | 1094 void fucomi(int i); |
| 1094 void fucomip(); | 1095 void fucomip(); |
| 1095 | 1096 |
| 1096 void fcompp(); | 1097 void fcompp(); |
| 1097 void fnstsw_ax(); | 1098 void fnstsw_ax(); |
| 1098 void fwait(); | 1099 void fwait(); |
| 1099 void fnclex(); | 1100 void fnclex(); |
| 1100 | 1101 |
| 1101 void fsin(); | 1102 void fsin(); |
| 1102 void fcos(); | 1103 void fcos(); |
| 1104 void fyl2x(); |
| 1103 | 1105 |
| 1104 void frndint(); | 1106 void frndint(); |
| 1105 | 1107 |
| 1106 void sahf(); | 1108 void sahf(); |
| 1107 | 1109 |
| 1108 // SSE2 instructions | 1110 // SSE2 instructions |
| 1109 void movd(XMMRegister dst, Register src); | 1111 void movd(XMMRegister dst, Register src); |
| 1110 void movd(Register dst, XMMRegister src); | 1112 void movd(Register dst, XMMRegister src); |
| 1111 void movq(XMMRegister dst, Register src); | 1113 void movq(XMMRegister dst, Register src); |
| 1112 void movq(Register dst, XMMRegister src); | 1114 void movq(Register dst, XMMRegister src); |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1428 private: | 1430 private: |
| 1429 Assembler* assembler_; | 1431 Assembler* assembler_; |
| 1430 #ifdef DEBUG | 1432 #ifdef DEBUG |
| 1431 int space_before_; | 1433 int space_before_; |
| 1432 #endif | 1434 #endif |
| 1433 }; | 1435 }; |
| 1434 | 1436 |
| 1435 } } // namespace v8::internal | 1437 } } // namespace v8::internal |
| 1436 | 1438 |
| 1437 #endif // V8_X64_ASSEMBLER_X64_H_ | 1439 #endif // V8_X64_ASSEMBLER_X64_H_ |
| OLD | NEW |