aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-07-10 00:04:23 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-07-10 00:04:23 +0000
commit250c1d8734ae29b8e408e16dc575b21a31fcb0d7 (patch)
treee06370e743baca91abccd3d589ae9d7c6e4e8192 /lib/VMCore
parenteacdef21c65308fe5169b53bdbc2757bd75fdc0e (diff)
downloadexternal_llvm-250c1d8734ae29b8e408e16dc575b21a31fcb0d7.zip
external_llvm-250c1d8734ae29b8e408e16dc575b21a31fcb0d7.tar.gz
external_llvm-250c1d8734ae29b8e408e16dc575b21a31fcb0d7.tar.bz2
- Replace use of std::map<std::string, ..> with StringMap. Replace use of std::map with DenseMap, std::set with SmallPtrSet. This results in minor speed up.
- Some code clean up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53379 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r--lib/VMCore/Mangler.cpp55
1 files changed, 28 insertions, 27 deletions
diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp
index 50fa3c1..d86d9c0 100644
--- a/lib/VMCore/Mangler.cpp
+++ b/lib/VMCore/Mangler.cpp
@@ -16,6 +16,7 @@
#include "llvm/Module.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/StringExtras.h"
+#include "llvm/ADT/StringMap.h"
using namespace llvm;
static char HexDigit(int V) {
@@ -138,7 +139,7 @@ std::string Mangler::getValueName(const GlobalValue *GV, const char * Suffix) {
// - If V is an intrinsic function, do not change name at all
// - Otherwise, mangling occurs if global collides with existing name.
if (isa<Function>(GV) && cast<Function>(GV)->isIntrinsic()) {
- Name = GV->getName(); // Is an intrinsic function
+ Name = GV->getNameStart(); // Is an intrinsic function
} else if (!GV->hasName()) {
// Must mangle the global into a unique ID.
unsigned TypeUniqueID = getTypeID(GV->getType());
@@ -154,34 +155,35 @@ std::string Mangler::getValueName(const GlobalValue *GV, const char * Suffix) {
return Name;
}
-void Mangler::InsertName(GlobalValue *GV,
- std::map<std::string, GlobalValue*> &Names) {
+static void InsertName(GlobalValue *GV, StringMap<GlobalValue*> &Names,
+ SmallPtrSet<const GlobalValue*, 16> &MangledGlobals) {
if (!GV->hasName()) // We must mangle unnamed globals.
return;
// Figure out if this is already used.
- GlobalValue *&ExistingValue = Names[GV->getName()];
+ GlobalValue *&ExistingValue = Names[GV->getNameStart()];
if (!ExistingValue) {
ExistingValue = GV;
+ return;
+ }
+
+ // If GV is external but the existing one is static, mangle the existing one
+ if ((GV->hasExternalLinkage() || GV->hasDLLImportLinkage()) &&
+ !(ExistingValue->hasExternalLinkage()
+ || ExistingValue->hasDLLImportLinkage())) {
+ MangledGlobals.insert(ExistingValue);
+ ExistingValue = GV;
+ } else if ((GV->hasExternalLinkage() ||
+ GV->hasDLLImportLinkage()) &&
+ (ExistingValue->hasExternalLinkage() ||
+ ExistingValue->hasDLLImportLinkage()) &&
+ GV->isDeclaration() &&
+ ExistingValue->isDeclaration()) {
+ // If the two globals both have external inkage, and are both external,
+ // don't mangle either of them, we just have some silly type mismatch.
} else {
- // If GV is external but the existing one is static, mangle the existing one
- if ((GV->hasExternalLinkage() || GV->hasDLLImportLinkage()) &&
- !(ExistingValue->hasExternalLinkage()
- || ExistingValue->hasDLLImportLinkage())) {
- MangledGlobals.insert(ExistingValue);
- ExistingValue = GV;
- } else if ((GV->hasExternalLinkage() ||
- GV->hasDLLImportLinkage()) &&
- (ExistingValue->hasExternalLinkage() ||
- ExistingValue->hasDLLImportLinkage()) &&
- GV->isDeclaration() &&
- ExistingValue->isDeclaration()) {
- // If the two globals both have external inkage, and are both external,
- // don't mangle either of them, we just have some silly type mismatch.
- } else {
- // Otherwise, mangle GV
- MangledGlobals.insert(GV);
- }
+ // Otherwise, mangle GV
+ MangledGlobals.insert(GV);
}
}
@@ -206,11 +208,10 @@ Mangler::Mangler(Module &M, const char *prefix)
// Calculate which global values have names that will collide when we throw
// away type information.
- std::map<std::string, GlobalValue*> Names;
+ StringMap<GlobalValue*> Names;
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
- InsertName(I, Names);
+ InsertName(I, Names, MangledGlobals);
for (Module::global_iterator I = M.global_begin(), E = M.global_end();
- I != E;
- ++I)
- InsertName(I, Names);
+ I != E; ++I)
+ InsertName(I, Names, MangledGlobals);
}