blob: 4055fe049999b1f02dac0bbbbd0efe1223162264 [file] [log] [blame]
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001//===- WholeProgramDevirt.cpp - Whole program virtual call optimization ---===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// 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
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This pass implements whole program optimization of virtual calls in cases
Peter Collingbourne7efd7502016-06-24 21:21:32 +000010// where we know (via !type metadata) that the list of callees is fixed. This
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000011// includes the following:
12// - Single implementation devirtualization: if a virtual call has a single
13// possible callee, replace all calls with a direct call to that callee.
14// - Virtual constant propagation: if the virtual function's return type is an
15// integer <=64 bits and all possible callees are readnone, for each class and
16// each list of constant arguments: evaluate the function, store the return
17// value alongside the virtual table, and rewrite each virtual call as a load
18// from the virtual table.
19// - Uniform return value optimization: if the conditions for virtual constant
20// propagation hold and each function returns the same constant value, replace
21// each virtual call with that constant.
22// - Unique return value optimization for i1 return values: if the conditions
23// for virtual constant propagation hold and a single vtable's function
24// returns 0, or a single vtable's function returns 1, replace each virtual
25// call with a comparison of the vptr against that vtable's address.
26//
Teresa Johnsond2df54e2019-08-02 13:10:52 +000027// This pass is intended to be used during the regular and thin LTO pipelines:
28//
Peter Collingbourneb406baa2017-03-04 01:23:30 +000029// During regular LTO, the pass determines the best optimization for each
30// virtual call and applies the resolutions directly to virtual calls that are
31// eligible for virtual call optimization (i.e. calls that use either of the
Teresa Johnsond2df54e2019-08-02 13:10:52 +000032// llvm.assume(llvm.type.test) or llvm.type.checked.load intrinsics).
33//
34// During hybrid Regular/ThinLTO, the pass operates in two phases:
Peter Collingbourneb406baa2017-03-04 01:23:30 +000035// - Export phase: this is run during the thin link over a single merged module
36// that contains all vtables with !type metadata that participate in the link.
37// The pass computes a resolution for each virtual call and stores it in the
38// type identifier summary.
39// - Import phase: this is run during the thin backends over the individual
40// modules. The pass applies the resolutions previously computed during the
41// import phase to each eligible virtual call.
42//
Teresa Johnsond2df54e2019-08-02 13:10:52 +000043// During ThinLTO, the pass operates in two phases:
44// - Export phase: this is run during the thin link over the index which
45// contains a summary of all vtables with !type metadata that participate in
46// the link. It computes a resolution for each virtual call and stores it in
47// the type identifier summary. Only single implementation devirtualization
48// is supported.
49// - Import phase: (same as with hybrid case above).
50//
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000051//===----------------------------------------------------------------------===//
52
53#include "llvm/Transforms/IPO/WholeProgramDevirt.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000054#include "llvm/ADT/ArrayRef.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000055#include "llvm/ADT/DenseMap.h"
56#include "llvm/ADT/DenseMapInfo.h"
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000057#include "llvm/ADT/DenseSet.h"
58#include "llvm/ADT/MapVector.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000059#include "llvm/ADT/SmallVector.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000060#include "llvm/ADT/iterator_range.h"
Peter Collingbourne37317f12017-02-17 18:17:04 +000061#include "llvm/Analysis/AliasAnalysis.h"
62#include "llvm/Analysis/BasicAliasAnalysis.h"
Adam Nemet0965da22017-10-09 23:19:02 +000063#include "llvm/Analysis/OptimizationRemarkEmitter.h"
Peter Collingbourne7efd7502016-06-24 21:21:32 +000064#include "llvm/Analysis/TypeMetadataUtils.h"
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000065#include "llvm/IR/CallSite.h"
66#include "llvm/IR/Constants.h"
67#include "llvm/IR/DataLayout.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000068#include "llvm/IR/DebugLoc.h"
69#include "llvm/IR/DerivedTypes.h"
Teresa Johnsonf24136f2018-09-27 14:55:32 +000070#include "llvm/IR/Dominators.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000071#include "llvm/IR/Function.h"
72#include "llvm/IR/GlobalAlias.h"
73#include "llvm/IR/GlobalVariable.h"
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000074#include "llvm/IR/IRBuilder.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000075#include "llvm/IR/InstrTypes.h"
76#include "llvm/IR/Instruction.h"
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000077#include "llvm/IR/Instructions.h"
78#include "llvm/IR/Intrinsics.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000079#include "llvm/IR/LLVMContext.h"
80#include "llvm/IR/Metadata.h"
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000081#include "llvm/IR/Module.h"
Peter Collingbourne2b33f652017-02-13 19:26:18 +000082#include "llvm/IR/ModuleSummaryIndexYAML.h"
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000083#include "llvm/Pass.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000084#include "llvm/PassRegistry.h"
85#include "llvm/PassSupport.h"
86#include "llvm/Support/Casting.h"
Peter Collingbourne2b33f652017-02-13 19:26:18 +000087#include "llvm/Support/Error.h"
88#include "llvm/Support/FileSystem.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000089#include "llvm/Support/MathExtras.h"
Mehdi Aminib550cb12016-04-18 09:17:29 +000090#include "llvm/Transforms/IPO.h"
Peter Collingbourne37317f12017-02-17 18:17:04 +000091#include "llvm/Transforms/IPO/FunctionAttrs.h"
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000092#include "llvm/Transforms/Utils/Evaluator.h"
Eugene Zelenkocdc71612016-08-11 17:20:18 +000093#include <algorithm>
94#include <cstddef>
95#include <map>
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000096#include <set>
Eugene Zelenkocdc71612016-08-11 17:20:18 +000097#include <string>
Peter Collingbournedf49d1b2016-02-09 22:50:34 +000098
99using namespace llvm;
100using namespace wholeprogramdevirt;
101
102#define DEBUG_TYPE "wholeprogramdevirt"
103
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000104static cl::opt<PassSummaryAction> ClSummaryAction(
105 "wholeprogramdevirt-summary-action",
106 cl::desc("What to do with the summary when running this pass"),
107 cl::values(clEnumValN(PassSummaryAction::None, "none", "Do nothing"),
108 clEnumValN(PassSummaryAction::Import, "import",
109 "Import typeid resolutions from summary and globals"),
110 clEnumValN(PassSummaryAction::Export, "export",
111 "Export typeid resolutions to summary and globals")),
112 cl::Hidden);
113
114static cl::opt<std::string> ClReadSummary(
115 "wholeprogramdevirt-read-summary",
116 cl::desc("Read summary from given YAML file before running pass"),
117 cl::Hidden);
118
119static cl::opt<std::string> ClWriteSummary(
120 "wholeprogramdevirt-write-summary",
121 cl::desc("Write summary to given YAML file after running pass"),
122 cl::Hidden);
123
Vitaly Buka9cb59b92018-04-06 21:41:17 +0000124static cl::opt<unsigned>
125 ClThreshold("wholeprogramdevirt-branch-funnel-threshold", cl::Hidden,
126 cl::init(10), cl::ZeroOrMore,
127 cl::desc("Maximum number of call targets per "
128 "call site to enable branch funnels"));
Vitaly Buka66f53d72018-04-06 21:32:36 +0000129
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000130static cl::opt<bool>
131 PrintSummaryDevirt("wholeprogramdevirt-print-index-based", cl::Hidden,
132 cl::init(false), cl::ZeroOrMore,
133 cl::desc("Print index-based devirtualization messages"));
134
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000135// Find the minimum offset that we may store a value of size Size bits at. If
136// IsAfter is set, look for an offset before the object, otherwise look for an
137// offset after the object.
138uint64_t
139wholeprogramdevirt::findLowestOffset(ArrayRef<VirtualCallTarget> Targets,
140 bool IsAfter, uint64_t Size) {
141 // Find a minimum offset taking into account only vtable sizes.
142 uint64_t MinByte = 0;
143 for (const VirtualCallTarget &Target : Targets) {
144 if (IsAfter)
145 MinByte = std::max(MinByte, Target.minAfterBytes());
146 else
147 MinByte = std::max(MinByte, Target.minBeforeBytes());
148 }
149
150 // Build a vector of arrays of bytes covering, for each target, a slice of the
151 // used region (see AccumBitVector::BytesUsed in
152 // llvm/Transforms/IPO/WholeProgramDevirt.h) starting at MinByte. Effectively,
153 // this aligns the used regions to start at MinByte.
154 //
155 // In this example, A, B and C are vtables, # is a byte already allocated for
156 // a virtual function pointer, AAAA... (etc.) are the used regions for the
157 // vtables and Offset(X) is the value computed for the Offset variable below
158 // for X.
159 //
160 // Offset(A)
161 // | |
162 // |MinByte
163 // A: ################AAAAAAAA|AAAAAAAA
164 // B: ########BBBBBBBBBBBBBBBB|BBBB
165 // C: ########################|CCCCCCCCCCCCCCCC
166 // | Offset(B) |
167 //
168 // This code produces the slices of A, B and C that appear after the divider
169 // at MinByte.
170 std::vector<ArrayRef<uint8_t>> Used;
171 for (const VirtualCallTarget &Target : Targets) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000172 ArrayRef<uint8_t> VTUsed = IsAfter ? Target.TM->Bits->After.BytesUsed
173 : Target.TM->Bits->Before.BytesUsed;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000174 uint64_t Offset = IsAfter ? MinByte - Target.minAfterBytes()
175 : MinByte - Target.minBeforeBytes();
176
177 // Disregard used regions that are smaller than Offset. These are
178 // effectively all-free regions that do not need to be checked.
179 if (VTUsed.size() > Offset)
180 Used.push_back(VTUsed.slice(Offset));
181 }
182
183 if (Size == 1) {
184 // Find a free bit in each member of Used.
185 for (unsigned I = 0;; ++I) {
186 uint8_t BitsUsed = 0;
187 for (auto &&B : Used)
188 if (I < B.size())
189 BitsUsed |= B[I];
190 if (BitsUsed != 0xff)
191 return (MinByte + I) * 8 +
192 countTrailingZeros(uint8_t(~BitsUsed), ZB_Undefined);
193 }
194 } else {
195 // Find a free (Size/8) byte region in each member of Used.
196 // FIXME: see if alignment helps.
197 for (unsigned I = 0;; ++I) {
198 for (auto &&B : Used) {
199 unsigned Byte = 0;
200 while ((I + Byte) < B.size() && Byte < (Size / 8)) {
201 if (B[I + Byte])
202 goto NextI;
203 ++Byte;
204 }
205 }
206 return (MinByte + I) * 8;
207 NextI:;
208 }
209 }
210}
211
212void wholeprogramdevirt::setBeforeReturnValues(
213 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocBefore,
214 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
215 if (BitWidth == 1)
216 OffsetByte = -(AllocBefore / 8 + 1);
217 else
218 OffsetByte = -((AllocBefore + 7) / 8 + (BitWidth + 7) / 8);
219 OffsetBit = AllocBefore % 8;
220
221 for (VirtualCallTarget &Target : Targets) {
222 if (BitWidth == 1)
223 Target.setBeforeBit(AllocBefore);
224 else
225 Target.setBeforeBytes(AllocBefore, (BitWidth + 7) / 8);
226 }
227}
228
229void wholeprogramdevirt::setAfterReturnValues(
230 MutableArrayRef<VirtualCallTarget> Targets, uint64_t AllocAfter,
231 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
232 if (BitWidth == 1)
233 OffsetByte = AllocAfter / 8;
234 else
235 OffsetByte = (AllocAfter + 7) / 8;
236 OffsetBit = AllocAfter % 8;
237
238 for (VirtualCallTarget &Target : Targets) {
239 if (BitWidth == 1)
240 Target.setAfterBit(AllocAfter);
241 else
242 Target.setAfterBytes(AllocAfter, (BitWidth + 7) / 8);
243 }
244}
245
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000246VirtualCallTarget::VirtualCallTarget(Function *Fn, const TypeMemberInfo *TM)
247 : Fn(Fn), TM(TM),
Ivan Krasin89439a72016-08-12 01:40:10 +0000248 IsBigEndian(Fn->getParent()->getDataLayout().isBigEndian()), WasDevirt(false) {}
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000249
250namespace {
251
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000252// A slot in a set of virtual tables. The TypeID identifies the set of virtual
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000253// tables, and the ByteOffset is the offset in bytes from the address point to
254// the virtual function pointer.
255struct VTableSlot {
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000256 Metadata *TypeID;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000257 uint64_t ByteOffset;
258};
259
Eugene Zelenkocdc71612016-08-11 17:20:18 +0000260} // end anonymous namespace
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000261
Peter Collingbourne9b656522016-02-09 23:01:38 +0000262namespace llvm {
263
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000264template <> struct DenseMapInfo<VTableSlot> {
265 static VTableSlot getEmptyKey() {
266 return {DenseMapInfo<Metadata *>::getEmptyKey(),
267 DenseMapInfo<uint64_t>::getEmptyKey()};
268 }
269 static VTableSlot getTombstoneKey() {
270 return {DenseMapInfo<Metadata *>::getTombstoneKey(),
271 DenseMapInfo<uint64_t>::getTombstoneKey()};
272 }
273 static unsigned getHashValue(const VTableSlot &I) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000274 return DenseMapInfo<Metadata *>::getHashValue(I.TypeID) ^
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000275 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset);
276 }
277 static bool isEqual(const VTableSlot &LHS,
278 const VTableSlot &RHS) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000279 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000280 }
281};
282
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000283template <> struct DenseMapInfo<VTableSlotSummary> {
284 static VTableSlotSummary getEmptyKey() {
285 return {DenseMapInfo<StringRef>::getEmptyKey(),
286 DenseMapInfo<uint64_t>::getEmptyKey()};
287 }
288 static VTableSlotSummary getTombstoneKey() {
289 return {DenseMapInfo<StringRef>::getTombstoneKey(),
290 DenseMapInfo<uint64_t>::getTombstoneKey()};
291 }
292 static unsigned getHashValue(const VTableSlotSummary &I) {
293 return DenseMapInfo<StringRef>::getHashValue(I.TypeID) ^
294 DenseMapInfo<uint64_t>::getHashValue(I.ByteOffset);
295 }
296 static bool isEqual(const VTableSlotSummary &LHS,
297 const VTableSlotSummary &RHS) {
298 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
299 }
300};
301
Eugene Zelenkocdc71612016-08-11 17:20:18 +0000302} // end namespace llvm
Peter Collingbourne9b656522016-02-09 23:01:38 +0000303
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000304namespace {
305
306// A virtual call site. VTable is the loaded virtual table pointer, and CS is
307// the indirect virtual call.
308struct VirtualCallSite {
309 Value *VTable;
310 CallSite CS;
311
Peter Collingbourne0312f612016-06-25 00:23:04 +0000312 // If non-null, this field points to the associated unsafe use count stored in
313 // the DevirtModule::NumUnsafeUsesForTypeTest map below. See the description
314 // of that field for details.
315 unsigned *NumUnsafeUses;
316
Sam Elliotte963c892017-08-21 16:57:21 +0000317 void
318 emitRemark(const StringRef OptName, const StringRef TargetName,
319 function_ref<OptimizationRemarkEmitter &(Function *)> OREGetter) {
Ivan Krasin54746452016-07-12 02:38:37 +0000320 Function *F = CS.getCaller();
Sam Elliotte963c892017-08-21 16:57:21 +0000321 DebugLoc DLoc = CS->getDebugLoc();
322 BasicBlock *Block = CS.getParent();
323
Sam Elliotte963c892017-08-21 16:57:21 +0000324 using namespace ore;
Peter Collingbourne9110cb42018-01-05 00:27:51 +0000325 OREGetter(F).emit(OptimizationRemark(DEBUG_TYPE, OptName, DLoc, Block)
326 << NV("Optimization", OptName)
327 << ": devirtualized a call to "
328 << NV("FunctionName", TargetName));
Ivan Krasin54746452016-07-12 02:38:37 +0000329 }
330
Sam Elliotte963c892017-08-21 16:57:21 +0000331 void replaceAndErase(
332 const StringRef OptName, const StringRef TargetName, bool RemarksEnabled,
333 function_ref<OptimizationRemarkEmitter &(Function *)> OREGetter,
334 Value *New) {
Ivan Krasinf3403fd2016-08-11 19:09:02 +0000335 if (RemarksEnabled)
Sam Elliotte963c892017-08-21 16:57:21 +0000336 emitRemark(OptName, TargetName, OREGetter);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000337 CS->replaceAllUsesWith(New);
338 if (auto II = dyn_cast<InvokeInst>(CS.getInstruction())) {
339 BranchInst::Create(II->getNormalDest(), CS.getInstruction());
340 II->getUnwindDest()->removePredecessor(II->getParent());
341 }
342 CS->eraseFromParent();
Peter Collingbourne0312f612016-06-25 00:23:04 +0000343 // This use is no longer unsafe.
344 if (NumUnsafeUses)
345 --*NumUnsafeUses;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000346 }
347};
348
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000349// Call site information collected for a specific VTableSlot and possibly a list
350// of constant integer arguments. The grouping by arguments is handled by the
351// VTableSlotInfo class.
352struct CallSiteInfo {
Peter Collingbourneb406baa2017-03-04 01:23:30 +0000353 /// The set of call sites for this slot. Used during regular LTO and the
354 /// import phase of ThinLTO (as well as the export phase of ThinLTO for any
355 /// call sites that appear in the merged module itself); in each of these
356 /// cases we are directly operating on the call sites at the IR level.
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000357 std::vector<VirtualCallSite> CallSites;
Peter Collingbourneb406baa2017-03-04 01:23:30 +0000358
Peter Collingbourne29748562018-03-09 19:11:44 +0000359 /// Whether all call sites represented by this CallSiteInfo, including those
360 /// in summaries, have been devirtualized. This starts off as true because a
361 /// default constructed CallSiteInfo represents no call sites.
362 bool AllCallSitesDevirted = true;
363
Peter Collingbourneb406baa2017-03-04 01:23:30 +0000364 // These fields are used during the export phase of ThinLTO and reflect
365 // information collected from function summaries.
366
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000367 /// Whether any function summary contains an llvm.assume(llvm.type.test) for
368 /// this slot.
Peter Collingbourne29748562018-03-09 19:11:44 +0000369 bool SummaryHasTypeTestAssumeUsers = false;
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000370
Peter Collingbourneb406baa2017-03-04 01:23:30 +0000371 /// CFI-specific: a vector containing the list of function summaries that use
372 /// the llvm.type.checked.load intrinsic and therefore will require
373 /// resolutions for llvm.type.test in order to implement CFI checks if
374 /// devirtualization was unsuccessful. If devirtualization was successful, the
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000375 /// pass will clear this vector by calling markDevirt(). If at the end of the
376 /// pass the vector is non-empty, we will need to add a use of llvm.type.test
377 /// to each of the function summaries in the vector.
Peter Collingbourneb406baa2017-03-04 01:23:30 +0000378 std::vector<FunctionSummary *> SummaryTypeCheckedLoadUsers;
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000379 std::vector<FunctionSummary *> SummaryTypeTestAssumeUsers;
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000380
381 bool isExported() const {
382 return SummaryHasTypeTestAssumeUsers ||
383 !SummaryTypeCheckedLoadUsers.empty();
384 }
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000385
Peter Collingbourne29748562018-03-09 19:11:44 +0000386 void markSummaryHasTypeTestAssumeUsers() {
387 SummaryHasTypeTestAssumeUsers = true;
388 AllCallSitesDevirted = false;
389 }
390
391 void addSummaryTypeCheckedLoadUser(FunctionSummary *FS) {
392 SummaryTypeCheckedLoadUsers.push_back(FS);
393 AllCallSitesDevirted = false;
394 }
395
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000396 void addSummaryTypeTestAssumeUser(FunctionSummary *FS) {
397 SummaryTypeTestAssumeUsers.push_back(FS);
398 markSummaryHasTypeTestAssumeUsers();
399 }
400
Peter Collingbourne29748562018-03-09 19:11:44 +0000401 void markDevirt() {
402 AllCallSitesDevirted = true;
403
404 // As explained in the comment for SummaryTypeCheckedLoadUsers.
405 SummaryTypeCheckedLoadUsers.clear();
406 }
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000407};
408
409// Call site information collected for a specific VTableSlot.
410struct VTableSlotInfo {
411 // The set of call sites which do not have all constant integer arguments
412 // (excluding "this").
413 CallSiteInfo CSInfo;
414
415 // The set of call sites with all constant integer arguments (excluding
416 // "this"), grouped by argument list.
417 std::map<std::vector<uint64_t>, CallSiteInfo> ConstCSInfo;
418
419 void addCallSite(Value *VTable, CallSite CS, unsigned *NumUnsafeUses);
420
421private:
422 CallSiteInfo &findCallSiteInfo(CallSite CS);
423};
424
425CallSiteInfo &VTableSlotInfo::findCallSiteInfo(CallSite CS) {
426 std::vector<uint64_t> Args;
427 auto *CI = dyn_cast<IntegerType>(CS.getType());
428 if (!CI || CI->getBitWidth() > 64 || CS.arg_empty())
429 return CSInfo;
430 for (auto &&Arg : make_range(CS.arg_begin() + 1, CS.arg_end())) {
431 auto *CI = dyn_cast<ConstantInt>(Arg);
432 if (!CI || CI->getBitWidth() > 64)
433 return CSInfo;
434 Args.push_back(CI->getZExtValue());
435 }
436 return ConstCSInfo[Args];
437}
438
439void VTableSlotInfo::addCallSite(Value *VTable, CallSite CS,
440 unsigned *NumUnsafeUses) {
Peter Collingbourne29748562018-03-09 19:11:44 +0000441 auto &CSI = findCallSiteInfo(CS);
442 CSI.AllCallSitesDevirted = false;
443 CSI.CallSites.push_back({VTable, CS, NumUnsafeUses});
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000444}
445
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000446struct DevirtModule {
447 Module &M;
Peter Collingbourne37317f12017-02-17 18:17:04 +0000448 function_ref<AAResults &(Function &)> AARGetter;
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000449 function_ref<DominatorTree &(Function &)> LookupDomTree;
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000450
Peter Collingbournef7691d82017-03-22 18:22:59 +0000451 ModuleSummaryIndex *ExportSummary;
452 const ModuleSummaryIndex *ImportSummary;
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000453
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000454 IntegerType *Int8Ty;
455 PointerType *Int8PtrTy;
456 IntegerType *Int32Ty;
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000457 IntegerType *Int64Ty;
Peter Collingbourne14dcf022017-03-10 20:13:58 +0000458 IntegerType *IntPtrTy;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000459
Ivan Krasinf3403fd2016-08-11 19:09:02 +0000460 bool RemarksEnabled;
Sam Elliotte963c892017-08-21 16:57:21 +0000461 function_ref<OptimizationRemarkEmitter &(Function *)> OREGetter;
Ivan Krasinf3403fd2016-08-11 19:09:02 +0000462
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000463 MapVector<VTableSlot, VTableSlotInfo> CallSlots;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000464
Peter Collingbourne0312f612016-06-25 00:23:04 +0000465 // This map keeps track of the number of "unsafe" uses of a loaded function
466 // pointer. The key is the associated llvm.type.test intrinsic call generated
467 // by this pass. An unsafe use is one that calls the loaded function pointer
468 // directly. Every time we eliminate an unsafe use (for example, by
469 // devirtualizing it or by applying virtual constant propagation), we
470 // decrement the value stored in this map. If a value reaches zero, we can
471 // eliminate the type check by RAUWing the associated llvm.type.test call with
472 // true.
473 std::map<CallInst *, unsigned> NumUnsafeUsesForTypeTest;
474
Peter Collingbourne37317f12017-02-17 18:17:04 +0000475 DevirtModule(Module &M, function_ref<AAResults &(Function &)> AARGetter,
Sam Elliotte963c892017-08-21 16:57:21 +0000476 function_ref<OptimizationRemarkEmitter &(Function *)> OREGetter,
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000477 function_ref<DominatorTree &(Function &)> LookupDomTree,
Peter Collingbournef7691d82017-03-22 18:22:59 +0000478 ModuleSummaryIndex *ExportSummary,
479 const ModuleSummaryIndex *ImportSummary)
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000480 : M(M), AARGetter(AARGetter), LookupDomTree(LookupDomTree),
481 ExportSummary(ExportSummary), ImportSummary(ImportSummary),
482 Int8Ty(Type::getInt8Ty(M.getContext())),
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000483 Int8PtrTy(Type::getInt8PtrTy(M.getContext())),
Ivan Krasinf3403fd2016-08-11 19:09:02 +0000484 Int32Ty(Type::getInt32Ty(M.getContext())),
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000485 Int64Ty(Type::getInt64Ty(M.getContext())),
Peter Collingbourne14dcf022017-03-10 20:13:58 +0000486 IntPtrTy(M.getDataLayout().getIntPtrType(M.getContext(), 0)),
Sam Elliotte963c892017-08-21 16:57:21 +0000487 RemarksEnabled(areRemarksEnabled()), OREGetter(OREGetter) {
Peter Collingbournef7691d82017-03-22 18:22:59 +0000488 assert(!(ExportSummary && ImportSummary));
489 }
Ivan Krasinf3403fd2016-08-11 19:09:02 +0000490
491 bool areRemarksEnabled();
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000492
Peter Collingbourne0312f612016-06-25 00:23:04 +0000493 void scanTypeTestUsers(Function *TypeTestFunc, Function *AssumeFunc);
494 void scanTypeCheckedLoadUsers(Function *TypeCheckedLoadFunc);
495
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000496 void buildTypeIdentifierMap(
497 std::vector<VTableBits> &Bits,
498 DenseMap<Metadata *, std::set<TypeMemberInfo>> &TypeIdMap);
Peter Collingbourne87867542016-12-09 01:10:11 +0000499 Constant *getPointerAtOffset(Constant *I, uint64_t Offset);
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000500 bool
501 tryFindVirtualCallTargets(std::vector<VirtualCallTarget> &TargetsForSlot,
502 const std::set<TypeMemberInfo> &TypeMemberInfos,
503 uint64_t ByteOffset);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000504
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000505 void applySingleImplDevirt(VTableSlotInfo &SlotInfo, Constant *TheFn,
506 bool &IsExported);
Ivan Krasinf3403fd2016-08-11 19:09:02 +0000507 bool trySingleImplDevirt(MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000508 VTableSlotInfo &SlotInfo,
509 WholeProgramDevirtResolution *Res);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000510
Peter Collingbourne29748562018-03-09 19:11:44 +0000511 void applyICallBranchFunnel(VTableSlotInfo &SlotInfo, Constant *JT,
512 bool &IsExported);
513 void tryICallBranchFunnel(MutableArrayRef<VirtualCallTarget> TargetsForSlot,
514 VTableSlotInfo &SlotInfo,
515 WholeProgramDevirtResolution *Res, VTableSlot Slot);
516
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000517 bool tryEvaluateFunctionsWithArgs(
518 MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000519 ArrayRef<uint64_t> Args);
520
521 void applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName,
522 uint64_t TheRetVal);
523 bool tryUniformRetValOpt(MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne77a8d562017-03-04 01:34:53 +0000524 CallSiteInfo &CSInfo,
525 WholeProgramDevirtResolution::ByArg *Res);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000526
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000527 // Returns the global symbol name that is used to export information about the
528 // given vtable slot and list of arguments.
529 std::string getGlobalName(VTableSlot Slot, ArrayRef<uint64_t> Args,
530 StringRef Name);
531
Peter Collingbourneb15a35e2017-09-11 22:34:42 +0000532 bool shouldExportConstantsAsAbsoluteSymbols();
533
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000534 // This function is called during the export phase to create a symbol
535 // definition containing information about the given vtable slot and list of
536 // arguments.
537 void exportGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name,
538 Constant *C);
Peter Collingbourneb15a35e2017-09-11 22:34:42 +0000539 void exportConstant(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name,
540 uint32_t Const, uint32_t &Storage);
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000541
542 // This function is called during the import phase to create a reference to
543 // the symbol definition created during the export phase.
544 Constant *importGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
Peter Collingbourneb15a35e2017-09-11 22:34:42 +0000545 StringRef Name);
546 Constant *importConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
547 StringRef Name, IntegerType *IntTy,
548 uint32_t Storage);
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000549
Peter Collingbourne29748562018-03-09 19:11:44 +0000550 Constant *getMemberAddr(const TypeMemberInfo *M);
551
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000552 void applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName, bool IsOne,
553 Constant *UniqueMemberAddr);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000554 bool tryUniqueRetValOpt(unsigned BitWidth,
Ivan Krasinf3403fd2016-08-11 19:09:02 +0000555 MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000556 CallSiteInfo &CSInfo,
557 WholeProgramDevirtResolution::ByArg *Res,
558 VTableSlot Slot, ArrayRef<uint64_t> Args);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000559
560 void applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName,
561 Constant *Byte, Constant *Bit);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000562 bool tryVirtualConstProp(MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne77a8d562017-03-04 01:34:53 +0000563 VTableSlotInfo &SlotInfo,
Peter Collingbourne59675ba2017-03-10 20:09:11 +0000564 WholeProgramDevirtResolution *Res, VTableSlot Slot);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000565
566 void rebuildGlobal(VTableBits &B);
567
Peter Collingbourne6d284fa2017-03-09 00:21:25 +0000568 // Apply the summary resolution for Slot to all virtual calls in SlotInfo.
569 void importResolution(VTableSlot Slot, VTableSlotInfo &SlotInfo);
570
571 // If we were able to eliminate all unsafe uses for a type checked load,
572 // eliminate the associated type tests by replacing them with true.
573 void removeRedundantTypeTests();
574
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000575 bool run();
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000576
577 // Lower the module using the action and summary passed as command line
578 // arguments. For testing purposes only.
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000579 static bool
580 runForTesting(Module &M, function_ref<AAResults &(Function &)> AARGetter,
581 function_ref<OptimizationRemarkEmitter &(Function *)> OREGetter,
582 function_ref<DominatorTree &(Function &)> LookupDomTree);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000583};
584
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000585struct DevirtIndex {
586 ModuleSummaryIndex &ExportSummary;
587 // The set in which to record GUIDs exported from their module by
588 // devirtualization, used by client to ensure they are not internalized.
589 std::set<GlobalValue::GUID> &ExportedGUIDs;
590 // A map in which to record the information necessary to locate the WPD
591 // resolution for local targets in case they are exported by cross module
592 // importing.
593 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap;
594
595 MapVector<VTableSlotSummary, VTableSlotInfo> CallSlots;
596
597 DevirtIndex(
598 ModuleSummaryIndex &ExportSummary,
599 std::set<GlobalValue::GUID> &ExportedGUIDs,
600 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap)
601 : ExportSummary(ExportSummary), ExportedGUIDs(ExportedGUIDs),
602 LocalWPDTargetsMap(LocalWPDTargetsMap) {}
603
604 bool tryFindVirtualCallTargets(std::vector<ValueInfo> &TargetsForSlot,
605 const TypeIdCompatibleVtableInfo TIdInfo,
606 uint64_t ByteOffset);
607
608 bool trySingleImplDevirt(MutableArrayRef<ValueInfo> TargetsForSlot,
609 VTableSlotSummary &SlotSummary,
610 VTableSlotInfo &SlotInfo,
611 WholeProgramDevirtResolution *Res,
612 std::set<ValueInfo> &DevirtTargets);
613
614 void run();
615};
616
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000617struct WholeProgramDevirt : public ModulePass {
618 static char ID;
Eugene Zelenkocdc71612016-08-11 17:20:18 +0000619
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000620 bool UseCommandLine = false;
621
Peter Collingbournef7691d82017-03-22 18:22:59 +0000622 ModuleSummaryIndex *ExportSummary;
623 const ModuleSummaryIndex *ImportSummary;
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000624
625 WholeProgramDevirt() : ModulePass(ID), UseCommandLine(true) {
626 initializeWholeProgramDevirtPass(*PassRegistry::getPassRegistry());
627 }
628
Peter Collingbournef7691d82017-03-22 18:22:59 +0000629 WholeProgramDevirt(ModuleSummaryIndex *ExportSummary,
630 const ModuleSummaryIndex *ImportSummary)
631 : ModulePass(ID), ExportSummary(ExportSummary),
632 ImportSummary(ImportSummary) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000633 initializeWholeProgramDevirtPass(*PassRegistry::getPassRegistry());
634 }
Eugene Zelenkocdc71612016-08-11 17:20:18 +0000635
636 bool runOnModule(Module &M) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +0000637 if (skipModule(M))
638 return false;
Sam Elliotte963c892017-08-21 16:57:21 +0000639
Peter Collingbourne9110cb42018-01-05 00:27:51 +0000640 // In the new pass manager, we can request the optimization
641 // remark emitter pass on a per-function-basis, which the
642 // OREGetter will do for us.
643 // In the old pass manager, this is harder, so we just build
644 // an optimization remark emitter on the fly, when we need it.
645 std::unique_ptr<OptimizationRemarkEmitter> ORE;
646 auto OREGetter = [&](Function *F) -> OptimizationRemarkEmitter & {
Jonas Devlieghere0eaee542019-08-15 15:54:37 +0000647 ORE = std::make_unique<OptimizationRemarkEmitter>(F);
Peter Collingbourne9110cb42018-01-05 00:27:51 +0000648 return *ORE;
649 };
Sam Elliotte963c892017-08-21 16:57:21 +0000650
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000651 auto LookupDomTree = [this](Function &F) -> DominatorTree & {
652 return this->getAnalysis<DominatorTreeWrapperPass>(F).getDomTree();
653 };
Sam Elliotte963c892017-08-21 16:57:21 +0000654
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000655 if (UseCommandLine)
656 return DevirtModule::runForTesting(M, LegacyAARGetter(*this), OREGetter,
657 LookupDomTree);
658
659 return DevirtModule(M, LegacyAARGetter(*this), OREGetter, LookupDomTree,
660 ExportSummary, ImportSummary)
Peter Collingbournef7691d82017-03-22 18:22:59 +0000661 .run();
Peter Collingbourne37317f12017-02-17 18:17:04 +0000662 }
663
664 void getAnalysisUsage(AnalysisUsage &AU) const override {
665 AU.addRequired<AssumptionCacheTracker>();
666 AU.addRequired<TargetLibraryInfoWrapperPass>();
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000667 AU.addRequired<DominatorTreeWrapperPass>();
Andrew Kayloraa641a52016-04-22 22:06:11 +0000668 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000669};
670
Eugene Zelenkocdc71612016-08-11 17:20:18 +0000671} // end anonymous namespace
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000672
Peter Collingbourne37317f12017-02-17 18:17:04 +0000673INITIALIZE_PASS_BEGIN(WholeProgramDevirt, "wholeprogramdevirt",
674 "Whole program devirtualization", false, false)
675INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
676INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000677INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Peter Collingbourne37317f12017-02-17 18:17:04 +0000678INITIALIZE_PASS_END(WholeProgramDevirt, "wholeprogramdevirt",
679 "Whole program devirtualization", false, false)
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000680char WholeProgramDevirt::ID = 0;
681
Peter Collingbournef7691d82017-03-22 18:22:59 +0000682ModulePass *
683llvm::createWholeProgramDevirtPass(ModuleSummaryIndex *ExportSummary,
684 const ModuleSummaryIndex *ImportSummary) {
685 return new WholeProgramDevirt(ExportSummary, ImportSummary);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000686}
687
Chandler Carruth164a2aa62016-06-17 00:11:01 +0000688PreservedAnalyses WholeProgramDevirtPass::run(Module &M,
Peter Collingbourne37317f12017-02-17 18:17:04 +0000689 ModuleAnalysisManager &AM) {
690 auto &FAM = AM.getResult<FunctionAnalysisManagerModuleProxy>(M).getManager();
691 auto AARGetter = [&](Function &F) -> AAResults & {
692 return FAM.getResult<AAManager>(F);
693 };
Sam Elliotte963c892017-08-21 16:57:21 +0000694 auto OREGetter = [&](Function *F) -> OptimizationRemarkEmitter & {
695 return FAM.getResult<OptimizationRemarkEmitterAnalysis>(*F);
696 };
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000697 auto LookupDomTree = [&FAM](Function &F) -> DominatorTree & {
698 return FAM.getResult<DominatorTreeAnalysis>(F);
699 };
700 if (!DevirtModule(M, AARGetter, OREGetter, LookupDomTree, ExportSummary,
701 ImportSummary)
Teresa Johnson28023db2018-07-19 14:51:32 +0000702 .run())
Davide Italianod737dd22016-06-14 21:44:19 +0000703 return PreservedAnalyses::all();
704 return PreservedAnalyses::none();
705}
706
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000707namespace llvm {
708void runWholeProgramDevirtOnIndex(
709 ModuleSummaryIndex &Summary, std::set<GlobalValue::GUID> &ExportedGUIDs,
710 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap) {
711 DevirtIndex(Summary, ExportedGUIDs, LocalWPDTargetsMap).run();
712}
713
714void updateIndexWPDForExports(
715 ModuleSummaryIndex &Summary,
Teresa Johnson077cc3f2019-10-02 16:36:59 +0000716 function_ref<bool(StringRef, GlobalValue::GUID)> isExported,
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000717 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap) {
718 for (auto &T : LocalWPDTargetsMap) {
719 auto &VI = T.first;
720 // This was enforced earlier during trySingleImplDevirt.
721 assert(VI.getSummaryList().size() == 1 &&
722 "Devirt of local target has more than one copy");
723 auto &S = VI.getSummaryList()[0];
Teresa Johnson077cc3f2019-10-02 16:36:59 +0000724 if (!isExported(S->modulePath(), VI.getGUID()))
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000725 continue;
726
727 // It's been exported by a cross module import.
728 for (auto &SlotSummary : T.second) {
729 auto *TIdSum = Summary.getTypeIdSummary(SlotSummary.TypeID);
730 assert(TIdSum);
731 auto WPDRes = TIdSum->WPDRes.find(SlotSummary.ByteOffset);
732 assert(WPDRes != TIdSum->WPDRes.end());
733 WPDRes->second.SingleImplName = ModuleSummaryIndex::getGlobalNameForLocal(
734 WPDRes->second.SingleImplName,
735 Summary.getModuleHash(S->modulePath()));
736 }
737 }
738}
739
740} // end namespace llvm
741
Peter Collingbourne37317f12017-02-17 18:17:04 +0000742bool DevirtModule::runForTesting(
Sam Elliotte963c892017-08-21 16:57:21 +0000743 Module &M, function_ref<AAResults &(Function &)> AARGetter,
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000744 function_ref<OptimizationRemarkEmitter &(Function *)> OREGetter,
745 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Teresa Johnson4ffc3e72018-06-06 22:22:01 +0000746 ModuleSummaryIndex Summary(/*HaveGVs=*/false);
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000747
748 // Handle the command-line summary arguments. This code is for testing
749 // purposes only, so we handle errors directly.
750 if (!ClReadSummary.empty()) {
751 ExitOnError ExitOnErr("-wholeprogramdevirt-read-summary: " + ClReadSummary +
752 ": ");
753 auto ReadSummaryFile =
754 ExitOnErr(errorOrToExpected(MemoryBuffer::getFile(ClReadSummary)));
755
756 yaml::Input In(ReadSummaryFile->getBuffer());
757 In >> Summary;
758 ExitOnErr(errorCodeToError(In.error()));
759 }
760
Peter Collingbournef7691d82017-03-22 18:22:59 +0000761 bool Changed =
762 DevirtModule(
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000763 M, AARGetter, OREGetter, LookupDomTree,
Peter Collingbournef7691d82017-03-22 18:22:59 +0000764 ClSummaryAction == PassSummaryAction::Export ? &Summary : nullptr,
765 ClSummaryAction == PassSummaryAction::Import ? &Summary : nullptr)
766 .run();
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000767
768 if (!ClWriteSummary.empty()) {
769 ExitOnError ExitOnErr(
770 "-wholeprogramdevirt-write-summary: " + ClWriteSummary + ": ");
771 std::error_code EC;
Fangrui Songd9b948b2019-08-05 05:43:48 +0000772 raw_fd_ostream OS(ClWriteSummary, EC, sys::fs::OF_Text);
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000773 ExitOnErr(errorCodeToError(EC));
774
775 yaml::Output Out(OS);
776 Out << Summary;
777 }
778
779 return Changed;
780}
781
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000782void DevirtModule::buildTypeIdentifierMap(
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000783 std::vector<VTableBits> &Bits,
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000784 DenseMap<Metadata *, std::set<TypeMemberInfo>> &TypeIdMap) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000785 DenseMap<GlobalVariable *, VTableBits *> GVToBits;
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000786 Bits.reserve(M.getGlobalList().size());
787 SmallVector<MDNode *, 2> Types;
788 for (GlobalVariable &GV : M.globals()) {
789 Types.clear();
790 GV.getMetadata(LLVMContext::MD_type, Types);
Eugene Leviant2b70d612018-09-23 13:27:47 +0000791 if (GV.isDeclaration() || Types.empty())
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000792 continue;
793
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000794 VTableBits *&BitsPtr = GVToBits[&GV];
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000795 if (!BitsPtr) {
796 Bits.emplace_back();
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000797 Bits.back().GV = &GV;
798 Bits.back().ObjectSize =
799 M.getDataLayout().getTypeAllocSize(GV.getInitializer()->getType());
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000800 BitsPtr = &Bits.back();
801 }
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000802
803 for (MDNode *Type : Types) {
804 auto TypeID = Type->getOperand(1).get();
805
806 uint64_t Offset =
807 cast<ConstantInt>(
808 cast<ConstantAsMetadata>(Type->getOperand(0))->getValue())
809 ->getZExtValue();
810
811 TypeIdMap[TypeID].insert({BitsPtr, Offset});
812 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000813 }
814}
815
Peter Collingbourne87867542016-12-09 01:10:11 +0000816Constant *DevirtModule::getPointerAtOffset(Constant *I, uint64_t Offset) {
817 if (I->getType()->isPointerTy()) {
818 if (Offset == 0)
819 return I;
820 return nullptr;
821 }
822
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000823 const DataLayout &DL = M.getDataLayout();
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000824
825 if (auto *C = dyn_cast<ConstantStruct>(I)) {
826 const StructLayout *SL = DL.getStructLayout(C->getType());
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000827 if (Offset >= SL->getSizeInBytes())
828 return nullptr;
829
Peter Collingbourne87867542016-12-09 01:10:11 +0000830 unsigned Op = SL->getElementContainingOffset(Offset);
831 return getPointerAtOffset(cast<Constant>(I->getOperand(Op)),
832 Offset - SL->getElementOffset(Op));
833 }
834 if (auto *C = dyn_cast<ConstantArray>(I)) {
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000835 ArrayType *VTableTy = C->getType();
836 uint64_t ElemSize = DL.getTypeAllocSize(VTableTy->getElementType());
837
Peter Collingbourne87867542016-12-09 01:10:11 +0000838 unsigned Op = Offset / ElemSize;
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000839 if (Op >= C->getNumOperands())
840 return nullptr;
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000841
Peter Collingbourne87867542016-12-09 01:10:11 +0000842 return getPointerAtOffset(cast<Constant>(I->getOperand(Op)),
843 Offset % ElemSize);
844 }
845 return nullptr;
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000846}
847
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000848bool DevirtModule::tryFindVirtualCallTargets(
849 std::vector<VirtualCallTarget> &TargetsForSlot,
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000850 const std::set<TypeMemberInfo> &TypeMemberInfos, uint64_t ByteOffset) {
851 for (const TypeMemberInfo &TM : TypeMemberInfos) {
852 if (!TM.Bits->GV->isConstant())
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000853 return false;
854
Peter Collingbourne87867542016-12-09 01:10:11 +0000855 Constant *Ptr = getPointerAtOffset(TM.Bits->GV->getInitializer(),
856 TM.Offset + ByteOffset);
857 if (!Ptr)
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000858 return false;
859
Peter Collingbourne87867542016-12-09 01:10:11 +0000860 auto Fn = dyn_cast<Function>(Ptr->stripPointerCasts());
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000861 if (!Fn)
862 return false;
863
864 // We can disregard __cxa_pure_virtual as a possible call target, as
865 // calls to pure virtuals are UB.
866 if (Fn->getName() == "__cxa_pure_virtual")
867 continue;
868
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000869 TargetsForSlot.push_back({Fn, &TM});
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000870 }
871
872 // Give up if we couldn't find any targets.
873 return !TargetsForSlot.empty();
874}
875
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000876bool DevirtIndex::tryFindVirtualCallTargets(
877 std::vector<ValueInfo> &TargetsForSlot, const TypeIdCompatibleVtableInfo TIdInfo,
878 uint64_t ByteOffset) {
879 for (const TypeIdOffsetVtableInfo P : TIdInfo) {
880 // VTable initializer should have only one summary, or all copies must be
881 // linkonce/weak ODR.
882 assert(P.VTableVI.getSummaryList().size() == 1 ||
883 llvm::all_of(
884 P.VTableVI.getSummaryList(),
885 [&](const std::unique_ptr<GlobalValueSummary> &Summary) {
886 return GlobalValue::isLinkOnceODRLinkage(Summary->linkage()) ||
887 GlobalValue::isWeakODRLinkage(Summary->linkage());
888 }));
889 const auto *VS = cast<GlobalVarSummary>(P.VTableVI.getSummaryList()[0].get());
890 if (!P.VTableVI.getSummaryList()[0]->isLive())
891 continue;
892 for (auto VTP : VS->vTableFuncs()) {
893 if (VTP.VTableOffset != P.AddressPointOffset + ByteOffset)
894 continue;
895
896 TargetsForSlot.push_back(VTP.FuncVI);
897 }
898 }
899
900 // Give up if we couldn't find any targets.
901 return !TargetsForSlot.empty();
902}
903
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000904void DevirtModule::applySingleImplDevirt(VTableSlotInfo &SlotInfo,
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000905 Constant *TheFn, bool &IsExported) {
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000906 auto Apply = [&](CallSiteInfo &CSInfo) {
907 for (auto &&VCallSite : CSInfo.CallSites) {
908 if (RemarksEnabled)
Teresa Johnsonb0a1d3b2018-08-14 03:00:16 +0000909 VCallSite.emitRemark("single-impl",
910 TheFn->stripPointerCasts()->getName(), OREGetter);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000911 VCallSite.CS.setCalledFunction(ConstantExpr::getBitCast(
912 TheFn, VCallSite.CS.getCalledValue()->getType()));
913 // This use is no longer unsafe.
914 if (VCallSite.NumUnsafeUses)
915 --*VCallSite.NumUnsafeUses;
916 }
Peter Collingbourne29748562018-03-09 19:11:44 +0000917 if (CSInfo.isExported())
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000918 IsExported = true;
Peter Collingbourne29748562018-03-09 19:11:44 +0000919 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000920 };
921 Apply(SlotInfo.CSInfo);
922 for (auto &P : SlotInfo.ConstCSInfo)
923 Apply(P.second);
924}
925
Peter Collingbournee2367412017-02-15 02:13:08 +0000926bool DevirtModule::trySingleImplDevirt(
927 MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000928 VTableSlotInfo &SlotInfo, WholeProgramDevirtResolution *Res) {
Peter Collingbournee2367412017-02-15 02:13:08 +0000929 // See if the program contains a single implementation of this virtual
930 // function.
931 Function *TheFn = TargetsForSlot[0].Fn;
932 for (auto &&Target : TargetsForSlot)
933 if (TheFn != Target.Fn)
934 return false;
935
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000936 // If so, update each call site to call that implementation directly.
Peter Collingbournee2367412017-02-15 02:13:08 +0000937 if (RemarksEnabled)
938 TargetsForSlot[0].WasDevirt = true;
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000939
940 bool IsExported = false;
941 applySingleImplDevirt(SlotInfo, TheFn, IsExported);
942 if (!IsExported)
943 return false;
944
945 // If the only implementation has local linkage, we must promote to external
946 // to make it visible to thin LTO objects. We can only get here during the
947 // ThinLTO export phase.
948 if (TheFn->hasLocalLinkage()) {
Peter Collingbourne88a58cf2017-09-08 00:10:53 +0000949 std::string NewName = (TheFn->getName() + "$merged").str();
950
951 // Since we are renaming the function, any comdats with the same name must
952 // also be renamed. This is required when targeting COFF, as the comdat name
953 // must match one of the names of the symbols in the comdat.
954 if (Comdat *C = TheFn->getComdat()) {
955 if (C->getName() == TheFn->getName()) {
956 Comdat *NewC = M.getOrInsertComdat(NewName);
957 NewC->setSelectionKind(C->getSelectionKind());
958 for (GlobalObject &GO : M.global_objects())
959 if (GO.getComdat() == C)
960 GO.setComdat(NewC);
961 }
962 }
963
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000964 TheFn->setLinkage(GlobalValue::ExternalLinkage);
965 TheFn->setVisibility(GlobalValue::HiddenVisibility);
Peter Collingbourne88a58cf2017-09-08 00:10:53 +0000966 TheFn->setName(NewName);
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000967 }
968
969 Res->TheKind = WholeProgramDevirtResolution::SingleImpl;
970 Res->SingleImplName = TheFn->getName();
971
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000972 return true;
973}
974
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000975bool DevirtIndex::trySingleImplDevirt(MutableArrayRef<ValueInfo> TargetsForSlot,
976 VTableSlotSummary &SlotSummary,
977 VTableSlotInfo &SlotInfo,
978 WholeProgramDevirtResolution *Res,
979 std::set<ValueInfo> &DevirtTargets) {
980 // See if the program contains a single implementation of this virtual
981 // function.
982 auto TheFn = TargetsForSlot[0];
983 for (auto &&Target : TargetsForSlot)
984 if (TheFn != Target)
985 return false;
986
987 // Don't devirtualize if we don't have target definition.
988 auto Size = TheFn.getSummaryList().size();
989 if (!Size)
990 return false;
991
992 // If the summary list contains multiple summaries where at least one is
993 // a local, give up, as we won't know which (possibly promoted) name to use.
994 for (auto &S : TheFn.getSummaryList())
995 if (GlobalValue::isLocalLinkage(S->linkage()) && Size > 1)
996 return false;
997
998 // Collect functions devirtualized at least for one call site for stats.
999 if (PrintSummaryDevirt)
1000 DevirtTargets.insert(TheFn);
1001
1002 auto &S = TheFn.getSummaryList()[0];
1003 bool IsExported = false;
1004
1005 // Insert calls into the summary index so that the devirtualized targets
1006 // are eligible for import.
1007 // FIXME: Annotate type tests with hotness. For now, mark these as hot
1008 // to better ensure we have the opportunity to inline them.
1009 CalleeInfo CI(CalleeInfo::HotnessType::Hot, /* RelBF = */ 0);
1010 auto AddCalls = [&](CallSiteInfo &CSInfo) {
1011 for (auto *FS : CSInfo.SummaryTypeCheckedLoadUsers) {
1012 FS->addCall({TheFn, CI});
1013 IsExported |= S->modulePath() != FS->modulePath();
1014 }
1015 for (auto *FS : CSInfo.SummaryTypeTestAssumeUsers) {
1016 FS->addCall({TheFn, CI});
1017 IsExported |= S->modulePath() != FS->modulePath();
1018 }
1019 };
1020 AddCalls(SlotInfo.CSInfo);
1021 for (auto &P : SlotInfo.ConstCSInfo)
1022 AddCalls(P.second);
1023
1024 if (IsExported)
1025 ExportedGUIDs.insert(TheFn.getGUID());
1026
1027 // Record in summary for use in devirtualization during the ThinLTO import
1028 // step.
1029 Res->TheKind = WholeProgramDevirtResolution::SingleImpl;
1030 if (GlobalValue::isLocalLinkage(S->linkage())) {
1031 if (IsExported)
1032 // If target is a local function and we are exporting it by
1033 // devirtualizing a call in another module, we need to record the
1034 // promoted name.
1035 Res->SingleImplName = ModuleSummaryIndex::getGlobalNameForLocal(
1036 TheFn.name(), ExportSummary.getModuleHash(S->modulePath()));
1037 else {
1038 LocalWPDTargetsMap[TheFn].push_back(SlotSummary);
1039 Res->SingleImplName = TheFn.name();
1040 }
1041 } else
1042 Res->SingleImplName = TheFn.name();
1043
1044 // Name will be empty if this thin link driven off of serialized combined
1045 // index (e.g. llvm-lto). However, WPD is not supported/invoked for the
1046 // legacy LTO API anyway.
1047 assert(!Res->SingleImplName.empty());
1048
1049 return true;
1050}
1051
Peter Collingbourne29748562018-03-09 19:11:44 +00001052void DevirtModule::tryICallBranchFunnel(
1053 MutableArrayRef<VirtualCallTarget> TargetsForSlot, VTableSlotInfo &SlotInfo,
1054 WholeProgramDevirtResolution *Res, VTableSlot Slot) {
1055 Triple T(M.getTargetTriple());
1056 if (T.getArch() != Triple::x86_64)
1057 return;
1058
Vitaly Buka66f53d72018-04-06 21:32:36 +00001059 if (TargetsForSlot.size() > ClThreshold)
Peter Collingbourne29748562018-03-09 19:11:44 +00001060 return;
1061
1062 bool HasNonDevirt = !SlotInfo.CSInfo.AllCallSitesDevirted;
1063 if (!HasNonDevirt)
1064 for (auto &P : SlotInfo.ConstCSInfo)
1065 if (!P.second.AllCallSitesDevirted) {
1066 HasNonDevirt = true;
1067 break;
1068 }
1069
1070 if (!HasNonDevirt)
1071 return;
1072
1073 FunctionType *FT =
1074 FunctionType::get(Type::getVoidTy(M.getContext()), {Int8PtrTy}, true);
1075 Function *JT;
1076 if (isa<MDString>(Slot.TypeID)) {
1077 JT = Function::Create(FT, Function::ExternalLinkage,
Dylan McKayf920da02018-12-18 09:52:52 +00001078 M.getDataLayout().getProgramAddressSpace(),
Peter Collingbourne29748562018-03-09 19:11:44 +00001079 getGlobalName(Slot, {}, "branch_funnel"), &M);
1080 JT->setVisibility(GlobalValue::HiddenVisibility);
1081 } else {
Dylan McKayf920da02018-12-18 09:52:52 +00001082 JT = Function::Create(FT, Function::InternalLinkage,
1083 M.getDataLayout().getProgramAddressSpace(),
1084 "branch_funnel", &M);
Peter Collingbourne29748562018-03-09 19:11:44 +00001085 }
1086 JT->addAttribute(1, Attribute::Nest);
1087
1088 std::vector<Value *> JTArgs;
1089 JTArgs.push_back(JT->arg_begin());
1090 for (auto &T : TargetsForSlot) {
1091 JTArgs.push_back(getMemberAddr(T.TM));
1092 JTArgs.push_back(T.Fn);
1093 }
1094
1095 BasicBlock *BB = BasicBlock::Create(M.getContext(), "", JT, nullptr);
James Y Knight7976eb52019-02-01 20:43:25 +00001096 Function *Intr =
Peter Collingbourne29748562018-03-09 19:11:44 +00001097 Intrinsic::getDeclaration(&M, llvm::Intrinsic::icall_branch_funnel, {});
1098
1099 auto *CI = CallInst::Create(Intr, JTArgs, "", BB);
1100 CI->setTailCallKind(CallInst::TCK_MustTail);
1101 ReturnInst::Create(M.getContext(), nullptr, BB);
1102
1103 bool IsExported = false;
1104 applyICallBranchFunnel(SlotInfo, JT, IsExported);
1105 if (IsExported)
1106 Res->TheKind = WholeProgramDevirtResolution::BranchFunnel;
1107}
1108
1109void DevirtModule::applyICallBranchFunnel(VTableSlotInfo &SlotInfo,
1110 Constant *JT, bool &IsExported) {
1111 auto Apply = [&](CallSiteInfo &CSInfo) {
1112 if (CSInfo.isExported())
1113 IsExported = true;
1114 if (CSInfo.AllCallSitesDevirted)
1115 return;
1116 for (auto &&VCallSite : CSInfo.CallSites) {
1117 CallSite CS = VCallSite.CS;
1118
1119 // Jump tables are only profitable if the retpoline mitigation is enabled.
1120 Attribute FSAttr = CS.getCaller()->getFnAttribute("target-features");
1121 if (FSAttr.hasAttribute(Attribute::None) ||
1122 !FSAttr.getValueAsString().contains("+retpoline"))
1123 continue;
1124
1125 if (RemarksEnabled)
Teresa Johnsonb0a1d3b2018-08-14 03:00:16 +00001126 VCallSite.emitRemark("branch-funnel",
1127 JT->stripPointerCasts()->getName(), OREGetter);
Peter Collingbourne29748562018-03-09 19:11:44 +00001128
1129 // Pass the address of the vtable in the nest register, which is r10 on
1130 // x86_64.
1131 std::vector<Type *> NewArgs;
1132 NewArgs.push_back(Int8PtrTy);
1133 for (Type *T : CS.getFunctionType()->params())
1134 NewArgs.push_back(T);
James Y Knight7976eb52019-02-01 20:43:25 +00001135 FunctionType *NewFT =
Peter Collingbourne29748562018-03-09 19:11:44 +00001136 FunctionType::get(CS.getFunctionType()->getReturnType(), NewArgs,
James Y Knight7976eb52019-02-01 20:43:25 +00001137 CS.getFunctionType()->isVarArg());
1138 PointerType *NewFTPtr = PointerType::getUnqual(NewFT);
Peter Collingbourne29748562018-03-09 19:11:44 +00001139
1140 IRBuilder<> IRB(CS.getInstruction());
1141 std::vector<Value *> Args;
1142 Args.push_back(IRB.CreateBitCast(VCallSite.VTable, Int8PtrTy));
1143 for (unsigned I = 0; I != CS.getNumArgOperands(); ++I)
1144 Args.push_back(CS.getArgOperand(I));
1145
1146 CallSite NewCS;
1147 if (CS.isCall())
James Y Knight7976eb52019-02-01 20:43:25 +00001148 NewCS = IRB.CreateCall(NewFT, IRB.CreateBitCast(JT, NewFTPtr), Args);
Peter Collingbourne29748562018-03-09 19:11:44 +00001149 else
1150 NewCS = IRB.CreateInvoke(
James Y Knightd9e85a02019-02-01 20:43:34 +00001151 NewFT, IRB.CreateBitCast(JT, NewFTPtr),
Peter Collingbourne29748562018-03-09 19:11:44 +00001152 cast<InvokeInst>(CS.getInstruction())->getNormalDest(),
1153 cast<InvokeInst>(CS.getInstruction())->getUnwindDest(), Args);
1154 NewCS.setCallingConv(CS.getCallingConv());
1155
1156 AttributeList Attrs = CS.getAttributes();
1157 std::vector<AttributeSet> NewArgAttrs;
1158 NewArgAttrs.push_back(AttributeSet::get(
1159 M.getContext(), ArrayRef<Attribute>{Attribute::get(
1160 M.getContext(), Attribute::Nest)}));
1161 for (unsigned I = 0; I + 2 < Attrs.getNumAttrSets(); ++I)
1162 NewArgAttrs.push_back(Attrs.getParamAttributes(I));
1163 NewCS.setAttributes(
1164 AttributeList::get(M.getContext(), Attrs.getFnAttributes(),
1165 Attrs.getRetAttributes(), NewArgAttrs));
1166
1167 CS->replaceAllUsesWith(NewCS.getInstruction());
1168 CS->eraseFromParent();
1169
1170 // This use is no longer unsafe.
1171 if (VCallSite.NumUnsafeUses)
1172 --*VCallSite.NumUnsafeUses;
1173 }
1174 // Don't mark as devirtualized because there may be callers compiled without
1175 // retpoline mitigation, which would mean that they are lowered to
1176 // llvm.type.test and therefore require an llvm.type.test resolution for the
1177 // type identifier.
1178 };
1179 Apply(SlotInfo.CSInfo);
1180 for (auto &P : SlotInfo.ConstCSInfo)
1181 Apply(P.second);
1182}
1183
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001184bool DevirtModule::tryEvaluateFunctionsWithArgs(
1185 MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001186 ArrayRef<uint64_t> Args) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001187 // Evaluate each function and store the result in each target's RetVal
1188 // field.
1189 for (VirtualCallTarget &Target : TargetsForSlot) {
1190 if (Target.Fn->arg_size() != Args.size() + 1)
1191 return false;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001192
1193 Evaluator Eval(M.getDataLayout(), nullptr);
1194 SmallVector<Constant *, 2> EvalArgs;
1195 EvalArgs.push_back(
1196 Constant::getNullValue(Target.Fn->getFunctionType()->getParamType(0)));
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001197 for (unsigned I = 0; I != Args.size(); ++I) {
1198 auto *ArgTy = dyn_cast<IntegerType>(
1199 Target.Fn->getFunctionType()->getParamType(I + 1));
1200 if (!ArgTy)
1201 return false;
1202 EvalArgs.push_back(ConstantInt::get(ArgTy, Args[I]));
1203 }
1204
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001205 Constant *RetVal;
1206 if (!Eval.EvaluateFunction(Target.Fn, RetVal, EvalArgs) ||
1207 !isa<ConstantInt>(RetVal))
1208 return false;
1209 Target.RetVal = cast<ConstantInt>(RetVal)->getZExtValue();
1210 }
1211 return true;
1212}
1213
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001214void DevirtModule::applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName,
1215 uint64_t TheRetVal) {
1216 for (auto Call : CSInfo.CallSites)
1217 Call.replaceAndErase(
Sam Elliotte963c892017-08-21 16:57:21 +00001218 "uniform-ret-val", FnName, RemarksEnabled, OREGetter,
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001219 ConstantInt::get(cast<IntegerType>(Call.CS.getType()), TheRetVal));
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001220 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001221}
1222
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001223bool DevirtModule::tryUniformRetValOpt(
Peter Collingbourne77a8d562017-03-04 01:34:53 +00001224 MutableArrayRef<VirtualCallTarget> TargetsForSlot, CallSiteInfo &CSInfo,
1225 WholeProgramDevirtResolution::ByArg *Res) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001226 // Uniform return value optimization. If all functions return the same
1227 // constant, replace all calls with that constant.
1228 uint64_t TheRetVal = TargetsForSlot[0].RetVal;
1229 for (const VirtualCallTarget &Target : TargetsForSlot)
1230 if (Target.RetVal != TheRetVal)
1231 return false;
1232
Peter Collingbourne77a8d562017-03-04 01:34:53 +00001233 if (CSInfo.isExported()) {
1234 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal;
1235 Res->Info = TheRetVal;
1236 }
1237
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001238 applyUniformRetValOpt(CSInfo, TargetsForSlot[0].Fn->getName(), TheRetVal);
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001239 if (RemarksEnabled)
1240 for (auto &&Target : TargetsForSlot)
1241 Target.WasDevirt = true;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001242 return true;
1243}
1244
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001245std::string DevirtModule::getGlobalName(VTableSlot Slot,
1246 ArrayRef<uint64_t> Args,
1247 StringRef Name) {
1248 std::string FullName = "__typeid_";
1249 raw_string_ostream OS(FullName);
1250 OS << cast<MDString>(Slot.TypeID)->getString() << '_' << Slot.ByteOffset;
1251 for (uint64_t Arg : Args)
1252 OS << '_' << Arg;
1253 OS << '_' << Name;
1254 return OS.str();
1255}
1256
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001257bool DevirtModule::shouldExportConstantsAsAbsoluteSymbols() {
1258 Triple T(M.getTargetTriple());
1259 return (T.getArch() == Triple::x86 || T.getArch() == Triple::x86_64) &&
1260 T.getObjectFormat() == Triple::ELF;
1261}
1262
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001263void DevirtModule::exportGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
1264 StringRef Name, Constant *C) {
1265 GlobalAlias *GA = GlobalAlias::create(Int8Ty, 0, GlobalValue::ExternalLinkage,
1266 getGlobalName(Slot, Args, Name), C, &M);
1267 GA->setVisibility(GlobalValue::HiddenVisibility);
1268}
1269
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001270void DevirtModule::exportConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
1271 StringRef Name, uint32_t Const,
1272 uint32_t &Storage) {
1273 if (shouldExportConstantsAsAbsoluteSymbols()) {
1274 exportGlobal(
1275 Slot, Args, Name,
1276 ConstantExpr::getIntToPtr(ConstantInt::get(Int32Ty, Const), Int8PtrTy));
1277 return;
1278 }
1279
1280 Storage = Const;
1281}
1282
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001283Constant *DevirtModule::importGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001284 StringRef Name) {
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001285 Constant *C = M.getOrInsertGlobal(getGlobalName(Slot, Args, Name), Int8Ty);
1286 auto *GV = dyn_cast<GlobalVariable>(C);
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001287 if (GV)
1288 GV->setVisibility(GlobalValue::HiddenVisibility);
1289 return C;
1290}
1291
1292Constant *DevirtModule::importConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
1293 StringRef Name, IntegerType *IntTy,
1294 uint32_t Storage) {
1295 if (!shouldExportConstantsAsAbsoluteSymbols())
1296 return ConstantInt::get(IntTy, Storage);
1297
1298 Constant *C = importGlobal(Slot, Args, Name);
1299 auto *GV = cast<GlobalVariable>(C->stripPointerCasts());
1300 C = ConstantExpr::getPtrToInt(C, IntTy);
1301
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001302 // We only need to set metadata if the global is newly created, in which
1303 // case it would not have hidden visibility.
Benjamin Kramer0deb9a92018-05-31 13:29:58 +00001304 if (GV->hasMetadata(LLVMContext::MD_absolute_symbol))
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001305 return C;
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001306
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001307 auto SetAbsRange = [&](uint64_t Min, uint64_t Max) {
1308 auto *MinC = ConstantAsMetadata::get(ConstantInt::get(IntPtrTy, Min));
1309 auto *MaxC = ConstantAsMetadata::get(ConstantInt::get(IntPtrTy, Max));
1310 GV->setMetadata(LLVMContext::MD_absolute_symbol,
1311 MDNode::get(M.getContext(), {MinC, MaxC}));
1312 };
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001313 unsigned AbsWidth = IntTy->getBitWidth();
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001314 if (AbsWidth == IntPtrTy->getBitWidth())
1315 SetAbsRange(~0ull, ~0ull); // Full set.
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001316 else
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001317 SetAbsRange(0, 1ull << AbsWidth);
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001318 return C;
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001319}
1320
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001321void DevirtModule::applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName,
1322 bool IsOne,
1323 Constant *UniqueMemberAddr) {
1324 for (auto &&Call : CSInfo.CallSites) {
1325 IRBuilder<> B(Call.CS.getInstruction());
Peter Collingbourne001052a2017-08-22 21:41:19 +00001326 Value *Cmp =
1327 B.CreateICmp(IsOne ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE,
1328 B.CreateBitCast(Call.VTable, Int8PtrTy), UniqueMemberAddr);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001329 Cmp = B.CreateZExt(Cmp, Call.CS->getType());
Sam Elliotte963c892017-08-21 16:57:21 +00001330 Call.replaceAndErase("unique-ret-val", FnName, RemarksEnabled, OREGetter,
1331 Cmp);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001332 }
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001333 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001334}
1335
Peter Collingbourne29748562018-03-09 19:11:44 +00001336Constant *DevirtModule::getMemberAddr(const TypeMemberInfo *M) {
1337 Constant *C = ConstantExpr::getBitCast(M->Bits->GV, Int8PtrTy);
1338 return ConstantExpr::getGetElementPtr(Int8Ty, C,
1339 ConstantInt::get(Int64Ty, M->Offset));
1340}
1341
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001342bool DevirtModule::tryUniqueRetValOpt(
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001343 unsigned BitWidth, MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001344 CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res,
1345 VTableSlot Slot, ArrayRef<uint64_t> Args) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001346 // IsOne controls whether we look for a 0 or a 1.
1347 auto tryUniqueRetValOptFor = [&](bool IsOne) {
Eugene Zelenkocdc71612016-08-11 17:20:18 +00001348 const TypeMemberInfo *UniqueMember = nullptr;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001349 for (const VirtualCallTarget &Target : TargetsForSlot) {
Peter Collingbourne3866cc52016-03-08 03:50:36 +00001350 if (Target.RetVal == (IsOne ? 1 : 0)) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001351 if (UniqueMember)
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001352 return false;
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001353 UniqueMember = Target.TM;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001354 }
1355 }
1356
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001357 // We should have found a unique member or bailed out by now. We already
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001358 // checked for a uniform return value in tryUniformRetValOpt.
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001359 assert(UniqueMember);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001360
Peter Collingbourne29748562018-03-09 19:11:44 +00001361 Constant *UniqueMemberAddr = getMemberAddr(UniqueMember);
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001362 if (CSInfo.isExported()) {
1363 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal;
1364 Res->Info = IsOne;
1365
1366 exportGlobal(Slot, Args, "unique_member", UniqueMemberAddr);
1367 }
1368
1369 // Replace each call with the comparison.
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001370 applyUniqueRetValOpt(CSInfo, TargetsForSlot[0].Fn->getName(), IsOne,
1371 UniqueMemberAddr);
1372
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001373 // Update devirtualization statistics for targets.
1374 if (RemarksEnabled)
1375 for (auto &&Target : TargetsForSlot)
1376 Target.WasDevirt = true;
1377
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001378 return true;
1379 };
1380
1381 if (BitWidth == 1) {
1382 if (tryUniqueRetValOptFor(true))
1383 return true;
1384 if (tryUniqueRetValOptFor(false))
1385 return true;
1386 }
1387 return false;
1388}
1389
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001390void DevirtModule::applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName,
1391 Constant *Byte, Constant *Bit) {
1392 for (auto Call : CSInfo.CallSites) {
1393 auto *RetType = cast<IntegerType>(Call.CS.getType());
1394 IRBuilder<> B(Call.CS.getInstruction());
Peter Collingbourne001052a2017-08-22 21:41:19 +00001395 Value *Addr =
1396 B.CreateGEP(Int8Ty, B.CreateBitCast(Call.VTable, Int8PtrTy), Byte);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001397 if (RetType->getBitWidth() == 1) {
James Y Knight14359ef2019-02-01 20:44:24 +00001398 Value *Bits = B.CreateLoad(Int8Ty, Addr);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001399 Value *BitsAndBit = B.CreateAnd(Bits, Bit);
1400 auto IsBitSet = B.CreateICmpNE(BitsAndBit, ConstantInt::get(Int8Ty, 0));
1401 Call.replaceAndErase("virtual-const-prop-1-bit", FnName, RemarksEnabled,
Sam Elliotte963c892017-08-21 16:57:21 +00001402 OREGetter, IsBitSet);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001403 } else {
1404 Value *ValAddr = B.CreateBitCast(Addr, RetType->getPointerTo());
1405 Value *Val = B.CreateLoad(RetType, ValAddr);
Sam Elliotte963c892017-08-21 16:57:21 +00001406 Call.replaceAndErase("virtual-const-prop", FnName, RemarksEnabled,
1407 OREGetter, Val);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001408 }
1409 }
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001410 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001411}
1412
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001413bool DevirtModule::tryVirtualConstProp(
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001414 MutableArrayRef<VirtualCallTarget> TargetsForSlot, VTableSlotInfo &SlotInfo,
1415 WholeProgramDevirtResolution *Res, VTableSlot Slot) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001416 // This only works if the function returns an integer.
1417 auto RetType = dyn_cast<IntegerType>(TargetsForSlot[0].Fn->getReturnType());
1418 if (!RetType)
1419 return false;
1420 unsigned BitWidth = RetType->getBitWidth();
1421 if (BitWidth > 64)
1422 return false;
1423
Peter Collingbourne17febdb2017-02-09 23:46:26 +00001424 // Make sure that each function is defined, does not access memory, takes at
1425 // least one argument, does not use its first argument (which we assume is
1426 // 'this'), and has the same return type.
Peter Collingbourne37317f12017-02-17 18:17:04 +00001427 //
1428 // Note that we test whether this copy of the function is readnone, rather
1429 // than testing function attributes, which must hold for any copy of the
1430 // function, even a less optimized version substituted at link time. This is
1431 // sound because the virtual constant propagation optimizations effectively
1432 // inline all implementations of the virtual function into each call site,
1433 // rather than using function attributes to perform local optimization.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001434 for (VirtualCallTarget &Target : TargetsForSlot) {
Peter Collingbourne37317f12017-02-17 18:17:04 +00001435 if (Target.Fn->isDeclaration() ||
1436 computeFunctionBodyMemoryAccess(*Target.Fn, AARGetter(*Target.Fn)) !=
1437 MAK_ReadNone ||
Peter Collingbourne17febdb2017-02-09 23:46:26 +00001438 Target.Fn->arg_empty() || !Target.Fn->arg_begin()->use_empty() ||
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001439 Target.Fn->getReturnType() != RetType)
1440 return false;
1441 }
1442
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001443 for (auto &&CSByConstantArg : SlotInfo.ConstCSInfo) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001444 if (!tryEvaluateFunctionsWithArgs(TargetsForSlot, CSByConstantArg.first))
1445 continue;
1446
Peter Collingbourne77a8d562017-03-04 01:34:53 +00001447 WholeProgramDevirtResolution::ByArg *ResByArg = nullptr;
1448 if (Res)
1449 ResByArg = &Res->ResByArg[CSByConstantArg.first];
1450
1451 if (tryUniformRetValOpt(TargetsForSlot, CSByConstantArg.second, ResByArg))
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001452 continue;
1453
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001454 if (tryUniqueRetValOpt(BitWidth, TargetsForSlot, CSByConstantArg.second,
1455 ResByArg, Slot, CSByConstantArg.first))
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001456 continue;
1457
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001458 // Find an allocation offset in bits in all vtables associated with the
1459 // type.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001460 uint64_t AllocBefore =
1461 findLowestOffset(TargetsForSlot, /*IsAfter=*/false, BitWidth);
1462 uint64_t AllocAfter =
1463 findLowestOffset(TargetsForSlot, /*IsAfter=*/true, BitWidth);
1464
1465 // Calculate the total amount of padding needed to store a value at both
1466 // ends of the object.
1467 uint64_t TotalPaddingBefore = 0, TotalPaddingAfter = 0;
1468 for (auto &&Target : TargetsForSlot) {
1469 TotalPaddingBefore += std::max<int64_t>(
1470 (AllocBefore + 7) / 8 - Target.allocatedBeforeBytes() - 1, 0);
1471 TotalPaddingAfter += std::max<int64_t>(
1472 (AllocAfter + 7) / 8 - Target.allocatedAfterBytes() - 1, 0);
1473 }
1474
1475 // If the amount of padding is too large, give up.
1476 // FIXME: do something smarter here.
1477 if (std::min(TotalPaddingBefore, TotalPaddingAfter) > 128)
1478 continue;
1479
1480 // Calculate the offset to the value as a (possibly negative) byte offset
1481 // and (if applicable) a bit offset, and store the values in the targets.
1482 int64_t OffsetByte;
1483 uint64_t OffsetBit;
1484 if (TotalPaddingBefore <= TotalPaddingAfter)
1485 setBeforeReturnValues(TargetsForSlot, AllocBefore, BitWidth, OffsetByte,
1486 OffsetBit);
1487 else
1488 setAfterReturnValues(TargetsForSlot, AllocAfter, BitWidth, OffsetByte,
1489 OffsetBit);
1490
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001491 if (RemarksEnabled)
1492 for (auto &&Target : TargetsForSlot)
1493 Target.WasDevirt = true;
1494
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001495
1496 if (CSByConstantArg.second.isExported()) {
1497 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp;
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001498 exportConstant(Slot, CSByConstantArg.first, "byte", OffsetByte,
1499 ResByArg->Byte);
1500 exportConstant(Slot, CSByConstantArg.first, "bit", 1ULL << OffsetBit,
1501 ResByArg->Bit);
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001502 }
1503
1504 // Rewrite each call to a load from OffsetByte/OffsetBit.
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001505 Constant *ByteConst = ConstantInt::get(Int32Ty, OffsetByte);
1506 Constant *BitConst = ConstantInt::get(Int8Ty, 1ULL << OffsetBit);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001507 applyVirtualConstProp(CSByConstantArg.second,
1508 TargetsForSlot[0].Fn->getName(), ByteConst, BitConst);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001509 }
1510 return true;
1511}
1512
1513void DevirtModule::rebuildGlobal(VTableBits &B) {
1514 if (B.Before.Bytes.empty() && B.After.Bytes.empty())
1515 return;
1516
Peter Collingbourneef5cfc22019-07-22 18:50:45 +00001517 // Align the before byte array to the global's minimum alignment so that we
1518 // don't break any alignment requirements on the global.
1519 unsigned Align = B.GV->getAlignment();
1520 if (Align == 0)
1521 Align = M.getDataLayout().getABITypeAlignment(B.GV->getValueType());
1522 B.Before.Bytes.resize(alignTo(B.Before.Bytes.size(), Align));
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001523
1524 // Before was stored in reverse order; flip it now.
1525 for (size_t I = 0, Size = B.Before.Bytes.size(); I != Size / 2; ++I)
1526 std::swap(B.Before.Bytes[I], B.Before.Bytes[Size - 1 - I]);
1527
1528 // Build an anonymous global containing the before bytes, followed by the
1529 // original initializer, followed by the after bytes.
1530 auto NewInit = ConstantStruct::getAnon(
1531 {ConstantDataArray::get(M.getContext(), B.Before.Bytes),
1532 B.GV->getInitializer(),
1533 ConstantDataArray::get(M.getContext(), B.After.Bytes)});
1534 auto NewGV =
1535 new GlobalVariable(M, NewInit->getType(), B.GV->isConstant(),
1536 GlobalVariable::PrivateLinkage, NewInit, "", B.GV);
1537 NewGV->setSection(B.GV->getSection());
1538 NewGV->setComdat(B.GV->getComdat());
Peter Collingbourneef5cfc22019-07-22 18:50:45 +00001539 NewGV->setAlignment(B.GV->getAlignment());
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001540
Peter Collingbourne0312f612016-06-25 00:23:04 +00001541 // Copy the original vtable's metadata to the anonymous global, adjusting
1542 // offsets as required.
1543 NewGV->copyMetadata(B.GV, B.Before.Bytes.size());
1544
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001545 // Build an alias named after the original global, pointing at the second
1546 // element (the original initializer).
1547 auto Alias = GlobalAlias::create(
1548 B.GV->getInitializer()->getType(), 0, B.GV->getLinkage(), "",
1549 ConstantExpr::getGetElementPtr(
1550 NewInit->getType(), NewGV,
1551 ArrayRef<Constant *>{ConstantInt::get(Int32Ty, 0),
1552 ConstantInt::get(Int32Ty, 1)}),
1553 &M);
1554 Alias->setVisibility(B.GV->getVisibility());
1555 Alias->takeName(B.GV);
1556
1557 B.GV->replaceAllUsesWith(Alias);
1558 B.GV->eraseFromParent();
1559}
1560
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001561bool DevirtModule::areRemarksEnabled() {
1562 const auto &FL = M.getFunctionList();
Teresa Johnson5e1c0e72018-09-18 13:42:24 +00001563 for (const Function &Fn : FL) {
1564 const auto &BBL = Fn.getBasicBlockList();
1565 if (BBL.empty())
1566 continue;
1567 auto DI = OptimizationRemark(DEBUG_TYPE, "", DebugLoc(), &BBL.front());
1568 return DI.isEnabled();
1569 }
1570 return false;
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001571}
1572
Peter Collingbourne0312f612016-06-25 00:23:04 +00001573void DevirtModule::scanTypeTestUsers(Function *TypeTestFunc,
1574 Function *AssumeFunc) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001575 // Find all virtual calls via a virtual table pointer %p under an assumption
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001576 // of the form llvm.assume(llvm.type.test(%p, %md)). This indicates that %p
1577 // points to a member of the type identifier %md. Group calls by (type ID,
1578 // offset) pair (effectively the identity of the virtual function) and store
1579 // to CallSlots.
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001580 DenseSet<CallSite> SeenCallSites;
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001581 for (auto I = TypeTestFunc->use_begin(), E = TypeTestFunc->use_end();
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001582 I != E;) {
1583 auto CI = dyn_cast<CallInst>(I->getUser());
1584 ++I;
1585 if (!CI)
1586 continue;
1587
Peter Collingbourneccdc2252016-05-10 18:07:21 +00001588 // Search for virtual calls based on %p and add them to DevirtCalls.
1589 SmallVector<DevirtCallSite, 1> DevirtCalls;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001590 SmallVector<CallInst *, 1> Assumes;
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001591 auto &DT = LookupDomTree(*CI->getFunction());
1592 findDevirtualizableCallsForTypeTest(DevirtCalls, Assumes, CI, DT);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001593
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001594 // If we found any, add them to CallSlots.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001595 if (!Assumes.empty()) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001596 Metadata *TypeId =
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001597 cast<MetadataAsValue>(CI->getArgOperand(1))->getMetadata();
1598 Value *Ptr = CI->getArgOperand(0)->stripPointerCasts();
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001599 for (DevirtCallSite Call : DevirtCalls) {
1600 // Only add this CallSite if we haven't seen it before. The vtable
1601 // pointer may have been CSE'd with pointers from other call sites,
1602 // and we don't want to process call sites multiple times. We can't
1603 // just skip the vtable Ptr if it has been seen before, however, since
1604 // it may be shared by type tests that dominate different calls.
1605 if (SeenCallSites.insert(Call.CS).second)
Peter Collingbourne001052a2017-08-22 21:41:19 +00001606 CallSlots[{TypeId, Call.Offset}].addCallSite(Ptr, Call.CS, nullptr);
Peter Collingbourneccdc2252016-05-10 18:07:21 +00001607 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001608 }
1609
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001610 // We no longer need the assumes or the type test.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001611 for (auto Assume : Assumes)
1612 Assume->eraseFromParent();
1613 // We can't use RecursivelyDeleteTriviallyDeadInstructions here because we
1614 // may use the vtable argument later.
1615 if (CI->use_empty())
1616 CI->eraseFromParent();
1617 }
Peter Collingbourne0312f612016-06-25 00:23:04 +00001618}
1619
1620void DevirtModule::scanTypeCheckedLoadUsers(Function *TypeCheckedLoadFunc) {
1621 Function *TypeTestFunc = Intrinsic::getDeclaration(&M, Intrinsic::type_test);
1622
1623 for (auto I = TypeCheckedLoadFunc->use_begin(),
1624 E = TypeCheckedLoadFunc->use_end();
1625 I != E;) {
1626 auto CI = dyn_cast<CallInst>(I->getUser());
1627 ++I;
1628 if (!CI)
1629 continue;
1630
1631 Value *Ptr = CI->getArgOperand(0);
1632 Value *Offset = CI->getArgOperand(1);
1633 Value *TypeIdValue = CI->getArgOperand(2);
1634 Metadata *TypeId = cast<MetadataAsValue>(TypeIdValue)->getMetadata();
1635
1636 SmallVector<DevirtCallSite, 1> DevirtCalls;
1637 SmallVector<Instruction *, 1> LoadedPtrs;
1638 SmallVector<Instruction *, 1> Preds;
1639 bool HasNonCallUses = false;
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001640 auto &DT = LookupDomTree(*CI->getFunction());
Peter Collingbourne0312f612016-06-25 00:23:04 +00001641 findDevirtualizableCallsForTypeCheckedLoad(DevirtCalls, LoadedPtrs, Preds,
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001642 HasNonCallUses, CI, DT);
Peter Collingbourne0312f612016-06-25 00:23:04 +00001643
1644 // Start by generating "pessimistic" code that explicitly loads the function
1645 // pointer from the vtable and performs the type check. If possible, we will
1646 // eliminate the load and the type check later.
1647
1648 // If possible, only generate the load at the point where it is used.
1649 // This helps avoid unnecessary spills.
1650 IRBuilder<> LoadB(
1651 (LoadedPtrs.size() == 1 && !HasNonCallUses) ? LoadedPtrs[0] : CI);
1652 Value *GEP = LoadB.CreateGEP(Int8Ty, Ptr, Offset);
1653 Value *GEPPtr = LoadB.CreateBitCast(GEP, PointerType::getUnqual(Int8PtrTy));
1654 Value *LoadedValue = LoadB.CreateLoad(Int8PtrTy, GEPPtr);
1655
1656 for (Instruction *LoadedPtr : LoadedPtrs) {
1657 LoadedPtr->replaceAllUsesWith(LoadedValue);
1658 LoadedPtr->eraseFromParent();
1659 }
1660
1661 // Likewise for the type test.
1662 IRBuilder<> CallB((Preds.size() == 1 && !HasNonCallUses) ? Preds[0] : CI);
1663 CallInst *TypeTestCall = CallB.CreateCall(TypeTestFunc, {Ptr, TypeIdValue});
1664
1665 for (Instruction *Pred : Preds) {
1666 Pred->replaceAllUsesWith(TypeTestCall);
1667 Pred->eraseFromParent();
1668 }
1669
1670 // We have already erased any extractvalue instructions that refer to the
1671 // intrinsic call, but the intrinsic may have other non-extractvalue uses
1672 // (although this is unlikely). In that case, explicitly build a pair and
1673 // RAUW it.
1674 if (!CI->use_empty()) {
1675 Value *Pair = UndefValue::get(CI->getType());
1676 IRBuilder<> B(CI);
1677 Pair = B.CreateInsertValue(Pair, LoadedValue, {0});
1678 Pair = B.CreateInsertValue(Pair, TypeTestCall, {1});
1679 CI->replaceAllUsesWith(Pair);
1680 }
1681
1682 // The number of unsafe uses is initially the number of uses.
1683 auto &NumUnsafeUses = NumUnsafeUsesForTypeTest[TypeTestCall];
1684 NumUnsafeUses = DevirtCalls.size();
1685
1686 // If the function pointer has a non-call user, we cannot eliminate the type
1687 // check, as one of those users may eventually call the pointer. Increment
1688 // the unsafe use count to make sure it cannot reach zero.
1689 if (HasNonCallUses)
1690 ++NumUnsafeUses;
1691 for (DevirtCallSite Call : DevirtCalls) {
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001692 CallSlots[{TypeId, Call.Offset}].addCallSite(Ptr, Call.CS,
1693 &NumUnsafeUses);
Peter Collingbourne0312f612016-06-25 00:23:04 +00001694 }
1695
1696 CI->eraseFromParent();
1697 }
1698}
1699
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001700void DevirtModule::importResolution(VTableSlot Slot, VTableSlotInfo &SlotInfo) {
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001701 auto *TypeId = dyn_cast<MDString>(Slot.TypeID);
1702 if (!TypeId)
1703 return;
Peter Collingbourne9a3f9792017-03-22 18:04:39 +00001704 const TypeIdSummary *TidSummary =
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001705 ImportSummary->getTypeIdSummary(TypeId->getString());
Peter Collingbourne9a3f9792017-03-22 18:04:39 +00001706 if (!TidSummary)
1707 return;
1708 auto ResI = TidSummary->WPDRes.find(Slot.ByteOffset);
1709 if (ResI == TidSummary->WPDRes.end())
1710 return;
1711 const WholeProgramDevirtResolution &Res = ResI->second;
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001712
1713 if (Res.TheKind == WholeProgramDevirtResolution::SingleImpl) {
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001714 assert(!Res.SingleImplName.empty());
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001715 // The type of the function in the declaration is irrelevant because every
1716 // call site will cast it to the correct type.
James Y Knight13680222019-02-01 02:28:03 +00001717 Constant *SingleImpl =
1718 cast<Constant>(M.getOrInsertFunction(Res.SingleImplName,
1719 Type::getVoidTy(M.getContext()))
1720 .getCallee());
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001721
1722 // This is the import phase so we should not be exporting anything.
1723 bool IsExported = false;
1724 applySingleImplDevirt(SlotInfo, SingleImpl, IsExported);
1725 assert(!IsExported);
1726 }
Peter Collingbourne0152c812017-03-09 01:11:15 +00001727
1728 for (auto &CSByConstantArg : SlotInfo.ConstCSInfo) {
1729 auto I = Res.ResByArg.find(CSByConstantArg.first);
1730 if (I == Res.ResByArg.end())
1731 continue;
1732 auto &ResByArg = I->second;
1733 // FIXME: We should figure out what to do about the "function name" argument
1734 // to the apply* functions, as the function names are unavailable during the
1735 // importing phase. For now we just pass the empty string. This does not
1736 // impact correctness because the function names are just used for remarks.
1737 switch (ResByArg.TheKind) {
1738 case WholeProgramDevirtResolution::ByArg::UniformRetVal:
1739 applyUniformRetValOpt(CSByConstantArg.second, "", ResByArg.Info);
1740 break;
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001741 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: {
1742 Constant *UniqueMemberAddr =
1743 importGlobal(Slot, CSByConstantArg.first, "unique_member");
1744 applyUniqueRetValOpt(CSByConstantArg.second, "", ResByArg.Info,
1745 UniqueMemberAddr);
1746 break;
1747 }
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001748 case WholeProgramDevirtResolution::ByArg::VirtualConstProp: {
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001749 Constant *Byte = importConstant(Slot, CSByConstantArg.first, "byte",
1750 Int32Ty, ResByArg.Byte);
1751 Constant *Bit = importConstant(Slot, CSByConstantArg.first, "bit", Int8Ty,
1752 ResByArg.Bit);
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001753 applyVirtualConstProp(CSByConstantArg.second, "", Byte, Bit);
Adrian Prantl0e6694d2017-12-19 22:05:25 +00001754 break;
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001755 }
Peter Collingbourne0152c812017-03-09 01:11:15 +00001756 default:
1757 break;
1758 }
1759 }
Peter Collingbourne29748562018-03-09 19:11:44 +00001760
1761 if (Res.TheKind == WholeProgramDevirtResolution::BranchFunnel) {
James Y Knight13680222019-02-01 02:28:03 +00001762 // The type of the function is irrelevant, because it's bitcast at calls
1763 // anyhow.
1764 Constant *JT = cast<Constant>(
1765 M.getOrInsertFunction(getGlobalName(Slot, {}, "branch_funnel"),
1766 Type::getVoidTy(M.getContext()))
1767 .getCallee());
Peter Collingbourne29748562018-03-09 19:11:44 +00001768 bool IsExported = false;
1769 applyICallBranchFunnel(SlotInfo, JT, IsExported);
1770 assert(!IsExported);
1771 }
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001772}
1773
1774void DevirtModule::removeRedundantTypeTests() {
1775 auto True = ConstantInt::getTrue(M.getContext());
1776 for (auto &&U : NumUnsafeUsesForTypeTest) {
1777 if (U.second == 0) {
1778 U.first->replaceAllUsesWith(True);
1779 U.first->eraseFromParent();
1780 }
1781 }
1782}
1783
Peter Collingbourne0312f612016-06-25 00:23:04 +00001784bool DevirtModule::run() {
Teresa Johnsond0b1f302019-02-14 21:22:50 +00001785 // If only some of the modules were split, we cannot correctly perform
1786 // this transformation. We already checked for the presense of type tests
1787 // with partially split modules during the thin link, and would have emitted
1788 // an error if any were found, so here we can simply return.
1789 if ((ExportSummary && ExportSummary->partiallySplitLTOUnits()) ||
1790 (ImportSummary && ImportSummary->partiallySplitLTOUnits()))
1791 return false;
1792
Peter Collingbourne0312f612016-06-25 00:23:04 +00001793 Function *TypeTestFunc =
1794 M.getFunction(Intrinsic::getName(Intrinsic::type_test));
1795 Function *TypeCheckedLoadFunc =
1796 M.getFunction(Intrinsic::getName(Intrinsic::type_checked_load));
1797 Function *AssumeFunc = M.getFunction(Intrinsic::getName(Intrinsic::assume));
1798
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001799 // Normally if there are no users of the devirtualization intrinsics in the
1800 // module, this pass has nothing to do. But if we are exporting, we also need
1801 // to handle any users that appear only in the function summaries.
Peter Collingbournef7691d82017-03-22 18:22:59 +00001802 if (!ExportSummary &&
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001803 (!TypeTestFunc || TypeTestFunc->use_empty() || !AssumeFunc ||
Peter Collingbourne0312f612016-06-25 00:23:04 +00001804 AssumeFunc->use_empty()) &&
1805 (!TypeCheckedLoadFunc || TypeCheckedLoadFunc->use_empty()))
1806 return false;
1807
1808 if (TypeTestFunc && AssumeFunc)
1809 scanTypeTestUsers(TypeTestFunc, AssumeFunc);
1810
1811 if (TypeCheckedLoadFunc)
1812 scanTypeCheckedLoadUsers(TypeCheckedLoadFunc);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001813
Peter Collingbournef7691d82017-03-22 18:22:59 +00001814 if (ImportSummary) {
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001815 for (auto &S : CallSlots)
1816 importResolution(S.first, S.second);
1817
1818 removeRedundantTypeTests();
1819
1820 // The rest of the code is only necessary when exporting or during regular
1821 // LTO, so we are done.
1822 return true;
1823 }
1824
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001825 // Rebuild type metadata into a map for easy lookup.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001826 std::vector<VTableBits> Bits;
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001827 DenseMap<Metadata *, std::set<TypeMemberInfo>> TypeIdMap;
1828 buildTypeIdentifierMap(Bits, TypeIdMap);
1829 if (TypeIdMap.empty())
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001830 return true;
1831
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001832 // Collect information from summary about which calls to try to devirtualize.
Peter Collingbournef7691d82017-03-22 18:22:59 +00001833 if (ExportSummary) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001834 DenseMap<GlobalValue::GUID, TinyPtrVector<Metadata *>> MetadataByGUID;
1835 for (auto &P : TypeIdMap) {
1836 if (auto *TypeId = dyn_cast<MDString>(P.first))
1837 MetadataByGUID[GlobalValue::getGUID(TypeId->getString())].push_back(
1838 TypeId);
1839 }
1840
Peter Collingbournef7691d82017-03-22 18:22:59 +00001841 for (auto &P : *ExportSummary) {
Peter Collingbourne9667b912017-05-04 18:03:25 +00001842 for (auto &S : P.second.SummaryList) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001843 auto *FS = dyn_cast<FunctionSummary>(S.get());
1844 if (!FS)
1845 continue;
1846 // FIXME: Only add live functions.
George Rimar5d8aea12017-03-10 10:31:56 +00001847 for (FunctionSummary::VFuncId VF : FS->type_test_assume_vcalls()) {
1848 for (Metadata *MD : MetadataByGUID[VF.GUID]) {
Peter Collingbourne29748562018-03-09 19:11:44 +00001849 CallSlots[{MD, VF.Offset}]
1850 .CSInfo.markSummaryHasTypeTestAssumeUsers();
George Rimar5d8aea12017-03-10 10:31:56 +00001851 }
1852 }
1853 for (FunctionSummary::VFuncId VF : FS->type_checked_load_vcalls()) {
1854 for (Metadata *MD : MetadataByGUID[VF.GUID]) {
Peter Collingbourne29748562018-03-09 19:11:44 +00001855 CallSlots[{MD, VF.Offset}].CSInfo.addSummaryTypeCheckedLoadUser(FS);
George Rimar5d8aea12017-03-10 10:31:56 +00001856 }
1857 }
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001858 for (const FunctionSummary::ConstVCall &VC :
George Rimar5d8aea12017-03-10 10:31:56 +00001859 FS->type_test_assume_const_vcalls()) {
1860 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) {
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001861 CallSlots[{MD, VC.VFunc.Offset}]
George Rimar5d8aea12017-03-10 10:31:56 +00001862 .ConstCSInfo[VC.Args]
Peter Collingbourne29748562018-03-09 19:11:44 +00001863 .markSummaryHasTypeTestAssumeUsers();
George Rimar5d8aea12017-03-10 10:31:56 +00001864 }
1865 }
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001866 for (const FunctionSummary::ConstVCall &VC :
George Rimar5d8aea12017-03-10 10:31:56 +00001867 FS->type_checked_load_const_vcalls()) {
1868 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001869 CallSlots[{MD, VC.VFunc.Offset}]
1870 .ConstCSInfo[VC.Args]
Peter Collingbourne29748562018-03-09 19:11:44 +00001871 .addSummaryTypeCheckedLoadUser(FS);
George Rimar5d8aea12017-03-10 10:31:56 +00001872 }
1873 }
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001874 }
1875 }
1876 }
1877
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001878 // For each (type, offset) pair:
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001879 bool DidVirtualConstProp = false;
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001880 std::map<std::string, Function*> DevirtTargets;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001881 for (auto &S : CallSlots) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001882 // Search each of the members of the type identifier for the virtual
1883 // function implementation at offset S.first.ByteOffset, and add to
1884 // TargetsForSlot.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001885 std::vector<VirtualCallTarget> TargetsForSlot;
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001886 if (tryFindVirtualCallTargets(TargetsForSlot, TypeIdMap[S.first.TypeID],
1887 S.first.ByteOffset)) {
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001888 WholeProgramDevirtResolution *Res = nullptr;
Peter Collingbournef7691d82017-03-22 18:22:59 +00001889 if (ExportSummary && isa<MDString>(S.first.TypeID))
1890 Res = &ExportSummary
Peter Collingbourne9a3f9792017-03-22 18:04:39 +00001891 ->getOrInsertTypeIdSummary(
1892 cast<MDString>(S.first.TypeID)->getString())
1893 .WPDRes[S.first.ByteOffset];
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001894
Peter Collingbourne29748562018-03-09 19:11:44 +00001895 if (!trySingleImplDevirt(TargetsForSlot, S.second, Res)) {
1896 DidVirtualConstProp |=
1897 tryVirtualConstProp(TargetsForSlot, S.second, Res, S.first);
1898
1899 tryICallBranchFunnel(TargetsForSlot, S.second, Res, S.first);
1900 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001901
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001902 // Collect functions devirtualized at least for one call site for stats.
1903 if (RemarksEnabled)
1904 for (const auto &T : TargetsForSlot)
1905 if (T.WasDevirt)
1906 DevirtTargets[T.Fn->getName()] = T.Fn;
1907 }
1908
1909 // CFI-specific: if we are exporting and any llvm.type.checked.load
1910 // intrinsics were *not* devirtualized, we need to add the resulting
1911 // llvm.type.test intrinsics to the function summaries so that the
1912 // LowerTypeTests pass will export them.
Peter Collingbournef7691d82017-03-22 18:22:59 +00001913 if (ExportSummary && isa<MDString>(S.first.TypeID)) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001914 auto GUID =
1915 GlobalValue::getGUID(cast<MDString>(S.first.TypeID)->getString());
1916 for (auto FS : S.second.CSInfo.SummaryTypeCheckedLoadUsers)
1917 FS->addTypeTest(GUID);
1918 for (auto &CCS : S.second.ConstCSInfo)
1919 for (auto FS : CCS.second.SummaryTypeCheckedLoadUsers)
1920 FS->addTypeTest(GUID);
1921 }
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001922 }
1923
1924 if (RemarksEnabled) {
1925 // Generate remarks for each devirtualized function.
1926 for (const auto &DT : DevirtTargets) {
1927 Function *F = DT.second;
Sam Elliotte963c892017-08-21 16:57:21 +00001928
Sam Elliotte963c892017-08-21 16:57:21 +00001929 using namespace ore;
Peter Collingbourne9110cb42018-01-05 00:27:51 +00001930 OREGetter(F).emit(OptimizationRemark(DEBUG_TYPE, "Devirtualized", F)
1931 << "devirtualized "
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001932 << NV("FunctionName", DT.first));
Ivan Krasinb05e06e2016-08-05 19:45:16 +00001933 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001934 }
1935
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001936 removeRedundantTypeTests();
Peter Collingbourne0312f612016-06-25 00:23:04 +00001937
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001938 // Rebuild each global we touched as part of virtual constant propagation to
1939 // include the before and after bytes.
1940 if (DidVirtualConstProp)
1941 for (VTableBits &B : Bits)
1942 rebuildGlobal(B);
1943
1944 return true;
1945}
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001946
1947void DevirtIndex::run() {
1948 if (ExportSummary.typeIdCompatibleVtableMap().empty())
1949 return;
1950
1951 DenseMap<GlobalValue::GUID, std::vector<StringRef>> NameByGUID;
1952 for (auto &P : ExportSummary.typeIdCompatibleVtableMap()) {
1953 NameByGUID[GlobalValue::getGUID(P.first)].push_back(P.first);
1954 }
1955
1956 // Collect information from summary about which calls to try to devirtualize.
1957 for (auto &P : ExportSummary) {
1958 for (auto &S : P.second.SummaryList) {
1959 auto *FS = dyn_cast<FunctionSummary>(S.get());
1960 if (!FS)
1961 continue;
1962 // FIXME: Only add live functions.
1963 for (FunctionSummary::VFuncId VF : FS->type_test_assume_vcalls()) {
1964 for (StringRef Name : NameByGUID[VF.GUID]) {
1965 CallSlots[{Name, VF.Offset}].CSInfo.addSummaryTypeTestAssumeUser(FS);
1966 }
1967 }
1968 for (FunctionSummary::VFuncId VF : FS->type_checked_load_vcalls()) {
1969 for (StringRef Name : NameByGUID[VF.GUID]) {
1970 CallSlots[{Name, VF.Offset}].CSInfo.addSummaryTypeCheckedLoadUser(FS);
1971 }
1972 }
1973 for (const FunctionSummary::ConstVCall &VC :
1974 FS->type_test_assume_const_vcalls()) {
1975 for (StringRef Name : NameByGUID[VC.VFunc.GUID]) {
1976 CallSlots[{Name, VC.VFunc.Offset}]
1977 .ConstCSInfo[VC.Args]
1978 .addSummaryTypeTestAssumeUser(FS);
1979 }
1980 }
1981 for (const FunctionSummary::ConstVCall &VC :
1982 FS->type_checked_load_const_vcalls()) {
1983 for (StringRef Name : NameByGUID[VC.VFunc.GUID]) {
1984 CallSlots[{Name, VC.VFunc.Offset}]
1985 .ConstCSInfo[VC.Args]
1986 .addSummaryTypeCheckedLoadUser(FS);
1987 }
1988 }
1989 }
1990 }
1991
1992 std::set<ValueInfo> DevirtTargets;
1993 // For each (type, offset) pair:
1994 for (auto &S : CallSlots) {
1995 // Search each of the members of the type identifier for the virtual
1996 // function implementation at offset S.first.ByteOffset, and add to
1997 // TargetsForSlot.
1998 std::vector<ValueInfo> TargetsForSlot;
1999 auto TidSummary = ExportSummary.getTypeIdCompatibleVtableSummary(S.first.TypeID);
2000 assert(TidSummary);
2001 if (tryFindVirtualCallTargets(TargetsForSlot, *TidSummary,
2002 S.first.ByteOffset)) {
2003 WholeProgramDevirtResolution *Res =
2004 &ExportSummary.getOrInsertTypeIdSummary(S.first.TypeID)
2005 .WPDRes[S.first.ByteOffset];
2006
2007 if (!trySingleImplDevirt(TargetsForSlot, S.first, S.second, Res,
2008 DevirtTargets))
2009 continue;
2010 }
2011 }
2012
2013 // Optionally have the thin link print message for each devirtualized
2014 // function.
2015 if (PrintSummaryDevirt)
2016 for (const auto &DT : DevirtTargets)
2017 errs() << "Devirtualized call to " << DT << "\n";
2018
2019 return;
2020}