mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-12 13:38:21 +00:00
ARM Cost Model: We need to detect the max bitwidth of types in the loop in order to select the max vectorization factor.
We don't have a detailed analysis on which values are vectorized and which stay scalars in the vectorized loop so we use another method. We look at reduction variables, loads and stores, which are the only ways to get information in and out of loop iterations. If the data types are extended and truncated then the cost model will catch the cost of the vector zext/sext/trunc operations. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172178 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -2635,7 +2635,7 @@ LoopVectorizationCostModel::selectVectorizationFactor(bool OptForSize,
|
||||
|
||||
assert(MaxVectorSize <= 32 && "Did not expect to pack so many elements"
|
||||
" into one vector.");
|
||||
|
||||
|
||||
unsigned VF = MaxVectorSize;
|
||||
|
||||
// If we optimize the program for size, avoid creating the tail loop.
|
||||
@ -2697,17 +2697,23 @@ unsigned LoopVectorizationCostModel::getWidestType() {
|
||||
|
||||
// For each instruction in the loop.
|
||||
for (BasicBlock::iterator it = BB->begin(), e = BB->end(); it != e; ++it) {
|
||||
if (Legal->isUniformAfterVectorization(it))
|
||||
continue;
|
||||
|
||||
Type *T = it->getType();
|
||||
|
||||
// Only examine Loads, Stores and PHINodes.
|
||||
if (!isa<LoadInst>(it) && !isa<StoreInst>(it) && !isa<PHINode>(it))
|
||||
continue;
|
||||
|
||||
// Examine PHI nodes that are reduction variables.
|
||||
if (PHINode *PN = dyn_cast<PHINode>(it))
|
||||
if (!Legal->getReductionVars()->count(PN))
|
||||
continue;
|
||||
|
||||
// Examine the stored values.
|
||||
if (StoreInst *ST = dyn_cast<StoreInst>(it))
|
||||
T = ST->getValueOperand()->getType();
|
||||
|
||||
// PHINodes and pointers are difficult to analyze, but we catch all other
|
||||
// uses of the types in other instructions.
|
||||
if (isa<PHINode>(it) || T->isPointerTy() || T->isVoidTy())
|
||||
// Ignore stored/loaded pointer types.
|
||||
if (T->isPointerTy())
|
||||
continue;
|
||||
|
||||
MaxWidth = std::max(MaxWidth, T->getScalarSizeInBits());
|
||||
|
Reference in New Issue
Block a user