2004-09-01 22:55:40 +00:00
|
|
|
//===-- llvm/Support/Mangler.h - Self-contained name mangler ----*- C++ -*-===//
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-07-24 20:20:58 +00:00
|
|
|
//
|
2004-02-14 00:30:31 +00:00
|
|
|
// Unified name mangler for various backends.
|
2003-07-24 20:20:58 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_MANGLER_H
|
|
|
|
#define LLVM_SUPPORT_MANGLER_H
|
|
|
|
|
|
|
|
#include <map>
|
2003-07-24 21:37:57 +00:00
|
|
|
#include <set>
|
2003-07-28 16:42:33 +00:00
|
|
|
#include <string>
|
2003-07-24 20:20:58 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2004-02-14 00:30:31 +00:00
|
|
|
class Value;
|
2004-07-08 22:09:07 +00:00
|
|
|
class Type;
|
2004-02-14 00:30:31 +00:00
|
|
|
class Module;
|
|
|
|
class GlobalValue;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-07-24 20:20:58 +00:00
|
|
|
class Mangler {
|
2003-08-11 19:34:29 +00:00
|
|
|
/// This keeps track of which global values have had their names
|
|
|
|
/// mangled in the current module.
|
|
|
|
///
|
|
|
|
std::set<const Value *> MangledGlobals;
|
|
|
|
|
|
|
|
Module &M;
|
2004-08-17 06:06:37 +00:00
|
|
|
const char *Prefix;
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2004-07-08 22:09:07 +00:00
|
|
|
unsigned TypeCounter;
|
|
|
|
std::map<const Type*, unsigned> TypeMap;
|
|
|
|
|
2003-08-11 19:34:29 +00:00
|
|
|
typedef std::map<const Value *, std::string> ValueMap;
|
|
|
|
ValueMap Memo;
|
|
|
|
|
|
|
|
unsigned Count;
|
2004-02-14 00:30:31 +00:00
|
|
|
|
|
|
|
void InsertName(GlobalValue *GV, std::map<std::string, GlobalValue*> &Names);
|
2003-07-24 20:20:58 +00:00
|
|
|
public:
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2004-08-17 06:06:37 +00:00
|
|
|
// Mangler ctor - if a prefix is specified, it will be prepended onto all
|
|
|
|
// symbols.
|
|
|
|
Mangler(Module &M, const char *Prefix = "");
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2004-07-08 22:09:07 +00:00
|
|
|
/// getTypeID - Return a unique ID for the specified LLVM type.
|
|
|
|
///
|
|
|
|
unsigned getTypeID(const Type *Ty);
|
|
|
|
|
2003-07-24 20:20:58 +00:00
|
|
|
/// getValueName - Returns the mangled name of V, an LLVM Value,
|
|
|
|
/// in the current module.
|
|
|
|
///
|
|
|
|
std::string getValueName(const Value *V);
|
|
|
|
|
|
|
|
/// makeNameProper - We don't want identifier names with ., space, or
|
|
|
|
/// - in them, so we mangle these characters into the strings "d_",
|
|
|
|
/// "s_", and "D_", respectively. This is a very simple mangling that
|
|
|
|
/// doesn't guarantee unique names for values. getValueName already
|
|
|
|
/// does this for you, so there's no point calling it on the result
|
|
|
|
/// from getValueName.
|
2005-04-21 20:48:15 +00:00
|
|
|
///
|
2005-09-24 08:23:53 +00:00
|
|
|
static std::string makeNameProper(const std::string &x,
|
|
|
|
const char *Prefix = "");
|
2003-07-24 20:20:58 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-07-24 20:20:58 +00:00
|
|
|
#endif // LLVM_SUPPORT_MANGLER_H
|