Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DSROA.cpp4690 bool Promotable = true; in rewritePartition() local
4692 Promotable &= Rewriter.visit(S); in rewritePartition()
4696 Promotable &= Rewriter.visit(&S); in rewritePartition()
4707 Promotable = false; in rewritePartition()
4720 Promotable = false; in rewritePartition()
4729 if (Promotable) { in rewritePartition()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp7148 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { in getPromotedIntegerType()
7149 assert(!Promotable.isNull()); in getPromotedIntegerType()
7150 assert(isPromotableIntegerType(Promotable)); in getPromotedIntegerType()
7151 if (const auto *ET = Promotable->getAs<EnumType>()) in getPromotedIntegerType()
7154 if (const auto *BT = Promotable->getAs<BuiltinType>()) { in getPromotedIntegerType()
7181 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
7183 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
7185 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()