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

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

Issue 728103007: [x64] Recognize MOVSXBL. (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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after
724 // position (after the move) to the destination. 724 // position (after the move) to the destination.
725 void movl(const Operand& dst, Label* src); 725 void movl(const Operand& dst, Label* src);
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, Register src);
734 void movsxbl(Register dst, const Operand& src); 735 void movsxbl(Register dst, const Operand& src);
735 void movsxbq(Register dst, const Operand& src); 736 void movsxbq(Register dst, const Operand& src);
736 void movsxwl(Register dst, Register src); 737 void movsxwl(Register dst, Register src);
737 void movsxwl(Register dst, const Operand& src); 738 void movsxwl(Register dst, const Operand& src);
738 void movsxwq(Register dst, const Operand& src); 739 void movsxwq(Register dst, const Operand& src);
739 void movsxlq(Register dst, Register src); 740 void movsxlq(Register dst, Register src);
740 void movsxlq(Register dst, const Operand& src); 741 void movsxlq(Register dst, const Operand& src);
741 742
742 // Repeated moves. 743 // Repeated moves.
743 744
(...skipping 881 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 private: 1626 private:
1626 Assembler* assembler_; 1627 Assembler* assembler_;
1627 #ifdef DEBUG 1628 #ifdef DEBUG
1628 int space_before_; 1629 int space_before_;
1629 #endif 1630 #endif
1630 }; 1631 };
1631 1632
1632 } } // namespace v8::internal 1633 } } // namespace v8::internal
1633 1634
1634 #endif // V8_X64_ASSEMBLER_X64_H_ 1635 #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