| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |