LLVM 20.0.0git
|
#include "llvm/Transforms/Vectorize/VectorCombine.h"
#include "llvm/ADT/DenseMap.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/ScopeExit.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Analysis/AssumptionCache.h"
#include "llvm/Analysis/BasicAliasAnalysis.h"
#include "llvm/Analysis/GlobalsModRef.h"
#include "llvm/Analysis/Loads.h"
#include "llvm/Analysis/TargetTransformInfo.h"
#include "llvm/Analysis/ValueTracking.h"
#include "llvm/Analysis/VectorUtils.h"
#include "llvm/IR/Dominators.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/PatternMatch.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Transforms/Utils/Local.h"
#include "llvm/Transforms/Utils/LoopUtils.h"
#include <numeric>
#include <queue>
#include "llvm/Transforms/Utils/InstructionWorklist.h"
Go to the source code of this file.
Macros | |
#define | DEBUG_TYPE "vector-combine" |
Typedefs | |
using | InstLane = std::pair< Use *, int > |
Functions | |
STATISTIC (NumVecLoad, "Number of vector loads formed") | |
STATISTIC (NumVecCmp, "Number of vector compares formed") | |
STATISTIC (NumVecBO, "Number of vector binops formed") | |
STATISTIC (NumVecCmpBO, "Number of vector compare + binop formed") | |
STATISTIC (NumShufOfBitcast, "Number of shuffles moved after bitcast") | |
STATISTIC (NumScalarBO, "Number of scalar binops formed") | |
STATISTIC (NumScalarCmp, "Number of scalar compares formed") | |
static Value * | peekThroughBitcasts (Value *V) |
Return the source operand of a potentially bitcasted value. | |
static bool | canWidenLoad (LoadInst *Load, const TargetTransformInfo &TTI) |
static Value * | createShiftShuffle (Value *Vec, unsigned OldIndex, unsigned NewIndex, IRBuilder<> &Builder) |
Create a shuffle that translates (shifts) 1 element from the input vector to a new element location. | |
static ExtractElementInst * | translateExtract (ExtractElementInst *ExtElt, unsigned NewIndex, IRBuilder<> &Builder) |
Given an extract element instruction with constant index operand, shuffle the source vector (shift the scalar element) to a NewIndex for extraction. | |
static bool | isMemModifiedBetween (BasicBlock::iterator Begin, BasicBlock::iterator End, const MemoryLocation &Loc, AAResults &AA) |
static ScalarizationResult | canScalarizeAccess (VectorType *VecTy, Value *Idx, Instruction *CtxI, AssumptionCache &AC, const DominatorTree &DT) |
Check if it is legal to scalarize a memory access to VecTy at index Idx . | |
static Align | computeAlignmentAfterScalarization (Align VectorAlignment, Type *ScalarType, Value *Idx, const DataLayout &DL) |
The memory operation on a vector of ScalarType had alignment of VectorAlignment . | |
static InstLane | lookThroughShuffles (Use *U, int Lane) |
static SmallVector< InstLane > | generateInstLaneVectorFromOperand (ArrayRef< InstLane > Item, int Op) |
static bool | isFreeConcat (ArrayRef< InstLane > Item, const TargetTransformInfo &TTI) |
Detect concat of multiple values into a vector. | |
static Value * | generateNewInstTree (ArrayRef< InstLane > Item, FixedVectorType *Ty, const SmallPtrSet< Use *, 4 > &IdentityLeafs, const SmallPtrSet< Use *, 4 > &SplatLeafs, const SmallPtrSet< Use *, 4 > &ConcatLeafs, IRBuilder<> &Builder) |
Variables | |
static cl::opt< bool > | DisableVectorCombine ("disable-vector-combine", cl::init(false), cl::Hidden, cl::desc("Disable all vector combine transforms")) |
static cl::opt< bool > | DisableBinopExtractShuffle ("disable-binop-extract-shuffle", cl::init(false), cl::Hidden, cl::desc("Disable binop extract to shuffle transforms")) |
static cl::opt< unsigned > | MaxInstrsToScan ("vector-combine-max-scan-instrs", cl::init(30), cl::Hidden, cl::desc("Max number of instructions to scan for vector combining.")) |
static const unsigned | InvalidIndex = std::numeric_limits<unsigned>::max() |
#define DEBUG_TYPE "vector-combine" |
Definition at line 37 of file VectorCombine.cpp.
Definition at line 1676 of file VectorCombine.cpp.
|
static |
Check if it is legal to scalarize a memory access to VecTy
at index Idx
.
Idx
must access a valid vector element.
Definition at line 1190 of file VectorCombine.cpp.
References llvm::ConstantRange::binaryAnd(), llvm::CallingConv::C, llvm::computeConstantRange(), llvm::ConstantRange::contains(), llvm::ConstantInt::getValue(), Idx, llvm::isGuaranteedNotToBePoison(), llvm::PatternMatch::m_And(), llvm::PatternMatch::m_ConstantInt(), llvm::PatternMatch::m_URem(), llvm::PatternMatch::m_Value(), llvm::PatternMatch::match(), and llvm::ConstantRange::urem().
|
static |
Definition at line 150 of file VectorCombine.cpp.
References llvm::TargetTransformInfo::getMinVectorRegisterBitWidth(), llvm::Type::getPrimitiveSizeInBits(), and llvm::mustSuppressSpeculation().
|
static |
The memory operation on a vector of ScalarType
had alignment of VectorAlignment
.
Compute the maximal, but conservatively correct, alignment that will be valid for the memory operation on a single scalar element of the same type with index Idx
.
Definition at line 1237 of file VectorCombine.cpp.
References llvm::CallingConv::C, llvm::commonAlignment(), DL, and Idx.
|
static |
Create a shuffle that translates (shifts) 1 element from the input vector to a new element location.
Definition at line 494 of file VectorCombine.cpp.
References llvm::IRBuilderBase::CreateShuffleVector(), llvm::Value::getType(), and llvm::PoisonMaskElem.
Referenced by translateExtract().
|
static |
Definition at line 1697 of file VectorCombine.cpp.
References llvm::SmallVectorImpl< T >::emplace_back(), lookThroughShuffles(), and llvm::PoisonMaskElem.
Referenced by generateNewInstTree().
|
static |
Definition at line 1744 of file VectorCombine.cpp.
References assert(), llvm::SmallPtrSetImpl< PtrType >::contains(), llvm::IRBuilderBase::CreateBinOp(), llvm::IRBuilderBase::CreateCast(), llvm::IRBuilderBase::CreateCmp(), llvm::IRBuilderBase::CreateIntrinsic(), llvm::IRBuilderBase::CreateSelect(), llvm::IRBuilderBase::CreateShuffleVector(), llvm::IRBuilderBase::CreateUnOp(), llvm::ArrayRef< T >::front(), generateInstLaneVectorFromOperand(), generateNewInstTree(), llvm::FixedVectorType::get(), llvm::FixedVectorType::getNumElements(), I, Idx, II, llvm::isVectorIntrinsicWithScalarOpAtArg(), llvm::propagateIRFlags(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), llvm::ArrayRef< T >::size(), and llvm::SmallVectorBase< Size_T >::size().
Referenced by generateNewInstTree().
|
static |
Detect concat of multiple values into a vector.
Definition at line 1711 of file VectorCombine.cpp.
References llvm::SmallVectorTemplateCommon< T, typename >::begin(), llvm::SmallVectorTemplateCommon< T, typename >::end(), llvm::ArrayRef< T >::front(), llvm::TargetTransformInfo::getShuffleCost(), llvm::Value::getType(), llvm::isPowerOf2_32(), llvm::ArrayRef< T >::size(), llvm::TargetTransformInfo::SK_PermuteTwoSrc, and llvm::TargetTransformInfo::TCK_RecipThroughput.
|
static |
Definition at line 1121 of file VectorCombine.cpp.
References End, llvm::AAResults::getModRefInfo(), llvm::isModSet(), and MaxInstrsToScan.
Definition at line 1678 of file VectorCombine.cpp.
References llvm::PoisonMaskElem.
Referenced by generateInstLaneVectorFromOperand().
Return the source operand of a potentially bitcasted value.
If there is no bitcast, return the input value itself.
Definition at line 144 of file VectorCombine.cpp.
STATISTIC | ( | NumScalarBO | , |
"Number of scalar binops formed" | |||
) |
STATISTIC | ( | NumScalarCmp | , |
"Number of scalar compares formed" | |||
) |
STATISTIC | ( | NumShufOfBitcast | , |
"Number of shuffles moved after bitcast" | |||
) |
STATISTIC | ( | NumVecBO | , |
"Number of vector binops formed" | |||
) |
STATISTIC | ( | NumVecCmp | , |
"Number of vector compares formed" | |||
) |
STATISTIC | ( | NumVecCmpBO | , |
"Number of vector compare + binop formed" | |||
) |
STATISTIC | ( | NumVecLoad | , |
"Number of vector loads formed" | |||
) |
|
static |
Given an extract element instruction with constant index operand, shuffle the source vector (shift the scalar element) to a NewIndex for extraction.
Return null if the input can be constant folded, so that we are not creating unnecessary instructions.
Definition at line 509 of file VectorCombine.cpp.
References assert(), llvm::CallingConv::C, llvm::IRBuilderBase::CreateExtractElement(), createShiftShuffle(), llvm::ExtractElementInst::getIndexOperand(), llvm::User::getOperand(), llvm::Value::getType(), llvm::ExtractElementInst::getVectorOperand(), and X.
|
static |
|
static |
Definition at line 63 of file VectorCombine.cpp.
|
static |
Referenced by isMemModifiedBetween().