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

Side by Side Diff: runtime/vm/assembler_ia32.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 | « no previous file | runtime/vm/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) 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_IA32_H_ 5 #ifndef VM_ASSEMBLER_IA32_H_
6 #define VM_ASSEMBLER_IA32_H_ 6 #define VM_ASSEMBLER_IA32_H_
7 7
8 #ifndef VM_ASSEMBLER_H_ 8 #ifndef VM_ASSEMBLER_H_
9 #error Do not include assembler_ia32.h directly; use assembler.h instead. 9 #error Do not include assembler_ia32.h directly; use assembler.h instead.
10 #endif 10 #endif
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 void negatepd(XmmRegister dst); 431 void negatepd(XmmRegister dst);
432 void subpd(XmmRegister dst, XmmRegister src); 432 void subpd(XmmRegister dst, XmmRegister src);
433 void mulpd(XmmRegister dst, XmmRegister src); 433 void mulpd(XmmRegister dst, XmmRegister src);
434 void divpd(XmmRegister dst, XmmRegister src); 434 void divpd(XmmRegister dst, XmmRegister src);
435 void abspd(XmmRegister dst); 435 void abspd(XmmRegister dst);
436 void minpd(XmmRegister dst, XmmRegister src); 436 void minpd(XmmRegister dst, XmmRegister src);
437 void maxpd(XmmRegister dst, XmmRegister src); 437 void maxpd(XmmRegister dst, XmmRegister src);
438 void sqrtpd(XmmRegister dst); 438 void sqrtpd(XmmRegister dst);
439 void cvtps2pd(XmmRegister dst, XmmRegister src); 439 void cvtps2pd(XmmRegister dst, XmmRegister src);
440 void cvtpd2ps(XmmRegister dst, XmmRegister src); 440 void cvtpd2ps(XmmRegister dst, XmmRegister src);
441 void shufpd(XmmRegister dst, XmmRegister src, const Immediate& mask);
441 442
442 void cvtsi2ss(XmmRegister dst, Register src); 443 void cvtsi2ss(XmmRegister dst, Register src);
443 void cvtsi2sd(XmmRegister dst, Register src); 444 void cvtsi2sd(XmmRegister dst, Register src);
444 445
445 void cvtss2si(Register dst, XmmRegister src); 446 void cvtss2si(Register dst, XmmRegister src);
446 void cvtss2sd(XmmRegister dst, XmmRegister src); 447 void cvtss2sd(XmmRegister dst, XmmRegister src);
447 448
448 void cvtsd2si(Register dst, XmmRegister src); 449 void cvtsd2si(Register dst, XmmRegister src);
449 void cvtsd2ss(XmmRegister dst, XmmRegister src); 450 void cvtsd2ss(XmmRegister dst, XmmRegister src);
450 451
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
891 } 892 }
892 893
893 894
894 inline void Assembler::EmitOperandSizeOverride() { 895 inline void Assembler::EmitOperandSizeOverride() {
895 EmitUint8(0x66); 896 EmitUint8(0x66);
896 } 897 }
897 898
898 } // namespace dart 899 } // namespace dart
899 900
900 #endif // VM_ASSEMBLER_IA32_H_ 901 #endif // VM_ASSEMBLER_IA32_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/assembler_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698