mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 04:31:08 +00:00
4166445b7c
Mangler.cpp: Constify parameter to makeNameProper, and use const_iterator. Make Count an unsigned int, and use utostr(). Don't name parameters things that start with underscore. Mangler.h: All of the above, and also: Add Emacs mode-line. Include <set>. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7301 91177308-0d34-0410-b5e6-96231b3b80d8
47 lines
1.3 KiB
C++
47 lines
1.3 KiB
C++
//===-- Mangler.h - Self-contained c/asm llvm name mangler -*- C++ -*- ----===//
|
|
//
|
|
// Unified name mangler for CWriter and assembly backends.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_SUPPORT_MANGLER_H
|
|
#define LLVM_SUPPORT_MANGLER_H
|
|
|
|
class Value;
|
|
#include <map>
|
|
#include <set>
|
|
|
|
class Mangler {
|
|
public:
|
|
/// getValueName - Returns the mangled name of V, an LLVM Value,
|
|
/// in the current module.
|
|
///
|
|
std::string getValueName(const Value *V);
|
|
|
|
Mangler(Module &M_);
|
|
|
|
/// 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.
|
|
///
|
|
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
|