Home
last modified time | relevance | path

Searched refs:CountType (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DHardwareLoops.cpp206 CountType(Info.CountType), in HardwareLoop()
222 Type *CountType = nullptr; member in __anon34762e850111::HardwareLoop
332 HWLoopInfo.CountType = IntegerType::get(Ctx, Opts.Bitwidth.value()); in TryConvertLoop()
337 ConstantInt::get(HWLoopInfo.CountType, Opts.Decrement.value()); in TryConvertLoop()
450 ExitCount->getType() != CountType) in InitLoopCount()
451 ExitCount = SE.getZeroExtendExpr(ExitCount, CountType); in InitLoopCount()
453 ExitCount = SE.getAddExpr(ExitCount, SE.getOne(CountType)); in InitLoopCount()
485 Value *Count = SCEVE.expandCodeFor(ExitCount, CountType, in InitLoopCount()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp119 CountType = Type::getInt32Ty(L->getHeader()->getContext()); in HardwareLoopInfo()
120 LoopDecrement = ConstantInt::get(CountType, 1); in HardwareLoopInfo()
147 if (SE.getTypeSizeInBits(EC->getType()) > CountType->getBitWidth()) in isHardwareLoopCandidate()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp394 HWLoopInfo.CountType = TM.isPPC64() ? in isHardwareLoopProfitable()
396 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp1064 QualType CountType = Method->parameters()[2]->getType(); in BuildObjCDictionaryLiteral() local
1065 if (!CountType->isIntegerType()) { in BuildObjCDictionaryLiteral()
1070 << 2 << CountType in BuildObjCDictionaryLiteral()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp2220 HWLoopInfo.CountType = Type::getInt32Ty(C); in isHardwareLoopProfitable()
2221 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h104 IntegerType *CountType = nullptr; member