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

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

Issue 736623002: [x64] Recognize MOVSXWL. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 726
727 // Loads a pointer into a register with a relocation mode. 727 // Loads a pointer into a register with a relocation mode.
728 void movp(Register dst, void* ptr, RelocInfo::Mode rmode); 728 void movp(Register dst, void* ptr, RelocInfo::Mode rmode);
729 729
730 // Loads a 64-bit immediate into a register. 730 // Loads a 64-bit immediate into a register.
731 void movq(Register dst, int64_t value); 731 void movq(Register dst, int64_t value);
732 void movq(Register dst, uint64_t value); 732 void movq(Register dst, uint64_t value);
733 733
734 void movsxbl(Register dst, const Operand& src); 734 void movsxbl(Register dst, const Operand& src);
735 void movsxbq(Register dst, const Operand& src); 735 void movsxbq(Register dst, const Operand& src);
736 void movsxwl(Register dst, Register src);
736 void movsxwl(Register dst, const Operand& src); 737 void movsxwl(Register dst, const Operand& src);
737 void movsxwq(Register dst, const Operand& src); 738 void movsxwq(Register dst, const Operand& src);
738 void movsxlq(Register dst, Register src); 739 void movsxlq(Register dst, Register src);
739 void movsxlq(Register dst, const Operand& src); 740 void movsxlq(Register dst, const Operand& src);
740 741
741 // Repeated moves. 742 // Repeated moves.
742 743
743 void repmovsb(); 744 void repmovsb();
744 void repmovsw(); 745 void repmovsw();
745 void repmovsp() { emit_repmovs(kPointerSize); } 746 void repmovsp() { emit_repmovs(kPointerSize); }
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
1624 private: 1625 private:
1625 Assembler* assembler_; 1626 Assembler* assembler_;
1626 #ifdef DEBUG 1627 #ifdef DEBUG
1627 int space_before_; 1628 int space_before_;
1628 #endif 1629 #endif
1629 }; 1630 };
1630 1631
1631 } } // namespace v8::internal 1632 } } // namespace v8::internal
1632 1633
1633 #endif // V8_X64_ASSEMBLER_X64_H_ 1634 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/instruction-selector-x64.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698