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

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

Issue 6576030: X64 Crankshaft: Implement Math.abs on x64 lithium. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 10 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/x64/assembler-x64.cc » ('j') | src/x64/lithium-codegen-x64.cc » ('J')
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 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after
1277 void cvtsd2ss(XMMRegister dst, XMMRegister src); 1277 void cvtsd2ss(XMMRegister dst, XMMRegister src);
1278 1278
1279 void cvtsd2si(Register dst, XMMRegister src); 1279 void cvtsd2si(Register dst, XMMRegister src);
1280 void cvtsd2siq(Register dst, XMMRegister src); 1280 void cvtsd2siq(Register dst, XMMRegister src);
1281 1281
1282 void addsd(XMMRegister dst, XMMRegister src); 1282 void addsd(XMMRegister dst, XMMRegister src);
1283 void subsd(XMMRegister dst, XMMRegister src); 1283 void subsd(XMMRegister dst, XMMRegister src);
1284 void mulsd(XMMRegister dst, XMMRegister src); 1284 void mulsd(XMMRegister dst, XMMRegister src);
1285 void divsd(XMMRegister dst, XMMRegister src); 1285 void divsd(XMMRegister dst, XMMRegister src);
1286 1286
1287 void andpd(XMMRegister dst, XMMRegister src);
1288 void orpd(XMMRegister dst, XMMRegister src);
1287 void xorpd(XMMRegister dst, XMMRegister src); 1289 void xorpd(XMMRegister dst, XMMRegister src);
1288 void sqrtsd(XMMRegister dst, XMMRegister src); 1290 void sqrtsd(XMMRegister dst, XMMRegister src);
1289 1291
1290 void ucomisd(XMMRegister dst, XMMRegister src); 1292 void ucomisd(XMMRegister dst, XMMRegister src);
1291 void ucomisd(XMMRegister dst, const Operand& src); 1293 void ucomisd(XMMRegister dst, const Operand& src);
1292 1294
1293 void movmskpd(Register dst, XMMRegister src); 1295 void movmskpd(Register dst, XMMRegister src);
1294 1296
1295 // The first argument is the reg field, the second argument is the r/m field. 1297 // The first argument is the reg field, the second argument is the r/m field.
1296 void emit_sse_operand(XMMRegister dst, XMMRegister src); 1298 void emit_sse_operand(XMMRegister dst, XMMRegister src);
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 private: 1575 private:
1574 Assembler* assembler_; 1576 Assembler* assembler_;
1575 #ifdef DEBUG 1577 #ifdef DEBUG
1576 int space_before_; 1578 int space_before_;
1577 #endif 1579 #endif
1578 }; 1580 };
1579 1581
1580 } } // namespace v8::internal 1582 } } // namespace v8::internal
1581 1583
1582 #endif // V8_X64_ASSEMBLER_X64_H_ 1584 #endif // V8_X64_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « no previous file | src/x64/assembler-x64.cc » ('j') | src/x64/lithium-codegen-x64.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698