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.cpp131 Type *SelType = Sel.getType(); in foldSelectICmpAnd() local
150 Constant *TCC = ConstantInt::get(SelType, TC); in foldSelectICmpAnd()
151 Constant *FCC = ConstantInt::get(SelType, FC); in foldSelectICmpAnd()
152 Constant *MaskC = ConstantInt::get(SelType, AndMask); in foldSelectICmpAnd()
178 SelType->getScalarSizeInBits() != V->getType()->getScalarSizeInBits(); in foldSelectICmpAnd()
194 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
198 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
200 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
632 static Instruction *foldSelectICmpAndAnd(Type *SelType, const ICmpInst *Cmp, in foldSelectICmpAndAnd() argument
654 APInt(SelType->getScalarSizeInBits(), in foldSelectICmpAndAnd()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGObjCMac.cpp220 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getGetPropertyFn() local
222 IdType, SelType, in getGetPropertyFn()
234 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getSetPropertyFn() local
237 SelType, in getSetPropertyFn()
261 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getOptimizedSetPropertyFn() local
263 Params.push_back(SelType); in getOptimizedSetPropertyFn()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURegisterBankInfo.cpp2815 LLT SelType = UseSel64 ? LLT::scalar(64) : LLT::scalar(32); in applyMappingImpl() local
2816 auto True = B.buildConstant(SelType, Signed ? -1 : 1); in applyMappingImpl()
2817 auto False = B.buildConstant(SelType, 0); in applyMappingImpl()
2827 auto Sel = B.buildSelect(SelType, SrcReg, True, False); in applyMappingImpl()
H A DAMDGPUISelLowering.cpp812 bool AMDGPUTargetLowering::isSelectSupported(SelectSupportKind SelType) const { in isSelectSupported()