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

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

Issue 7778013: NewGC: Merge bleeding edge up to 9009. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 3 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/hydrogen-instructions.cc ('k') | 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 931 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 void subsd(XMMRegister dst, XMMRegister src); 942 void subsd(XMMRegister dst, XMMRegister src);
943 void mulsd(XMMRegister dst, XMMRegister src); 943 void mulsd(XMMRegister dst, XMMRegister src);
944 void divsd(XMMRegister dst, XMMRegister src); 944 void divsd(XMMRegister dst, XMMRegister src);
945 void xorpd(XMMRegister dst, XMMRegister src); 945 void xorpd(XMMRegister dst, XMMRegister src);
946 void xorps(XMMRegister dst, XMMRegister src); 946 void xorps(XMMRegister dst, XMMRegister src);
947 void sqrtsd(XMMRegister dst, XMMRegister src); 947 void sqrtsd(XMMRegister dst, XMMRegister src);
948 948
949 void andpd(XMMRegister dst, XMMRegister src); 949 void andpd(XMMRegister dst, XMMRegister src);
950 950
951 void ucomisd(XMMRegister dst, XMMRegister src); 951 void ucomisd(XMMRegister dst, XMMRegister src);
952
953 enum RoundingMode {
954 kRoundToNearest = 0x0,
955 kRoundDown = 0x1,
956 kRoundUp = 0x2,
957 kRoundToZero = 0x3
958 };
959
960 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
961
952 void movmskpd(Register dst, XMMRegister src); 962 void movmskpd(Register dst, XMMRegister src);
953 963
954 void cmpltsd(XMMRegister dst, XMMRegister src); 964 void cmpltsd(XMMRegister dst, XMMRegister src);
955 965
956 void movaps(XMMRegister dst, XMMRegister src); 966 void movaps(XMMRegister dst, XMMRegister src);
957 967
958 void movdqa(XMMRegister dst, const Operand& src); 968 void movdqa(XMMRegister dst, const Operand& src);
959 void movdqa(const Operand& dst, XMMRegister src); 969 void movdqa(const Operand& dst, XMMRegister src);
960 void movdqu(XMMRegister dst, const Operand& src); 970 void movdqu(XMMRegister dst, const Operand& src);
961 void movdqu(const Operand& dst, XMMRegister src); 971 void movdqu(const Operand& dst, XMMRegister src);
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 private: 1158 private:
1149 Assembler* assembler_; 1159 Assembler* assembler_;
1150 #ifdef DEBUG 1160 #ifdef DEBUG
1151 int space_before_; 1161 int space_before_;
1152 #endif 1162 #endif
1153 }; 1163 };
1154 1164
1155 } } // namespace v8::internal 1165 } } // namespace v8::internal
1156 1166
1157 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1167 #endif // V8_IA32_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « src/hydrogen-instructions.cc ('k') | src/ia32/assembler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698