| 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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 void ror_cl(Register dst) { ror_cl(Operand(dst)); } | 724 void ror_cl(Register dst) { ror_cl(Operand(dst)); } |
| 725 void ror_cl(const Operand& dst); | 725 void ror_cl(const Operand& dst); |
| 726 | 726 |
| 727 void sar(Register dst, uint8_t imm8) { sar(Operand(dst), imm8); } | 727 void sar(Register dst, uint8_t imm8) { sar(Operand(dst), imm8); } |
| 728 void sar(const Operand& dst, uint8_t imm8); | 728 void sar(const Operand& dst, uint8_t imm8); |
| 729 void sar_cl(Register dst) { sar_cl(Operand(dst)); } | 729 void sar_cl(Register dst) { sar_cl(Operand(dst)); } |
| 730 void sar_cl(const Operand& dst); | 730 void sar_cl(const Operand& dst); |
| 731 | 731 |
| 732 void sbb(Register dst, const Operand& src); | 732 void sbb(Register dst, const Operand& src); |
| 733 | 733 |
| 734 void shld(Register dst, Register src) { shld(dst, Operand(src)); } | 734 void shld(Register dst, Register src, uint8_t shift); |
| 735 void shld(Register dst, const Operand& src); | 735 void shld_cl(Register dst, Register src); |
| 736 | 736 |
| 737 void shl(Register dst, uint8_t imm8) { shl(Operand(dst), imm8); } | 737 void shl(Register dst, uint8_t imm8) { shl(Operand(dst), imm8); } |
| 738 void shl(const Operand& dst, uint8_t imm8); | 738 void shl(const Operand& dst, uint8_t imm8); |
| 739 void shl_cl(Register dst) { shl_cl(Operand(dst)); } | 739 void shl_cl(Register dst) { shl_cl(Operand(dst)); } |
| 740 void shl_cl(const Operand& dst); | 740 void shl_cl(const Operand& dst); |
| 741 | 741 |
| 742 void shrd(Register dst, Register src) { shrd(dst, Operand(src)); } | 742 void shrd(Register dst, Register src) { shrd(dst, Operand(src)); } |
| 743 void shrd(Register dst, const Operand& src); | 743 void shrd(Register dst, const Operand& src); |
| 744 | 744 |
| 745 void shr(Register dst, uint8_t imm8) { shr(Operand(dst), imm8); } | 745 void shr(Register dst, uint8_t imm8) { shr(Operand(dst), imm8); } |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 Assembler* assembler_; | 1079 Assembler* assembler_; |
| 1080 #ifdef DEBUG | 1080 #ifdef DEBUG |
| 1081 int space_before_; | 1081 int space_before_; |
| 1082 #endif | 1082 #endif |
| 1083 }; | 1083 }; |
| 1084 | 1084 |
| 1085 } // namespace internal | 1085 } // namespace internal |
| 1086 } // namespace v8 | 1086 } // namespace v8 |
| 1087 | 1087 |
| 1088 #endif // V8_X87_ASSEMBLER_X87_H_ | 1088 #endif // V8_X87_ASSEMBLER_X87_H_ |
| OLD | NEW |