diff options
author | Chris Lattner <sabre@nondot.org> | 2006-06-28 23:17:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-06-28 23:17:24 +0000 |
commit | 9525528a7dc5462b6374d38c81ba5c07b11741fe (patch) | |
tree | 21af300b05123d1f41b059ac59b39f0b02183861 /lib/Transforms | |
parent | 9ef7e06ccef062dfa5df516913b12b7c3ca17805 (diff) |
Use hidden visibility to make symbols in an anonymous namespace get
dropped. This shrinks libllvmgcc.dylib another 67K
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28975 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms')
-rw-r--r-- | lib/Transforms/Scalar/LoopStrengthReduce.cpp | 3 | ||||
-rw-r--r-- | lib/Transforms/Scalar/ScalarReplAggregates.cpp | 5 | ||||
-rw-r--r-- | lib/Transforms/Utils/BreakCriticalEdges.cpp | 3 | ||||
-rw-r--r-- | lib/Transforms/Utils/LoopSimplify.cpp | 3 | ||||
-rw-r--r-- | lib/Transforms/Utils/LowerAllocations.cpp | 3 | ||||
-rw-r--r-- | lib/Transforms/Utils/PromoteMemoryToRegister.cpp | 3 |
6 files changed, 13 insertions, 7 deletions
diff --git a/lib/Transforms/Scalar/LoopStrengthReduce.cpp b/lib/Transforms/Scalar/LoopStrengthReduce.cpp index 6e4460b509..ec15b646c7 100644 --- a/lib/Transforms/Scalar/LoopStrengthReduce.cpp +++ b/lib/Transforms/Scalar/LoopStrengthReduce.cpp @@ -31,6 +31,7 @@ #include "llvm/Target/TargetData.h" #include "llvm/ADT/Statistic.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/Visibility.h" #include "llvm/Target/TargetLowering.h" #include <algorithm> #include <iostream> @@ -104,7 +105,7 @@ namespace { } }; - class LoopStrengthReduce : public FunctionPass { + class VISIBILITY_HIDDEN LoopStrengthReduce : public FunctionPass { LoopInfo *LI; ETForest *EF; ScalarEvolution *SE; diff --git a/lib/Transforms/Scalar/ScalarReplAggregates.cpp b/lib/Transforms/Scalar/ScalarReplAggregates.cpp index f5bab8d852..843c908ba4 100644 --- a/lib/Transforms/Scalar/ScalarReplAggregates.cpp +++ b/lib/Transforms/Scalar/ScalarReplAggregates.cpp @@ -28,9 +28,10 @@ #include "llvm/Analysis/Dominators.h" #include "llvm/Target/TargetData.h" #include "llvm/Transforms/Utils/PromoteMemToReg.h" +#include "llvm/Support/Debug.h" #include "llvm/Support/GetElementPtrTypeIterator.h" #include "llvm/Support/MathExtras.h" -#include "llvm/Support/Debug.h" +#include "llvm/Support/Visibility.h" #include "llvm/ADT/Statistic.h" #include "llvm/ADT/StringExtras.h" #include <iostream> @@ -42,7 +43,7 @@ namespace { Statistic<> NumConverted("scalarrepl", "Number of aggregates converted to scalar"); - struct SROA : public FunctionPass { + struct VISIBILITY_HIDDEN SROA : public FunctionPass { bool runOnFunction(Function &F); bool performScalarRepl(Function &F); diff --git a/lib/Transforms/Utils/BreakCriticalEdges.cpp b/lib/Transforms/Utils/BreakCriticalEdges.cpp index 5bb7d46908..7b00de6681 100644 --- a/lib/Transforms/Utils/BreakCriticalEdges.cpp +++ b/lib/Transforms/Utils/BreakCriticalEdges.cpp @@ -24,13 +24,14 @@ #include "llvm/Instructions.h" #include "llvm/Type.h" #include "llvm/Support/CFG.h" +#include "llvm/Support/Visibility.h" #include "llvm/ADT/Statistic.h" using namespace llvm; namespace { Statistic<> NumBroken("break-crit-edges", "Number of blocks inserted"); - struct BreakCriticalEdges : public FunctionPass { + struct VISIBILITY_HIDDEN BreakCriticalEdges : public FunctionPass { virtual bool runOnFunction(Function &F); virtual void getAnalysisUsage(AnalysisUsage &AU) const { diff --git a/lib/Transforms/Utils/LoopSimplify.cpp b/lib/Transforms/Utils/LoopSimplify.cpp index 3188f123b7..dcad43fc2b 100644 --- a/lib/Transforms/Utils/LoopSimplify.cpp +++ b/lib/Transforms/Utils/LoopSimplify.cpp @@ -41,6 +41,7 @@ #include "llvm/Analysis/Dominators.h" #include "llvm/Analysis/LoopInfo.h" #include "llvm/Support/CFG.h" +#include "llvm/Support/Visibility.h" #include "llvm/ADT/SetOperations.h" #include "llvm/ADT/SetVector.h" #include "llvm/ADT/Statistic.h" @@ -53,7 +54,7 @@ namespace { Statistic<> NumNested("loopsimplify", "Number of nested loops split out"); - struct LoopSimplify : public FunctionPass { + struct VISIBILITY_HIDDEN LoopSimplify : public FunctionPass { // AA - If we have an alias analysis object to update, this is it, otherwise // this is null. AliasAnalysis *AA; diff --git a/lib/Transforms/Utils/LowerAllocations.cpp b/lib/Transforms/Utils/LowerAllocations.cpp index dab8084c4c..eab64681e5 100644 --- a/lib/Transforms/Utils/LowerAllocations.cpp +++ b/lib/Transforms/Utils/LowerAllocations.cpp @@ -21,6 +21,7 @@ #include "llvm/Pass.h" #include "llvm/ADT/Statistic.h" #include "llvm/Target/TargetData.h" +#include "llvm/Support/Visibility.h" using namespace llvm; namespace { @@ -29,7 +30,7 @@ namespace { /// LowerAllocations - Turn malloc and free instructions into %malloc and /// %free calls. /// - class LowerAllocations : public BasicBlockPass { + class VISIBILITY_HIDDEN LowerAllocations : public BasicBlockPass { Function *MallocFunc; // Functions in the module we are processing Function *FreeFunc; // Initialized by doInitialization bool LowerMallocArgToInteger; diff --git a/lib/Transforms/Utils/PromoteMemoryToRegister.cpp b/lib/Transforms/Utils/PromoteMemoryToRegister.cpp index e433e6d4a2..f748770f8d 100644 --- a/lib/Transforms/Utils/PromoteMemoryToRegister.cpp +++ b/lib/Transforms/Utils/PromoteMemoryToRegister.cpp @@ -26,6 +26,7 @@ #include "llvm/ADT/StringExtras.h" #include "llvm/Support/CFG.h" #include "llvm/Support/StableBasicBlockNumbering.h" +#include "llvm/Support/Visibility.h" #include <algorithm> using namespace llvm; @@ -52,7 +53,7 @@ bool llvm::isAllocaPromotable(const AllocaInst *AI, const TargetData &TD) { } namespace { - struct PromoteMem2Reg { + struct VISIBILITY_HIDDEN PromoteMem2Reg { /// Allocas - The alloca instructions being promoted. /// std::vector<AllocaInst*> Allocas; |