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

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

Issue 303034: X64/Win64: Alternative implementation of fmod in general. (Closed)
Patch Set: Created 11 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
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 988 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 void fld(int i); 999 void fld(int i);
1000 1000
1001 void fld1(); 1001 void fld1();
1002 void fldz(); 1002 void fldz();
1003 1003
1004 void fld_s(const Operand& adr); 1004 void fld_s(const Operand& adr);
1005 void fld_d(const Operand& adr); 1005 void fld_d(const Operand& adr);
1006 1006
1007 void fstp_s(const Operand& adr); 1007 void fstp_s(const Operand& adr);
1008 void fstp_d(const Operand& adr); 1008 void fstp_d(const Operand& adr);
1009 void fstp(int index);
1009 1010
1010 void fild_s(const Operand& adr); 1011 void fild_s(const Operand& adr);
1011 void fild_d(const Operand& adr); 1012 void fild_d(const Operand& adr);
1012 1013
1013 void fist_s(const Operand& adr); 1014 void fist_s(const Operand& adr);
1014 1015
1015 void fistp_s(const Operand& adr); 1016 void fistp_s(const Operand& adr);
1016 void fistp_d(const Operand& adr); 1017 void fistp_d(const Operand& adr);
1017 1018
1018 void fisttp_s(const Operand& adr); 1019 void fisttp_s(const Operand& adr);
(...skipping 30 matching lines...) Expand all
1049 1050
1050 void fsin(); 1051 void fsin();
1051 void fcos(); 1052 void fcos();
1052 1053
1053 void frndint(); 1054 void frndint();
1054 1055
1055 void sahf(); 1056 void sahf();
1056 1057
1057 // SSE2 instructions 1058 // SSE2 instructions
1058 void movsd(const Operand& dst, XMMRegister src); 1059 void movsd(const Operand& dst, XMMRegister src);
1059 void movsd(Register src, XMMRegister dst); 1060 void movsd(XMMRegister src, XMMRegister dst);
1060 void movsd(XMMRegister dst, Register src);
1061 void movsd(XMMRegister src, const Operand& dst); 1061 void movsd(XMMRegister src, const Operand& dst);
1062 1062
1063 void cvttss2si(Register dst, const Operand& src); 1063 void cvttss2si(Register dst, const Operand& src);
1064 void cvttsd2si(Register dst, const Operand& src); 1064 void cvttsd2si(Register dst, const Operand& src);
1065 1065
1066 void cvtlsi2sd(XMMRegister dst, const Operand& src); 1066 void cvtlsi2sd(XMMRegister dst, const Operand& src);
1067 void cvtlsi2sd(XMMRegister dst, Register src); 1067 void cvtlsi2sd(XMMRegister dst, Register src);
1068 void cvtqsi2sd(XMMRegister dst, const Operand& src); 1068 void cvtqsi2sd(XMMRegister dst, const Operand& src);
1069 void cvtqsi2sd(XMMRegister dst, Register src); 1069 void cvtqsi2sd(XMMRegister dst, Register src);
1070 1070
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 private: 1355 private:
1356 Assembler* assembler_; 1356 Assembler* assembler_;
1357 #ifdef DEBUG 1357 #ifdef DEBUG
1358 int space_before_; 1358 int space_before_;
1359 #endif 1359 #endif
1360 }; 1360 };
1361 1361
1362 } } // namespace v8::internal 1362 } } // namespace v8::internal
1363 1363
1364 #endif // V8_X64_ASSEMBLER_X64_H_ 1364 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | src/x64/assembler-x64.cc » ('j') | src/x64/codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698