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

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

Issue 507040: -Inlined double variant of compare iff one of the sides is a constant smi and... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years 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
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 727 matching lines...) Expand 10 before | Expand all | Expand 10 after
738 // SSE2 instructions 738 // SSE2 instructions
739 void cvttss2si(Register dst, const Operand& src); 739 void cvttss2si(Register dst, const Operand& src);
740 void cvttsd2si(Register dst, const Operand& src); 740 void cvttsd2si(Register dst, const Operand& src);
741 741
742 void cvtsi2sd(XMMRegister dst, const Operand& src); 742 void cvtsi2sd(XMMRegister dst, const Operand& src);
743 743
744 void addsd(XMMRegister dst, XMMRegister src); 744 void addsd(XMMRegister dst, XMMRegister src);
745 void subsd(XMMRegister dst, XMMRegister src); 745 void subsd(XMMRegister dst, XMMRegister src);
746 void mulsd(XMMRegister dst, XMMRegister src); 746 void mulsd(XMMRegister dst, XMMRegister src);
747 void divsd(XMMRegister dst, XMMRegister src); 747 void divsd(XMMRegister dst, XMMRegister src);
748 void xorpd(XMMRegister dst, XMMRegister src);
748 749
749 void comisd(XMMRegister dst, XMMRegister src); 750 void comisd(XMMRegister dst, XMMRegister src);
750 751
751 // Use either movsd or movlpd. 752 // Use either movsd or movlpd.
752 void movdbl(XMMRegister dst, const Operand& src); 753 void movdbl(XMMRegister dst, const Operand& src);
753 void movdbl(const Operand& dst, XMMRegister src); 754 void movdbl(const Operand& dst, XMMRegister src);
754 755
755 // Debugging 756 // Debugging
756 void Print(); 757 void Print();
757 758
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 private: 895 private:
895 Assembler* assembler_; 896 Assembler* assembler_;
896 #ifdef DEBUG 897 #ifdef DEBUG
897 int space_before_; 898 int space_before_;
898 #endif 899 #endif
899 }; 900 };
900 901
901 } } // namespace v8::internal 902 } } // namespace v8::internal
902 903
903 #endif // V8_IA32_ASSEMBLER_IA32_H_ 904 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | src/ia32/codegen-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698