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

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

Issue 19940005: Add two argument SSE shuffle instructions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 void zerowps(XmmRegister dst); 424 void zerowps(XmmRegister dst);
425 void cmppseq(XmmRegister dst, XmmRegister src); 425 void cmppseq(XmmRegister dst, XmmRegister src);
426 void cmppsneq(XmmRegister dst, XmmRegister src); 426 void cmppsneq(XmmRegister dst, XmmRegister src);
427 void cmppslt(XmmRegister dst, XmmRegister src); 427 void cmppslt(XmmRegister dst, XmmRegister src);
428 void cmppsle(XmmRegister dst, XmmRegister src); 428 void cmppsle(XmmRegister dst, XmmRegister src);
429 void cmppsnlt(XmmRegister dst, XmmRegister src); 429 void cmppsnlt(XmmRegister dst, XmmRegister src);
430 void cmppsnle(XmmRegister dst, XmmRegister src); 430 void cmppsnle(XmmRegister dst, XmmRegister src);
431 void sqrtps(XmmRegister dst); 431 void sqrtps(XmmRegister dst);
432 void rsqrtps(XmmRegister dst); 432 void rsqrtps(XmmRegister dst);
433 void reciprocalps(XmmRegister dst); 433 void reciprocalps(XmmRegister dst);
434 void movhlps(XmmRegister dst, XmmRegister src);
435 void movlhps(XmmRegister dst, XmmRegister src);
436 void unpcklps(XmmRegister dst, XmmRegister src);
437 void unpckhps(XmmRegister dst, XmmRegister src);
438 void unpcklpd(XmmRegister dst, XmmRegister src);
439 void unpckhpd(XmmRegister dst, XmmRegister src);
434 440
435 void set1ps(XmmRegister dst, Register tmp, const Immediate& imm); 441 void set1ps(XmmRegister dst, Register tmp, const Immediate& imm);
436 void shufps(XmmRegister dst, XmmRegister src, const Immediate& mask); 442 void shufps(XmmRegister dst, XmmRegister src, const Immediate& mask);
437 443
438 void comisd(XmmRegister a, XmmRegister b); 444 void comisd(XmmRegister a, XmmRegister b);
439 void cvtsi2sd(XmmRegister a, Register b); 445 void cvtsi2sd(XmmRegister a, Register b);
440 void cvttsd2siq(Register dst, XmmRegister src); 446 void cvttsd2siq(Register dst, XmmRegister src);
441 447
442 void cvtss2sd(XmmRegister dst, XmmRegister src); 448 void cvtss2sd(XmmRegister dst, XmmRegister src);
443 void cvtsd2ss(XmmRegister dst, XmmRegister src); 449 void cvtsd2ss(XmmRegister dst, XmmRegister src);
(...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 } 929 }
924 930
925 931
926 inline void Assembler::EmitOperandSizeOverride() { 932 inline void Assembler::EmitOperandSizeOverride() {
927 EmitUint8(0x66); 933 EmitUint8(0x66);
928 } 934 }
929 935
930 } // namespace dart 936 } // namespace dart
931 937
932 #endif // VM_ASSEMBLER_X64_H_ 938 #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