diff options
author | Chris Lattner <sabre@nondot.org> | 2004-02-14 00:30:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-02-14 00:30:23 +0000 |
commit | 77687a9746d12dbae3e9ddead20e92112d9cf6b9 (patch) | |
tree | 39b0f047eafd2142e6e50635a5fb7f82f66edd34 /llvm/lib/Support/Mangler.cpp | |
parent | 7c437d32260a0a45d53c3140314b909ff73cfa86 (diff) | |
download | bcm5719-llvm-77687a9746d12dbae3e9ddead20e92112d9cf6b9.tar.gz bcm5719-llvm-77687a9746d12dbae3e9ddead20e92112d9cf6b9.zip |
Fix the logic in the name mangler. If there are two symbols named 'X', and one
is external, make sure to mangle the *internal* one, not external one
llvm-svn: 11424
Diffstat (limited to 'llvm/lib/Support/Mangler.cpp')
-rw-r--r-- | llvm/lib/Support/Mangler.cpp | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/llvm/lib/Support/Mangler.cpp b/llvm/lib/Support/Mangler.cpp index 336066ed869..0982efd8cd9 100644 --- a/llvm/lib/Support/Mangler.cpp +++ b/llvm/lib/Support/Mangler.cpp @@ -80,22 +80,37 @@ std::string Mangler::getValueName(const Value *V) { return name; } +void Mangler::InsertName(GlobalValue *GV, + std::map<std::string, GlobalValue*> &Names) { + if (!GV->hasName()) { // We must mangle unnamed globals. + MangledGlobals.insert(GV); + return; + } + + // Figure out if this is already used. + GlobalValue *&ExistingValue = Names[GV->getName()]; + if (!ExistingValue) { + ExistingValue = GV; + } else { + // If GV is external but the existing one is static, mangle the existing one + if (GV->hasExternalLinkage() && !ExistingValue->hasExternalLinkage()) { + MangledGlobals.insert(ExistingValue); + ExistingValue = GV; + } else { + // Otherwise, mangle GV + MangledGlobals.insert(GV); + } + } +} + + Mangler::Mangler(Module &m, bool addUnderscorePrefix) : M(m), AddUnderscorePrefix(addUnderscorePrefix), Count(0) { // Calculate which global values have names that will collide when we throw // away type information. - std::set<std::string> FoundNames; + std::map<std::string, GlobalValue*> Names; for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) - if (I->hasName()) // If the global has a name... - if (FoundNames.count(I->getName())) // And the name is already used - MangledGlobals.insert(I); // Mangle the name - else - FoundNames.insert(I->getName()); // Otherwise, keep track of name - + InsertName(I, Names); for (Module::giterator I = M.gbegin(), E = M.gend(); I != E; ++I) - if (I->hasName()) // If the global has a name... - if (FoundNames.count(I->getName())) // And the name is already used - MangledGlobals.insert(I); // Mangle the name - else - FoundNames.insert(I->getName()); // Otherwise, keep track of name + InsertName(I, Names); } |