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

Side by Side Diff: runtime/vm/assembler_ia32.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 | « 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 void zerowps(XmmRegister dst); 421 void zerowps(XmmRegister dst);
422 void cmppseq(XmmRegister dst, XmmRegister src); 422 void cmppseq(XmmRegister dst, XmmRegister src);
423 void cmppsneq(XmmRegister dst, XmmRegister src); 423 void cmppsneq(XmmRegister dst, XmmRegister src);
424 void cmppslt(XmmRegister dst, XmmRegister src); 424 void cmppslt(XmmRegister dst, XmmRegister src);
425 void cmppsle(XmmRegister dst, XmmRegister src); 425 void cmppsle(XmmRegister dst, XmmRegister src);
426 void cmppsnlt(XmmRegister dst, XmmRegister src); 426 void cmppsnlt(XmmRegister dst, XmmRegister src);
427 void cmppsnle(XmmRegister dst, XmmRegister src); 427 void cmppsnle(XmmRegister dst, XmmRegister src);
428 void sqrtps(XmmRegister dst); 428 void sqrtps(XmmRegister dst);
429 void rsqrtps(XmmRegister dst); 429 void rsqrtps(XmmRegister dst);
430 void reciprocalps(XmmRegister dst); 430 void reciprocalps(XmmRegister dst);
431 void movhlps(XmmRegister dst, XmmRegister src);
432 void movlhps(XmmRegister dst, XmmRegister src);
433 void unpcklps(XmmRegister dst, XmmRegister src);
434 void unpckhps(XmmRegister dst, XmmRegister src);
435 void unpcklpd(XmmRegister dst, XmmRegister src);
436 void unpckhpd(XmmRegister dst, XmmRegister src);
431 437
432 void set1ps(XmmRegister dst, Register tmp, const Immediate& imm); 438 void set1ps(XmmRegister dst, Register tmp, const Immediate& imm);
433 void shufps(XmmRegister dst, XmmRegister src, const Immediate& mask); 439 void shufps(XmmRegister dst, XmmRegister src, const Immediate& mask);
434 440
435 void cvtsi2ss(XmmRegister dst, Register src); 441 void cvtsi2ss(XmmRegister dst, Register src);
436 void cvtsi2sd(XmmRegister dst, Register src); 442 void cvtsi2sd(XmmRegister dst, Register src);
437 443
438 void cvtss2si(Register dst, XmmRegister src); 444 void cvtss2si(Register dst, XmmRegister src);
439 void cvtss2sd(XmmRegister dst, XmmRegister src); 445 void cvtss2sd(XmmRegister dst, XmmRegister src);
440 446
(...skipping 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 } 850 }
845 851
846 852
847 inline void Assembler::EmitOperandSizeOverride() { 853 inline void Assembler::EmitOperandSizeOverride() {
848 EmitUint8(0x66); 854 EmitUint8(0x66);
849 } 855 }
850 856
851 } // namespace dart 857 } // namespace dart
852 858
853 #endif // VM_ASSEMBLER_IA32_H_ 859 #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