Home
last modified time | relevance | path

Searched refs:Cttz (Results 1 - 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceIntrinsics.h46 Cttz, enumerator
H A DIceTargetLoweringX8632.cpp3976 case Intrinsics::Cttz: { in lowerIntrinsic()
4624 void TargetX8632::lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, in lowerCountZeros() argument
4652 // Cttz, is similar, but uses bsf instead, and doesn't require the xor in lowerCountZeros()
4660 if (Cttz) { in lowerCountZeros()
4670 if (Cttz) { in lowerCountZeros()
4685 if (!Cttz) { in lowerCountZeros()
4705 if (Cttz) { in lowerCountZeros()
H A DIceTargetLoweringX8664.cpp3512 case Intrinsics::Cttz: { in lowerIntrinsic()
4071 void TargetX8664::lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, in lowerCountZeros() argument
4093 // Cttz, is similar, but uses bsf instead, and doesn't require the xor in lowerCountZeros()
4101 if (Cttz) { in lowerCountZeros()
4111 if (Cttz) { in lowerCountZeros()
4126 if (!Cttz) { in lowerCountZeros()
H A DIceTargetLoweringX8632.h320 void lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, Operand *FirstVal,
H A DIceTargetLoweringX8664.h316 void lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, Operand *FirstVal,
H A DIceTargetLoweringARM32.cpp5058 case Intrinsics::Cttz: {
H A DIceTargetLoweringMIPS32.cpp5007 case Intrinsics::Cttz: { in lowerIntrinsic()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp103 unsigned Cttz = countTrailingZeros(Units); in setWeight() local
104 Weight = (1u << (SlotWeight * s)) * ((MaskWeight - Ctpop) << Cttz); in setWeight()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderGroup.cpp268 dst.move(0, Cttz(value.UInt(0) & SIMD::UInt(15), true)); in EmitGroupNonUniform()
H A DSpirvShaderGLSLstd450.cpp879 dst.move(i, Cttz(v, true) | CmpEQ(v, SIMD::UInt(0))); in EmitExtGLSLstd450()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DSubzeroReactor.cpp4483 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef)
4488 UNIMPLEMENTED_NO_BUG("Subzero Cttz()");
4494 const Ice::Intrinsics::IntrinsicInfo intrinsic = { Ice::Intrinsics::Cttz, Ice::Intrinsics::SideEffects_F, Ice::Intrinsics::ReturnsTwice_F, Ice::Intrinsics::MemoryWrite_F };
4503 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef)
4508 UNIMPLEMENTED_NO_BUG("Subzero Cttz()");
4515 result = Insert(result, Cttz(Extract(x, 0), isZeroUndef), 0);
4516 result = Insert(result, Cttz(Extract(x, 1), isZeroUndef), 1);
4517 result = Insert(result, Cttz(Extract(x, 2), isZeroUndef), 2);
4518 result = Insert(result, Cttz(Extract(x, 3), isZeroUndef), 3);
H A DReactor.hpp2443 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef);
2444 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef);
H A DLLVMReactor.cpp3550 RValue<UInt> Cttz(RValue<UInt> v, bool isZeroUndef) in Cttz() function
3558 RValue<UInt4> Cttz(RValue<UInt4> v, bool isZeroUndef) in Cttz() function
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/
H A DReactorUnitTests.cpp2950 Return(rr::Cttz(x, false));
2973 *out = rr::Cttz(UInt4(x), false);

Completed in 63 milliseconds