Home
last modified time | relevance | path

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

/external/llvm/lib/Target/PowerPC/
DPPCBoolRetToInt.cpp113 PHINodeSet Promotable; in getPromotablePHINodes() local
119 Promotable.insert(P); in getPromotablePHINodes()
122 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
140 auto IsPromotable = [&Promotable] (const Value *V) -> bool { in getPromotablePHINodes()
142 return !Phi || Promotable.count(Phi); in getPromotablePHINodes()
146 Promotable.erase(User); in getPromotablePHINodes()
149 for (const PHINode *P : Promotable) { in getPromotablePHINodes()
159 return Promotable; in getPromotablePHINodes()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
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()
/external/llvm/lib/Transforms/Scalar/
DSROA.cpp3883 bool Promotable = true; in rewritePartition() local
3885 Promotable &= Rewriter.visit(S); in rewritePartition()
3889 Promotable &= Rewriter.visit(&S); in rewritePartition()
3903 Promotable = false; in rewritePartition()
3912 Promotable = false; in rewritePartition()
3918 if (Promotable) { in rewritePartition()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DSROA.cpp4094 bool Promotable = true; in rewritePartition() local
4096 Promotable &= Rewriter.visit(S); in rewritePartition()
4100 Promotable &= Rewriter.visit(&S); in rewritePartition()
4111 Promotable = false; in rewritePartition()
4119 Promotable = false; in rewritePartition()
4125 if (Promotable) { in rewritePartition()
/external/clang/lib/AST/
DASTContext.cpp4771 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { in getPromotedIntegerType()
4772 assert(!Promotable.isNull()); in getPromotedIntegerType()
4773 assert(Promotable->isPromotableIntegerType()); in getPromotedIntegerType()
4774 if (const EnumType *ET = Promotable->getAs<EnumType>()) in getPromotedIntegerType()
4777 if (const BuiltinType *BT = Promotable->getAs<BuiltinType>()) { in getPromotedIntegerType()
4804 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
4806 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
4808 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()