Home
last modified time | relevance | path

Searched refs:MaxType (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/polly/lib/CodeGen/
H A DIslExprBuilder.cpp178 Type *MaxType = getType(Expr); in createOpUnary() local
183 MaxType = getWidestType(MaxType, V->getType()); in createOpUnary()
185 if (MaxType != V->getType()) in createOpUnary()
355 Type *MaxType; in createOpBin() local
391 MaxType = getWidestType(MaxType, getType(Expr)); in createOpBin()
397 if (MaxType != RHS->getType()) in createOpBin()
400 if (MaxType != LHS->getType()) in createOpBin()
464 Type *MaxType = getType(Expr); in createOpSelect() local
473 MaxType = getWidestType(MaxType, LHS->getType()); in createOpSelect()
474 MaxType = getWidestType(MaxType, RHS->getType()); in createOpSelect()
[all …]
H A DIslNodeBuilder.cpp471 MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType()); in createForVector()
472 MaxType = ExprBuilder.getWidestType(MaxType, ValueInc->getType()); in createForVector()
474 if (MaxType != ValueLB->getType()) in createForVector()
544 Type *MaxType; in createForSequential() local
570 MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType()); in createForSequential()
571 MaxType = ExprBuilder.getWidestType(MaxType, ValueUB->getType()); in createForSequential()
572 MaxType = ExprBuilder.getWidestType(MaxType, ValueInc->getType()); in createForSequential()
650 Type *MaxType; in createForParallel() local
681 MaxType = ExprBuilder.getWidestType(MaxType, ValueLB->getType()); in createForParallel()
682 MaxType = ExprBuilder.getWidestType(MaxType, ValueUB->getType()); in createForParallel()
[all …]
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1041 Type *MaxType = in isKnownLessThan() local
1043 S = SE->getTruncateOrZeroExtend(S, MaxType); in isKnownLessThan()
1044 Size = SE->getTruncateOrZeroExtend(Size, MaxType); in isKnownLessThan()
H A DScalarEvolution.cpp4664 Type *MaxType = nullptr; in getUMinFromMismatchedTypes() local
4666 if (MaxType) in getUMinFromMismatchedTypes()
4667 MaxType = getWiderType(MaxType, S->getType()); in getUMinFromMismatchedTypes()
4669 MaxType = S->getType(); in getUMinFromMismatchedTypes()
4670 assert(MaxType && "Failed to find maximum type!"); in getUMinFromMismatchedTypes()
4675 PromotedOps.push_back(getNoopOrZeroExtend(S, MaxType)); in getUMinFromMismatchedTypes()