Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp131 PHINodeSet Promotable; in getPromotablePHINodes() local
137 Promotable.insert(P); in getPromotablePHINodes()
140 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
158 auto IsPromotable = [&Promotable] (const Value *V) -> bool { in getPromotablePHINodes()
160 return !Phi || Promotable.count(Phi); in getPromotablePHINodes()
164 Promotable.erase(User); in getPromotablePHINodes()
167 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
177 return Promotable; in getPromotablePHINodes()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp4364 bool Promotable = true; in rewritePartition() local
4366 Promotable &= Rewriter.visit(S); in rewritePartition()
4370 Promotable &= Rewriter.visit(&S); in rewritePartition()
4381 Promotable = false; in rewritePartition()
4389 Promotable = false; in rewritePartition()
4395 if (Promotable) { in rewritePartition()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp6414 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { in getPromotedIntegerType()
6415 assert(!Promotable.isNull()); in getPromotedIntegerType()
6416 assert(Promotable->isPromotableIntegerType()); in getPromotedIntegerType()
6417 if (const auto *ET = Promotable->getAs<EnumType>()) in getPromotedIntegerType()
6420 if (const auto *BT = Promotable->getAs<BuiltinType>()) { in getPromotedIntegerType()
6448 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
6450 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
6452 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()