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

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

Issue 1773083002: X87: [wasm] Int64Lowering of I64Shl on ia32. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Update the argument name in macro-assembler-x87.h Created 4 years, 9 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
« no previous file with comments | « src/compiler/x87/instruction-selector-x87.cc ('k') | src/x87/assembler-x87.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 void ror_cl(Register dst) { ror_cl(Operand(dst)); } 724 void ror_cl(Register dst) { ror_cl(Operand(dst)); }
725 void ror_cl(const Operand& dst); 725 void ror_cl(const Operand& dst);
726 726
727 void sar(Register dst, uint8_t imm8) { sar(Operand(dst), imm8); } 727 void sar(Register dst, uint8_t imm8) { sar(Operand(dst), imm8); }
728 void sar(const Operand& dst, uint8_t imm8); 728 void sar(const Operand& dst, uint8_t imm8);
729 void sar_cl(Register dst) { sar_cl(Operand(dst)); } 729 void sar_cl(Register dst) { sar_cl(Operand(dst)); }
730 void sar_cl(const Operand& dst); 730 void sar_cl(const Operand& dst);
731 731
732 void sbb(Register dst, const Operand& src); 732 void sbb(Register dst, const Operand& src);
733 733
734 void shld(Register dst, Register src) { shld(dst, Operand(src)); } 734 void shld(Register dst, Register src, uint8_t shift);
735 void shld(Register dst, const Operand& src); 735 void shld_cl(Register dst, Register src);
736 736
737 void shl(Register dst, uint8_t imm8) { shl(Operand(dst), imm8); } 737 void shl(Register dst, uint8_t imm8) { shl(Operand(dst), imm8); }
738 void shl(const Operand& dst, uint8_t imm8); 738 void shl(const Operand& dst, uint8_t imm8);
739 void shl_cl(Register dst) { shl_cl(Operand(dst)); } 739 void shl_cl(Register dst) { shl_cl(Operand(dst)); }
740 void shl_cl(const Operand& dst); 740 void shl_cl(const Operand& dst);
741 741
742 void shrd(Register dst, Register src) { shrd(dst, Operand(src)); } 742 void shrd(Register dst, Register src) { shrd(dst, Operand(src)); }
743 void shrd(Register dst, const Operand& src); 743 void shrd(Register dst, const Operand& src);
744 744
745 void shr(Register dst, uint8_t imm8) { shr(Operand(dst), imm8); } 745 void shr(Register dst, uint8_t imm8) { shr(Operand(dst), imm8); }
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 Assembler* assembler_; 1079 Assembler* assembler_;
1080 #ifdef DEBUG 1080 #ifdef DEBUG
1081 int space_before_; 1081 int space_before_;
1082 #endif 1082 #endif
1083 }; 1083 };
1084 1084
1085 } // namespace internal 1085 } // namespace internal
1086 } // namespace v8 1086 } // namespace v8
1087 1087
1088 #endif // V8_X87_ASSEMBLER_X87_H_ 1088 #endif // V8_X87_ASSEMBLER_X87_H_
OLDNEW
« no previous file with comments | « src/compiler/x87/instruction-selector-x87.cc ('k') | src/x87/assembler-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698