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

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

Issue 8700004: Implement Math.tan in generated code. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 void fucomi(int i); 1268 void fucomi(int i);
1269 void fucomip(); 1269 void fucomip();
1270 1270
1271 void fcompp(); 1271 void fcompp();
1272 void fnstsw_ax(); 1272 void fnstsw_ax();
1273 void fwait(); 1273 void fwait();
1274 void fnclex(); 1274 void fnclex();
1275 1275
1276 void fsin(); 1276 void fsin();
1277 void fcos(); 1277 void fcos();
1278 void fptan();
1278 void fyl2x(); 1279 void fyl2x();
1279 1280
1280 void frndint(); 1281 void frndint();
1281 1282
1282 void sahf(); 1283 void sahf();
1283 1284
1284 // SSE2 instructions 1285 // SSE2 instructions
1285 void movd(XMMRegister dst, Register src); 1286 void movd(XMMRegister dst, Register src);
1286 void movd(Register dst, XMMRegister src); 1287 void movd(Register dst, XMMRegister src);
1287 void movq(XMMRegister dst, Register src); 1288 void movq(XMMRegister dst, Register src);
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
1640 private: 1641 private:
1641 Assembler* assembler_; 1642 Assembler* assembler_;
1642 #ifdef DEBUG 1643 #ifdef DEBUG
1643 int space_before_; 1644 int space_before_;
1644 #endif 1645 #endif
1645 }; 1646 };
1646 1647
1647 } } // namespace v8::internal 1648 } } // namespace v8::internal
1648 1649
1649 #endif // V8_X64_ASSEMBLER_X64_H_ 1650 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698