1 // Copyright 2016 The SwiftShader Authors. All Rights Reserved. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 #ifndef sw_x86_hpp 16 #define sw_x86_hpp 17 18 #include "Reactor.hpp" 19 20 namespace rr { 21 namespace x86 { 22 23 RValue<Int> cvtss2si(RValue<Float> val); 24 RValue<Int4> cvtps2dq(RValue<Float4> val); 25 26 RValue<Float> rcpss(RValue<Float> val); 27 RValue<Float> sqrtss(RValue<Float> val); 28 RValue<Float> rsqrtss(RValue<Float> val); 29 30 RValue<Float4> rcpps(RValue<Float4> val); 31 RValue<Float4> sqrtps(RValue<Float4> val); 32 RValue<Float4> rsqrtps(RValue<Float4> val); 33 RValue<Float4> maxps(RValue<Float4> x, RValue<Float4> y); 34 RValue<Float4> minps(RValue<Float4> x, RValue<Float4> y); 35 36 RValue<Float> roundss(RValue<Float> val, unsigned char imm); 37 RValue<Float> floorss(RValue<Float> val); 38 RValue<Float> ceilss(RValue<Float> val); 39 40 RValue<Float4> roundps(RValue<Float4> val, unsigned char imm); 41 RValue<Float4> floorps(RValue<Float4> val); 42 RValue<Float4> ceilps(RValue<Float4> val); 43 44 RValue<Int4> pabsd(RValue<Int4> x); 45 46 RValue<Short4> paddsw(RValue<Short4> x, RValue<Short4> y); 47 RValue<Short4> psubsw(RValue<Short4> x, RValue<Short4> y); 48 RValue<UShort4> paddusw(RValue<UShort4> x, RValue<UShort4> y); 49 RValue<UShort4> psubusw(RValue<UShort4> x, RValue<UShort4> y); 50 RValue<SByte8> paddsb(RValue<SByte8> x, RValue<SByte8> y); 51 RValue<SByte8> psubsb(RValue<SByte8> x, RValue<SByte8> y); 52 RValue<Byte8> paddusb(RValue<Byte8> x, RValue<Byte8> y); 53 RValue<Byte8> psubusb(RValue<Byte8> x, RValue<Byte8> y); 54 55 RValue<UShort4> pavgw(RValue<UShort4> x, RValue<UShort4> y); 56 57 RValue<Short4> pmaxsw(RValue<Short4> x, RValue<Short4> y); 58 RValue<Short4> pminsw(RValue<Short4> x, RValue<Short4> y); 59 60 RValue<Short4> pcmpgtw(RValue<Short4> x, RValue<Short4> y); 61 RValue<Short4> pcmpeqw(RValue<Short4> x, RValue<Short4> y); 62 RValue<Byte8> pcmpgtb(RValue<SByte8> x, RValue<SByte8> y); 63 RValue<Byte8> pcmpeqb(RValue<Byte8> x, RValue<Byte8> y); 64 65 RValue<Short4> packssdw(RValue<Int2> x, RValue<Int2> y); 66 RValue<Short8> packssdw(RValue<Int4> x, RValue<Int4> y); 67 RValue<SByte8> packsswb(RValue<Short4> x, RValue<Short4> y); 68 RValue<Byte8> packuswb(RValue<Short4> x, RValue<Short4> y); 69 70 RValue<UShort8> packusdw(RValue<Int4> x, RValue<Int4> y); 71 72 RValue<UShort4> psrlw(RValue<UShort4> x, unsigned char y); 73 RValue<UShort8> psrlw(RValue<UShort8> x, unsigned char y); 74 RValue<Short4> psraw(RValue<Short4> x, unsigned char y); 75 RValue<Short8> psraw(RValue<Short8> x, unsigned char y); 76 RValue<Short4> psllw(RValue<Short4> x, unsigned char y); 77 RValue<Short8> psllw(RValue<Short8> x, unsigned char y); 78 RValue<Int2> pslld(RValue<Int2> x, unsigned char y); 79 RValue<Int4> pslld(RValue<Int4> x, unsigned char y); 80 RValue<Int2> psrad(RValue<Int2> x, unsigned char y); 81 RValue<Int4> psrad(RValue<Int4> x, unsigned char y); 82 RValue<UInt2> psrld(RValue<UInt2> x, unsigned char y); 83 RValue<UInt4> psrld(RValue<UInt4> x, unsigned char y); 84 85 RValue<Int4> pmaxsd(RValue<Int4> x, RValue<Int4> y); 86 RValue<Int4> pminsd(RValue<Int4> x, RValue<Int4> y); 87 RValue<UInt4> pmaxud(RValue<UInt4> x, RValue<UInt4> y); 88 RValue<UInt4> pminud(RValue<UInt4> x, RValue<UInt4> y); 89 90 RValue<Short4> pmulhw(RValue<Short4> x, RValue<Short4> y); 91 RValue<UShort4> pmulhuw(RValue<UShort4> x, RValue<UShort4> y); 92 RValue<Int2> pmaddwd(RValue<Short4> x, RValue<Short4> y); 93 94 RValue<Short8> pmulhw(RValue<Short8> x, RValue<Short8> y); 95 RValue<UShort8> pmulhuw(RValue<UShort8> x, RValue<UShort8> y); 96 RValue<Int4> pmaddwd(RValue<Short8> x, RValue<Short8> y); 97 98 RValue<Int> movmskps(RValue<Float4> x); 99 RValue<Int> pmovmskb(RValue<Byte8> x); 100 101 RValue<Int4> pmovzxbd(RValue<Byte16> x); 102 RValue<Int4> pmovsxbd(RValue<SByte16> x); 103 RValue<Int4> pmovzxwd(RValue<UShort8> x); 104 RValue<Int4> pmovsxwd(RValue<Short8> x); 105 106 } // namespace x86 107 } // namespace rr 108 109 #endif // rr_x86_hpp