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

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

Issue 8821019: Porting Math.pow changes to x64. (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 1259 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 fptan();
1279 void fyl2x(); 1279 void fyl2x();
1280 void f2xm1();
1281 void fscale();
1282 void fninit();
1280 1283
1281 void frndint(); 1284 void frndint();
1282 1285
1283 void sahf(); 1286 void sahf();
1284 1287
1285 // SSE2 instructions 1288 // SSE2 instructions
1286 void movd(XMMRegister dst, Register src); 1289 void movd(XMMRegister dst, Register src);
1287 void movd(Register dst, XMMRegister src); 1290 void movd(Register dst, XMMRegister src);
1288 void movq(XMMRegister dst, Register src); 1291 void movq(XMMRegister dst, Register src);
1289 void movq(Register dst, XMMRegister src); 1292 void movq(Register dst, XMMRegister src);
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
1641 private: 1644 private:
1642 Assembler* assembler_; 1645 Assembler* assembler_;
1643 #ifdef DEBUG 1646 #ifdef DEBUG
1644 int space_before_; 1647 int space_before_;
1645 #endif 1648 #endif
1646 }; 1649 };
1647 1650
1648 } } // namespace v8::internal 1651 } } // namespace v8::internal
1649 1652
1650 #endif // V8_X64_ASSEMBLER_X64_H_ 1653 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698