1 //===-- ExtractGV.cpp - Global Value extraction pass ----------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This pass extracts global values
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Transforms/IPO.h"
15 #include "llvm/ADT/SetVector.h"
16 #include "llvm/IR/Constants.h"
17 #include "llvm/IR/Instructions.h"
18 #include "llvm/IR/LLVMContext.h"
19 #include "llvm/IR/Module.h"
20 #include "llvm/Pass.h"
24 /// Make sure GV is visible from both modules. Delete is true if it is
25 /// being deleted from this module.
26 /// This also makes sure GV cannot be dropped so that references from
27 /// the split module remain valid.
28 static void makeVisible(GlobalValue &GV, bool Delete) {
29 bool Local = GV.hasLocalLinkage();
30 if (Local || Delete) {
31 GV.setLinkage(GlobalValue::ExternalLinkage);
33 GV.setVisibility(GlobalValue::HiddenVisibility);
37 if (!GV.hasLinkOnceLinkage()) {
38 assert(!GV.isDiscardableIfUnused());
42 // Map linkonce* to weak* so that llvm doesn't drop this GV.
43 switch(GV.getLinkage()) {
45 llvm_unreachable("Unexpected linkage");
46 case GlobalValue::LinkOnceAnyLinkage:
47 GV.setLinkage(GlobalValue::WeakAnyLinkage);
49 case GlobalValue::LinkOnceODRLinkage:
50 GV.setLinkage(GlobalValue::WeakODRLinkage);
56 /// @brief A pass to extract specific functions and their dependencies.
57 class GVExtractorPass : public ModulePass {
58 SetVector<GlobalValue *> Named;
61 static char ID; // Pass identification, replacement for typeid
63 /// FunctionExtractorPass - If deleteFn is true, this pass deletes as the
64 /// specified function. Otherwise, it deletes as much of the module as
65 /// possible, except for the function specified.
67 explicit GVExtractorPass(std::vector<GlobalValue*>& GVs, bool deleteS = true)
68 : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {}
70 bool runOnModule(Module &M) override {
71 // Visit the global inline asm.
73 M.setModuleInlineAsm("");
75 // For simplicity, just give all GlobalValues ExternalLinkage. A trickier
76 // implementation could figure out which GlobalValues are actually
77 // referenced by the Named set, and which GlobalValues in the rest of
78 // the module are referenced by the NamedSet, and get away with leaving
79 // more internal and private things internal and private. But for now,
80 // be conservative and simple.
82 // Visit the GlobalVariables.
83 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
86 deleteStuff == (bool)Named.count(I) && !I->isDeclaration();
88 if (I->hasAvailableExternallyLinkage())
90 if (I->getName() == "llvm.global_ctors")
94 makeVisible(*I, Delete);
97 // Make this a declaration and drop it's comdat.
98 I->setInitializer(nullptr);
99 I->setComdat(nullptr);
103 // Visit the Functions.
104 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
106 deleteStuff == (bool)Named.count(I) && !I->isDeclaration();
108 if (I->hasAvailableExternallyLinkage())
112 makeVisible(*I, Delete);
115 // Make this a declaration and drop it's comdat.
117 I->setComdat(nullptr);
121 // Visit the Aliases.
122 for (Module::alias_iterator I = M.alias_begin(), E = M.alias_end();
124 Module::alias_iterator CurI = I;
127 bool Delete = deleteStuff == (bool)Named.count(CurI);
128 makeVisible(*CurI, Delete);
131 Type *Ty = CurI->getType()->getElementType();
133 CurI->removeFromParent();
134 llvm::Value *Declaration;
135 if (FunctionType *FTy = dyn_cast<FunctionType>(Ty)) {
136 Declaration = Function::Create(FTy, GlobalValue::ExternalLinkage,
137 CurI->getName(), &M);
141 new GlobalVariable(M, Ty, false, GlobalValue::ExternalLinkage,
142 nullptr, CurI->getName());
145 CurI->replaceAllUsesWith(Declaration);
154 char GVExtractorPass::ID = 0;
157 ModulePass *llvm::createGVExtractionPass(std::vector<GlobalValue *> &GVs,
159 return new GVExtractorPass(GVs, deleteFn);