Searched refs:CountType (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | HardwareLoops.cpp | 206 CountType(Info.CountType), in HardwareLoop() 222 Type *CountType = nullptr; member in __anon3d0d820f0111::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/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | TargetTransformInfo.cpp | 120 CountType = Type::getInt32Ty(L->getHeader()->getContext()); in HardwareLoopInfo() 121 LoopDecrement = ConstantInt::get(CountType, 1); in HardwareLoopInfo() 148 if (SE.getTypeSizeInBits(EC->getType()) > CountType->getBitWidth()) in isHardwareLoopCandidate()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCTargetTransformInfo.cpp | 394 HWLoopInfo.CountType = TM.isPPC64() ? in isHardwareLoopProfitable() 396 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.cpp | 2232 HWLoopInfo.CountType = Type::getInt32Ty(C); in isHardwareLoopProfitable() 2233 HWLoopInfo.LoopDecrement = ConstantInt::get(HWLoopInfo.CountType, 1); in isHardwareLoopProfitable()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaExprObjC.cpp | 1071 QualType CountType = Method->parameters()[2]->getType(); in BuildObjCDictionaryLiteral() local 1072 if (!CountType->isIntegerType()) { in BuildObjCDictionaryLiteral() 1077 << 2 << CountType in BuildObjCDictionaryLiteral()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfo.h | 105 IntegerType *CountType = nullptr; member
|