LLVM 20.0.0git
InjectTLIMappings.cpp
Go to the documentation of this file.
1//===- InjectTLIMAppings.cpp - TLI to VFABI attribute injection ----------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Populates the VFABI attribute with the scalar-to-vector mappings
10// from the TargetLibraryInfo.
11//
12//===----------------------------------------------------------------------===//
13
15#include "llvm/ADT/Statistic.h"
23
24using namespace llvm;
25
26#define DEBUG_TYPE "inject-tli-mappings"
27
28STATISTIC(NumCallInjected,
29 "Number of calls in which the mappings have been injected.");
30
31STATISTIC(NumVFDeclAdded,
32 "Number of function declarations that have been added.");
33STATISTIC(NumCompUsedAdded,
34 "Number of `@llvm.compiler.used` operands that have been added.");
35
36/// A helper function that adds the vector variant declaration for vectorizing
37/// the CallInst \p CI with a vectorization factor of \p VF lanes. For each
38/// mapping, TLI provides a VABI prefix, which contains all information required
39/// to create vector function declaration.
40static void addVariantDeclaration(CallInst &CI, const ElementCount &VF,
41 const VecDesc *VD) {
42 Module *M = CI.getModule();
43 FunctionType *ScalarFTy = CI.getFunctionType();
44
45 assert(!ScalarFTy->isVarArg() && "VarArg functions are not supported.");
46
47 const std::optional<VFInfo> Info = VFABI::tryDemangleForVFABI(
48 VD->getVectorFunctionABIVariantString(), ScalarFTy);
49
50 assert(Info && "Failed to demangle vector variant");
51 assert(Info->Shape.VF == VF && "Mangled name does not match VF");
52
53 const StringRef VFName = VD->getVectorFnName();
54 FunctionType *VectorFTy = VFABI::createFunctionType(*Info, ScalarFTy);
55 Function *VecFunc =
56 Function::Create(VectorFTy, Function::ExternalLinkage, VFName, M);
58 ++NumVFDeclAdded;
59 LLVM_DEBUG(dbgs() << DEBUG_TYPE << ": Added to the module: `" << VFName
60 << "` of type " << *VectorFTy << "\n");
61
62 // Make function declaration (without a body) "sticky" in the IR by
63 // listing it in the @llvm.compiler.used intrinsic.
64 assert(!VecFunc->size() && "VFABI attribute requires `@llvm.compiler.used` "
65 "only on declarations.");
66 appendToCompilerUsed(*M, {VecFunc});
67 LLVM_DEBUG(dbgs() << DEBUG_TYPE << ": Adding `" << VFName
68 << "` to `@llvm.compiler.used`.\n");
69 ++NumCompUsedAdded;
70}
71
72static void addMappingsFromTLI(const TargetLibraryInfo &TLI, CallInst &CI) {
73 // This is needed to make sure we don't query the TLI for calls to
74 // bitcast of function pointers, like `%call = call i32 (i32*, ...)
75 // bitcast (i32 (...)* @goo to i32 (i32*, ...)*)(i32* nonnull %i)`,
76 // as such calls make the `isFunctionVectorizable` raise an
77 // exception.
78 if (CI.isNoBuiltin() || !CI.getCalledFunction())
79 return;
80
81 StringRef ScalarName = CI.getCalledFunction()->getName();
82
83 // Nothing to be done if the TLI thinks the function is not
84 // vectorizable.
85 if (!TLI.isFunctionVectorizable(ScalarName))
86 return;
88 VFABI::getVectorVariantNames(CI, Mappings);
89 Module *M = CI.getModule();
90 const SetVector<StringRef> OriginalSetOfMappings(Mappings.begin(),
91 Mappings.end());
92
93 auto AddVariantDecl = [&](const ElementCount &VF, bool Predicate) {
94 const VecDesc *VD = TLI.getVectorMappingInfo(ScalarName, VF, Predicate);
95 if (VD && !VD->getVectorFnName().empty()) {
96 std::string MangledName = VD->getVectorFunctionABIVariantString();
97 if (!OriginalSetOfMappings.count(MangledName)) {
98 Mappings.push_back(MangledName);
99 ++NumCallInjected;
100 }
101 Function *VariantF = M->getFunction(VD->getVectorFnName());
102 if (!VariantF)
103 addVariantDeclaration(CI, VF, VD);
104 }
105 };
106
107 // All VFs in the TLI are powers of 2.
108 ElementCount WidestFixedVF, WidestScalableVF;
109 TLI.getWidestVF(ScalarName, WidestFixedVF, WidestScalableVF);
110
111 for (bool Predicated : {false, true}) {
113 ElementCount::isKnownLE(VF, WidestFixedVF); VF *= 2)
114 AddVariantDecl(VF, Predicated);
115
117 ElementCount::isKnownLE(VF, WidestScalableVF); VF *= 2)
118 AddVariantDecl(VF, Predicated);
119 }
120
121 VFABI::setVectorVariantNames(&CI, Mappings);
122}
123
124static bool runImpl(const TargetLibraryInfo &TLI, Function &F) {
125 for (auto &I : instructions(F))
126 if (auto CI = dyn_cast<CallInst>(&I))
127 addMappingsFromTLI(TLI, *CI);
128 // Even if the pass adds IR attributes, the analyses are preserved.
129 return false;
130}
131
132////////////////////////////////////////////////////////////////////////////////
133// New pass manager implementation.
134////////////////////////////////////////////////////////////////////////////////
138 runImpl(TLI, F);
139 // Even if the pass adds IR attributes, the analyses are preserved.
140 return PreservedAnalyses::all();
141}
Expand Atomic instructions
Analysis containing CSE Info
Definition: CSEInfo.cpp:27
#define LLVM_DEBUG(...)
Definition: Debug.h:106
static bool runImpl(Function &F, const TargetLowering &TLI)
This is the interface for a simple mod/ref and alias analysis over globals.
static void addMappingsFromTLI(const TargetLibraryInfo &TLI, CallInst &CI)
static void addVariantDeclaration(CallInst &CI, const ElementCount &VF, const VecDesc *VD)
A helper function that adds the vector variant declaration for vectorizing the CallInst CI with a vec...
static bool runImpl(const TargetLibraryInfo &TLI, Function &F)
#define DEBUG_TYPE
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition: Statistic.h:166
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Definition: PassManager.h:410
bool isNoBuiltin() const
Return true if the call should not be treated as a call to a builtin.
Definition: InstrTypes.h:1873
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
Definition: InstrTypes.h:1349
FunctionType * getFunctionType() const
Definition: InstrTypes.h:1207
This class represents a function call, abstracting a target machine's calling convention.
static constexpr ElementCount getScalable(ScalarTy MinVal)
Definition: TypeSize.h:314
static constexpr ElementCount getFixed(ScalarTy MinVal)
Definition: TypeSize.h:311
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Definition: Function.h:173
size_t size() const
Definition: Function.h:858
void copyAttributesFrom(const Function *Src)
copyAttributesFrom - copy all additional attributes (those not needed to create a Function) from the ...
Definition: Function.cpp:860
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
Definition: Instruction.cpp:66
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:111
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:117
A vector that has set insertion semantics.
Definition: SetVector.h:57
size_type count(const key_type &key) const
Count the number of elements of a given key in the SetVector.
Definition: SetVector.h:264
void push_back(const T &Elt)
Definition: SmallVector.h:413
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1196
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:147
Analysis pass providing the TargetLibraryInfo.
Provides information about what library functions are available for the current target.
void getWidestVF(StringRef ScalarF, ElementCount &FixedVF, ElementCount &ScalableVF) const
Returns the largest vectorization factor used in the list of vector functions.
const VecDesc * getVectorMappingInfo(StringRef F, const ElementCount &VF, bool Masked) const
bool isFunctionVectorizable(StringRef F, const ElementCount &VF) const
StringRef getName() const
Return a constant reference to the value's name.
Definition: Value.cpp:309
Provides info so a possible vectorization of a function can be computed.
std::string getVectorFunctionABIVariantString() const
Returns a vector function ABI variant string on the form: ZGV<isa><mask><vlen><vparams><scalarname>(<...
StringRef getVectorFnName() const
std::optional< VFInfo > tryDemangleForVFABI(StringRef MangledName, const FunctionType *FTy)
Function to construct a VFInfo out of a mangled names in the following format:
FunctionType * createFunctionType(const VFInfo &Info, const FunctionType *ScalarFTy)
Constructs a FunctionType by applying vector function information to the type of a matching scalar fu...
void getVectorVariantNames(const CallInst &CI, SmallVectorImpl< std::string > &VariantMappings)
Populates a set of strings representing the Vector Function ABI variants associated to the CallInst C...
void setVectorVariantNames(CallInst *CI, ArrayRef< std::string > VariantMappings)
Overwrite the Vector Function ABI variants attribute with the names provide in VariantMappings.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
void appendToCompilerUsed(Module &M, ArrayRef< GlobalValue * > Values)
Adds global values to the llvm.compiler.used list.