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

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

Issue 11035053: Rollback trunk to bleeding_edge revision 12525 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 8 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/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 998 matching lines...) Expand 10 before | Expand all | Expand 10 after
1009 kRoundDown = 0x1, 1009 kRoundDown = 0x1,
1010 kRoundUp = 0x2, 1010 kRoundUp = 0x2,
1011 kRoundToZero = 0x3 1011 kRoundToZero = 0x3
1012 }; 1012 };
1013 1013
1014 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode); 1014 void roundsd(XMMRegister dst, XMMRegister src, RoundingMode mode);
1015 1015
1016 void movmskpd(Register dst, XMMRegister src); 1016 void movmskpd(Register dst, XMMRegister src);
1017 1017
1018 void cmpltsd(XMMRegister dst, XMMRegister src); 1018 void cmpltsd(XMMRegister dst, XMMRegister src);
1019 void pcmpeqd(XMMRegister dst, XMMRegister src);
1020 1019
1021 void movaps(XMMRegister dst, XMMRegister src); 1020 void movaps(XMMRegister dst, XMMRegister src);
1022 1021
1023 void movdqa(XMMRegister dst, const Operand& src); 1022 void movdqa(XMMRegister dst, const Operand& src);
1024 void movdqa(const Operand& dst, XMMRegister src); 1023 void movdqa(const Operand& dst, XMMRegister src);
1025 void movdqu(XMMRegister dst, const Operand& src); 1024 void movdqu(XMMRegister dst, const Operand& src);
1026 void movdqu(const Operand& dst, XMMRegister src); 1025 void movdqu(const Operand& dst, XMMRegister src);
1027 1026
1028 // Use either movsd or movlpd. 1027 // Use either movsd or movlpd.
1029 void movdbl(XMMRegister dst, const Operand& src); 1028 void movdbl(XMMRegister dst, const Operand& src);
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
1224 private: 1223 private:
1225 Assembler* assembler_; 1224 Assembler* assembler_;
1226 #ifdef DEBUG 1225 #ifdef DEBUG
1227 int space_before_; 1226 int space_before_;
1228 #endif 1227 #endif
1229 }; 1228 };
1230 1229
1231 } } // namespace v8::internal 1230 } } // namespace v8::internal
1232 1231
1233 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1232 #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