Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1045)

Side by Side Diff: src/x64/assembler-x64.h

Issue 157543002: A64: Synchronize with r18581. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/version.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 // memory location. 694 // memory location.
695 void movw(Register dst, const Operand& src); 695 void movw(Register dst, const Operand& src);
696 void movw(const Operand& dst, Register src); 696 void movw(const Operand& dst, Register src);
697 void movw(const Operand& dst, Immediate imm); 697 void movw(const Operand& dst, Immediate imm);
698 698
699 // Move the offset of the label location relative to the current 699 // Move the offset of the label location relative to the current
700 // position (after the move) to the destination. 700 // position (after the move) to the destination.
701 void movl(const Operand& dst, Label* src); 701 void movl(const Operand& dst, Label* src);
702 702
703 // Loads a pointer into a register with a relocation mode. 703 // Loads a pointer into a register with a relocation mode.
704 void movq(Register dst, void* ptr, RelocInfo::Mode rmode); 704 void movp(Register dst, void* ptr, RelocInfo::Mode rmode);
705
705 // Loads a 64-bit immediate into a register. 706 // Loads a 64-bit immediate into a register.
706 void movq(Register dst, int64_t value); 707 void movq(Register dst, int64_t value);
707 void movq(Register dst, uint64_t value); 708 void movq(Register dst, uint64_t value);
708 void movq(Register dst, Handle<Object> handle, RelocInfo::Mode rmode);
709 709
710 void movsxbq(Register dst, const Operand& src); 710 void movsxbq(Register dst, const Operand& src);
711 void movsxwq(Register dst, const Operand& src); 711 void movsxwq(Register dst, const Operand& src);
712 void movsxlq(Register dst, Register src); 712 void movsxlq(Register dst, Register src);
713 void movsxlq(Register dst, const Operand& src); 713 void movsxlq(Register dst, const Operand& src);
714 void movzxbq(Register dst, const Operand& src); 714 void movzxbq(Register dst, const Operand& src);
715 void movzxbl(Register dst, const Operand& src); 715 void movzxbl(Register dst, const Operand& src);
716 void movzxwq(Register dst, const Operand& src); 716 void movzxwq(Register dst, const Operand& src);
717 void movzxwl(Register dst, const Operand& src); 717 void movzxwl(Register dst, const Operand& src);
718 void movzxwl(Register dst, Register src); 718 void movzxwl(Register dst, Register src);
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1723 private: 1723 private:
1724 Assembler* assembler_; 1724 Assembler* assembler_;
1725 #ifdef DEBUG 1725 #ifdef DEBUG
1726 int space_before_; 1726 int space_before_;
1727 #endif 1727 #endif
1728 }; 1728 };
1729 1729
1730 } } // namespace v8::internal 1730 } } // namespace v8::internal
1731 1731
1732 #endif // V8_X64_ASSEMBLER_X64_H_ 1732 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/version.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698