HomeSort by: relevance | last modified time | path
    Searched refs:Promotable (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCBoolRetToInt.cpp 122 // A PHINode is Promotable if:
128 // 4. All of its PHINode uses are Promotable AND
129 // 5. All of its PHINode operands are Promotable
131 PHINodeSet Promotable;
137 Promotable.insert(P);
140 for (const PHINode *P : Promotable) {
158 auto IsPromotable = [&Promotable] (const Value *V) -> bool {
160 return !Phi || Promotable.count(Phi);
164 Promotable.erase(User);
167 for (const PHINode *P : Promotable) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
SROA.cpp 10 /// aggregates transformation. It tries to identify promotable elements of an
271 /// Access Uses that should be dropped if the alloca is promotable.
1891 /// be promotable, so we have an early test here.
2047 // they are promotable.
2072 // they are promotable.
2091 /// widened to promotable ones.
2303 // which are promotable via mem2reg.
3110 // Lifetime intrinsics are only promotable if they cover the whole alloca.
3115 // FIXME: Check whether the alloca is promotable before dropping the
4084 // this store, and we have to track any promotable alloca (indicated b
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 6335 /// Whether this is a promotable bitfield reference according
6392 /// getPromotedIntegerType - Returns the type that Promotable will
6393 /// promote to: C99 6.3.1.1p2, assuming that Promotable is a promotable
6395 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const {
6396 assert(!Promotable.isNull());
6397 assert(Promotable->isPromotableIntegerType());
6398 if (const auto *ET = Promotable->getAs<EnumType>())
6401 if (const auto *BT = Promotable->getAs<BuiltinType>()) {
6429 if (Promotable->isSignedIntegerType()
    [all...]

Completed in 23 milliseconds