Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp130 PHINodeSet Promotable; in getPromotablePHINodes() local
136 Promotable.insert(P); in getPromotablePHINodes()
139 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
157 auto IsPromotable = [&Promotable] (const Value *V) -> bool { in getPromotablePHINodes()
159 return !Phi || Promotable.count(Phi); in getPromotablePHINodes()
163 Promotable.erase(User); in getPromotablePHINodes()
166 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
176 return Promotable; in getPromotablePHINodes()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DSROA.cpp4124 bool Promotable = true; in rewritePartition() local
4126 Promotable &= Rewriter.visit(S); in rewritePartition()
4130 Promotable &= Rewriter.visit(&S); in rewritePartition()
4141 Promotable = false; in rewritePartition()
4149 Promotable = false; in rewritePartition()
4155 if (Promotable) { in rewritePartition()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp5705 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { in getPromotedIntegerType()
5706 assert(!Promotable.isNull()); in getPromotedIntegerType()
5707 assert(Promotable->isPromotableIntegerType()); in getPromotedIntegerType()
5708 if (const auto *ET = Promotable->getAs<EnumType>()) in getPromotedIntegerType()
5711 if (const auto *BT = Promotable->getAs<BuiltinType>()) { in getPromotedIntegerType()
5739 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
5741 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
5743 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()