• Home
  • Raw
  • Download

Lines Matching refs:Byte8

1873 RValue<Byte8> AddSat(RValue<Byte8> x, RValue<Byte8> y)  in AddSat()
1879 return As<Byte8>(V(lowerPUADDSAT(V(x.value()), V(y.value())))); in AddSat()
1883 RValue<Byte8> SubSat(RValue<Byte8> x, RValue<Byte8> y) in SubSat()
1889 return As<Byte8>(V(lowerPUSUBSAT(V(x.value()), V(y.value())))); in SubSat()
1893 RValue<Int> SignMask(RValue<Byte8> x) in SignMask()
1912 RValue<Byte8> CmpEQ(RValue<Byte8> x, RValue<Byte8> y) in CmpEQ()
1918 …return As<Byte8>(V(lowerPCMP(llvm::ICmpInst::ICMP_EQ, V(x.value()), V(y.value()), T(Byte8::type())… in CmpEQ()
1922 Type *Byte8::type() in type()
1951 return x86::pmovmskb(As<Byte8>(x)); in SignMask()
1957 RValue<Byte8> CmpGT(RValue<SByte8> x, RValue<SByte8> y) in CmpGT()
1963 …return As<Byte8>(V(lowerPCMP(llvm::ICmpInst::ICMP_SGT, V(x.value()), V(y.value()), T(Byte8::type()… in CmpGT()
1967 RValue<Byte8> CmpEQ(RValue<SByte8> x, RValue<SByte8> y) in CmpEQ()
1971 return x86::pcmpeqb(As<Byte8>(x), As<Byte8>(y)); in CmpEQ()
1973 …return As<Byte8>(V(lowerPCMP(llvm::ICmpInst::ICMP_EQ, V(x.value()), V(y.value()), T(Byte8::type())… in CmpEQ()
2125 RValue<Byte8> PackUnsigned(RValue<Short4> x, RValue<Short4> y) in PackUnsigned()
2133 return As<Byte8>(Swizzle(As<Int4>(result), 0x0202)); in PackUnsigned()
3771 RValue<Byte8> paddusb(RValue<Byte8> x, RValue<Byte8> y) in paddusb()
3773 return As<Byte8>(V(lowerPUADDSAT(V(x.value()), V(y.value())))); in paddusb()
3776 RValue<Byte8> psubusb(RValue<Byte8> x, RValue<Byte8> y) in psubusb()
3778 return As<Byte8>(V(lowerPUSUBSAT(V(x.value()), V(y.value())))); in psubusb()
3806 RValue<Byte8> pcmpgtb(RValue<SByte8> x, RValue<SByte8> y) in pcmpgtb()
3808 …return As<Byte8>(V(lowerPCMP(llvm::ICmpInst::ICMP_SGT, V(x.value()), V(y.value()), T(Byte8::type()… in pcmpgtb()
3811 RValue<Byte8> pcmpeqb(RValue<Byte8> x, RValue<Byte8> y) in pcmpeqb()
3813 …return As<Byte8>(V(lowerPCMP(llvm::ICmpInst::ICMP_EQ, V(x.value()), V(y.value()), T(Byte8::type())… in pcmpeqb()
3831 RValue<Byte8> packuswb(RValue<Short4> x, RValue<Short4> y) in packuswb()
3833 return As<Byte8>(createInstruction(llvm::Intrinsic::x86_sse2_packuswb_128, x.value(), y.value())); in packuswb()
3966 RValue<Int> pmovmskb(RValue<Byte8> x) in pmovmskb()