Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCBoolRetToInt.cpp129 PHINodeSet Promotable; in getPromotablePHINodes() local
135 Promotable.insert(P); in getPromotablePHINodes()
138 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
156 auto IsPromotable = [&Promotable] (const Value *V) -> bool { in getPromotablePHINodes()
158 return !Phi || Promotable.count(Phi); in getPromotablePHINodes()
162 Promotable.erase(User); in getPromotablePHINodes()
165 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
175 return Promotable; in getPromotablePHINodes()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp4841 bool Promotable = true; in rewritePartition() local
4843 Promotable &= Rewriter.visit(S); in rewritePartition()
4847 Promotable &= Rewriter.visit(&S); in rewritePartition()
4858 Promotable = false; in rewritePartition()
4871 Promotable = false; in rewritePartition()
4880 if (Promotable) { in rewritePartition()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp7155 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { in getPromotedIntegerType()
7156 assert(!Promotable.isNull()); in getPromotedIntegerType()
7157 assert(isPromotableIntegerType(Promotable)); in getPromotedIntegerType()
7158 if (const auto *ET = Promotable->getAs<EnumType>()) in getPromotedIntegerType()
7161 if (const auto *BT = Promotable->getAs<BuiltinType>()) { in getPromotedIntegerType()
7188 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
7190 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
7192 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()