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 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 // Move the offset of the label location relative to the current | 716 // Move the offset of the label location relative to the current |
717 // position (after the move) to the destination. | 717 // position (after the move) to the destination. |
718 void movl(const Operand& dst, Label* src); | 718 void movl(const Operand& dst, Label* src); |
719 | 719 |
720 // Move sign extended immediate to memory location. | 720 // Move sign extended immediate to memory location. |
721 void movq(const Operand& dst, Immediate value); | 721 void movq(const Operand& dst, Immediate value); |
722 // Instructions to load a 64-bit immediate into a register. | 722 // Instructions to load a 64-bit immediate into a register. |
723 // All 64-bit immediates must have a relocation mode. | 723 // All 64-bit immediates must have a relocation mode. |
724 void movq(Register dst, void* ptr, RelocInfo::Mode rmode); | 724 void movq(Register dst, void* ptr, RelocInfo::Mode rmode); |
725 void movq(Register dst, int64_t value, RelocInfo::Mode rmode); | 725 void movq(Register dst, int64_t value, RelocInfo::Mode rmode); |
726 // Moves the address of the external reference into the register. | |
727 void movq(Register dst, ExternalReference ext); | |
728 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode); | 726 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode); |
729 | 727 |
730 void movsxbq(Register dst, const Operand& src); | 728 void movsxbq(Register dst, const Operand& src); |
731 void movsxwq(Register dst, const Operand& src); | 729 void movsxwq(Register dst, const Operand& src); |
732 void movsxlq(Register dst, Register src); | 730 void movsxlq(Register dst, Register src); |
733 void movsxlq(Register dst, const Operand& src); | 731 void movsxlq(Register dst, const Operand& src); |
734 void movzxbq(Register dst, const Operand& src); | 732 void movzxbq(Register dst, const Operand& src); |
735 void movzxbl(Register dst, const Operand& src); | 733 void movzxbl(Register dst, const Operand& src); |
736 void movzxwq(Register dst, const Operand& src); | 734 void movzxwq(Register dst, const Operand& src); |
737 void movzxwl(Register dst, const Operand& src); | 735 void movzxwl(Register dst, const Operand& src); |
(...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1698 private: | 1696 private: |
1699 Assembler* assembler_; | 1697 Assembler* assembler_; |
1700 #ifdef DEBUG | 1698 #ifdef DEBUG |
1701 int space_before_; | 1699 int space_before_; |
1702 #endif | 1700 #endif |
1703 }; | 1701 }; |
1704 | 1702 |
1705 } } // namespace v8::internal | 1703 } } // namespace v8::internal |
1706 | 1704 |
1707 #endif // V8_X64_ASSEMBLER_X64_H_ | 1705 #endif // V8_X64_ASSEMBLER_X64_H_ |
OLD | NEW |