Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DHardwareLoops.cpp191 CountType(Info.CountType), in HardwareLoop()
206 Type *CountType = nullptr; member in __anone95c3c430111::HardwareLoop
273 HWLoopInfo.CountType = in TryConvertLoop()
278 ConstantInt::get(HWLoopInfo.CountType, LoopDecrement); in TryConvertLoop()
385 ExitCount->getType() != CountType) in InitLoopCount()
386 ExitCount = SE.getZeroExtendExpr(ExitCount, CountType); in InitLoopCount()
388 ExitCount = SE.getAddExpr(ExitCount, SE.getOne(CountType)); in InitLoopCount()
419 Value *Count = SCEVE.expandCodeFor(ExitCount, CountType, in InitLoopCount()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp786 HWLoopInfo.CountType = TM.isPPC64() ? in isHardwareLoopProfitable()
788 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp124 if (SE.getTypeSizeInBits(EC->getType()) > CountType->getBitWidth()) in isHardwareLoopCandidate()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp1942 HWLoopInfo.CountType = Type::getInt32Ty(C); in isHardwareLoopProfitable()
1943 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp1066 QualType CountType = Method->parameters()[2]->getType(); in BuildObjCDictionaryLiteral() local
1067 if (!CountType->isIntegerType()) { in BuildObjCDictionaryLiteral()
1072 << 2 << CountType in BuildObjCDictionaryLiteral()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h101 IntegerType *CountType = nullptr; member