Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
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()
/external/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp585 Type *CountType = TT.isArch64Bit() ? Type::getInt64Ty(C) : in convertToCTRLoop() local
588 ExitCount->getType() != CountType) in convertToCTRLoop()
589 ExitCount = SE->getZeroExtendExpr(ExitCount, CountType); in convertToCTRLoop()
590 ExitCount = SE->getAddExpr(ExitCount, SE->getOne(CountType)); in convertToCTRLoop()
592 SCEVE.expandCodeFor(ExitCount, CountType, Preheader->getTerminator()); in convertToCTRLoop()
597 CountType); in convertToCTRLoop()
/external/v8/tools/clang/plugins/
DFindBadConstructsConsumer.cpp381 CountType(it->getType().getTypePtr(), in CheckCtorDtorWeight()
668 void FindBadConstructsConsumer::CountType(const Type* type, in CountType() function in chrome_checker::FindBadConstructsConsumer
708 CountType(dyn_cast<ElaboratedType>(type)->getNamedType().getTypePtr(), in CountType()
726 CountType(type, in CountType()
DFindBadConstructsConsumer.h86 void CountType(const clang::Type* type,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
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();
/external/clang/lib/Sema/
DSemaExprObjC.cpp985 QualType CountType = Method->parameters()[2]->getType(); in BuildObjCDictionaryLiteral() local
986 if (!CountType->isIntegerType()) { in BuildObjCDictionaryLiteral()
991 << 2 << CountType in BuildObjCDictionaryLiteral()