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

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

Issue 20781007: Add X87 implementations for Integer32ToDouble, DoubleToI, DoubleToSmi (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: add a test that was still missing in cl Created 7 years, 4 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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 922
923 void fld1(); 923 void fld1();
924 void fldz(); 924 void fldz();
925 void fldpi(); 925 void fldpi();
926 void fldln2(); 926 void fldln2();
927 927
928 void fld_s(const Operand& adr); 928 void fld_s(const Operand& adr);
929 void fld_d(const Operand& adr); 929 void fld_d(const Operand& adr);
930 930
931 void fstp_s(const Operand& adr); 931 void fstp_s(const Operand& adr);
932 void fst_s(const Operand& adr);
932 void fstp_d(const Operand& adr); 933 void fstp_d(const Operand& adr);
933 void fst_d(const Operand& adr); 934 void fst_d(const Operand& adr);
934 935
935 void fild_s(const Operand& adr); 936 void fild_s(const Operand& adr);
936 void fild_d(const Operand& adr); 937 void fild_d(const Operand& adr);
937 938
938 void fist_s(const Operand& adr); 939 void fist_s(const Operand& adr);
939 940
940 void fistp_s(const Operand& adr); 941 void fistp_s(const Operand& adr);
941 void fistp_d(const Operand& adr); 942 void fistp_d(const Operand& adr);
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
1230 private: 1231 private:
1231 Assembler* assembler_; 1232 Assembler* assembler_;
1232 #ifdef DEBUG 1233 #ifdef DEBUG
1233 int space_before_; 1234 int space_before_;
1234 #endif 1235 #endif
1235 }; 1236 };
1236 1237
1237 } } // namespace v8::internal 1238 } } // namespace v8::internal
1238 1239
1239 #endif // V8_IA32_ASSEMBLER_IA32_H_ 1240 #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