LLVM 19.0.0git
WholeProgramDevirt.h
Go to the documentation of this file.
1//===- WholeProgramDevirt.h - Whole-program devirt pass ---------*- C++ -*-===//
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// This file defines parts of the whole-program devirtualization pass
10// implementation that may be usefully unit tested.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_TRANSFORMS_IPO_WHOLEPROGRAMDEVIRT_H
15#define LLVM_TRANSFORMS_IPO_WHOLEPROGRAMDEVIRT_H
16
17#include "llvm/IR/GlobalValue.h"
18#include "llvm/IR/PassManager.h"
19#include <cassert>
20#include <cstdint>
21#include <map>
22#include <set>
23#include <utility>
24#include <vector>
25
26namespace llvm {
27class Module;
28
29template <typename T> class ArrayRef;
30template <typename T> class MutableArrayRef;
31class GlobalVariable;
32class ModuleSummaryIndex;
33struct ValueInfo;
34
35namespace wholeprogramdevirt {
36
37// A bit vector that keeps track of which bits are used. We use this to
38// pack constant values compactly before and after each virtual table.
40 std::vector<uint8_t> Bytes;
41
42 // Bits in BytesUsed[I] are 1 if matching bit in Bytes[I] is used, 0 if not.
43 std::vector<uint8_t> BytesUsed;
44
45 std::pair<uint8_t *, uint8_t *> getPtrToData(uint64_t Pos, uint8_t Size) {
46 if (Bytes.size() < Pos + Size) {
47 Bytes.resize(Pos + Size);
48 BytesUsed.resize(Pos + Size);
49 }
50 return std::make_pair(Bytes.data() + Pos, BytesUsed.data() + Pos);
51 }
52
53 // Set little-endian value Val with size Size at bit position Pos,
54 // and mark bytes as used.
55 void setLE(uint64_t Pos, uint64_t Val, uint8_t Size) {
56 assert(Pos % 8 == 0);
57 auto DataUsed = getPtrToData(Pos / 8, Size);
58 for (unsigned I = 0; I != Size; ++I) {
59 DataUsed.first[I] = Val >> (I * 8);
60 assert(!DataUsed.second[I]);
61 DataUsed.second[I] = 0xff;
62 }
63 }
64
65 // Set big-endian value Val with size Size at bit position Pos,
66 // and mark bytes as used.
67 void setBE(uint64_t Pos, uint64_t Val, uint8_t Size) {
68 assert(Pos % 8 == 0);
69 auto DataUsed = getPtrToData(Pos / 8, Size);
70 for (unsigned I = 0; I != Size; ++I) {
71 DataUsed.first[Size - I - 1] = Val >> (I * 8);
72 assert(!DataUsed.second[Size - I - 1]);
73 DataUsed.second[Size - I - 1] = 0xff;
74 }
75 }
76
77 // Set bit at bit position Pos to b and mark bit as used.
78 void setBit(uint64_t Pos, bool b) {
79 auto DataUsed = getPtrToData(Pos / 8, 1);
80 if (b)
81 *DataUsed.first |= 1 << (Pos % 8);
82 assert(!(*DataUsed.second & (1 << Pos % 8)));
83 *DataUsed.second |= 1 << (Pos % 8);
84 }
85};
86
87// The bits that will be stored before and after a particular vtable.
88struct VTableBits {
89 // The vtable global.
91
92 // Cache of the vtable's size in bytes.
94
95 // The bit vector that will be laid out before the vtable. Note that these
96 // bytes are stored in reverse order until the globals are rebuilt. This means
97 // that any values in the array must be stored using the opposite endianness
98 // from the target.
100
101 // The bit vector that will be laid out after the vtable.
103};
104
105// Information about a member of a particular type identifier.
107 // The VTableBits for the vtable.
109
110 // The offset in bytes from the start of the vtable (i.e. the address point).
112
113 bool operator<(const TypeMemberInfo &other) const {
114 return Bits < other.Bits || (Bits == other.Bits && Offset < other.Offset);
115 }
116};
117
118// A virtual call target, i.e. an entry in a particular vtable.
121
122 // For testing only.
124 : Fn(nullptr), TM(TM), IsBigEndian(IsBigEndian), WasDevirt(false) {}
125
126 // The function (or an alias to a function) stored in the vtable.
128
129 // A pointer to the type identifier member through which the pointer to Fn is
130 // accessed.
132
133 // When doing virtual constant propagation, this stores the return value for
134 // the function when passed the currently considered argument list.
136
137 // Whether the target is big endian.
139
140 // Whether at least one call site to the target was devirtualized.
142
143 // The minimum byte offset before the address point. This covers the bytes in
144 // the vtable object before the address point (e.g. RTTI, access-to-top,
145 // vtables for other base classes) and is equal to the offset from the start
146 // of the vtable object to the address point.
147 uint64_t minBeforeBytes() const { return TM->Offset; }
148
149 // The minimum byte offset after the address point. This covers the bytes in
150 // the vtable object after the address point (e.g. the vtable for the current
151 // class and any later base classes) and is equal to the size of the vtable
152 // object minus the offset from the start of the vtable object to the address
153 // point.
155
156 // The number of bytes allocated (for the vtable plus the byte array) before
157 // the address point.
159 return minBeforeBytes() + TM->Bits->Before.Bytes.size();
160 }
161
162 // The number of bytes allocated (for the vtable plus the byte array) after
163 // the address point.
165 return minAfterBytes() + TM->Bits->After.Bytes.size();
166 }
167
168 // Set the bit at position Pos before the address point to RetVal.
170 assert(Pos >= 8 * minBeforeBytes());
171 TM->Bits->Before.setBit(Pos - 8 * minBeforeBytes(), RetVal);
172 }
173
174 // Set the bit at position Pos after the address point to RetVal.
176 assert(Pos >= 8 * minAfterBytes());
177 TM->Bits->After.setBit(Pos - 8 * minAfterBytes(), RetVal);
178 }
179
180 // Set the bytes at position Pos before the address point to RetVal.
181 // Because the bytes in Before are stored in reverse order, we use the
182 // opposite endianness to the target.
183 void setBeforeBytes(uint64_t Pos, uint8_t Size) {
184 assert(Pos >= 8 * minBeforeBytes());
185 if (IsBigEndian)
186 TM->Bits->Before.setLE(Pos - 8 * minBeforeBytes(), RetVal, Size);
187 else
188 TM->Bits->Before.setBE(Pos - 8 * minBeforeBytes(), RetVal, Size);
189 }
190
191 // Set the bytes at position Pos after the address point to RetVal.
192 void setAfterBytes(uint64_t Pos, uint8_t Size) {
193 assert(Pos >= 8 * minAfterBytes());
194 if (IsBigEndian)
195 TM->Bits->After.setBE(Pos - 8 * minAfterBytes(), RetVal, Size);
196 else
197 TM->Bits->After.setLE(Pos - 8 * minAfterBytes(), RetVal, Size);
198 }
199};
200
201// Find the minimum offset that we may store a value of size Size bits at. If
202// IsAfter is set, look for an offset before the object, otherwise look for an
203// offset after the object.
205 uint64_t Size);
206
207// Set the stored value in each of Targets to VirtualCallTarget::RetVal at the
208// given allocation offset before the vtable address. Stores the computed
209// byte/bit offset to OffsetByte/OffsetBit.
211 uint64_t AllocBefore, unsigned BitWidth,
212 int64_t &OffsetByte, uint64_t &OffsetBit);
213
214// Set the stored value in each of Targets to VirtualCallTarget::RetVal at the
215// given allocation offset after the vtable address. Stores the computed
216// byte/bit offset to OffsetByte/OffsetBit.
218 uint64_t AllocAfter, unsigned BitWidth,
219 int64_t &OffsetByte, uint64_t &OffsetBit);
220
221} // end namespace wholeprogramdevirt
222
223struct WholeProgramDevirtPass : public PassInfoMixin<WholeProgramDevirtPass> {
226 bool UseCommandLine = false;
228 : ExportSummary(nullptr), ImportSummary(nullptr), UseCommandLine(true) {}
233 }
235};
236
240};
241bool hasWholeProgramVisibility(bool WholeProgramVisibilityEnabledInLTO);
243 bool WholeProgramVisibilityEnabledInLTO);
245 Module &M, bool WholeProgramVisibilityEnabledInLTO,
246 const DenseSet<GlobalValue::GUID> &DynamicExportSymbols,
247 bool ValidateAllVtablesHaveTypeInfos,
248 function_ref<bool(StringRef)> IsVisibleToRegularObj);
250 ModuleSummaryIndex &Index, bool WholeProgramVisibilityEnabledInLTO,
251 const DenseSet<GlobalValue::GUID> &DynamicExportSymbols,
252 const DenseSet<GlobalValue::GUID> &VisibleToRegularObjSymbols);
253
256 DenseSet<GlobalValue::GUID> &VisibleToRegularObjSymbols,
257 function_ref<bool(StringRef)> IsVisibleToRegularObj);
258
259/// Perform index-based whole program devirtualization on the \p Summary
260/// index. Any devirtualized targets used by a type test in another module
261/// are added to the \p ExportedGUIDs set. For any local devirtualized targets
262/// only used within the defining module, the information necessary for
263/// locating the corresponding WPD resolution is recorded for the ValueInfo
264/// in case it is exported by cross module importing (in which case the
265/// devirtualized target name will need adjustment).
267 ModuleSummaryIndex &Summary, std::set<GlobalValue::GUID> &ExportedGUIDs,
268 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap);
269
270/// Call after cross-module importing to update the recorded single impl
271/// devirt target names for any locals that were exported.
273 ModuleSummaryIndex &Summary,
274 function_ref<bool(StringRef, ValueInfo)> isExported,
275 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap);
276
277} // end namespace llvm
278
279#endif // LLVM_TRANSFORMS_IPO_WHOLEPROGRAMDEVIRT_H
basic Basic Alias true
uint64_t Size
#define I(x, y, z)
Definition: MD5.cpp:58
Machine Check Debug Module
This header defines various interfaces for pass management in LLVM.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:348
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
Implements a dense probed hash-table based set.
Definition: DenseSet.h:271
Class to hold module path string table and global value map, and encapsulate methods for operating on...
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Definition: ArrayRef.h:307
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:109
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
An efficient, type-erasing, non-owning reference to a callable.
uint64_t findLowestOffset(ArrayRef< VirtualCallTarget > Targets, bool IsAfter, uint64_t Size)
void setAfterReturnValues(MutableArrayRef< VirtualCallTarget > Targets, uint64_t AllocAfter, unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit)
void setBeforeReturnValues(MutableArrayRef< VirtualCallTarget > Targets, uint64_t AllocBefore, unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit)
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
bool hasWholeProgramVisibility(bool WholeProgramVisibilityEnabledInLTO)
void updatePublicTypeTestCalls(Module &M, bool WholeProgramVisibilityEnabledInLTO)
void getVisibleToRegularObjVtableGUIDs(ModuleSummaryIndex &Index, DenseSet< GlobalValue::GUID > &VisibleToRegularObjSymbols, function_ref< bool(StringRef)> IsVisibleToRegularObj)
Based on typeID string, get all associated vtable GUIDS that are visible to regular objects.
void updateIndexWPDForExports(ModuleSummaryIndex &Summary, function_ref< bool(StringRef, ValueInfo)> isExported, std::map< ValueInfo, std::vector< VTableSlotSummary > > &LocalWPDTargetsMap)
Call after cross-module importing to update the recorded single impl devirt target names for any loca...
MutableArrayRef(T &OneElt) -> MutableArrayRef< T >
void runWholeProgramDevirtOnIndex(ModuleSummaryIndex &Summary, std::set< GlobalValue::GUID > &ExportedGUIDs, std::map< ValueInfo, std::vector< VTableSlotSummary > > &LocalWPDTargetsMap)
Perform index-based whole program devirtualization on the Summary index.
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
Definition: BitmaskEnum.h:191
void updateVCallVisibilityInModule(Module &M, bool WholeProgramVisibilityEnabledInLTO, const DenseSet< GlobalValue::GUID > &DynamicExportSymbols, bool ValidateAllVtablesHaveTypeInfos, function_ref< bool(StringRef)> IsVisibleToRegularObj)
If whole program visibility asserted, then upgrade all public vcall visibility metadata on vtable def...
void updateVCallVisibilityInIndex(ModuleSummaryIndex &Index, bool WholeProgramVisibilityEnabledInLTO, const DenseSet< GlobalValue::GUID > &DynamicExportSymbols, const DenseSet< GlobalValue::GUID > &VisibleToRegularObjSymbols)
If whole program visibility asserted, then upgrade all public vcall visibility metadata on vtable def...
A CRTP mix-in to automatically provide informational APIs needed for passes.
Definition: PassManager.h:91
Struct that holds a reference to a particular GUID in a global value summary.
WholeProgramDevirtPass(ModuleSummaryIndex *ExportSummary, const ModuleSummaryIndex *ImportSummary)
const ModuleSummaryIndex * ImportSummary
ModuleSummaryIndex * ExportSummary
PreservedAnalyses run(Module &M, ModuleAnalysisManager &)
void setBE(uint64_t Pos, uint64_t Val, uint8_t Size)
void setLE(uint64_t Pos, uint64_t Val, uint8_t Size)
std::pair< uint8_t *, uint8_t * > getPtrToData(uint64_t Pos, uint8_t Size)
bool operator<(const TypeMemberInfo &other) const
VirtualCallTarget(const TypeMemberInfo *TM, bool IsBigEndian)
void setBeforeBytes(uint64_t Pos, uint8_t Size)
void setAfterBytes(uint64_t Pos, uint8_t Size)