blob: 4436363f65888c1eb48e8c14ce33ce6139ba1d74 [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 & {
647 ORE = make_unique<OptimizationRemarkEmitter>(F);
648 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,
716 StringMap<FunctionImporter::ExportSetTy> &ExportLists,
717 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];
724 const auto &ExportList = ExportLists.find(S->modulePath());
725 if (ExportList == ExportLists.end() ||
726 !ExportList->second.count(VI.getGUID()))
727 continue;
728
729 // It's been exported by a cross module import.
730 for (auto &SlotSummary : T.second) {
731 auto *TIdSum = Summary.getTypeIdSummary(SlotSummary.TypeID);
732 assert(TIdSum);
733 auto WPDRes = TIdSum->WPDRes.find(SlotSummary.ByteOffset);
734 assert(WPDRes != TIdSum->WPDRes.end());
735 WPDRes->second.SingleImplName = ModuleSummaryIndex::getGlobalNameForLocal(
736 WPDRes->second.SingleImplName,
737 Summary.getModuleHash(S->modulePath()));
738 }
739 }
740}
741
742} // end namespace llvm
743
Peter Collingbourne37317f12017-02-17 18:17:04 +0000744bool DevirtModule::runForTesting(
Sam Elliotte963c892017-08-21 16:57:21 +0000745 Module &M, function_ref<AAResults &(Function &)> AARGetter,
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000746 function_ref<OptimizationRemarkEmitter &(Function *)> OREGetter,
747 function_ref<DominatorTree &(Function &)> LookupDomTree) {
Teresa Johnson4ffc3e72018-06-06 22:22:01 +0000748 ModuleSummaryIndex Summary(/*HaveGVs=*/false);
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000749
750 // Handle the command-line summary arguments. This code is for testing
751 // purposes only, so we handle errors directly.
752 if (!ClReadSummary.empty()) {
753 ExitOnError ExitOnErr("-wholeprogramdevirt-read-summary: " + ClReadSummary +
754 ": ");
755 auto ReadSummaryFile =
756 ExitOnErr(errorOrToExpected(MemoryBuffer::getFile(ClReadSummary)));
757
758 yaml::Input In(ReadSummaryFile->getBuffer());
759 In >> Summary;
760 ExitOnErr(errorCodeToError(In.error()));
761 }
762
Peter Collingbournef7691d82017-03-22 18:22:59 +0000763 bool Changed =
764 DevirtModule(
Teresa Johnsonf24136f2018-09-27 14:55:32 +0000765 M, AARGetter, OREGetter, LookupDomTree,
Peter Collingbournef7691d82017-03-22 18:22:59 +0000766 ClSummaryAction == PassSummaryAction::Export ? &Summary : nullptr,
767 ClSummaryAction == PassSummaryAction::Import ? &Summary : nullptr)
768 .run();
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000769
770 if (!ClWriteSummary.empty()) {
771 ExitOnError ExitOnErr(
772 "-wholeprogramdevirt-write-summary: " + ClWriteSummary + ": ");
773 std::error_code EC;
Fangrui Songd9b948b2019-08-05 05:43:48 +0000774 raw_fd_ostream OS(ClWriteSummary, EC, sys::fs::OF_Text);
Peter Collingbourne2b33f652017-02-13 19:26:18 +0000775 ExitOnErr(errorCodeToError(EC));
776
777 yaml::Output Out(OS);
778 Out << Summary;
779 }
780
781 return Changed;
782}
783
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000784void DevirtModule::buildTypeIdentifierMap(
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000785 std::vector<VTableBits> &Bits,
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000786 DenseMap<Metadata *, std::set<TypeMemberInfo>> &TypeIdMap) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000787 DenseMap<GlobalVariable *, VTableBits *> GVToBits;
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000788 Bits.reserve(M.getGlobalList().size());
789 SmallVector<MDNode *, 2> Types;
790 for (GlobalVariable &GV : M.globals()) {
791 Types.clear();
792 GV.getMetadata(LLVMContext::MD_type, Types);
Eugene Leviant2b70d612018-09-23 13:27:47 +0000793 if (GV.isDeclaration() || Types.empty())
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000794 continue;
795
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000796 VTableBits *&BitsPtr = GVToBits[&GV];
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000797 if (!BitsPtr) {
798 Bits.emplace_back();
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000799 Bits.back().GV = &GV;
800 Bits.back().ObjectSize =
801 M.getDataLayout().getTypeAllocSize(GV.getInitializer()->getType());
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000802 BitsPtr = &Bits.back();
803 }
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000804
805 for (MDNode *Type : Types) {
806 auto TypeID = Type->getOperand(1).get();
807
808 uint64_t Offset =
809 cast<ConstantInt>(
810 cast<ConstantAsMetadata>(Type->getOperand(0))->getValue())
811 ->getZExtValue();
812
813 TypeIdMap[TypeID].insert({BitsPtr, Offset});
814 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000815 }
816}
817
Peter Collingbourne87867542016-12-09 01:10:11 +0000818Constant *DevirtModule::getPointerAtOffset(Constant *I, uint64_t Offset) {
819 if (I->getType()->isPointerTy()) {
820 if (Offset == 0)
821 return I;
822 return nullptr;
823 }
824
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000825 const DataLayout &DL = M.getDataLayout();
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000826
827 if (auto *C = dyn_cast<ConstantStruct>(I)) {
828 const StructLayout *SL = DL.getStructLayout(C->getType());
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000829 if (Offset >= SL->getSizeInBytes())
830 return nullptr;
831
Peter Collingbourne87867542016-12-09 01:10:11 +0000832 unsigned Op = SL->getElementContainingOffset(Offset);
833 return getPointerAtOffset(cast<Constant>(I->getOperand(Op)),
834 Offset - SL->getElementOffset(Op));
835 }
836 if (auto *C = dyn_cast<ConstantArray>(I)) {
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000837 ArrayType *VTableTy = C->getType();
838 uint64_t ElemSize = DL.getTypeAllocSize(VTableTy->getElementType());
839
Peter Collingbourne87867542016-12-09 01:10:11 +0000840 unsigned Op = Offset / ElemSize;
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000841 if (Op >= C->getNumOperands())
842 return nullptr;
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000843
Peter Collingbourne87867542016-12-09 01:10:11 +0000844 return getPointerAtOffset(cast<Constant>(I->getOperand(Op)),
845 Offset % ElemSize);
846 }
847 return nullptr;
Peter Collingbourne7a1e5bb2016-12-09 00:33:27 +0000848}
849
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000850bool DevirtModule::tryFindVirtualCallTargets(
851 std::vector<VirtualCallTarget> &TargetsForSlot,
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000852 const std::set<TypeMemberInfo> &TypeMemberInfos, uint64_t ByteOffset) {
853 for (const TypeMemberInfo &TM : TypeMemberInfos) {
854 if (!TM.Bits->GV->isConstant())
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000855 return false;
856
Peter Collingbourne87867542016-12-09 01:10:11 +0000857 Constant *Ptr = getPointerAtOffset(TM.Bits->GV->getInitializer(),
858 TM.Offset + ByteOffset);
859 if (!Ptr)
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000860 return false;
861
Peter Collingbourne87867542016-12-09 01:10:11 +0000862 auto Fn = dyn_cast<Function>(Ptr->stripPointerCasts());
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000863 if (!Fn)
864 return false;
865
866 // We can disregard __cxa_pure_virtual as a possible call target, as
867 // calls to pure virtuals are UB.
868 if (Fn->getName() == "__cxa_pure_virtual")
869 continue;
870
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000871 TargetsForSlot.push_back({Fn, &TM});
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000872 }
873
874 // Give up if we couldn't find any targets.
875 return !TargetsForSlot.empty();
876}
877
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000878bool DevirtIndex::tryFindVirtualCallTargets(
879 std::vector<ValueInfo> &TargetsForSlot, const TypeIdCompatibleVtableInfo TIdInfo,
880 uint64_t ByteOffset) {
881 for (const TypeIdOffsetVtableInfo P : TIdInfo) {
882 // VTable initializer should have only one summary, or all copies must be
883 // linkonce/weak ODR.
884 assert(P.VTableVI.getSummaryList().size() == 1 ||
885 llvm::all_of(
886 P.VTableVI.getSummaryList(),
887 [&](const std::unique_ptr<GlobalValueSummary> &Summary) {
888 return GlobalValue::isLinkOnceODRLinkage(Summary->linkage()) ||
889 GlobalValue::isWeakODRLinkage(Summary->linkage());
890 }));
891 const auto *VS = cast<GlobalVarSummary>(P.VTableVI.getSummaryList()[0].get());
892 if (!P.VTableVI.getSummaryList()[0]->isLive())
893 continue;
894 for (auto VTP : VS->vTableFuncs()) {
895 if (VTP.VTableOffset != P.AddressPointOffset + ByteOffset)
896 continue;
897
898 TargetsForSlot.push_back(VTP.FuncVI);
899 }
900 }
901
902 // Give up if we couldn't find any targets.
903 return !TargetsForSlot.empty();
904}
905
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000906void DevirtModule::applySingleImplDevirt(VTableSlotInfo &SlotInfo,
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000907 Constant *TheFn, bool &IsExported) {
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000908 auto Apply = [&](CallSiteInfo &CSInfo) {
909 for (auto &&VCallSite : CSInfo.CallSites) {
910 if (RemarksEnabled)
Teresa Johnsonb0a1d3b2018-08-14 03:00:16 +0000911 VCallSite.emitRemark("single-impl",
912 TheFn->stripPointerCasts()->getName(), OREGetter);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000913 VCallSite.CS.setCalledFunction(ConstantExpr::getBitCast(
914 TheFn, VCallSite.CS.getCalledValue()->getType()));
915 // This use is no longer unsafe.
916 if (VCallSite.NumUnsafeUses)
917 --*VCallSite.NumUnsafeUses;
918 }
Peter Collingbourne29748562018-03-09 19:11:44 +0000919 if (CSInfo.isExported())
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000920 IsExported = true;
Peter Collingbourne29748562018-03-09 19:11:44 +0000921 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000922 };
923 Apply(SlotInfo.CSInfo);
924 for (auto &P : SlotInfo.ConstCSInfo)
925 Apply(P.second);
926}
927
Peter Collingbournee2367412017-02-15 02:13:08 +0000928bool DevirtModule::trySingleImplDevirt(
929 MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000930 VTableSlotInfo &SlotInfo, WholeProgramDevirtResolution *Res) {
Peter Collingbournee2367412017-02-15 02:13:08 +0000931 // See if the program contains a single implementation of this virtual
932 // function.
933 Function *TheFn = TargetsForSlot[0].Fn;
934 for (auto &&Target : TargetsForSlot)
935 if (TheFn != Target.Fn)
936 return false;
937
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +0000938 // If so, update each call site to call that implementation directly.
Peter Collingbournee2367412017-02-15 02:13:08 +0000939 if (RemarksEnabled)
940 TargetsForSlot[0].WasDevirt = true;
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000941
942 bool IsExported = false;
943 applySingleImplDevirt(SlotInfo, TheFn, IsExported);
944 if (!IsExported)
945 return false;
946
947 // If the only implementation has local linkage, we must promote to external
948 // to make it visible to thin LTO objects. We can only get here during the
949 // ThinLTO export phase.
950 if (TheFn->hasLocalLinkage()) {
Peter Collingbourne88a58cf2017-09-08 00:10:53 +0000951 std::string NewName = (TheFn->getName() + "$merged").str();
952
953 // Since we are renaming the function, any comdats with the same name must
954 // also be renamed. This is required when targeting COFF, as the comdat name
955 // must match one of the names of the symbols in the comdat.
956 if (Comdat *C = TheFn->getComdat()) {
957 if (C->getName() == TheFn->getName()) {
958 Comdat *NewC = M.getOrInsertComdat(NewName);
959 NewC->setSelectionKind(C->getSelectionKind());
960 for (GlobalObject &GO : M.global_objects())
961 if (GO.getComdat() == C)
962 GO.setComdat(NewC);
963 }
964 }
965
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000966 TheFn->setLinkage(GlobalValue::ExternalLinkage);
967 TheFn->setVisibility(GlobalValue::HiddenVisibility);
Peter Collingbourne88a58cf2017-09-08 00:10:53 +0000968 TheFn->setName(NewName);
Peter Collingbourne2325bb32017-03-04 01:31:01 +0000969 }
970
971 Res->TheKind = WholeProgramDevirtResolution::SingleImpl;
972 Res->SingleImplName = TheFn->getName();
973
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000974 return true;
975}
976
Teresa Johnsond2df54e2019-08-02 13:10:52 +0000977bool DevirtIndex::trySingleImplDevirt(MutableArrayRef<ValueInfo> TargetsForSlot,
978 VTableSlotSummary &SlotSummary,
979 VTableSlotInfo &SlotInfo,
980 WholeProgramDevirtResolution *Res,
981 std::set<ValueInfo> &DevirtTargets) {
982 // See if the program contains a single implementation of this virtual
983 // function.
984 auto TheFn = TargetsForSlot[0];
985 for (auto &&Target : TargetsForSlot)
986 if (TheFn != Target)
987 return false;
988
989 // Don't devirtualize if we don't have target definition.
990 auto Size = TheFn.getSummaryList().size();
991 if (!Size)
992 return false;
993
994 // If the summary list contains multiple summaries where at least one is
995 // a local, give up, as we won't know which (possibly promoted) name to use.
996 for (auto &S : TheFn.getSummaryList())
997 if (GlobalValue::isLocalLinkage(S->linkage()) && Size > 1)
998 return false;
999
1000 // Collect functions devirtualized at least for one call site for stats.
1001 if (PrintSummaryDevirt)
1002 DevirtTargets.insert(TheFn);
1003
1004 auto &S = TheFn.getSummaryList()[0];
1005 bool IsExported = false;
1006
1007 // Insert calls into the summary index so that the devirtualized targets
1008 // are eligible for import.
1009 // FIXME: Annotate type tests with hotness. For now, mark these as hot
1010 // to better ensure we have the opportunity to inline them.
1011 CalleeInfo CI(CalleeInfo::HotnessType::Hot, /* RelBF = */ 0);
1012 auto AddCalls = [&](CallSiteInfo &CSInfo) {
1013 for (auto *FS : CSInfo.SummaryTypeCheckedLoadUsers) {
1014 FS->addCall({TheFn, CI});
1015 IsExported |= S->modulePath() != FS->modulePath();
1016 }
1017 for (auto *FS : CSInfo.SummaryTypeTestAssumeUsers) {
1018 FS->addCall({TheFn, CI});
1019 IsExported |= S->modulePath() != FS->modulePath();
1020 }
1021 };
1022 AddCalls(SlotInfo.CSInfo);
1023 for (auto &P : SlotInfo.ConstCSInfo)
1024 AddCalls(P.second);
1025
1026 if (IsExported)
1027 ExportedGUIDs.insert(TheFn.getGUID());
1028
1029 // Record in summary for use in devirtualization during the ThinLTO import
1030 // step.
1031 Res->TheKind = WholeProgramDevirtResolution::SingleImpl;
1032 if (GlobalValue::isLocalLinkage(S->linkage())) {
1033 if (IsExported)
1034 // If target is a local function and we are exporting it by
1035 // devirtualizing a call in another module, we need to record the
1036 // promoted name.
1037 Res->SingleImplName = ModuleSummaryIndex::getGlobalNameForLocal(
1038 TheFn.name(), ExportSummary.getModuleHash(S->modulePath()));
1039 else {
1040 LocalWPDTargetsMap[TheFn].push_back(SlotSummary);
1041 Res->SingleImplName = TheFn.name();
1042 }
1043 } else
1044 Res->SingleImplName = TheFn.name();
1045
1046 // Name will be empty if this thin link driven off of serialized combined
1047 // index (e.g. llvm-lto). However, WPD is not supported/invoked for the
1048 // legacy LTO API anyway.
1049 assert(!Res->SingleImplName.empty());
1050
1051 return true;
1052}
1053
Peter Collingbourne29748562018-03-09 19:11:44 +00001054void DevirtModule::tryICallBranchFunnel(
1055 MutableArrayRef<VirtualCallTarget> TargetsForSlot, VTableSlotInfo &SlotInfo,
1056 WholeProgramDevirtResolution *Res, VTableSlot Slot) {
1057 Triple T(M.getTargetTriple());
1058 if (T.getArch() != Triple::x86_64)
1059 return;
1060
Vitaly Buka66f53d72018-04-06 21:32:36 +00001061 if (TargetsForSlot.size() > ClThreshold)
Peter Collingbourne29748562018-03-09 19:11:44 +00001062 return;
1063
1064 bool HasNonDevirt = !SlotInfo.CSInfo.AllCallSitesDevirted;
1065 if (!HasNonDevirt)
1066 for (auto &P : SlotInfo.ConstCSInfo)
1067 if (!P.second.AllCallSitesDevirted) {
1068 HasNonDevirt = true;
1069 break;
1070 }
1071
1072 if (!HasNonDevirt)
1073 return;
1074
1075 FunctionType *FT =
1076 FunctionType::get(Type::getVoidTy(M.getContext()), {Int8PtrTy}, true);
1077 Function *JT;
1078 if (isa<MDString>(Slot.TypeID)) {
1079 JT = Function::Create(FT, Function::ExternalLinkage,
Dylan McKayf920da02018-12-18 09:52:52 +00001080 M.getDataLayout().getProgramAddressSpace(),
Peter Collingbourne29748562018-03-09 19:11:44 +00001081 getGlobalName(Slot, {}, "branch_funnel"), &M);
1082 JT->setVisibility(GlobalValue::HiddenVisibility);
1083 } else {
Dylan McKayf920da02018-12-18 09:52:52 +00001084 JT = Function::Create(FT, Function::InternalLinkage,
1085 M.getDataLayout().getProgramAddressSpace(),
1086 "branch_funnel", &M);
Peter Collingbourne29748562018-03-09 19:11:44 +00001087 }
1088 JT->addAttribute(1, Attribute::Nest);
1089
1090 std::vector<Value *> JTArgs;
1091 JTArgs.push_back(JT->arg_begin());
1092 for (auto &T : TargetsForSlot) {
1093 JTArgs.push_back(getMemberAddr(T.TM));
1094 JTArgs.push_back(T.Fn);
1095 }
1096
1097 BasicBlock *BB = BasicBlock::Create(M.getContext(), "", JT, nullptr);
James Y Knight7976eb52019-02-01 20:43:25 +00001098 Function *Intr =
Peter Collingbourne29748562018-03-09 19:11:44 +00001099 Intrinsic::getDeclaration(&M, llvm::Intrinsic::icall_branch_funnel, {});
1100
1101 auto *CI = CallInst::Create(Intr, JTArgs, "", BB);
1102 CI->setTailCallKind(CallInst::TCK_MustTail);
1103 ReturnInst::Create(M.getContext(), nullptr, BB);
1104
1105 bool IsExported = false;
1106 applyICallBranchFunnel(SlotInfo, JT, IsExported);
1107 if (IsExported)
1108 Res->TheKind = WholeProgramDevirtResolution::BranchFunnel;
1109}
1110
1111void DevirtModule::applyICallBranchFunnel(VTableSlotInfo &SlotInfo,
1112 Constant *JT, bool &IsExported) {
1113 auto Apply = [&](CallSiteInfo &CSInfo) {
1114 if (CSInfo.isExported())
1115 IsExported = true;
1116 if (CSInfo.AllCallSitesDevirted)
1117 return;
1118 for (auto &&VCallSite : CSInfo.CallSites) {
1119 CallSite CS = VCallSite.CS;
1120
1121 // Jump tables are only profitable if the retpoline mitigation is enabled.
1122 Attribute FSAttr = CS.getCaller()->getFnAttribute("target-features");
1123 if (FSAttr.hasAttribute(Attribute::None) ||
1124 !FSAttr.getValueAsString().contains("+retpoline"))
1125 continue;
1126
1127 if (RemarksEnabled)
Teresa Johnsonb0a1d3b2018-08-14 03:00:16 +00001128 VCallSite.emitRemark("branch-funnel",
1129 JT->stripPointerCasts()->getName(), OREGetter);
Peter Collingbourne29748562018-03-09 19:11:44 +00001130
1131 // Pass the address of the vtable in the nest register, which is r10 on
1132 // x86_64.
1133 std::vector<Type *> NewArgs;
1134 NewArgs.push_back(Int8PtrTy);
1135 for (Type *T : CS.getFunctionType()->params())
1136 NewArgs.push_back(T);
James Y Knight7976eb52019-02-01 20:43:25 +00001137 FunctionType *NewFT =
Peter Collingbourne29748562018-03-09 19:11:44 +00001138 FunctionType::get(CS.getFunctionType()->getReturnType(), NewArgs,
James Y Knight7976eb52019-02-01 20:43:25 +00001139 CS.getFunctionType()->isVarArg());
1140 PointerType *NewFTPtr = PointerType::getUnqual(NewFT);
Peter Collingbourne29748562018-03-09 19:11:44 +00001141
1142 IRBuilder<> IRB(CS.getInstruction());
1143 std::vector<Value *> Args;
1144 Args.push_back(IRB.CreateBitCast(VCallSite.VTable, Int8PtrTy));
1145 for (unsigned I = 0; I != CS.getNumArgOperands(); ++I)
1146 Args.push_back(CS.getArgOperand(I));
1147
1148 CallSite NewCS;
1149 if (CS.isCall())
James Y Knight7976eb52019-02-01 20:43:25 +00001150 NewCS = IRB.CreateCall(NewFT, IRB.CreateBitCast(JT, NewFTPtr), Args);
Peter Collingbourne29748562018-03-09 19:11:44 +00001151 else
1152 NewCS = IRB.CreateInvoke(
James Y Knightd9e85a02019-02-01 20:43:34 +00001153 NewFT, IRB.CreateBitCast(JT, NewFTPtr),
Peter Collingbourne29748562018-03-09 19:11:44 +00001154 cast<InvokeInst>(CS.getInstruction())->getNormalDest(),
1155 cast<InvokeInst>(CS.getInstruction())->getUnwindDest(), Args);
1156 NewCS.setCallingConv(CS.getCallingConv());
1157
1158 AttributeList Attrs = CS.getAttributes();
1159 std::vector<AttributeSet> NewArgAttrs;
1160 NewArgAttrs.push_back(AttributeSet::get(
1161 M.getContext(), ArrayRef<Attribute>{Attribute::get(
1162 M.getContext(), Attribute::Nest)}));
1163 for (unsigned I = 0; I + 2 < Attrs.getNumAttrSets(); ++I)
1164 NewArgAttrs.push_back(Attrs.getParamAttributes(I));
1165 NewCS.setAttributes(
1166 AttributeList::get(M.getContext(), Attrs.getFnAttributes(),
1167 Attrs.getRetAttributes(), NewArgAttrs));
1168
1169 CS->replaceAllUsesWith(NewCS.getInstruction());
1170 CS->eraseFromParent();
1171
1172 // This use is no longer unsafe.
1173 if (VCallSite.NumUnsafeUses)
1174 --*VCallSite.NumUnsafeUses;
1175 }
1176 // Don't mark as devirtualized because there may be callers compiled without
1177 // retpoline mitigation, which would mean that they are lowered to
1178 // llvm.type.test and therefore require an llvm.type.test resolution for the
1179 // type identifier.
1180 };
1181 Apply(SlotInfo.CSInfo);
1182 for (auto &P : SlotInfo.ConstCSInfo)
1183 Apply(P.second);
1184}
1185
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001186bool DevirtModule::tryEvaluateFunctionsWithArgs(
1187 MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001188 ArrayRef<uint64_t> Args) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001189 // Evaluate each function and store the result in each target's RetVal
1190 // field.
1191 for (VirtualCallTarget &Target : TargetsForSlot) {
1192 if (Target.Fn->arg_size() != Args.size() + 1)
1193 return false;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001194
1195 Evaluator Eval(M.getDataLayout(), nullptr);
1196 SmallVector<Constant *, 2> EvalArgs;
1197 EvalArgs.push_back(
1198 Constant::getNullValue(Target.Fn->getFunctionType()->getParamType(0)));
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001199 for (unsigned I = 0; I != Args.size(); ++I) {
1200 auto *ArgTy = dyn_cast<IntegerType>(
1201 Target.Fn->getFunctionType()->getParamType(I + 1));
1202 if (!ArgTy)
1203 return false;
1204 EvalArgs.push_back(ConstantInt::get(ArgTy, Args[I]));
1205 }
1206
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001207 Constant *RetVal;
1208 if (!Eval.EvaluateFunction(Target.Fn, RetVal, EvalArgs) ||
1209 !isa<ConstantInt>(RetVal))
1210 return false;
1211 Target.RetVal = cast<ConstantInt>(RetVal)->getZExtValue();
1212 }
1213 return true;
1214}
1215
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001216void DevirtModule::applyUniformRetValOpt(CallSiteInfo &CSInfo, StringRef FnName,
1217 uint64_t TheRetVal) {
1218 for (auto Call : CSInfo.CallSites)
1219 Call.replaceAndErase(
Sam Elliotte963c892017-08-21 16:57:21 +00001220 "uniform-ret-val", FnName, RemarksEnabled, OREGetter,
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001221 ConstantInt::get(cast<IntegerType>(Call.CS.getType()), TheRetVal));
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001222 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001223}
1224
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001225bool DevirtModule::tryUniformRetValOpt(
Peter Collingbourne77a8d562017-03-04 01:34:53 +00001226 MutableArrayRef<VirtualCallTarget> TargetsForSlot, CallSiteInfo &CSInfo,
1227 WholeProgramDevirtResolution::ByArg *Res) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001228 // Uniform return value optimization. If all functions return the same
1229 // constant, replace all calls with that constant.
1230 uint64_t TheRetVal = TargetsForSlot[0].RetVal;
1231 for (const VirtualCallTarget &Target : TargetsForSlot)
1232 if (Target.RetVal != TheRetVal)
1233 return false;
1234
Peter Collingbourne77a8d562017-03-04 01:34:53 +00001235 if (CSInfo.isExported()) {
1236 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniformRetVal;
1237 Res->Info = TheRetVal;
1238 }
1239
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001240 applyUniformRetValOpt(CSInfo, TargetsForSlot[0].Fn->getName(), TheRetVal);
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001241 if (RemarksEnabled)
1242 for (auto &&Target : TargetsForSlot)
1243 Target.WasDevirt = true;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001244 return true;
1245}
1246
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001247std::string DevirtModule::getGlobalName(VTableSlot Slot,
1248 ArrayRef<uint64_t> Args,
1249 StringRef Name) {
1250 std::string FullName = "__typeid_";
1251 raw_string_ostream OS(FullName);
1252 OS << cast<MDString>(Slot.TypeID)->getString() << '_' << Slot.ByteOffset;
1253 for (uint64_t Arg : Args)
1254 OS << '_' << Arg;
1255 OS << '_' << Name;
1256 return OS.str();
1257}
1258
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001259bool DevirtModule::shouldExportConstantsAsAbsoluteSymbols() {
1260 Triple T(M.getTargetTriple());
1261 return (T.getArch() == Triple::x86 || T.getArch() == Triple::x86_64) &&
1262 T.getObjectFormat() == Triple::ELF;
1263}
1264
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001265void DevirtModule::exportGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
1266 StringRef Name, Constant *C) {
1267 GlobalAlias *GA = GlobalAlias::create(Int8Ty, 0, GlobalValue::ExternalLinkage,
1268 getGlobalName(Slot, Args, Name), C, &M);
1269 GA->setVisibility(GlobalValue::HiddenVisibility);
1270}
1271
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001272void DevirtModule::exportConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
1273 StringRef Name, uint32_t Const,
1274 uint32_t &Storage) {
1275 if (shouldExportConstantsAsAbsoluteSymbols()) {
1276 exportGlobal(
1277 Slot, Args, Name,
1278 ConstantExpr::getIntToPtr(ConstantInt::get(Int32Ty, Const), Int8PtrTy));
1279 return;
1280 }
1281
1282 Storage = Const;
1283}
1284
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001285Constant *DevirtModule::importGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001286 StringRef Name) {
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001287 Constant *C = M.getOrInsertGlobal(getGlobalName(Slot, Args, Name), Int8Ty);
1288 auto *GV = dyn_cast<GlobalVariable>(C);
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001289 if (GV)
1290 GV->setVisibility(GlobalValue::HiddenVisibility);
1291 return C;
1292}
1293
1294Constant *DevirtModule::importConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
1295 StringRef Name, IntegerType *IntTy,
1296 uint32_t Storage) {
1297 if (!shouldExportConstantsAsAbsoluteSymbols())
1298 return ConstantInt::get(IntTy, Storage);
1299
1300 Constant *C = importGlobal(Slot, Args, Name);
1301 auto *GV = cast<GlobalVariable>(C->stripPointerCasts());
1302 C = ConstantExpr::getPtrToInt(C, IntTy);
1303
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001304 // We only need to set metadata if the global is newly created, in which
1305 // case it would not have hidden visibility.
Benjamin Kramer0deb9a92018-05-31 13:29:58 +00001306 if (GV->hasMetadata(LLVMContext::MD_absolute_symbol))
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001307 return C;
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001308
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001309 auto SetAbsRange = [&](uint64_t Min, uint64_t Max) {
1310 auto *MinC = ConstantAsMetadata::get(ConstantInt::get(IntPtrTy, Min));
1311 auto *MaxC = ConstantAsMetadata::get(ConstantInt::get(IntPtrTy, Max));
1312 GV->setMetadata(LLVMContext::MD_absolute_symbol,
1313 MDNode::get(M.getContext(), {MinC, MaxC}));
1314 };
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001315 unsigned AbsWidth = IntTy->getBitWidth();
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001316 if (AbsWidth == IntPtrTy->getBitWidth())
1317 SetAbsRange(~0ull, ~0ull); // Full set.
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001318 else
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001319 SetAbsRange(0, 1ull << AbsWidth);
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001320 return C;
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001321}
1322
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001323void DevirtModule::applyUniqueRetValOpt(CallSiteInfo &CSInfo, StringRef FnName,
1324 bool IsOne,
1325 Constant *UniqueMemberAddr) {
1326 for (auto &&Call : CSInfo.CallSites) {
1327 IRBuilder<> B(Call.CS.getInstruction());
Peter Collingbourne001052a2017-08-22 21:41:19 +00001328 Value *Cmp =
1329 B.CreateICmp(IsOne ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_NE,
1330 B.CreateBitCast(Call.VTable, Int8PtrTy), UniqueMemberAddr);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001331 Cmp = B.CreateZExt(Cmp, Call.CS->getType());
Sam Elliotte963c892017-08-21 16:57:21 +00001332 Call.replaceAndErase("unique-ret-val", FnName, RemarksEnabled, OREGetter,
1333 Cmp);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001334 }
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001335 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001336}
1337
Peter Collingbourne29748562018-03-09 19:11:44 +00001338Constant *DevirtModule::getMemberAddr(const TypeMemberInfo *M) {
1339 Constant *C = ConstantExpr::getBitCast(M->Bits->GV, Int8PtrTy);
1340 return ConstantExpr::getGetElementPtr(Int8Ty, C,
1341 ConstantInt::get(Int64Ty, M->Offset));
1342}
1343
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001344bool DevirtModule::tryUniqueRetValOpt(
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001345 unsigned BitWidth, MutableArrayRef<VirtualCallTarget> TargetsForSlot,
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001346 CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res,
1347 VTableSlot Slot, ArrayRef<uint64_t> Args) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001348 // IsOne controls whether we look for a 0 or a 1.
1349 auto tryUniqueRetValOptFor = [&](bool IsOne) {
Eugene Zelenkocdc71612016-08-11 17:20:18 +00001350 const TypeMemberInfo *UniqueMember = nullptr;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001351 for (const VirtualCallTarget &Target : TargetsForSlot) {
Peter Collingbourne3866cc52016-03-08 03:50:36 +00001352 if (Target.RetVal == (IsOne ? 1 : 0)) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001353 if (UniqueMember)
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001354 return false;
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001355 UniqueMember = Target.TM;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001356 }
1357 }
1358
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001359 // We should have found a unique member or bailed out by now. We already
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001360 // checked for a uniform return value in tryUniformRetValOpt.
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001361 assert(UniqueMember);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001362
Peter Collingbourne29748562018-03-09 19:11:44 +00001363 Constant *UniqueMemberAddr = getMemberAddr(UniqueMember);
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001364 if (CSInfo.isExported()) {
1365 Res->TheKind = WholeProgramDevirtResolution::ByArg::UniqueRetVal;
1366 Res->Info = IsOne;
1367
1368 exportGlobal(Slot, Args, "unique_member", UniqueMemberAddr);
1369 }
1370
1371 // Replace each call with the comparison.
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001372 applyUniqueRetValOpt(CSInfo, TargetsForSlot[0].Fn->getName(), IsOne,
1373 UniqueMemberAddr);
1374
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001375 // Update devirtualization statistics for targets.
1376 if (RemarksEnabled)
1377 for (auto &&Target : TargetsForSlot)
1378 Target.WasDevirt = true;
1379
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001380 return true;
1381 };
1382
1383 if (BitWidth == 1) {
1384 if (tryUniqueRetValOptFor(true))
1385 return true;
1386 if (tryUniqueRetValOptFor(false))
1387 return true;
1388 }
1389 return false;
1390}
1391
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001392void DevirtModule::applyVirtualConstProp(CallSiteInfo &CSInfo, StringRef FnName,
1393 Constant *Byte, Constant *Bit) {
1394 for (auto Call : CSInfo.CallSites) {
1395 auto *RetType = cast<IntegerType>(Call.CS.getType());
1396 IRBuilder<> B(Call.CS.getInstruction());
Peter Collingbourne001052a2017-08-22 21:41:19 +00001397 Value *Addr =
1398 B.CreateGEP(Int8Ty, B.CreateBitCast(Call.VTable, Int8PtrTy), Byte);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001399 if (RetType->getBitWidth() == 1) {
James Y Knight14359ef2019-02-01 20:44:24 +00001400 Value *Bits = B.CreateLoad(Int8Ty, Addr);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001401 Value *BitsAndBit = B.CreateAnd(Bits, Bit);
1402 auto IsBitSet = B.CreateICmpNE(BitsAndBit, ConstantInt::get(Int8Ty, 0));
1403 Call.replaceAndErase("virtual-const-prop-1-bit", FnName, RemarksEnabled,
Sam Elliotte963c892017-08-21 16:57:21 +00001404 OREGetter, IsBitSet);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001405 } else {
1406 Value *ValAddr = B.CreateBitCast(Addr, RetType->getPointerTo());
1407 Value *Val = B.CreateLoad(RetType, ValAddr);
Sam Elliotte963c892017-08-21 16:57:21 +00001408 Call.replaceAndErase("virtual-const-prop", FnName, RemarksEnabled,
1409 OREGetter, Val);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001410 }
1411 }
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001412 CSInfo.markDevirt();
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001413}
1414
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001415bool DevirtModule::tryVirtualConstProp(
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001416 MutableArrayRef<VirtualCallTarget> TargetsForSlot, VTableSlotInfo &SlotInfo,
1417 WholeProgramDevirtResolution *Res, VTableSlot Slot) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001418 // This only works if the function returns an integer.
1419 auto RetType = dyn_cast<IntegerType>(TargetsForSlot[0].Fn->getReturnType());
1420 if (!RetType)
1421 return false;
1422 unsigned BitWidth = RetType->getBitWidth();
1423 if (BitWidth > 64)
1424 return false;
1425
Peter Collingbourne17febdb2017-02-09 23:46:26 +00001426 // Make sure that each function is defined, does not access memory, takes at
1427 // least one argument, does not use its first argument (which we assume is
1428 // 'this'), and has the same return type.
Peter Collingbourne37317f12017-02-17 18:17:04 +00001429 //
1430 // Note that we test whether this copy of the function is readnone, rather
1431 // than testing function attributes, which must hold for any copy of the
1432 // function, even a less optimized version substituted at link time. This is
1433 // sound because the virtual constant propagation optimizations effectively
1434 // inline all implementations of the virtual function into each call site,
1435 // rather than using function attributes to perform local optimization.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001436 for (VirtualCallTarget &Target : TargetsForSlot) {
Peter Collingbourne37317f12017-02-17 18:17:04 +00001437 if (Target.Fn->isDeclaration() ||
1438 computeFunctionBodyMemoryAccess(*Target.Fn, AARGetter(*Target.Fn)) !=
1439 MAK_ReadNone ||
Peter Collingbourne17febdb2017-02-09 23:46:26 +00001440 Target.Fn->arg_empty() || !Target.Fn->arg_begin()->use_empty() ||
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001441 Target.Fn->getReturnType() != RetType)
1442 return false;
1443 }
1444
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001445 for (auto &&CSByConstantArg : SlotInfo.ConstCSInfo) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001446 if (!tryEvaluateFunctionsWithArgs(TargetsForSlot, CSByConstantArg.first))
1447 continue;
1448
Peter Collingbourne77a8d562017-03-04 01:34:53 +00001449 WholeProgramDevirtResolution::ByArg *ResByArg = nullptr;
1450 if (Res)
1451 ResByArg = &Res->ResByArg[CSByConstantArg.first];
1452
1453 if (tryUniformRetValOpt(TargetsForSlot, CSByConstantArg.second, ResByArg))
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001454 continue;
1455
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001456 if (tryUniqueRetValOpt(BitWidth, TargetsForSlot, CSByConstantArg.second,
1457 ResByArg, Slot, CSByConstantArg.first))
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001458 continue;
1459
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001460 // Find an allocation offset in bits in all vtables associated with the
1461 // type.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001462 uint64_t AllocBefore =
1463 findLowestOffset(TargetsForSlot, /*IsAfter=*/false, BitWidth);
1464 uint64_t AllocAfter =
1465 findLowestOffset(TargetsForSlot, /*IsAfter=*/true, BitWidth);
1466
1467 // Calculate the total amount of padding needed to store a value at both
1468 // ends of the object.
1469 uint64_t TotalPaddingBefore = 0, TotalPaddingAfter = 0;
1470 for (auto &&Target : TargetsForSlot) {
1471 TotalPaddingBefore += std::max<int64_t>(
1472 (AllocBefore + 7) / 8 - Target.allocatedBeforeBytes() - 1, 0);
1473 TotalPaddingAfter += std::max<int64_t>(
1474 (AllocAfter + 7) / 8 - Target.allocatedAfterBytes() - 1, 0);
1475 }
1476
1477 // If the amount of padding is too large, give up.
1478 // FIXME: do something smarter here.
1479 if (std::min(TotalPaddingBefore, TotalPaddingAfter) > 128)
1480 continue;
1481
1482 // Calculate the offset to the value as a (possibly negative) byte offset
1483 // and (if applicable) a bit offset, and store the values in the targets.
1484 int64_t OffsetByte;
1485 uint64_t OffsetBit;
1486 if (TotalPaddingBefore <= TotalPaddingAfter)
1487 setBeforeReturnValues(TargetsForSlot, AllocBefore, BitWidth, OffsetByte,
1488 OffsetBit);
1489 else
1490 setAfterReturnValues(TargetsForSlot, AllocAfter, BitWidth, OffsetByte,
1491 OffsetBit);
1492
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001493 if (RemarksEnabled)
1494 for (auto &&Target : TargetsForSlot)
1495 Target.WasDevirt = true;
1496
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001497
1498 if (CSByConstantArg.second.isExported()) {
1499 ResByArg->TheKind = WholeProgramDevirtResolution::ByArg::VirtualConstProp;
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001500 exportConstant(Slot, CSByConstantArg.first, "byte", OffsetByte,
1501 ResByArg->Byte);
1502 exportConstant(Slot, CSByConstantArg.first, "bit", 1ULL << OffsetBit,
1503 ResByArg->Bit);
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001504 }
1505
1506 // Rewrite each call to a load from OffsetByte/OffsetBit.
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001507 Constant *ByteConst = ConstantInt::get(Int32Ty, OffsetByte);
1508 Constant *BitConst = ConstantInt::get(Int8Ty, 1ULL << OffsetBit);
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001509 applyVirtualConstProp(CSByConstantArg.second,
1510 TargetsForSlot[0].Fn->getName(), ByteConst, BitConst);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001511 }
1512 return true;
1513}
1514
1515void DevirtModule::rebuildGlobal(VTableBits &B) {
1516 if (B.Before.Bytes.empty() && B.After.Bytes.empty())
1517 return;
1518
Peter Collingbourneef5cfc22019-07-22 18:50:45 +00001519 // Align the before byte array to the global's minimum alignment so that we
1520 // don't break any alignment requirements on the global.
1521 unsigned Align = B.GV->getAlignment();
1522 if (Align == 0)
1523 Align = M.getDataLayout().getABITypeAlignment(B.GV->getValueType());
1524 B.Before.Bytes.resize(alignTo(B.Before.Bytes.size(), Align));
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001525
1526 // Before was stored in reverse order; flip it now.
1527 for (size_t I = 0, Size = B.Before.Bytes.size(); I != Size / 2; ++I)
1528 std::swap(B.Before.Bytes[I], B.Before.Bytes[Size - 1 - I]);
1529
1530 // Build an anonymous global containing the before bytes, followed by the
1531 // original initializer, followed by the after bytes.
1532 auto NewInit = ConstantStruct::getAnon(
1533 {ConstantDataArray::get(M.getContext(), B.Before.Bytes),
1534 B.GV->getInitializer(),
1535 ConstantDataArray::get(M.getContext(), B.After.Bytes)});
1536 auto NewGV =
1537 new GlobalVariable(M, NewInit->getType(), B.GV->isConstant(),
1538 GlobalVariable::PrivateLinkage, NewInit, "", B.GV);
1539 NewGV->setSection(B.GV->getSection());
1540 NewGV->setComdat(B.GV->getComdat());
Peter Collingbourneef5cfc22019-07-22 18:50:45 +00001541 NewGV->setAlignment(B.GV->getAlignment());
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001542
Peter Collingbourne0312f612016-06-25 00:23:04 +00001543 // Copy the original vtable's metadata to the anonymous global, adjusting
1544 // offsets as required.
1545 NewGV->copyMetadata(B.GV, B.Before.Bytes.size());
1546
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001547 // Build an alias named after the original global, pointing at the second
1548 // element (the original initializer).
1549 auto Alias = GlobalAlias::create(
1550 B.GV->getInitializer()->getType(), 0, B.GV->getLinkage(), "",
1551 ConstantExpr::getGetElementPtr(
1552 NewInit->getType(), NewGV,
1553 ArrayRef<Constant *>{ConstantInt::get(Int32Ty, 0),
1554 ConstantInt::get(Int32Ty, 1)}),
1555 &M);
1556 Alias->setVisibility(B.GV->getVisibility());
1557 Alias->takeName(B.GV);
1558
1559 B.GV->replaceAllUsesWith(Alias);
1560 B.GV->eraseFromParent();
1561}
1562
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001563bool DevirtModule::areRemarksEnabled() {
1564 const auto &FL = M.getFunctionList();
Teresa Johnson5e1c0e72018-09-18 13:42:24 +00001565 for (const Function &Fn : FL) {
1566 const auto &BBL = Fn.getBasicBlockList();
1567 if (BBL.empty())
1568 continue;
1569 auto DI = OptimizationRemark(DEBUG_TYPE, "", DebugLoc(), &BBL.front());
1570 return DI.isEnabled();
1571 }
1572 return false;
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001573}
1574
Peter Collingbourne0312f612016-06-25 00:23:04 +00001575void DevirtModule::scanTypeTestUsers(Function *TypeTestFunc,
1576 Function *AssumeFunc) {
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001577 // Find all virtual calls via a virtual table pointer %p under an assumption
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001578 // of the form llvm.assume(llvm.type.test(%p, %md)). This indicates that %p
1579 // points to a member of the type identifier %md. Group calls by (type ID,
1580 // offset) pair (effectively the identity of the virtual function) and store
1581 // to CallSlots.
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001582 DenseSet<CallSite> SeenCallSites;
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001583 for (auto I = TypeTestFunc->use_begin(), E = TypeTestFunc->use_end();
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001584 I != E;) {
1585 auto CI = dyn_cast<CallInst>(I->getUser());
1586 ++I;
1587 if (!CI)
1588 continue;
1589
Peter Collingbourneccdc2252016-05-10 18:07:21 +00001590 // Search for virtual calls based on %p and add them to DevirtCalls.
1591 SmallVector<DevirtCallSite, 1> DevirtCalls;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001592 SmallVector<CallInst *, 1> Assumes;
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001593 auto &DT = LookupDomTree(*CI->getFunction());
1594 findDevirtualizableCallsForTypeTest(DevirtCalls, Assumes, CI, DT);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001595
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001596 // If we found any, add them to CallSlots.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001597 if (!Assumes.empty()) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001598 Metadata *TypeId =
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001599 cast<MetadataAsValue>(CI->getArgOperand(1))->getMetadata();
1600 Value *Ptr = CI->getArgOperand(0)->stripPointerCasts();
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001601 for (DevirtCallSite Call : DevirtCalls) {
1602 // Only add this CallSite if we haven't seen it before. The vtable
1603 // pointer may have been CSE'd with pointers from other call sites,
1604 // and we don't want to process call sites multiple times. We can't
1605 // just skip the vtable Ptr if it has been seen before, however, since
1606 // it may be shared by type tests that dominate different calls.
1607 if (SeenCallSites.insert(Call.CS).second)
Peter Collingbourne001052a2017-08-22 21:41:19 +00001608 CallSlots[{TypeId, Call.Offset}].addCallSite(Ptr, Call.CS, nullptr);
Peter Collingbourneccdc2252016-05-10 18:07:21 +00001609 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001610 }
1611
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001612 // We no longer need the assumes or the type test.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001613 for (auto Assume : Assumes)
1614 Assume->eraseFromParent();
1615 // We can't use RecursivelyDeleteTriviallyDeadInstructions here because we
1616 // may use the vtable argument later.
1617 if (CI->use_empty())
1618 CI->eraseFromParent();
1619 }
Peter Collingbourne0312f612016-06-25 00:23:04 +00001620}
1621
1622void DevirtModule::scanTypeCheckedLoadUsers(Function *TypeCheckedLoadFunc) {
1623 Function *TypeTestFunc = Intrinsic::getDeclaration(&M, Intrinsic::type_test);
1624
1625 for (auto I = TypeCheckedLoadFunc->use_begin(),
1626 E = TypeCheckedLoadFunc->use_end();
1627 I != E;) {
1628 auto CI = dyn_cast<CallInst>(I->getUser());
1629 ++I;
1630 if (!CI)
1631 continue;
1632
1633 Value *Ptr = CI->getArgOperand(0);
1634 Value *Offset = CI->getArgOperand(1);
1635 Value *TypeIdValue = CI->getArgOperand(2);
1636 Metadata *TypeId = cast<MetadataAsValue>(TypeIdValue)->getMetadata();
1637
1638 SmallVector<DevirtCallSite, 1> DevirtCalls;
1639 SmallVector<Instruction *, 1> LoadedPtrs;
1640 SmallVector<Instruction *, 1> Preds;
1641 bool HasNonCallUses = false;
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001642 auto &DT = LookupDomTree(*CI->getFunction());
Peter Collingbourne0312f612016-06-25 00:23:04 +00001643 findDevirtualizableCallsForTypeCheckedLoad(DevirtCalls, LoadedPtrs, Preds,
Teresa Johnsonf24136f2018-09-27 14:55:32 +00001644 HasNonCallUses, CI, DT);
Peter Collingbourne0312f612016-06-25 00:23:04 +00001645
1646 // Start by generating "pessimistic" code that explicitly loads the function
1647 // pointer from the vtable and performs the type check. If possible, we will
1648 // eliminate the load and the type check later.
1649
1650 // If possible, only generate the load at the point where it is used.
1651 // This helps avoid unnecessary spills.
1652 IRBuilder<> LoadB(
1653 (LoadedPtrs.size() == 1 && !HasNonCallUses) ? LoadedPtrs[0] : CI);
1654 Value *GEP = LoadB.CreateGEP(Int8Ty, Ptr, Offset);
1655 Value *GEPPtr = LoadB.CreateBitCast(GEP, PointerType::getUnqual(Int8PtrTy));
1656 Value *LoadedValue = LoadB.CreateLoad(Int8PtrTy, GEPPtr);
1657
1658 for (Instruction *LoadedPtr : LoadedPtrs) {
1659 LoadedPtr->replaceAllUsesWith(LoadedValue);
1660 LoadedPtr->eraseFromParent();
1661 }
1662
1663 // Likewise for the type test.
1664 IRBuilder<> CallB((Preds.size() == 1 && !HasNonCallUses) ? Preds[0] : CI);
1665 CallInst *TypeTestCall = CallB.CreateCall(TypeTestFunc, {Ptr, TypeIdValue});
1666
1667 for (Instruction *Pred : Preds) {
1668 Pred->replaceAllUsesWith(TypeTestCall);
1669 Pred->eraseFromParent();
1670 }
1671
1672 // We have already erased any extractvalue instructions that refer to the
1673 // intrinsic call, but the intrinsic may have other non-extractvalue uses
1674 // (although this is unlikely). In that case, explicitly build a pair and
1675 // RAUW it.
1676 if (!CI->use_empty()) {
1677 Value *Pair = UndefValue::get(CI->getType());
1678 IRBuilder<> B(CI);
1679 Pair = B.CreateInsertValue(Pair, LoadedValue, {0});
1680 Pair = B.CreateInsertValue(Pair, TypeTestCall, {1});
1681 CI->replaceAllUsesWith(Pair);
1682 }
1683
1684 // The number of unsafe uses is initially the number of uses.
1685 auto &NumUnsafeUses = NumUnsafeUsesForTypeTest[TypeTestCall];
1686 NumUnsafeUses = DevirtCalls.size();
1687
1688 // If the function pointer has a non-call user, we cannot eliminate the type
1689 // check, as one of those users may eventually call the pointer. Increment
1690 // the unsafe use count to make sure it cannot reach zero.
1691 if (HasNonCallUses)
1692 ++NumUnsafeUses;
1693 for (DevirtCallSite Call : DevirtCalls) {
Peter Collingbourne50cbd7c2017-02-15 21:56:51 +00001694 CallSlots[{TypeId, Call.Offset}].addCallSite(Ptr, Call.CS,
1695 &NumUnsafeUses);
Peter Collingbourne0312f612016-06-25 00:23:04 +00001696 }
1697
1698 CI->eraseFromParent();
1699 }
1700}
1701
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001702void DevirtModule::importResolution(VTableSlot Slot, VTableSlotInfo &SlotInfo) {
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001703 auto *TypeId = dyn_cast<MDString>(Slot.TypeID);
1704 if (!TypeId)
1705 return;
Peter Collingbourne9a3f9792017-03-22 18:04:39 +00001706 const TypeIdSummary *TidSummary =
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001707 ImportSummary->getTypeIdSummary(TypeId->getString());
Peter Collingbourne9a3f9792017-03-22 18:04:39 +00001708 if (!TidSummary)
1709 return;
1710 auto ResI = TidSummary->WPDRes.find(Slot.ByteOffset);
1711 if (ResI == TidSummary->WPDRes.end())
1712 return;
1713 const WholeProgramDevirtResolution &Res = ResI->second;
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001714
1715 if (Res.TheKind == WholeProgramDevirtResolution::SingleImpl) {
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001716 assert(!Res.SingleImplName.empty());
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001717 // The type of the function in the declaration is irrelevant because every
1718 // call site will cast it to the correct type.
James Y Knight13680222019-02-01 02:28:03 +00001719 Constant *SingleImpl =
1720 cast<Constant>(M.getOrInsertFunction(Res.SingleImplName,
1721 Type::getVoidTy(M.getContext()))
1722 .getCallee());
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001723
1724 // This is the import phase so we should not be exporting anything.
1725 bool IsExported = false;
1726 applySingleImplDevirt(SlotInfo, SingleImpl, IsExported);
1727 assert(!IsExported);
1728 }
Peter Collingbourne0152c812017-03-09 01:11:15 +00001729
1730 for (auto &CSByConstantArg : SlotInfo.ConstCSInfo) {
1731 auto I = Res.ResByArg.find(CSByConstantArg.first);
1732 if (I == Res.ResByArg.end())
1733 continue;
1734 auto &ResByArg = I->second;
1735 // FIXME: We should figure out what to do about the "function name" argument
1736 // to the apply* functions, as the function names are unavailable during the
1737 // importing phase. For now we just pass the empty string. This does not
1738 // impact correctness because the function names are just used for remarks.
1739 switch (ResByArg.TheKind) {
1740 case WholeProgramDevirtResolution::ByArg::UniformRetVal:
1741 applyUniformRetValOpt(CSByConstantArg.second, "", ResByArg.Info);
1742 break;
Peter Collingbourne59675ba2017-03-10 20:09:11 +00001743 case WholeProgramDevirtResolution::ByArg::UniqueRetVal: {
1744 Constant *UniqueMemberAddr =
1745 importGlobal(Slot, CSByConstantArg.first, "unique_member");
1746 applyUniqueRetValOpt(CSByConstantArg.second, "", ResByArg.Info,
1747 UniqueMemberAddr);
1748 break;
1749 }
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001750 case WholeProgramDevirtResolution::ByArg::VirtualConstProp: {
Peter Collingbourneb15a35e2017-09-11 22:34:42 +00001751 Constant *Byte = importConstant(Slot, CSByConstantArg.first, "byte",
1752 Int32Ty, ResByArg.Byte);
1753 Constant *Bit = importConstant(Slot, CSByConstantArg.first, "bit", Int8Ty,
1754 ResByArg.Bit);
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001755 applyVirtualConstProp(CSByConstantArg.second, "", Byte, Bit);
Adrian Prantl0e6694d2017-12-19 22:05:25 +00001756 break;
Peter Collingbourne14dcf022017-03-10 20:13:58 +00001757 }
Peter Collingbourne0152c812017-03-09 01:11:15 +00001758 default:
1759 break;
1760 }
1761 }
Peter Collingbourne29748562018-03-09 19:11:44 +00001762
1763 if (Res.TheKind == WholeProgramDevirtResolution::BranchFunnel) {
James Y Knight13680222019-02-01 02:28:03 +00001764 // The type of the function is irrelevant, because it's bitcast at calls
1765 // anyhow.
1766 Constant *JT = cast<Constant>(
1767 M.getOrInsertFunction(getGlobalName(Slot, {}, "branch_funnel"),
1768 Type::getVoidTy(M.getContext()))
1769 .getCallee());
Peter Collingbourne29748562018-03-09 19:11:44 +00001770 bool IsExported = false;
1771 applyICallBranchFunnel(SlotInfo, JT, IsExported);
1772 assert(!IsExported);
1773 }
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001774}
1775
1776void DevirtModule::removeRedundantTypeTests() {
1777 auto True = ConstantInt::getTrue(M.getContext());
1778 for (auto &&U : NumUnsafeUsesForTypeTest) {
1779 if (U.second == 0) {
1780 U.first->replaceAllUsesWith(True);
1781 U.first->eraseFromParent();
1782 }
1783 }
1784}
1785
Peter Collingbourne0312f612016-06-25 00:23:04 +00001786bool DevirtModule::run() {
Teresa Johnsond0b1f302019-02-14 21:22:50 +00001787 // If only some of the modules were split, we cannot correctly perform
1788 // this transformation. We already checked for the presense of type tests
1789 // with partially split modules during the thin link, and would have emitted
1790 // an error if any were found, so here we can simply return.
1791 if ((ExportSummary && ExportSummary->partiallySplitLTOUnits()) ||
1792 (ImportSummary && ImportSummary->partiallySplitLTOUnits()))
1793 return false;
1794
Peter Collingbourne0312f612016-06-25 00:23:04 +00001795 Function *TypeTestFunc =
1796 M.getFunction(Intrinsic::getName(Intrinsic::type_test));
1797 Function *TypeCheckedLoadFunc =
1798 M.getFunction(Intrinsic::getName(Intrinsic::type_checked_load));
1799 Function *AssumeFunc = M.getFunction(Intrinsic::getName(Intrinsic::assume));
1800
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001801 // Normally if there are no users of the devirtualization intrinsics in the
1802 // module, this pass has nothing to do. But if we are exporting, we also need
1803 // to handle any users that appear only in the function summaries.
Peter Collingbournef7691d82017-03-22 18:22:59 +00001804 if (!ExportSummary &&
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001805 (!TypeTestFunc || TypeTestFunc->use_empty() || !AssumeFunc ||
Peter Collingbourne0312f612016-06-25 00:23:04 +00001806 AssumeFunc->use_empty()) &&
1807 (!TypeCheckedLoadFunc || TypeCheckedLoadFunc->use_empty()))
1808 return false;
1809
1810 if (TypeTestFunc && AssumeFunc)
1811 scanTypeTestUsers(TypeTestFunc, AssumeFunc);
1812
1813 if (TypeCheckedLoadFunc)
1814 scanTypeCheckedLoadUsers(TypeCheckedLoadFunc);
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001815
Peter Collingbournef7691d82017-03-22 18:22:59 +00001816 if (ImportSummary) {
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001817 for (auto &S : CallSlots)
1818 importResolution(S.first, S.second);
1819
1820 removeRedundantTypeTests();
1821
1822 // The rest of the code is only necessary when exporting or during regular
1823 // LTO, so we are done.
1824 return true;
1825 }
1826
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001827 // Rebuild type metadata into a map for easy lookup.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001828 std::vector<VTableBits> Bits;
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001829 DenseMap<Metadata *, std::set<TypeMemberInfo>> TypeIdMap;
1830 buildTypeIdentifierMap(Bits, TypeIdMap);
1831 if (TypeIdMap.empty())
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001832 return true;
1833
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001834 // Collect information from summary about which calls to try to devirtualize.
Peter Collingbournef7691d82017-03-22 18:22:59 +00001835 if (ExportSummary) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001836 DenseMap<GlobalValue::GUID, TinyPtrVector<Metadata *>> MetadataByGUID;
1837 for (auto &P : TypeIdMap) {
1838 if (auto *TypeId = dyn_cast<MDString>(P.first))
1839 MetadataByGUID[GlobalValue::getGUID(TypeId->getString())].push_back(
1840 TypeId);
1841 }
1842
Peter Collingbournef7691d82017-03-22 18:22:59 +00001843 for (auto &P : *ExportSummary) {
Peter Collingbourne9667b912017-05-04 18:03:25 +00001844 for (auto &S : P.second.SummaryList) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001845 auto *FS = dyn_cast<FunctionSummary>(S.get());
1846 if (!FS)
1847 continue;
1848 // FIXME: Only add live functions.
George Rimar5d8aea12017-03-10 10:31:56 +00001849 for (FunctionSummary::VFuncId VF : FS->type_test_assume_vcalls()) {
1850 for (Metadata *MD : MetadataByGUID[VF.GUID]) {
Peter Collingbourne29748562018-03-09 19:11:44 +00001851 CallSlots[{MD, VF.Offset}]
1852 .CSInfo.markSummaryHasTypeTestAssumeUsers();
George Rimar5d8aea12017-03-10 10:31:56 +00001853 }
1854 }
1855 for (FunctionSummary::VFuncId VF : FS->type_checked_load_vcalls()) {
1856 for (Metadata *MD : MetadataByGUID[VF.GUID]) {
Peter Collingbourne29748562018-03-09 19:11:44 +00001857 CallSlots[{MD, VF.Offset}].CSInfo.addSummaryTypeCheckedLoadUser(FS);
George Rimar5d8aea12017-03-10 10:31:56 +00001858 }
1859 }
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001860 for (const FunctionSummary::ConstVCall &VC :
George Rimar5d8aea12017-03-10 10:31:56 +00001861 FS->type_test_assume_const_vcalls()) {
1862 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) {
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001863 CallSlots[{MD, VC.VFunc.Offset}]
George Rimar5d8aea12017-03-10 10:31:56 +00001864 .ConstCSInfo[VC.Args]
Peter Collingbourne29748562018-03-09 19:11:44 +00001865 .markSummaryHasTypeTestAssumeUsers();
George Rimar5d8aea12017-03-10 10:31:56 +00001866 }
1867 }
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001868 for (const FunctionSummary::ConstVCall &VC :
George Rimar5d8aea12017-03-10 10:31:56 +00001869 FS->type_checked_load_const_vcalls()) {
1870 for (Metadata *MD : MetadataByGUID[VC.VFunc.GUID]) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001871 CallSlots[{MD, VC.VFunc.Offset}]
1872 .ConstCSInfo[VC.Args]
Peter Collingbourne29748562018-03-09 19:11:44 +00001873 .addSummaryTypeCheckedLoadUser(FS);
George Rimar5d8aea12017-03-10 10:31:56 +00001874 }
1875 }
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001876 }
1877 }
1878 }
1879
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001880 // For each (type, offset) pair:
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001881 bool DidVirtualConstProp = false;
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001882 std::map<std::string, Function*> DevirtTargets;
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001883 for (auto &S : CallSlots) {
Peter Collingbourne7efd7502016-06-24 21:21:32 +00001884 // Search each of the members of the type identifier for the virtual
1885 // function implementation at offset S.first.ByteOffset, and add to
1886 // TargetsForSlot.
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001887 std::vector<VirtualCallTarget> TargetsForSlot;
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001888 if (tryFindVirtualCallTargets(TargetsForSlot, TypeIdMap[S.first.TypeID],
1889 S.first.ByteOffset)) {
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001890 WholeProgramDevirtResolution *Res = nullptr;
Peter Collingbournef7691d82017-03-22 18:22:59 +00001891 if (ExportSummary && isa<MDString>(S.first.TypeID))
1892 Res = &ExportSummary
Peter Collingbourne9a3f9792017-03-22 18:04:39 +00001893 ->getOrInsertTypeIdSummary(
1894 cast<MDString>(S.first.TypeID)->getString())
1895 .WPDRes[S.first.ByteOffset];
Peter Collingbourne2325bb32017-03-04 01:31:01 +00001896
Peter Collingbourne29748562018-03-09 19:11:44 +00001897 if (!trySingleImplDevirt(TargetsForSlot, S.second, Res)) {
1898 DidVirtualConstProp |=
1899 tryVirtualConstProp(TargetsForSlot, S.second, Res, S.first);
1900
1901 tryICallBranchFunnel(TargetsForSlot, S.second, Res, S.first);
1902 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001903
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001904 // Collect functions devirtualized at least for one call site for stats.
1905 if (RemarksEnabled)
1906 for (const auto &T : TargetsForSlot)
1907 if (T.WasDevirt)
1908 DevirtTargets[T.Fn->getName()] = T.Fn;
1909 }
1910
1911 // CFI-specific: if we are exporting and any llvm.type.checked.load
1912 // intrinsics were *not* devirtualized, we need to add the resulting
1913 // llvm.type.test intrinsics to the function summaries so that the
1914 // LowerTypeTests pass will export them.
Peter Collingbournef7691d82017-03-22 18:22:59 +00001915 if (ExportSummary && isa<MDString>(S.first.TypeID)) {
Peter Collingbourneb406baa2017-03-04 01:23:30 +00001916 auto GUID =
1917 GlobalValue::getGUID(cast<MDString>(S.first.TypeID)->getString());
1918 for (auto FS : S.second.CSInfo.SummaryTypeCheckedLoadUsers)
1919 FS->addTypeTest(GUID);
1920 for (auto &CCS : S.second.ConstCSInfo)
1921 for (auto FS : CCS.second.SummaryTypeCheckedLoadUsers)
1922 FS->addTypeTest(GUID);
1923 }
Ivan Krasinf3403fd2016-08-11 19:09:02 +00001924 }
1925
1926 if (RemarksEnabled) {
1927 // Generate remarks for each devirtualized function.
1928 for (const auto &DT : DevirtTargets) {
1929 Function *F = DT.second;
Sam Elliotte963c892017-08-21 16:57:21 +00001930
Sam Elliotte963c892017-08-21 16:57:21 +00001931 using namespace ore;
Peter Collingbourne9110cb42018-01-05 00:27:51 +00001932 OREGetter(F).emit(OptimizationRemark(DEBUG_TYPE, "Devirtualized", F)
1933 << "devirtualized "
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001934 << NV("FunctionName", DT.first));
Ivan Krasinb05e06e2016-08-05 19:45:16 +00001935 }
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001936 }
1937
Peter Collingbourne6d284fa2017-03-09 00:21:25 +00001938 removeRedundantTypeTests();
Peter Collingbourne0312f612016-06-25 00:23:04 +00001939
Peter Collingbournedf49d1b2016-02-09 22:50:34 +00001940 // Rebuild each global we touched as part of virtual constant propagation to
1941 // include the before and after bytes.
1942 if (DidVirtualConstProp)
1943 for (VTableBits &B : Bits)
1944 rebuildGlobal(B);
1945
1946 return true;
1947}
Teresa Johnsond2df54e2019-08-02 13:10:52 +00001948
1949void DevirtIndex::run() {
1950 if (ExportSummary.typeIdCompatibleVtableMap().empty())
1951 return;
1952
1953 DenseMap<GlobalValue::GUID, std::vector<StringRef>> NameByGUID;
1954 for (auto &P : ExportSummary.typeIdCompatibleVtableMap()) {
1955 NameByGUID[GlobalValue::getGUID(P.first)].push_back(P.first);
1956 }
1957
1958 // Collect information from summary about which calls to try to devirtualize.
1959 for (auto &P : ExportSummary) {
1960 for (auto &S : P.second.SummaryList) {
1961 auto *FS = dyn_cast<FunctionSummary>(S.get());
1962 if (!FS)
1963 continue;
1964 // FIXME: Only add live functions.
1965 for (FunctionSummary::VFuncId VF : FS->type_test_assume_vcalls()) {
1966 for (StringRef Name : NameByGUID[VF.GUID]) {
1967 CallSlots[{Name, VF.Offset}].CSInfo.addSummaryTypeTestAssumeUser(FS);
1968 }
1969 }
1970 for (FunctionSummary::VFuncId VF : FS->type_checked_load_vcalls()) {
1971 for (StringRef Name : NameByGUID[VF.GUID]) {
1972 CallSlots[{Name, VF.Offset}].CSInfo.addSummaryTypeCheckedLoadUser(FS);
1973 }
1974 }
1975 for (const FunctionSummary::ConstVCall &VC :
1976 FS->type_test_assume_const_vcalls()) {
1977 for (StringRef Name : NameByGUID[VC.VFunc.GUID]) {
1978 CallSlots[{Name, VC.VFunc.Offset}]
1979 .ConstCSInfo[VC.Args]
1980 .addSummaryTypeTestAssumeUser(FS);
1981 }
1982 }
1983 for (const FunctionSummary::ConstVCall &VC :
1984 FS->type_checked_load_const_vcalls()) {
1985 for (StringRef Name : NameByGUID[VC.VFunc.GUID]) {
1986 CallSlots[{Name, VC.VFunc.Offset}]
1987 .ConstCSInfo[VC.Args]
1988 .addSummaryTypeCheckedLoadUser(FS);
1989 }
1990 }
1991 }
1992 }
1993
1994 std::set<ValueInfo> DevirtTargets;
1995 // For each (type, offset) pair:
1996 for (auto &S : CallSlots) {
1997 // Search each of the members of the type identifier for the virtual
1998 // function implementation at offset S.first.ByteOffset, and add to
1999 // TargetsForSlot.
2000 std::vector<ValueInfo> TargetsForSlot;
2001 auto TidSummary = ExportSummary.getTypeIdCompatibleVtableSummary(S.first.TypeID);
2002 assert(TidSummary);
2003 if (tryFindVirtualCallTargets(TargetsForSlot, *TidSummary,
2004 S.first.ByteOffset)) {
2005 WholeProgramDevirtResolution *Res =
2006 &ExportSummary.getOrInsertTypeIdSummary(S.first.TypeID)
2007 .WPDRes[S.first.ByteOffset];
2008
2009 if (!trySingleImplDevirt(TargetsForSlot, S.first, S.second, Res,
2010 DevirtTargets))
2011 continue;
2012 }
2013 }
2014
2015 // Optionally have the thin link print message for each devirtualized
2016 // function.
2017 if (PrintSummaryDevirt)
2018 for (const auto &DT : DevirtTargets)
2019 errs() << "Devirtualized call to " << DT << "\n";
2020
2021 return;
2022}