LLVM 24.0.0git
JumpTableToSwitch.cpp
Go to the documentation of this file.
1//===- JumpTableToSwitch.cpp ----------------------------------------------===//
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
10#include "llvm/ADT/STLExtras.h"
12#include "llvm/ADT/Statistic.h"
17#include "llvm/IR/IRBuilder.h"
18#include "llvm/IR/LLVMContext.h"
23#include <limits>
24
25using namespace llvm;
26
28 JumpTableSizeThreshold("jump-table-to-switch-size-threshold", cl::Hidden,
29 cl::desc("Only split jump tables with size less or "
30 "equal than JumpTableSizeThreshold."),
31 cl::init(10));
32
33// TODO: Consider adding a cost model for profitability analysis of this
34// transformation. Currently we replace a jump table with a switch if all the
35// functions in the jump table are smaller than the provided threshold.
37 "jump-table-to-switch-function-size-threshold", cl::Hidden,
38 cl::desc("Only split jump tables containing functions whose sizes are less "
39 "or equal than this threshold."),
40 cl::init(50));
41
42#define DEBUG_TYPE "jump-table-to-switch"
43
44STATISTIC(NumEligibleJumpTables, "The number of jump tables seen by the pass "
45 "that can be converted if deemed profitable.");
46STATISTIC(NumJumpTablesConverted,
47 "The number of jump tables converted into switches.");
48
49namespace {
50struct JumpTableTy {
51 Value *Index;
53};
54} // anonymous namespace
55
56static std::optional<JumpTableTy> parseJumpTable(GetElementPtrInst *GEP,
57 PointerType *PtrTy,
58 FunctionType *CallFTy) {
59 Constant *Ptr = dyn_cast<Constant>(GEP->getPointerOperand());
60 if (!Ptr)
61 return std::nullopt;
62
64 if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer())
65 return std::nullopt;
66
67 Function &F = *GEP->getParent()->getParent();
68 const DataLayout &DL = F.getDataLayout();
69 const unsigned BitWidth =
70 DL.getIndexSizeInBits(GEP->getPointerAddressSpace());
72 APInt ConstantOffset(BitWidth, 0);
73 if (!GEP->collectOffset(DL, BitWidth, VariableOffsets, ConstantOffset))
74 return std::nullopt;
75 if (VariableOffsets.size() != 1)
76 return std::nullopt;
77 // TODO: consider supporting more general patterns
78 if (!ConstantOffset.isZero())
79 return std::nullopt;
80 APInt StrideBytes = VariableOffsets.front().second;
81 const uint64_t JumpTableSizeBytes = GV->getGlobalSize(DL);
82 if (JumpTableSizeBytes % StrideBytes.getZExtValue() != 0)
83 return std::nullopt;
84 ++NumEligibleJumpTables;
85 const uint64_t N = JumpTableSizeBytes / StrideBytes.getZExtValue();
87 return std::nullopt;
88
89 JumpTableTy JumpTable;
90 JumpTable.Index = VariableOffsets.front().first;
91 JumpTable.Funcs.reserve(N);
92 for (uint64_t Index = 0; Index < N; ++Index) {
93 // ConstantOffset is zero.
94 APInt Offset = Index * StrideBytes;
95 Constant *C =
97 auto *Func = dyn_cast_or_null<Function>(C);
98 if (!Func || Func->isDeclaration() || Func->getFunctionType() != CallFTy ||
99 Func->getInstructionCount() > FunctionSizeThreshold)
100 return std::nullopt;
101 JumpTable.Funcs.push_back(Func);
102 }
103 return JumpTable;
104}
105
106static BasicBlock *
107expandToSwitch(CallBase *CB, const JumpTableTy &JT, DomTreeUpdater &DTU,
110 GetGuidForFunction) {
111 ++NumJumpTablesConverted;
112 const bool IsVoid = CB->getType() == Type::getVoidTy(CB->getContext());
113
115 BasicBlock *BB = CB->getParent();
116 BasicBlock *Tail = SplitBlock(BB, CB, &DTU, nullptr, nullptr,
117 BB->getName() + Twine(".tail"));
118 DTUpdates.push_back({DominatorTree::Delete, BB, Tail});
120
121 Function &F = *BB->getParent();
122 BasicBlock *BBUnreachable = BasicBlock::Create(
123 F.getContext(), "default.switch.case.unreachable", &F, Tail);
124 IRBuilder<> BuilderUnreachable(BBUnreachable);
125 BuilderUnreachable.CreateUnreachable();
126
127 IRBuilder<> Builder(BB);
128 SwitchInst *Switch = Builder.CreateSwitch(JT.Index, BBUnreachable);
129 DTUpdates.push_back({DominatorTree::Insert, BB, BBUnreachable});
130
131 IRBuilder<> BuilderTail(CB);
132 PHINode *PHI =
133 IsVoid ? nullptr : BuilderTail.CreatePHI(CB->getType(), JT.Funcs.size());
134 const auto *ProfMD = CB->getMetadata(LLVMContext::MD_prof);
135
136 SmallVector<uint64_t> BranchWeights;
138 const bool HadProfile = isValueProfileMD(ProfMD);
139 if (HadProfile) {
140 // The assumptions, coming in, are that the functions in JT.Funcs are
141 // defined in this module (from parseJumpTable).
143 JT.Funcs, [](const Function *F) { return F && !F->isDeclaration(); }));
144 BranchWeights.reserve(JT.Funcs.size() + 1);
145 // The first is the default target, which is the unreachable block created
146 // above.
147 BranchWeights.push_back(0U);
148 uint64_t TotalCount = 0;
149 auto Targets = getValueProfDataFromInst(
150 *CB, InstrProfValueKind::IPVK_IndirectCallTarget,
151 std::numeric_limits<uint32_t>::max(), TotalCount);
152
153 for (const auto &[G, C] : Targets) {
154 [[maybe_unused]] auto It = GuidToCounter.insert({G, C});
155 // We should always be inserting as it is verifier-enforced IR invariant
156 // that VP metadata does not have duplicate values.
157 assert(It.second);
158 }
159 }
160 for (auto [Index, Func] : llvm::enumerate(JT.Funcs)) {
161 BasicBlock *B = BasicBlock::Create(Func->getContext(),
162 "call." + Twine(Index), &F, Tail);
163 DTUpdates.push_back({DominatorTree::Insert, BB, B});
164 DTUpdates.push_back({DominatorTree::Insert, B, Tail});
165
167 // The MD_prof metadata (VP kind), if it existed, can be dropped, it doesn't
168 // make sense on a direct call. Note that the values are used for the branch
169 // weights of the switch.
170 Call->setMetadata(LLVMContext::MD_prof, nullptr);
171 Call->setCalledFunction(Func);
172 Call->insertInto(B, B->end());
173 Switch->addCase(
174 cast<ConstantInt>(ConstantInt::get(JT.Index->getType(), Index)), B);
175 GlobalValue::GUID FctID = GetGuidForFunction(*Func);
176 // It'd be OK to _not_ find target functions in GuidToCounter, e.g. suppose
177 // just some of the jump targets are taken (for the given profile).
178 BranchWeights.push_back(FctID == 0U ? 0U
179 : GuidToCounter.lookup_or(FctID, 0U));
180 UncondBrInst::Create(Tail, B);
181 if (PHI)
182 PHI->addIncoming(Call, B);
183 }
184 DTU.applyUpdates(DTUpdates);
185 ORE.emit([&]() {
186 return OptimizationRemark(DEBUG_TYPE, "ReplacedJumpTableWithSwitch", CB)
187 << "expanded indirect call into switch";
188 });
189 // Only set branch weights on the switch if we have non-zero branch weights.
190 // We can have no non-zero branch weights while having VP metadata if for
191 // example, all of the functions are external and not instrumented.
192 if (HadProfile && llvm::any_of(BranchWeights, not_equal_to(0))) {
193 setBranchWeights(*Switch, downscaleWeights(BranchWeights),
194 /*IsExpected=*/false);
195 } else
197 if (PHI)
199 CB->eraseFromParent();
200 return Tail;
201}
202
209 DomTreeUpdater DTU(DT, PDT, DomTreeUpdater::UpdateStrategy::Lazy);
210 bool Changed = false;
211 auto FuncToGuid = [&](const Function &Fct) {
212 if (const auto MaybeGUID = Fct.getGUIDIfAssigned(); MaybeGUID)
213 return *MaybeGUID;
214
216 getIRPGOFuncName(Fct, InLTO));
217 };
218
219 for (BasicBlock &BB : make_early_inc_range(F)) {
220 BasicBlock *CurrentBB = &BB;
221 while (CurrentBB) {
222 BasicBlock *SplittedOutTail = nullptr;
223 for (Instruction &I : make_early_inc_range(*CurrentBB)) {
224 auto *Call = dyn_cast<CallInst>(&I);
225 if (!Call || Call->getCalledFunction() || Call->isMustTailCall())
226 continue;
227 auto *L = dyn_cast<LoadInst>(Call->getCalledOperand());
228 // Skip atomic or volatile loads.
229 if (!L || !L->isSimple())
230 continue;
231 auto *GEP = dyn_cast<GetElementPtrInst>(L->getPointerOperand());
232 if (!GEP)
233 continue;
234 auto *PtrTy = dyn_cast<PointerType>(L->getType());
235 assert(PtrTy && "call operand must be a pointer");
236 std::optional<JumpTableTy> JumpTable =
237 parseJumpTable(GEP, PtrTy, Call->getFunctionType());
238 if (!JumpTable)
239 continue;
240 SplittedOutTail =
241 expandToSwitch(Call, *JumpTable, DTU, ORE, FuncToGuid);
242 Changed = true;
243 break;
244 }
245 CurrentBB = SplittedOutTail ? SplittedOutTail : nullptr;
246 }
247 }
248
249 if (!Changed)
250 return PreservedAnalyses::all();
251
253 if (DT)
255 if (PDT)
257 return PA;
258}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
Rewrite undef for PHI
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define DEBUG_TYPE
Hexagon Common GEP
static cl::opt< unsigned > FunctionSizeThreshold("jump-table-to-switch-function-size-threshold", cl::Hidden, cl::desc("Only split jump tables containing functions whose sizes are less " "or equal than this threshold."), cl::init(50))
static BasicBlock * expandToSwitch(CallBase *CB, const JumpTableTy &JT, DomTreeUpdater &DTU, OptimizationRemarkEmitter &ORE, llvm::function_ref< GlobalValue::GUID(const Function &)> GetGuidForFunction)
static cl::opt< unsigned > JumpTableSizeThreshold("jump-table-to-switch-size-threshold", cl::Hidden, cl::desc("Only split jump tables with size less or " "equal than JumpTableSizeThreshold."), cl::init(10))
static std::optional< JumpTableTy > parseJumpTable(GetElementPtrInst *GEP, PointerType *PtrTy, FunctionType *CallFTy)
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define G(x, y, z)
Definition MD5.cpp:55
This file contains the declarations for profiling metadata utility functions.
This file contains some templates that are useful if you are working with the STL at all.
This file defines the SmallVector class.
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:171
Class for arbitrary precision integers.
Definition APInt.h:78
uint64_t getZExtValue() const
Get zero extended value.
Definition APInt.h:1561
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
Definition APInt.h:377
PassT::Result * getCachedResult(IRUnitT &IR) const
Get the cached result of an analysis pass for a given IR unit.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
LLVM Basic Block Representation.
Definition BasicBlock.h:62
const Function * getParent() const
Return the enclosing method, or null if none.
Definition BasicBlock.h:213
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
Definition BasicBlock.h:206
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Definition BasicBlock.h:237
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
This is an important base class in LLVM.
Definition Constant.h:43
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
ValueT lookup_or(const_arg_type_t< KeyT > Val, U &&Default) const
Definition DenseMap.h:288
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition DenseMap.h:312
Analysis pass which computes a DominatorTree.
Definition Dominators.h:241
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:122
void applyUpdates(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
static LLVM_ABI GUID getGUIDAssumingExternalLinkage(StringRef GlobalName)
Return a 64-bit global unique ID constructed from the name of a global symbol.
Definition Globals.cpp:80
uint64_t GUID
Declare a type to represent a global unique identifier for a global value.
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
LLVM_ABI uint64_t getGlobalSize(const DataLayout &DL) const
Get the size of this global variable in bytes.
Definition Globals.cpp:640
bool isConstant() const
If the value is a global constant, its value is immutable throughout the runtime execution of the pro...
bool hasDefinitiveInitializer() const
hasDefinitiveInitializer - Whether the global variable has an initializer, and any other instances of...
UnreachableInst * CreateUnreachable()
Definition IRBuilder.h:1366
PHINode * CreatePHI(Type *Ty, unsigned NumReservedValues, const Twine &Name="")
Definition IRBuilder.h:2555
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition IRBuilder.h:2908
LLVM_ABI Instruction * clone() const
Create a copy of 'this' instruction that is identical in all ways except the following:
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM)
Run the pass over the function.
size_type size() const
Definition MapVector.h:58
std::pair< KeyT, ValueT > & front()
Definition MapVector.h:81
The optimization diagnostic interface.
LLVM_ABI void emit(DiagnosticInfoOptimizationBase &OptDiag)
Output the remark via the diagnostic handler and to the optimization record file.
Diagnostic information for applied optimization remarks.
Analysis pass which computes a PostDominatorTree.
PostDominatorTree Class - Concrete subclass of DominatorTree that is used to compute the post-dominat...
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
PreservedAnalyses & preserve()
Mark an analysis as preserved.
Definition Analysis.h:132
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Multiway switch.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
Definition Type.cpp:272
static UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:257
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
Definition Value.cpp:553
LLVMContext & getContext() const
All values hold a context through their type.
Definition Value.h:260
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Definition Value.cpp:319
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
Definition ilist_node.h:34
CallInst * Call
Changed
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
@ Offset
Definition DWP.cpp:577
constexpr auto not_equal_to(T &&Arg)
Functor variant of std::not_equal_to that can be used as a UnaryPredicate in functional algorithms li...
Definition STLExtras.h:2180
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1739
LLVM_ABI std::string getIRPGOFuncName(const Function &F, bool InLTO=false)
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2554
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition STLExtras.h:633
LLVM_ABI void setExplicitlyUnknownBranchWeights(Instruction &I, StringRef PassName)
Specify that the branch weights for this terminator cannot be known at compile time.
LLVM_ABI void setBranchWeights(Instruction &I, ArrayRef< uint32_t > Weights, bool IsExpected, bool ElideAllZero=false)
Create a new branch_weights metadata node and add or overwrite a prof metadata reference to instructi...
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1746
LLVM_ABI Constant * ConstantFoldLoadFromConst(Constant *C, Type *Ty, const APInt &Offset, const DataLayout &DL)
Extract value of C at the given Offset reinterpreted as Ty.
LLVM_ABI SmallVector< InstrProfValueData, 4 > getValueProfDataFromInst(const Instruction &Inst, InstrProfValueKind ValueKind, uint32_t MaxNumValueData, uint64_t &TotalC, bool GetNoICPValue=false)
Extract the value profile data from Inst and returns them if Inst is annotated with value profile dat...
LLVM_ABI bool isValueProfileMD(const MDNode *ProfileData)
Checks if an MDNode contains value profiling Metadata.
LLVM_ABI BasicBlock * SplitBlock(BasicBlock *Old, BasicBlock::iterator SplitPt, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the specified block at the specified instruction.
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI SmallVector< uint32_t > downscaleWeights(ArrayRef< uint64_t > Weights, std::optional< uint64_t > KnownMaxCount=std::nullopt)
downscale the given weights preserving the ratio.
#define N
A MapVector that performs no allocations if smaller than a certain size.
Definition MapVector.h:342