Home
last modified time | relevance | path

Searched refs:SelType (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp130 Type *SelType = Sel.getType(); in foldSelectICmpAnd() local
131 if (SelType->isVectorTy() != Cmp->getType()->isVectorTy()) in foldSelectICmpAnd()
176 V = Builder.CreateAnd(V, ConstantInt::get(SelType, AndMask)); in foldSelectICmpAnd()
183 Constant *C = ConstantInt::get(SelType, TC); in foldSelectICmpAnd()
190 Constant *C = ConstantInt::get(SelType, FC); in foldSelectICmpAnd()
221 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
225 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
227 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
586 static Instruction *foldSelectICmpAndAnd(Type *SelType, const ICmpInst *Cmp, in foldSelectICmpAndAnd() argument
608 APInt(SelType->getScalarSizeInBits(), in foldSelectICmpAndAnd()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp241 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getGetPropertyFn() local
243 IdType, SelType, in getGetPropertyFn()
256 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getSetPropertyFn() local
259 SelType, in getSetPropertyFn()
284 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getOptimizedSetPropertyFn() local
286 Params.push_back(SelType); in getOptimizedSetPropertyFn()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURegisterBankInfo.cpp2765 LLT SelType = UseSel64 ? LLT::scalar(64) : LLT::scalar(32); in applyMappingImpl() local
2766 auto True = B.buildConstant(SelType, Signed ? -1 : 1); in applyMappingImpl()
2767 auto False = B.buildConstant(SelType, 0); in applyMappingImpl()
2777 auto Sel = B.buildSelect(SelType, SrcReg, True, False); in applyMappingImpl()
H A DAMDGPUISelLowering.cpp797 bool AMDGPUTargetLowering::isSelectSupported(SelectSupportKind SelType) const { in isSelectSupported()