summaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/GlobalMerge.cpp
diff options
context:
space:
mode:
authorQuentin Colombet <qcolombet@apple.com>2013-03-19 21:46:49 +0000
committerQuentin Colombet <qcolombet@apple.com>2013-03-19 21:46:49 +0000
commit9deb91722cc4a7e0aa220b0a210c56ac95c62d73 (patch)
tree4a3e46ee8e12efcb1200bb21a55e6d670c6e22af /lib/Transforms/Scalar/GlobalMerge.cpp
parentf36a4afaaee1885a14c1b9d58f61b2bd26a75e88 (diff)
downloadllvm-9deb91722cc4a7e0aa220b0a210c56ac95c62d73.tar.gz
llvm-9deb91722cc4a7e0aa220b0a210c56ac95c62d73.tar.bz2
llvm-9deb91722cc4a7e0aa220b0a210c56ac95c62d73.tar.xz
Update global merge pass according to Duncan's advices:
- Remove useless includes - Change misleading comments - Move code into doFinalization git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177445 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/GlobalMerge.cpp')
-rw-r--r--lib/Transforms/Scalar/GlobalMerge.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/lib/Transforms/Scalar/GlobalMerge.cpp b/lib/Transforms/Scalar/GlobalMerge.cpp
index 14e463ad2d..5d02c68a7a 100644
--- a/lib/Transforms/Scalar/GlobalMerge.cpp
+++ b/lib/Transforms/Scalar/GlobalMerge.cpp
@@ -61,10 +61,8 @@
#include "llvm/IR/DerivedTypes.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/GlobalVariable.h"
-#include "llvm/IR/InlineAsm.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/Intrinsics.h"
-#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/Module.h"
#include "llvm/Pass.h"
#include "llvm/Support/CommandLine.h"
@@ -101,7 +99,7 @@ namespace {
/// Collect every variables marked as "used"
void collectUsedGlobalVariables(Module &M);
- /// Keep track of the GlobalVariable that are marked as "used"
+ /// Keep track of the GlobalVariable that must not be merged away
SmallPtrSet<const GlobalVariable *, 16> MustKeepGlobalVariables;
public:
@@ -113,6 +111,7 @@ namespace {
virtual bool doInitialization(Module &M);
virtual bool runOnFunction(Function &F);
+ virtual bool doFinalization(Module &M);
const char *getPassName() const {
return "Merge internal globals";
@@ -211,9 +210,6 @@ void GlobalMerge::collectUsedGlobalVariables(Module &M) {
}
void GlobalMerge::setMustKeepGlobalVariables(Module &M) {
- // If we already processed a Module, UsedGlobalVariables may have been
- // populated. Reset the information for this module.
- MustKeepGlobalVariables.clear();
collectUsedGlobalVariables(M);
for (Module::iterator IFn = M.begin(), IEndFn = M.end(); IFn != IEndFn;
@@ -268,8 +264,6 @@ bool GlobalMerge::doInitialization(Module &M) {
continue;
// Ignore all "required" globals:
- // - the ones used for EH
- // - the ones marked with "used" attribute
if (isMustKeepGlobalVariable(I))
continue;
@@ -307,6 +301,11 @@ bool GlobalMerge::runOnFunction(Function &F) {
return false;
}
+bool GlobalMerge::doFinalization(Module &M) {
+ MustKeepGlobalVariables.clear();
+ return false;
+}
+
Pass *llvm::createGlobalMergePass(const TargetLowering *tli) {
return new GlobalMerge(tli);
}