Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp654 Type *CountType = TM->isPPC64() ? Type::getInt64Ty(C) : Type::getInt32Ty(C); in convertToCTRLoop() local
656 ExitCount->getType() != CountType) in convertToCTRLoop()
657 ExitCount = SE->getZeroExtendExpr(ExitCount, CountType); in convertToCTRLoop()
658 ExitCount = SE->getAddExpr(ExitCount, SE->getOne(CountType)); in convertToCTRLoop()
660 SCEVE.expandCodeFor(ExitCount, CountType, Preheader->getTerminator()); in convertToCTRLoop()
665 CountType); in convertToCTRLoop()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h374 typedef PointerUnion<ConstantInt*, DIVariable*> CountType;
376 CountType getCount() const {
378 return CountType(cast<ConstantInt>(MD->getValue()));
381 return CountType(DV);
383 return CountType();
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExprObjC.cpp990 QualType CountType = Method->parameters()[2]->getType(); in BuildObjCDictionaryLiteral() local
991 if (!CountType->isIntegerType()) { in BuildObjCDictionaryLiteral()
996 << 2 << CountType in BuildObjCDictionaryLiteral()