mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-26 07:24:25 +00:00
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
This commit is contained in:
@ -14,14 +14,29 @@ class Module;
|
|||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
class Mangler {
|
class Mangler {
|
||||||
|
/// This keeps track of which global values have had their names
|
||||||
|
/// mangled in the current module.
|
||||||
|
///
|
||||||
|
std::set<const Value *> MangledGlobals;
|
||||||
|
|
||||||
|
Module &M;
|
||||||
|
bool AddUnderscorePrefix;
|
||||||
|
|
||||||
|
typedef std::map<const Value *, std::string> ValueMap;
|
||||||
|
ValueMap Memo;
|
||||||
|
|
||||||
|
unsigned Count;
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
// Mangler ctor - if AddUnderscorePrefix is true, then all public global
|
||||||
|
// symbols will be prefixed with an underscore.
|
||||||
|
Mangler(Module &M, bool AddUnderscorePrefix = false);
|
||||||
|
|
||||||
/// getValueName - Returns the mangled name of V, an LLVM Value,
|
/// getValueName - Returns the mangled name of V, an LLVM Value,
|
||||||
/// in the current module.
|
/// in the current module.
|
||||||
///
|
///
|
||||||
std::string getValueName(const Value *V);
|
std::string getValueName(const Value *V);
|
||||||
|
|
||||||
Mangler(Module &M_);
|
|
||||||
|
|
||||||
/// makeNameProper - We don't want identifier names with ., space, or
|
/// makeNameProper - We don't want identifier names with ., space, or
|
||||||
/// - in them, so we mangle these characters into the strings "d_",
|
/// - in them, so we mangle these characters into the strings "d_",
|
||||||
/// "s_", and "D_", respectively. This is a very simple mangling that
|
/// "s_", and "D_", respectively. This is a very simple mangling that
|
||||||
@ -30,19 +45,6 @@ public:
|
|||||||
/// from getValueName.
|
/// from getValueName.
|
||||||
///
|
///
|
||||||
static std::string makeNameProper(const std::string &x);
|
static std::string makeNameProper(const std::string &x);
|
||||||
|
|
||||||
private:
|
|
||||||
/// This keeps track of which global values have had their names
|
|
||||||
/// mangled in the current module.
|
|
||||||
///
|
|
||||||
std::set<const Value *> MangledGlobals;
|
|
||||||
|
|
||||||
Module &M;
|
|
||||||
|
|
||||||
typedef std::map<const Value *, std::string> ValueMap;
|
|
||||||
ValueMap Memo;
|
|
||||||
|
|
||||||
unsigned int Count;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // LLVM_SUPPORT_MANGLER_H
|
#endif // LLVM_SUPPORT_MANGLER_H
|
||||||
|
@ -42,8 +42,9 @@ std::string Mangler::getValueName(const Value *V) {
|
|||||||
// 2) V's name would collide if it is not mangled.
|
// 2) V's name would collide if it is not mangled.
|
||||||
//
|
//
|
||||||
const GlobalValue* gv = dyn_cast<GlobalValue>(V);
|
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());
|
name = makeNameProper(gv->getName());
|
||||||
|
if (AddUnderscorePrefix) name = "_" + name;
|
||||||
} else {
|
} else {
|
||||||
// Non-global, or global with internal linkage / colliding name
|
// Non-global, or global with internal linkage / colliding name
|
||||||
// -> mangle.
|
// -> mangle.
|
||||||
@ -54,12 +55,13 @@ std::string Mangler::getValueName(const Value *V) {
|
|||||||
name = "ltmp_" + utostr(Count++) + "_"
|
name = "ltmp_" + utostr(Count++) + "_"
|
||||||
+ utostr(V->getType()->getUniqueID());
|
+ utostr(V->getType()->getUniqueID());
|
||||||
}
|
}
|
||||||
|
|
||||||
Memo[V] = name;
|
Memo[V] = name;
|
||||||
return 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
|
// Calculate which global values have names that will collide when we throw
|
||||||
// away type information.
|
// away type information.
|
||||||
std::set<std::string> FoundNames;
|
std::set<std::string> FoundNames;
|
||||||
|
@ -42,8 +42,9 @@ std::string Mangler::getValueName(const Value *V) {
|
|||||||
// 2) V's name would collide if it is not mangled.
|
// 2) V's name would collide if it is not mangled.
|
||||||
//
|
//
|
||||||
const GlobalValue* gv = dyn_cast<GlobalValue>(V);
|
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());
|
name = makeNameProper(gv->getName());
|
||||||
|
if (AddUnderscorePrefix) name = "_" + name;
|
||||||
} else {
|
} else {
|
||||||
// Non-global, or global with internal linkage / colliding name
|
// Non-global, or global with internal linkage / colliding name
|
||||||
// -> mangle.
|
// -> mangle.
|
||||||
@ -54,12 +55,13 @@ std::string Mangler::getValueName(const Value *V) {
|
|||||||
name = "ltmp_" + utostr(Count++) + "_"
|
name = "ltmp_" + utostr(Count++) + "_"
|
||||||
+ utostr(V->getType()->getUniqueID());
|
+ utostr(V->getType()->getUniqueID());
|
||||||
}
|
}
|
||||||
|
|
||||||
Memo[V] = name;
|
Memo[V] = name;
|
||||||
return 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
|
// Calculate which global values have names that will collide when we throw
|
||||||
// away type information.
|
// away type information.
|
||||||
std::set<std::string> FoundNames;
|
std::set<std::string> FoundNames;
|
||||||
|
@ -42,8 +42,9 @@ std::string Mangler::getValueName(const Value *V) {
|
|||||||
// 2) V's name would collide if it is not mangled.
|
// 2) V's name would collide if it is not mangled.
|
||||||
//
|
//
|
||||||
const GlobalValue* gv = dyn_cast<GlobalValue>(V);
|
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());
|
name = makeNameProper(gv->getName());
|
||||||
|
if (AddUnderscorePrefix) name = "_" + name;
|
||||||
} else {
|
} else {
|
||||||
// Non-global, or global with internal linkage / colliding name
|
// Non-global, or global with internal linkage / colliding name
|
||||||
// -> mangle.
|
// -> mangle.
|
||||||
@ -54,12 +55,13 @@ std::string Mangler::getValueName(const Value *V) {
|
|||||||
name = "ltmp_" + utostr(Count++) + "_"
|
name = "ltmp_" + utostr(Count++) + "_"
|
||||||
+ utostr(V->getType()->getUniqueID());
|
+ utostr(V->getType()->getUniqueID());
|
||||||
}
|
}
|
||||||
|
|
||||||
Memo[V] = name;
|
Memo[V] = name;
|
||||||
return 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
|
// Calculate which global values have names that will collide when we throw
|
||||||
// away type information.
|
// away type information.
|
||||||
std::set<std::string> FoundNames;
|
std::set<std::string> FoundNames;
|
||||||
|
Reference in New Issue
Block a user