Skip to content
Mangler.h 2.07 KiB
Newer Older
Chris Lattner's avatar
Chris Lattner committed
//===-- Mangler.h - Self-contained llvm name mangler ------------*- C++ -*-===//
// 
//                     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.
// 
//===----------------------------------------------------------------------===//
Chris Lattner's avatar
Chris Lattner committed
// Unified name mangler for various backends.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_SUPPORT_MANGLER_H
#define LLVM_SUPPORT_MANGLER_H

#include <map>
Brian Gaeke's avatar
Brian Gaeke committed
#include <set>
Chris Lattner's avatar
Chris Lattner committed
class Value;
Chris Lattner's avatar
Chris Lattner committed
class Type;
Chris Lattner's avatar
Chris Lattner committed
class Module;
class GlobalValue;
  /// 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;

Chris Lattner's avatar
Chris Lattner committed
  unsigned TypeCounter;
  std::map<const Type*, unsigned> TypeMap;

  typedef std::map<const Value *, std::string> ValueMap;
  ValueMap Memo;

  unsigned Count;
Chris Lattner's avatar
Chris Lattner committed

  void InsertName(GlobalValue *GV, std::map<std::string, GlobalValue*> &Names);

  // Mangler ctor - if AddUnderscorePrefix is true, then all public global
  // symbols will be prefixed with an underscore.
  Mangler(Module &M, bool AddUnderscorePrefix = false);

Chris Lattner's avatar
Chris Lattner committed
  /// getTypeID - Return a unique ID for the specified LLVM type.
  ///
  unsigned getTypeID(const Type *Ty);

  /// 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.
  /// 
Brian Gaeke's avatar
Brian Gaeke committed
  static std::string makeNameProper(const std::string &x);