blob: e47d881d1127a16aa13a1d51722b62342525def0 [file] [log] [blame]
Peter Collingbournef72a8d42016-11-16 23:40:26 +00001//===- GlobalSplit.cpp - global variable splitter -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass uses inrange annotations on GEP indices to split globals where
11// beneficial. Clang currently attaches these annotations to references to
12// virtual table globals under the Itanium ABI for the benefit of the
13// whole-program virtual call optimization and control flow integrity passes.
14//
15//===----------------------------------------------------------------------===//
16
Davide Italiano2ae76dd2016-11-21 00:28:23 +000017#include "llvm/Transforms/IPO/GlobalSplit.h"
Peter Collingbournef72a8d42016-11-16 23:40:26 +000018#include "llvm/ADT/StringExtras.h"
19#include "llvm/IR/Constants.h"
20#include "llvm/IR/GlobalVariable.h"
21#include "llvm/IR/Intrinsics.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Operator.h"
24#include "llvm/Pass.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000025#include "llvm/Transforms/IPO.h"
Peter Collingbournef72a8d42016-11-16 23:40:26 +000026
27#include <set>
28
29using namespace llvm;
30
31namespace {
32
33bool splitGlobal(GlobalVariable &GV) {
34 // If the address of the global is taken outside of the module, we cannot
35 // apply this transformation.
36 if (!GV.hasLocalLinkage())
37 return false;
38
39 // We currently only know how to split ConstantStructs.
40 auto *Init = dyn_cast_or_null<ConstantStruct>(GV.getInitializer());
41 if (!Init)
42 return false;
43
44 // Verify that each user of the global is an inrange getelementptr constant.
45 // From this it follows that any loads from or stores to that global must use
46 // a pointer derived from an inrange getelementptr constant, which is
47 // sufficient to allow us to apply the splitting transform.
48 for (User *U : GV.users()) {
49 if (!isa<Constant>(U))
50 return false;
51
52 auto *GEP = dyn_cast<GEPOperator>(U);
53 if (!GEP || !GEP->getInRangeIndex() || *GEP->getInRangeIndex() != 1 ||
54 !isa<ConstantInt>(GEP->getOperand(1)) ||
55 !cast<ConstantInt>(GEP->getOperand(1))->isZero() ||
56 !isa<ConstantInt>(GEP->getOperand(2)))
57 return false;
58 }
59
60 SmallVector<MDNode *, 2> Types;
61 GV.getMetadata(LLVMContext::MD_type, Types);
62
63 const DataLayout &DL = GV.getParent()->getDataLayout();
64 const StructLayout *SL = DL.getStructLayout(Init->getType());
65
66 IntegerType *Int32Ty = Type::getInt32Ty(GV.getContext());
67
68 std::vector<GlobalVariable *> SplitGlobals(Init->getNumOperands());
69 for (unsigned I = 0; I != Init->getNumOperands(); ++I) {
70 // Build a global representing this split piece.
71 auto *SplitGV =
72 new GlobalVariable(*GV.getParent(), Init->getOperand(I)->getType(),
73 GV.isConstant(), GlobalValue::PrivateLinkage,
74 Init->getOperand(I), GV.getName() + "." + utostr(I));
75 SplitGlobals[I] = SplitGV;
76
77 unsigned SplitBegin = SL->getElementOffset(I);
78 unsigned SplitEnd = (I == Init->getNumOperands() - 1)
79 ? SL->getSizeInBytes()
80 : SL->getElementOffset(I + 1);
81
82 // Rebuild type metadata, adjusting by the split offset.
83 // FIXME: See if we can use DW_OP_piece to preserve debug metadata here.
84 for (MDNode *Type : Types) {
85 uint64_t ByteOffset = cast<ConstantInt>(
86 cast<ConstantAsMetadata>(Type->getOperand(0))->getValue())
87 ->getZExtValue();
Evgeniy Stepanov7a5cfa92017-03-07 22:18:48 +000088 // Type metadata may be attached one byte after the end of the vtable, for
89 // classes without virtual methods in Itanium ABI. AFAIK, it is never
90 // attached to the first byte of a vtable. Subtract one to get the right
91 // slice.
92 // This is making an assumption that vtable groups are the only kinds of
93 // global variables that !type metadata can be attached to, and that they
94 // are either Itanium ABI vtable groups or contain a single vtable (i.e.
95 // Microsoft ABI vtables).
96 uint64_t AttachedTo = (ByteOffset == 0) ? ByteOffset : ByteOffset - 1;
97 if (AttachedTo < SplitBegin || AttachedTo >= SplitEnd)
Peter Collingbournef72a8d42016-11-16 23:40:26 +000098 continue;
99 SplitGV->addMetadata(
100 LLVMContext::MD_type,
101 *MDNode::get(GV.getContext(),
102 {ConstantAsMetadata::get(
103 ConstantInt::get(Int32Ty, ByteOffset - SplitBegin)),
104 Type->getOperand(1)}));
105 }
106 }
107
108 for (User *U : GV.users()) {
109 auto *GEP = cast<GEPOperator>(U);
110 unsigned I = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
111 if (I >= SplitGlobals.size())
112 continue;
113
114 SmallVector<Value *, 4> Ops;
115 Ops.push_back(ConstantInt::get(Int32Ty, 0));
116 for (unsigned I = 3; I != GEP->getNumOperands(); ++I)
117 Ops.push_back(GEP->getOperand(I));
118
119 auto *NewGEP = ConstantExpr::getGetElementPtr(
120 SplitGlobals[I]->getInitializer()->getType(), SplitGlobals[I], Ops,
121 GEP->isInBounds());
122 GEP->replaceAllUsesWith(NewGEP);
123 }
124
125 // Finally, remove the original global. Any remaining uses refer to invalid
126 // elements of the global, so replace with undef.
127 if (!GV.use_empty())
128 GV.replaceAllUsesWith(UndefValue::get(GV.getType()));
129 GV.eraseFromParent();
130 return true;
131}
132
133bool splitGlobals(Module &M) {
134 // First, see if the module uses either of the llvm.type.test or
135 // llvm.type.checked.load intrinsics, which indicates that splitting globals
136 // may be beneficial.
137 Function *TypeTestFunc =
138 M.getFunction(Intrinsic::getName(Intrinsic::type_test));
139 Function *TypeCheckedLoadFunc =
140 M.getFunction(Intrinsic::getName(Intrinsic::type_checked_load));
141 if ((!TypeTestFunc || TypeTestFunc->use_empty()) &&
142 (!TypeCheckedLoadFunc || TypeCheckedLoadFunc->use_empty()))
143 return false;
144
145 bool Changed = false;
146 for (auto I = M.global_begin(); I != M.global_end();) {
147 GlobalVariable &GV = *I;
148 ++I;
149 Changed |= splitGlobal(GV);
150 }
151 return Changed;
152}
153
154struct GlobalSplit : public ModulePass {
155 static char ID;
156 GlobalSplit() : ModulePass(ID) {
157 initializeGlobalSplitPass(*PassRegistry::getPassRegistry());
158 }
159 bool runOnModule(Module &M) {
160 if (skipModule(M))
161 return false;
162
163 return splitGlobals(M);
164 }
165};
166
167}
168
169INITIALIZE_PASS(GlobalSplit, "globalsplit", "Global splitter", false, false)
170char GlobalSplit::ID = 0;
171
172ModulePass *llvm::createGlobalSplitPass() {
173 return new GlobalSplit;
174}
Davide Italiano2ae76dd2016-11-21 00:28:23 +0000175
176PreservedAnalyses GlobalSplitPass::run(Module &M, ModuleAnalysisManager &AM) {
177 if (!splitGlobals(M))
178 return PreservedAnalyses::all();
179 return PreservedAnalyses::none();
180}