Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp126 PHINodeSet Promotable; in getPromotablePHINodes() local
132 Promotable.insert(P); in getPromotablePHINodes()
135 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
152 auto IsPromotable = [&Promotable] (const Value *V) -> bool { in getPromotablePHINodes()
154 return !Phi || Promotable.count(Phi); in getPromotablePHINodes()
158 Promotable.erase(User); in getPromotablePHINodes()
161 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
171 return Promotable; in getPromotablePHINodes()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp5028 bool Promotable = true; in rewritePartition() local
5030 Promotable &= Rewriter.visit(S); in rewritePartition()
5034 Promotable &= Rewriter.visit(&S); in rewritePartition()
5045 Promotable = false; in rewritePartition()
5058 Promotable = false; in rewritePartition()
5067 if (Promotable) { in rewritePartition()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp8207 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { in getPromotedIntegerType()
8208 assert(!Promotable.isNull()); in getPromotedIntegerType()
8209 assert(isPromotableIntegerType(Promotable)); in getPromotedIntegerType()
8210 if (const auto *ET = Promotable->getAs<EnumType>()) in getPromotedIntegerType()
8213 if (const auto *BT = Promotable->getAs<BuiltinType>()) { in getPromotedIntegerType()
8240 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
8242 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
8244 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()