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

Side by Side Diff: src/IceAssemblerX86Base.h

Issue 1917863004: Subzero. X86. Uses pshufb for shufflevector lowering. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Deterministic table name." Created 4 years, 8 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
« no previous file with comments | « no previous file | src/IceAssemblerX86BaseImpl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceAssemblerX86Base.h - base x86 assembler -*- C++ -*---===// 1 //===- subzero/src/IceAssemblerX86Base.h - base x86 assembler -*- C++ -*---===//
2 // 2 //
3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 4 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 5 // BSD-style license that can be found in the LICENSE file.
6 // 6 //
7 // Modified by the Subzero authors. 7 // Modified by the Subzero authors.
8 // 8 //
9 //===----------------------------------------------------------------------===// 9 //===----------------------------------------------------------------------===//
10 // 10 //
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
422 void movlhps(XmmRegister dst, XmmRegister src); 422 void movlhps(XmmRegister dst, XmmRegister src);
423 void unpcklps(XmmRegister dst, XmmRegister src); 423 void unpcklps(XmmRegister dst, XmmRegister src);
424 void unpckhps(XmmRegister dst, XmmRegister src); 424 void unpckhps(XmmRegister dst, XmmRegister src);
425 void unpcklpd(XmmRegister dst, XmmRegister src); 425 void unpcklpd(XmmRegister dst, XmmRegister src);
426 void unpckhpd(XmmRegister dst, XmmRegister src); 426 void unpckhpd(XmmRegister dst, XmmRegister src);
427 427
428 void set1ps(XmmRegister dst, GPRRegister tmp, const Immediate &imm); 428 void set1ps(XmmRegister dst, GPRRegister tmp, const Immediate &imm);
429 429
430 void sqrtpd(XmmRegister dst); 430 void sqrtpd(XmmRegister dst);
431 431
432 void pshufb(Type Ty, XmmRegister dst, XmmRegister src);
433 void pshufb(Type Ty, XmmRegister dst, const Address &src);
432 void pshufd(Type Ty, XmmRegister dst, XmmRegister src, const Immediate &mask); 434 void pshufd(Type Ty, XmmRegister dst, XmmRegister src, const Immediate &mask);
433 void pshufd(Type Ty, XmmRegister dst, const Address &src, 435 void pshufd(Type Ty, XmmRegister dst, const Address &src,
434 const Immediate &mask); 436 const Immediate &mask);
435 void punpckldq(Type, XmmRegister Dst, XmmRegister Src); 437 void punpckldq(Type, XmmRegister Dst, XmmRegister Src);
436 void punpckldq(Type, XmmRegister Dst, const Address &Src); 438 void punpckldq(Type, XmmRegister Dst, const Address &Src);
437 void shufps(Type Ty, XmmRegister dst, XmmRegister src, const Immediate &mask); 439 void shufps(Type Ty, XmmRegister dst, XmmRegister src, const Immediate &mask);
438 void shufps(Type Ty, XmmRegister dst, const Address &src, 440 void shufps(Type Ty, XmmRegister dst, const Address &src,
439 const Immediate &mask); 441 const Immediate &mask);
440 442
441 void cvtdq2ps(Type, XmmRegister dst, XmmRegister src); 443 void cvtdq2ps(Type, XmmRegister dst, XmmRegister src);
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 emitUint8(0x66); 916 emitUint8(0x66);
915 } 917 }
916 918
917 } // end of namespace X86NAMESPACE 919 } // end of namespace X86NAMESPACE
918 920
919 } // end of namespace Ice 921 } // end of namespace Ice
920 922
921 #include "IceAssemblerX86BaseImpl.h" 923 #include "IceAssemblerX86BaseImpl.h"
922 924
923 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H 925 #endif // SUBZERO_SRC_ICEASSEMBLERX86BASE_H
OLDNEW
« no previous file with comments | « no previous file | src/IceAssemblerX86BaseImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698