Home
last modified time | relevance | path

Searched refs:PredType (Results 1 – 11 of 11) sorted by relevance

/openbsd-src/usr.bin/tic/
H A Ddump_entry.h73 typedef unsigned PredType; typedef
77 typedef int (*PredFunc) (PredType, PredIdx);
78 typedef void (*PredHook) (PredType, PredIdx, const char *);
H A DMKtermsort.sh66 typedef unsigned PredType;
H A Ddump_entry.c306 dump_predicate(PredType type, PredIdx idx) in dump_predicate()
339 #define BOOL_IDX(name) (PredType) (&(name) - &(CUR Booleans[0]))
340 #define NUM_IDX(name) (PredType) (&(name) - &(CUR Numbers[0]))
341 #define STR_IDX(name) (PredType) (&(name) - &(CUR Strings[0]))
344 version_filter(PredType type, PredIdx idx) in version_filter()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DSVEIntrinsicOpts.cpp293 auto *PredType = in optimizePredicateStore() local
322 if (BitCast->getOperand(0)->getType() != PredType) in optimizePredicateStore()
330 PredType->getPointerTo(Store->getPointerAddressSpace())); in optimizePredicateStore()
356 auto *PredType = in optimizePredicateLoad() local
363 if (!BitCast || BitCast->getType() != PredType) in optimizePredicateLoad()
390 PredType->getPointerTo(Load->getPointerAddressSpace())); in optimizePredicateLoad()
391 auto *LoadPred = Builder.CreateLoad(PredType, PtrBitCast); in optimizePredicateLoad()
H A DAArch64TargetTransformInfo.cpp797 auto *PredType = ScalableVectorType::get( in instCombineSVECmpNE() local
808 {PredType}, {PTruePat}); in instCombineSVECmpNE()
810 Intrinsic::aarch64_sve_convert_to_svbool, {PredType}, {PTrue}); in instCombineSVECmpNE()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp580 if (std::is_same_v<smax_pred_ty, typename MaxMinT::PredType>) in convertToSCEVype()
582 else if (std::is_same_v<umax_pred_ty, typename MaxMinT::PredType>) in convertToSCEVype()
584 else if (std::is_same_v<smin_pred_ty, typename MaxMinT::PredType>) in convertToSCEVype()
586 else if (std::is_same_v<umin_pred_ty, typename MaxMinT::PredType>) in convertToSCEVype()
/openbsd-src/usr.bin/infocmp/
H A Dinfocmp.c450 compare_predicate(PredType type, PredIdx idx, const char *name) in compare_predicate()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCall.cpp1301 auto PredType = in CreateCoercedLoad() local
1304 if (ScalableDst == PredType && in CreateCoercedLoad()
2993 auto PredType = in EmitFunctionProlog() local
2995 if (VecTyFrom == PredType && in EmitFunctionProlog()
H A DCGExprScalar.cpp2117 auto PredType = llvm::ScalableVectorType::get(Builder.getInt1Ty(), 16); in VisitCastExpr() local
2119 if (ScalableDst == PredType && in VisitCastExpr()
2144 auto PredType = llvm::ScalableVectorType::get(Builder.getInt1Ty(), 16); in VisitCastExpr() local
2145 if (ScalableSrc == PredType && in VisitCastExpr()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp4119 StringRef PredType = IsFCmp ? CCDef->getValueAsString("FCmpPredicate") : in createAndImportSelDAGMatcher() local
4122 if (!PredType.empty()) { in createAndImportSelDAGMatcher()
4123 OM.addPredicate<CmpPredicateOperandMatcher>(std::string(PredType)); in createAndImportSelDAGMatcher()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DPatternMatch.h1749 using PredType = Pred_t; member