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

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

Issue 2831009: Remove the comisd instruction from the ia32 and x64 assemblers. We... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 6 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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 void cvtsi2sd(XMMRegister dst, const Operand& src); 772 void cvtsi2sd(XMMRegister dst, const Operand& src);
773 void cvtss2sd(XMMRegister dst, XMMRegister src); 773 void cvtss2sd(XMMRegister dst, XMMRegister src);
774 774
775 void addsd(XMMRegister dst, XMMRegister src); 775 void addsd(XMMRegister dst, XMMRegister src);
776 void subsd(XMMRegister dst, XMMRegister src); 776 void subsd(XMMRegister dst, XMMRegister src);
777 void mulsd(XMMRegister dst, XMMRegister src); 777 void mulsd(XMMRegister dst, XMMRegister src);
778 void divsd(XMMRegister dst, XMMRegister src); 778 void divsd(XMMRegister dst, XMMRegister src);
779 void xorpd(XMMRegister dst, XMMRegister src); 779 void xorpd(XMMRegister dst, XMMRegister src);
780 void sqrtsd(XMMRegister dst, XMMRegister src); 780 void sqrtsd(XMMRegister dst, XMMRegister src);
781 781
782 void comisd(XMMRegister dst, XMMRegister src);
783 void ucomisd(XMMRegister dst, XMMRegister src); 782 void ucomisd(XMMRegister dst, XMMRegister src);
784 void movmskpd(Register dst, XMMRegister src); 783 void movmskpd(Register dst, XMMRegister src);
785 784
786 void movdqa(XMMRegister dst, const Operand& src); 785 void movdqa(XMMRegister dst, const Operand& src);
787 void movdqa(const Operand& dst, XMMRegister src); 786 void movdqa(const Operand& dst, XMMRegister src);
788 void movdqu(XMMRegister dst, const Operand& src); 787 void movdqu(XMMRegister dst, const Operand& src);
789 void movdqu(const Operand& dst, XMMRegister src); 788 void movdqu(const Operand& dst, XMMRegister src);
790 789
791 // Use either movsd or movlpd. 790 // Use either movsd or movlpd.
792 void movdbl(XMMRegister dst, const Operand& src); 791 void movdbl(XMMRegister dst, const Operand& src);
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
954 private: 953 private:
955 Assembler* assembler_; 954 Assembler* assembler_;
956 #ifdef DEBUG 955 #ifdef DEBUG
957 int space_before_; 956 int space_before_;
958 #endif 957 #endif
959 }; 958 };
960 959
961 } } // namespace v8::internal 960 } } // namespace v8::internal
962 961
963 #endif // V8_IA32_ASSEMBLER_IA32_H_ 962 #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