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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
725 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode); | 725 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode); |
726 | 726 |
727 void movsxbq(Register dst, const Operand& src); | 727 void movsxbq(Register dst, const Operand& src); |
728 void movsxwq(Register dst, const Operand& src); | 728 void movsxwq(Register dst, const Operand& src); |
729 void movsxlq(Register dst, Register src); | 729 void movsxlq(Register dst, Register src); |
730 void movsxlq(Register dst, const Operand& src); | 730 void movsxlq(Register dst, const Operand& src); |
731 void movzxbq(Register dst, const Operand& src); | 731 void movzxbq(Register dst, const Operand& src); |
732 void movzxbl(Register dst, const Operand& src); | 732 void movzxbl(Register dst, const Operand& src); |
733 void movzxwq(Register dst, const Operand& src); | 733 void movzxwq(Register dst, const Operand& src); |
734 void movzxwl(Register dst, const Operand& src); | 734 void movzxwl(Register dst, const Operand& src); |
| 735 void movzxwl(Register dst, Register src); |
735 | 736 |
736 // Repeated moves. | 737 // Repeated moves. |
737 | 738 |
738 void repmovsb(); | 739 void repmovsb(); |
739 void repmovsw(); | 740 void repmovsw(); |
740 void repmovsl(); | 741 void repmovsl(); |
741 void repmovsq(); | 742 void repmovsq(); |
742 | 743 |
743 // Instruction to load from an immediate 64-bit pointer into RAX. | 744 // Instruction to load from an immediate 64-bit pointer into RAX. |
744 void load_rax(void* ptr, RelocInfo::Mode rmode); | 745 void load_rax(void* ptr, RelocInfo::Mode rmode); |
(...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1667 private: | 1668 private: |
1668 Assembler* assembler_; | 1669 Assembler* assembler_; |
1669 #ifdef DEBUG | 1670 #ifdef DEBUG |
1670 int space_before_; | 1671 int space_before_; |
1671 #endif | 1672 #endif |
1672 }; | 1673 }; |
1673 | 1674 |
1674 } } // namespace v8::internal | 1675 } } // namespace v8::internal |
1675 | 1676 |
1676 #endif // V8_X64_ASSEMBLER_X64_H_ | 1677 #endif // V8_X64_ASSEMBLER_X64_H_ |
OLD | NEW |