Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp128 Type *SelType = Sel.getType(); in foldSelectICmpAnd() local
129 if (SelType->isVectorTy() != Cmp->getType()->isVectorTy()) in foldSelectICmpAnd()
174 V = Builder.CreateAnd(V, ConstantInt::get(SelType, AndMask)); in foldSelectICmpAnd()
181 Constant *C = ConstantInt::get(SelType, TC); in foldSelectICmpAnd()
188 Constant *C = ConstantInt::get(SelType, FC); in foldSelectICmpAnd()
211 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
215 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
217 V = Builder.CreateZExtOrTrunc(V, SelType); in foldSelectICmpAnd()
528 static Instruction *foldSelectICmpAndAnd(Type *SelType, const ICmpInst *Cmp, in foldSelectICmpAndAnd() argument
550 APInt(SelType->getScalarSizeInBits(), in foldSelectICmpAndAnd()
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPURegisterBankInfo.cpp2631 LLT SelType = UseSel64 ? LLT::scalar(64) : LLT::scalar(32); in applyMappingImpl() local
2632 auto True = B.buildConstant(SelType, Signed ? -1 : 1); in applyMappingImpl()
2633 auto False = B.buildConstant(SelType, 0); in applyMappingImpl()
2643 auto Sel = B.buildSelect(SelType, SrcReg, True, False); in applyMappingImpl()
H A DAMDGPUISelLowering.cpp676 bool AMDGPUTargetLowering::isSelectSupported(SelectSupportKind SelType) const { in isSelectSupported()