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

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

Issue 639283003: [turbofan] IA: TruncateFloat64ToFloat32 supports mem operand (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: ia32 port Created 6 years, 2 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/ia32/assembler-ia32.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 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 1069
1070 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1070 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1071 void cvtlsi2sd(XMMRegister dst, Register src); 1071 void cvtlsi2sd(XMMRegister dst, Register src);
1072 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1072 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1073 void cvtqsi2sd(XMMRegister dst, Register src); 1073 void cvtqsi2sd(XMMRegister dst, Register src);
1074 1074
1075 1075
1076 void cvtss2sd(XMMRegister dst, XMMRegister src); 1076 void cvtss2sd(XMMRegister dst, XMMRegister src);
1077 void cvtss2sd(XMMRegister dst, const Operand& src); 1077 void cvtss2sd(XMMRegister dst, const Operand& src);
1078 void cvtsd2ss(XMMRegister dst, XMMRegister src); 1078 void cvtsd2ss(XMMRegister dst, XMMRegister src);
1079 void cvtsd2ss(XMMRegister dst, const Operand& src);
1079 1080
1080 void cvtsd2si(Register dst, XMMRegister src); 1081 void cvtsd2si(Register dst, XMMRegister src);
1081 void cvtsd2siq(Register dst, XMMRegister src); 1082 void cvtsd2siq(Register dst, XMMRegister src);
1082 1083
1083 void addsd(XMMRegister dst, XMMRegister src); 1084 void addsd(XMMRegister dst, XMMRegister src);
1084 void addsd(XMMRegister dst, const Operand& src); 1085 void addsd(XMMRegister dst, const Operand& src);
1085 void subsd(XMMRegister dst, XMMRegister src); 1086 void subsd(XMMRegister dst, XMMRegister src);
1086 void mulsd(XMMRegister dst, XMMRegister src); 1087 void mulsd(XMMRegister dst, XMMRegister src);
1087 void mulsd(XMMRegister dst, const Operand& src); 1088 void mulsd(XMMRegister dst, const Operand& src);
1088 void divsd(XMMRegister dst, XMMRegister src); 1089 void divsd(XMMRegister dst, XMMRegister src);
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after
1612 private: 1613 private:
1613 Assembler* assembler_; 1614 Assembler* assembler_;
1614 #ifdef DEBUG 1615 #ifdef DEBUG
1615 int space_before_; 1616 int space_before_;
1616 #endif 1617 #endif
1617 }; 1618 };
1618 1619
1619 } } // namespace v8::internal 1620 } } // namespace v8::internal
1620 1621
1621 #endif // V8_X64_ASSEMBLER_X64_H_ 1622 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/ia32/assembler-ia32.cc ('k') | src/x64/assembler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698