diff options
| author | Chris Lattner <sabre@nondot.org> | 2003-08-11 19:34:29 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2003-08-11 19:34:29 +0000 |
| commit | 2b3860faebe96b45a5654d4e4ca9faa18ed97dbb (patch) | |
| tree | 0a03e4607d0e944a24df25ed7fd2347811479fc7 /lib | |
| parent | dac35491910c7524eba5a81bacda4a53dd31f110 (diff) | |
| download | external_llvm-2b3860faebe96b45a5654d4e4ca9faa18ed97dbb.zip external_llvm-2b3860faebe96b45a5654d4e4ca9faa18ed97dbb.tar.gz external_llvm-2b3860faebe96b45a5654d4e4ca9faa18ed97dbb.tar.bz2 | |
Add support to the mangler for targets which require _'s on global symbols
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7741 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Support/Mangler.cpp | 8 | ||||
| -rw-r--r-- | lib/VMCore/Mangler.cpp | 8 |
2 files changed, 10 insertions, 6 deletions
diff --git a/lib/Support/Mangler.cpp b/lib/Support/Mangler.cpp index 665cb73..a58ca33 100644 --- a/lib/Support/Mangler.cpp +++ b/lib/Support/Mangler.cpp @@ -42,8 +42,9 @@ std::string Mangler::getValueName(const Value *V) { // 2) V's name would collide if it is not mangled. // const GlobalValue* gv = dyn_cast<GlobalValue>(V); - if(gv && !gv->hasInternalLinkage() && !MangledGlobals.count(gv)) { + if (gv && !gv->hasInternalLinkage() && !MangledGlobals.count(gv)) { name = makeNameProper(gv->getName()); + if (AddUnderscorePrefix) name = "_" + name; } else { // Non-global, or global with internal linkage / colliding name // -> mangle. @@ -54,12 +55,13 @@ std::string Mangler::getValueName(const Value *V) { name = "ltmp_" + utostr(Count++) + "_" + utostr(V->getType()->getUniqueID()); } + Memo[V] = name; return name; } -Mangler::Mangler(Module &M_) : M(M_) -{ +Mangler::Mangler(Module &m, bool addUnderscorePrefix) + : M(m), AddUnderscorePrefix(addUnderscorePrefix) { // Calculate which global values have names that will collide when we throw // away type information. std::set<std::string> FoundNames; diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp index 665cb73..a58ca33 100644 --- a/lib/VMCore/Mangler.cpp +++ b/lib/VMCore/Mangler.cpp @@ -42,8 +42,9 @@ std::string Mangler::getValueName(const Value *V) { // 2) V's name would collide if it is not mangled. // const GlobalValue* gv = dyn_cast<GlobalValue>(V); - if(gv && !gv->hasInternalLinkage() && !MangledGlobals.count(gv)) { + if (gv && !gv->hasInternalLinkage() && !MangledGlobals.count(gv)) { name = makeNameProper(gv->getName()); + if (AddUnderscorePrefix) name = "_" + name; } else { // Non-global, or global with internal linkage / colliding name // -> mangle. @@ -54,12 +55,13 @@ std::string Mangler::getValueName(const Value *V) { name = "ltmp_" + utostr(Count++) + "_" + utostr(V->getType()->getUniqueID()); } + Memo[V] = name; return name; } -Mangler::Mangler(Module &M_) : M(M_) -{ +Mangler::Mangler(Module &m, bool addUnderscorePrefix) + : M(m), AddUnderscorePrefix(addUnderscorePrefix) { // Calculate which global values have names that will collide when we throw // away type information. std::set<std::string> FoundNames; |
