1//===-- XCoreLowerThreadLocal - Lower thread local variables --------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8///
9/// \file
10/// This file contains a pass that lowers thread local variables on the
11/// XCore.
12///
13//===----------------------------------------------------------------------===//
14
15#include "XCore.h"
16#include "llvm/IR/Constants.h"
17#include "llvm/IR/DerivedTypes.h"
18#include "llvm/IR/GlobalVariable.h"
19#include "llvm/IR/IRBuilder.h"
20#include "llvm/IR/Intrinsics.h"
21#include "llvm/IR/IntrinsicsXCore.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/NoFolder.h"
24#include "llvm/IR/ValueHandle.h"
25#include "llvm/Pass.h"
26#include "llvm/Support/CommandLine.h"
27#include "llvm/Transforms/Utils/BasicBlockUtils.h"
28
29#define DEBUG_TYPE "xcore-lower-thread-local"
30
31using namespace llvm;
32
33static cl::opt<unsigned> MaxThreads(
34 "xcore-max-threads", cl::Optional,
35 cl::desc("Maximum number of threads (for emulation thread-local storage)"),
36 cl::Hidden, cl::value_desc("number"), cl::init(Val: 8));
37
38namespace {
39 /// Lowers thread local variables on the XCore. Each thread local variable is
40 /// expanded to an array of n elements indexed by the thread ID where n is the
41 /// fixed number hardware threads supported by the device.
42 struct XCoreLowerThreadLocal : public ModulePass {
43 static char ID;
44
45 XCoreLowerThreadLocal() : ModulePass(ID) {
46 initializeXCoreLowerThreadLocalPass(p&: *PassRegistry::getPassRegistry());
47 }
48
49 bool lowerGlobal(GlobalVariable *GV);
50
51 bool runOnModule(Module &M) override;
52 };
53}
54
55char XCoreLowerThreadLocal::ID = 0;
56
57INITIALIZE_PASS(XCoreLowerThreadLocal, "xcore-lower-thread-local",
58 "Lower thread local variables", false, false)
59
60ModulePass *llvm::createXCoreLowerThreadLocalPass() {
61 return new XCoreLowerThreadLocal();
62}
63
64static ArrayType *createLoweredType(Type *OriginalType) {
65 return ArrayType::get(ElementType: OriginalType, NumElements: MaxThreads);
66}
67
68static Constant *
69createLoweredInitializer(ArrayType *NewType, Constant *OriginalInitializer) {
70 SmallVector<Constant *, 8> Elements(MaxThreads);
71 for (unsigned i = 0; i != MaxThreads; ++i) {
72 Elements[i] = OriginalInitializer;
73 }
74 return ConstantArray::get(T: NewType, V: Elements);
75}
76
77
78static bool replaceConstantExprOp(ConstantExpr *CE, Pass *P) {
79 do {
80 SmallVector<WeakTrackingVH, 8> WUsers(CE->users());
81 llvm::sort(C&: WUsers);
82 WUsers.erase(CS: std::unique(first: WUsers.begin(), last: WUsers.end()), CE: WUsers.end());
83 while (!WUsers.empty())
84 if (WeakTrackingVH WU = WUsers.pop_back_val()) {
85 if (PHINode *PN = dyn_cast<PHINode>(Val&: WU)) {
86 for (int I = 0, E = PN->getNumIncomingValues(); I < E; ++I)
87 if (PN->getIncomingValue(i: I) == CE) {
88 BasicBlock *PredBB = PN->getIncomingBlock(i: I);
89 if (PredBB->getTerminator()->getNumSuccessors() > 1)
90 PredBB = SplitEdge(From: PredBB, To: PN->getParent());
91 BasicBlock::iterator InsertPos =
92 PredBB->getTerminator()->getIterator();
93 Instruction *NewInst = CE->getAsInstruction();
94 NewInst->insertBefore(BB&: *PredBB, InsertPos);
95 PN->setOperand(i_nocapture: I, Val_nocapture: NewInst);
96 }
97 } else if (Instruction *Instr = dyn_cast<Instruction>(Val&: WU)) {
98 Instruction *NewInst = CE->getAsInstruction();
99 NewInst->insertBefore(BB&: *Instr->getParent(), InsertPos: Instr->getIterator());
100 Instr->replaceUsesOfWith(From: CE, To: NewInst);
101 } else {
102 ConstantExpr *CExpr = dyn_cast<ConstantExpr>(Val&: WU);
103 if (!CExpr || !replaceConstantExprOp(CE: CExpr, P))
104 return false;
105 }
106 }
107 } while (CE->hasNUsesOrMore(N: 1)); // We need to check because a recursive
108 // sibling may have used 'CE' when getAsInstruction was called.
109 CE->destroyConstant();
110 return true;
111}
112
113static bool rewriteNonInstructionUses(GlobalVariable *GV, Pass *P) {
114 SmallVector<WeakTrackingVH, 8> WUsers;
115 for (User *U : GV->users())
116 if (!isa<Instruction>(Val: U))
117 WUsers.push_back(Elt: WeakTrackingVH(U));
118 while (!WUsers.empty())
119 if (WeakTrackingVH WU = WUsers.pop_back_val()) {
120 ConstantExpr *CE = dyn_cast<ConstantExpr>(Val&: WU);
121 if (!CE || !replaceConstantExprOp(CE, P))
122 return false;
123 }
124 return true;
125}
126
127static bool isZeroLengthArray(Type *Ty) {
128 ArrayType *AT = dyn_cast<ArrayType>(Val: Ty);
129 return AT && (AT->getNumElements() == 0);
130}
131
132bool XCoreLowerThreadLocal::lowerGlobal(GlobalVariable *GV) {
133 Module *M = GV->getParent();
134 if (!GV->isThreadLocal())
135 return false;
136
137 // Skip globals that we can't lower and leave it for the backend to error.
138 if (!rewriteNonInstructionUses(GV, P: this) ||
139 !GV->getType()->isSized() || isZeroLengthArray(Ty: GV->getType()))
140 return false;
141
142 // Create replacement global.
143 ArrayType *NewType = createLoweredType(OriginalType: GV->getValueType());
144 Constant *NewInitializer = nullptr;
145 if (GV->hasInitializer())
146 NewInitializer = createLoweredInitializer(NewType,
147 OriginalInitializer: GV->getInitializer());
148 GlobalVariable *NewGV =
149 new GlobalVariable(*M, NewType, GV->isConstant(), GV->getLinkage(),
150 NewInitializer, "", nullptr,
151 GlobalVariable::NotThreadLocal,
152 GV->getType()->getAddressSpace(),
153 GV->isExternallyInitialized());
154
155 // Update uses.
156 SmallVector<User *, 16> Users(GV->users());
157 for (unsigned I = 0, E = Users.size(); I != E; ++I) {
158 User *U = Users[I];
159 Instruction *Inst = cast<Instruction>(Val: U);
160 IRBuilder<> Builder(Inst);
161 Function *GetID = Intrinsic::getDeclaration(M: GV->getParent(),
162 Intrinsic::id: xcore_getid);
163 Value *ThreadID = Builder.CreateCall(Callee: GetID, Args: {});
164 Value *Addr = Builder.CreateInBoundsGEP(Ty: NewGV->getValueType(), Ptr: NewGV,
165 IdxList: {Builder.getInt64(C: 0), ThreadID});
166 U->replaceUsesOfWith(From: GV, To: Addr);
167 }
168
169 // Remove old global.
170 NewGV->takeName(V: GV);
171 GV->eraseFromParent();
172 return true;
173}
174
175bool XCoreLowerThreadLocal::runOnModule(Module &M) {
176 // Find thread local globals.
177 bool MadeChange = false;
178 SmallVector<GlobalVariable *, 16> ThreadLocalGlobals;
179 for (GlobalVariable &GV : M.globals())
180 if (GV.isThreadLocal())
181 ThreadLocalGlobals.push_back(Elt: &GV);
182 for (unsigned I = 0, E = ThreadLocalGlobals.size(); I != E; ++I) {
183 MadeChange |= lowerGlobal(GV: ThreadLocalGlobals[I]);
184 }
185 return MadeChange;
186}
187

source code of llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp