forked from OSchip/llvm-project
54 lines
2.0 KiB
C++
54 lines
2.0 KiB
C++
//===--- Mangle.h - Mangle C++ Names ----------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Implements C++ name mangling according to the Itanium C++ ABI,
|
|
// which is used in GCC 3.2 and newer (and many compilers that are
|
|
// ABI-compatible with GCC):
|
|
//
|
|
// http://www.codesourcery.com/public/cxx-abi/abi.html
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_CLANG_CODEGEN_MANGLE_H
|
|
#define LLVM_CLANG_CODEGEN_MANGLE_H
|
|
|
|
#include "CGCXX.h"
|
|
#include "clang/AST/Type.h"
|
|
|
|
namespace llvm {
|
|
class raw_ostream;
|
|
}
|
|
|
|
namespace clang {
|
|
class ASTContext;
|
|
class CXXConstructorDecl;
|
|
class CXXDestructorDecl;
|
|
class NamedDecl;
|
|
class VarDecl;
|
|
|
|
bool mangleName(const NamedDecl *D, ASTContext &Context,
|
|
llvm::raw_ostream &os);
|
|
void mangleThunk(const NamedDecl *D, bool Virtual, int64_t n, int64_t vn,
|
|
ASTContext &Context, llvm::raw_ostream &os);
|
|
void mangleCovariantThunk(const NamedDecl *D, bool VirtualThis, int64_t nv_t,
|
|
int64_t v_t, bool VirtualResult, int64_t nv_r,
|
|
int64_t v_r, ASTContext &Context,
|
|
llvm::raw_ostream &os);
|
|
void mangleGuardVariable(const VarDecl *D, ASTContext &Context,
|
|
llvm::raw_ostream &os);
|
|
void mangleCXXVtable(QualType T, ASTContext &Context, llvm::raw_ostream &os);
|
|
void mangleCXXRtti(QualType T, ASTContext &Context, llvm::raw_ostream &os);
|
|
void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type,
|
|
ASTContext &Context, llvm::raw_ostream &os);
|
|
void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
|
|
ASTContext &Context, llvm::raw_ostream &os);
|
|
}
|
|
|
|
#endif
|