blob: 45c5fe76ba7c56704df9811fc7681e18c7e8fa6a [file] [log] [blame]
Andrew Lenharthd245a8a2008-03-07 19:51:57 +00001//===-- ExtractGV.cpp - Global Value extraction pass ----------------------===//
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 extracts global values
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Instructions.h"
Owen Anderson14ce9ef2009-07-06 01:34:54 +000015#include "llvm/LLVMContext.h"
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000016#include "llvm/Module.h"
17#include "llvm/Pass.h"
18#include "llvm/Constants.h"
19#include "llvm/Transforms/IPO.h"
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000020#include "llvm/ADT/SetVector.h"
Ted Kremenek58d5e052008-03-09 18:32:50 +000021#include <algorithm>
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000022using namespace llvm;
23
24namespace {
25 /// @brief A pass to extract specific functions and their dependencies.
Nick Lewycky6726b6d2009-10-25 06:33:48 +000026 class GVExtractorPass : public ModulePass {
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000027 SetVector<GlobalValue *> Named;
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000028 bool deleteStuff;
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000029 public:
30 static char ID; // Pass identification, replacement for typeid
31
32 /// FunctionExtractorPass - If deleteFn is true, this pass deletes as the
33 /// specified function. Otherwise, it deletes as much of the module as
34 /// possible, except for the function specified.
35 ///
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000036 explicit GVExtractorPass(std::vector<GlobalValue*>& GVs, bool deleteS = true)
37 : ModulePass(ID), Named(GVs.begin(), GVs.end()), deleteStuff(deleteS) {}
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000038
39 bool runOnModule(Module &M) {
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000040 // Visit the global inline asm.
41 if (!deleteStuff)
42 M.setModuleInlineAsm("");
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000043
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000044 // For simplicity, just give all GlobalValues ExternalLinkage. A trickier
45 // implementation could figure out which GlobalValues are actually
46 // referenced by the Named set, and which GlobalValues in the rest of
47 // the module are referenced by the NamedSet, and get away with leaving
48 // more internal and private things internal and private. But for now,
49 // be conservative and simple.
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000050
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000051 // Visit the GlobalVariables.
52 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
53 I != E; ++I)
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000054 if (!I->isDeclaration()) {
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000055 if (I->hasLocalLinkage())
56 I->setVisibility(GlobalValue::HiddenVisibility);
57 I->setLinkage(GlobalValue::ExternalLinkage);
58 if (deleteStuff == Named.count(I))
59 I->setInitializer(0);
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000060 }
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000061
62 // Visit the Functions.
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000063 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
64 if (!I->isDeclaration()) {
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000065 if (I->hasLocalLinkage())
66 I->setVisibility(GlobalValue::HiddenVisibility);
67 I->setLinkage(GlobalValue::ExternalLinkage);
68 if (deleteStuff == Named.count(I))
69 I->deleteBody();
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000070 }
71
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000072 return true;
73 }
74 };
75
76 char GVExtractorPass::ID = 0;
77}
78
79ModulePass *llvm::createGVExtractionPass(std::vector<GlobalValue*>& GVs,
Dan Gohmanb4e3cda2010-08-26 00:22:55 +000080 bool deleteFn) {
81 return new GVExtractorPass(GVs, deleteFn);
Andrew Lenharthd245a8a2008-03-07 19:51:57 +000082}