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

Side by Side Diff: runtime/vm/assembler_x64.h

Issue 183923026: Inline of Float64x2 operations round 1 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | « runtime/vm/assembler_ia32_test.cc ('k') | runtime/vm/assembler_x64.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_ASSEMBLER_X64_H_ 5 #ifndef VM_ASSEMBLER_X64_H_
6 #define VM_ASSEMBLER_X64_H_ 6 #define VM_ASSEMBLER_X64_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_x64.h directly; use assembler.h instead. 9 #error Do not include assembler_x64.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 void negatepd(XmmRegister dst); 446 void negatepd(XmmRegister dst);
447 void subpd(XmmRegister dst, XmmRegister src); 447 void subpd(XmmRegister dst, XmmRegister src);
448 void mulpd(XmmRegister dst, XmmRegister src); 448 void mulpd(XmmRegister dst, XmmRegister src);
449 void divpd(XmmRegister dst, XmmRegister src); 449 void divpd(XmmRegister dst, XmmRegister src);
450 void abspd(XmmRegister dst); 450 void abspd(XmmRegister dst);
451 void minpd(XmmRegister dst, XmmRegister src); 451 void minpd(XmmRegister dst, XmmRegister src);
452 void maxpd(XmmRegister dst, XmmRegister src); 452 void maxpd(XmmRegister dst, XmmRegister src);
453 void sqrtpd(XmmRegister dst); 453 void sqrtpd(XmmRegister dst);
454 void cvtps2pd(XmmRegister dst, XmmRegister src); 454 void cvtps2pd(XmmRegister dst, XmmRegister src);
455 void cvtpd2ps(XmmRegister dst, XmmRegister src); 455 void cvtpd2ps(XmmRegister dst, XmmRegister src);
456 void shufpd(XmmRegister dst, XmmRegister src, const Immediate& mask);
456 457
457 void comisd(XmmRegister a, XmmRegister b); 458 void comisd(XmmRegister a, XmmRegister b);
458 void cvtsi2sd(XmmRegister a, Register b); 459 void cvtsi2sd(XmmRegister a, Register b);
459 void cvttsd2siq(Register dst, XmmRegister src); 460 void cvttsd2siq(Register dst, XmmRegister src);
460 461
461 void cvtss2sd(XmmRegister dst, XmmRegister src); 462 void cvtss2sd(XmmRegister dst, XmmRegister src);
462 void cvtsd2ss(XmmRegister dst, XmmRegister src); 463 void cvtsd2ss(XmmRegister dst, XmmRegister src);
463 464
464 void pxor(XmmRegister dst, XmmRegister src); 465 void pxor(XmmRegister dst, XmmRegister src);
465 466
(...skipping 593 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 } 1060 }
1060 1061
1061 1062
1062 inline void Assembler::EmitOperandSizeOverride() { 1063 inline void Assembler::EmitOperandSizeOverride() {
1063 EmitUint8(0x66); 1064 EmitUint8(0x66);
1064 } 1065 }
1065 1066
1066 } // namespace dart 1067 } // namespace dart
1067 1068
1068 #endif // VM_ASSEMBLER_X64_H_ 1069 #endif // VM_ASSEMBLER_X64_H_
OLDNEW
« no previous file with comments | « runtime/vm/assembler_ia32_test.cc ('k') | runtime/vm/assembler_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698