Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DHardwareLoops.cpp188 CountType(Info.CountType), in HardwareLoop()
203 Type *CountType = nullptr; member in __anon7620f73f0111::HardwareLoop
270 HWLoopInfo.CountType = in TryConvertLoop()
275 ConstantInt::get(HWLoopInfo.CountType, LoopDecrement); in TryConvertLoop()
388 ExitCount->getType() != CountType) in InitLoopCount()
389 ExitCount = SE.getZeroExtendExpr(ExitCount, CountType); in InitLoopCount()
391 ExitCount = SE.getAddExpr(ExitCount, SE.getOne(CountType)); in InitLoopCount()
422 Value *Count = SCEVE.expandCodeFor(ExitCount, CountType, in InitLoopCount()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp791 HWLoopInfo.CountType = TM.isPPC64() ? in isHardwareLoopProfitable()
793 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp129 if (SE.getTypeSizeInBits(EC->getType()) > CountType->getBitWidth()) in isHardwareLoopCandidate()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp2055 HWLoopInfo.CountType = Type::getInt32Ty(C); in isHardwareLoopProfitable()
2056 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h102 IntegerType *CountType = nullptr; member