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

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

Issue 6322008: Version 3.0.10... (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 11 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 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 } 700 }
701 701
702 void addq(const Operand& dst, Immediate src) { 702 void addq(const Operand& dst, Immediate src) {
703 immediate_arithmetic_op(0x0, dst, src); 703 immediate_arithmetic_op(0x0, dst, src);
704 } 704 }
705 705
706 void sbbl(Register dst, Register src) { 706 void sbbl(Register dst, Register src) {
707 arithmetic_op_32(0x1b, dst, src); 707 arithmetic_op_32(0x1b, dst, src);
708 } 708 }
709 709
710 void sbbq(Register dst, Register src) {
711 arithmetic_op(0x1b, dst, src);
712 }
713
710 void cmpb(Register dst, Immediate src) { 714 void cmpb(Register dst, Immediate src) {
711 immediate_arithmetic_op_8(0x7, dst, src); 715 immediate_arithmetic_op_8(0x7, dst, src);
712 } 716 }
713 717
714 void cmpb_al(Immediate src); 718 void cmpb_al(Immediate src);
715 719
716 void cmpb(Register dst, Register src) { 720 void cmpb(Register dst, Register src) {
717 arithmetic_op(0x3A, dst, src); 721 arithmetic_op(0x3A, dst, src);
718 } 722 }
719 723
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after
1198 void extractps(Register dst, XMMRegister src, byte imm8); 1202 void extractps(Register dst, XMMRegister src, byte imm8);
1199 1203
1200 void movsd(const Operand& dst, XMMRegister src); 1204 void movsd(const Operand& dst, XMMRegister src);
1201 void movsd(XMMRegister dst, XMMRegister src); 1205 void movsd(XMMRegister dst, XMMRegister src);
1202 void movsd(XMMRegister dst, const Operand& src); 1206 void movsd(XMMRegister dst, const Operand& src);
1203 1207
1204 void movss(XMMRegister dst, const Operand& src); 1208 void movss(XMMRegister dst, const Operand& src);
1205 void movss(const Operand& dst, XMMRegister src); 1209 void movss(const Operand& dst, XMMRegister src);
1206 1210
1207 void cvttss2si(Register dst, const Operand& src); 1211 void cvttss2si(Register dst, const Operand& src);
1212 void cvttss2si(Register dst, XMMRegister src);
1208 void cvttsd2si(Register dst, const Operand& src); 1213 void cvttsd2si(Register dst, const Operand& src);
1214 void cvttsd2si(Register dst, XMMRegister src);
1209 void cvttsd2siq(Register dst, XMMRegister src); 1215 void cvttsd2siq(Register dst, XMMRegister src);
1210 1216
1211 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1217 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1212 void cvtlsi2sd(XMMRegister dst, Register src); 1218 void cvtlsi2sd(XMMRegister dst, Register src);
1213 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1219 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1214 void cvtqsi2sd(XMMRegister dst, Register src); 1220 void cvtqsi2sd(XMMRegister dst, Register src);
1215 1221
1216 void cvtlsi2ss(XMMRegister dst, Register src); 1222 void cvtlsi2ss(XMMRegister dst, Register src);
1217 1223
1218 void cvtss2sd(XMMRegister dst, XMMRegister src); 1224 void cvtss2sd(XMMRegister dst, XMMRegister src);
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
1518 private: 1524 private:
1519 Assembler* assembler_; 1525 Assembler* assembler_;
1520 #ifdef DEBUG 1526 #ifdef DEBUG
1521 int space_before_; 1527 int space_before_;
1522 #endif 1528 #endif
1523 }; 1529 };
1524 1530
1525 } } // namespace v8::internal 1531 } } // namespace v8::internal
1526 1532
1527 #endif // V8_X64_ASSEMBLER_X64_H_ 1533 #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