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

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

Issue 6910021: Cleanup: use xorps to zero out an xmm register on ia32 too. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address comments Created 9 years, 7 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 | « no previous file | src/ia32/assembler-ia32.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 934 matching lines...) Expand 10 before | Expand all | Expand 10 after
945 945
946 void cvtsi2sd(XMMRegister dst, const Operand& src); 946 void cvtsi2sd(XMMRegister dst, const Operand& src);
947 void cvtss2sd(XMMRegister dst, XMMRegister src); 947 void cvtss2sd(XMMRegister dst, XMMRegister src);
948 void cvtsd2ss(XMMRegister dst, XMMRegister src); 948 void cvtsd2ss(XMMRegister dst, XMMRegister src);
949 949
950 void addsd(XMMRegister dst, XMMRegister src); 950 void addsd(XMMRegister dst, XMMRegister src);
951 void subsd(XMMRegister dst, XMMRegister src); 951 void subsd(XMMRegister dst, XMMRegister src);
952 void mulsd(XMMRegister dst, XMMRegister src); 952 void mulsd(XMMRegister dst, XMMRegister src);
953 void divsd(XMMRegister dst, XMMRegister src); 953 void divsd(XMMRegister dst, XMMRegister src);
954 void xorpd(XMMRegister dst, XMMRegister src); 954 void xorpd(XMMRegister dst, XMMRegister src);
955 void xorps(XMMRegister dst, XMMRegister src);
955 void sqrtsd(XMMRegister dst, XMMRegister src); 956 void sqrtsd(XMMRegister dst, XMMRegister src);
956 957
957 void andpd(XMMRegister dst, XMMRegister src); 958 void andpd(XMMRegister dst, XMMRegister src);
958 959
959 void ucomisd(XMMRegister dst, XMMRegister src); 960 void ucomisd(XMMRegister dst, XMMRegister src);
960 void movmskpd(Register dst, XMMRegister src); 961 void movmskpd(Register dst, XMMRegister src);
961 962
962 void cmpltsd(XMMRegister dst, XMMRegister src); 963 void cmpltsd(XMMRegister dst, XMMRegister src);
963 964
964 void movaps(XMMRegister dst, XMMRegister src); 965 void movaps(XMMRegister dst, XMMRegister src);
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
1154 private: 1155 private:
1155 Assembler* assembler_; 1156 Assembler* assembler_;
1156 #ifdef DEBUG 1157 #ifdef DEBUG
1157 int space_before_; 1158 int space_before_;
1158 #endif 1159 #endif
1159 }; 1160 };
1160 1161
1161 } } // namespace v8::internal 1162 } } // namespace v8::internal
1162 1163
1163 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1164 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698