blob: 8268aa2869d06f651b06a72fb05ee9e981a7da24 [file] [log] [blame]
Douglas Gregor6ec36682009-02-18 23:53:56 +00001//===--- Mangle.h - Mangle C++ Names ----------------------------*- C++ -*-===//
Douglas Gregor5f2bfd42009-02-13 00:10:09 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Implements C++ name mangling according to the Itanium C++ ABI,
11// which is used in GCC 3.2 and newer (and many compilers that are
12// ABI-compatible with GCC):
13//
14// http://www.codesourcery.com/public/cxx-abi/abi.html
15//
16//===----------------------------------------------------------------------===//
Chris Lattnerca3f25c2009-03-21 08:24:40 +000017
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000018#ifndef LLVM_CLANG_CODEGEN_MANGLE_H
19#define LLVM_CLANG_CODEGEN_MANGLE_H
20
Anders Carlsson3ac86b52009-04-15 05:36:58 +000021#include "CGCXX.h"
Mike Stumpf1216772009-07-31 18:25:34 +000022#include "clang/AST/Type.h"
Anders Carlssonc4355b62009-10-07 01:45:02 +000023#include "llvm/ADT/DenseMap.h"
Anders Carlsson3ac86b52009-04-15 05:36:58 +000024
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000025namespace llvm {
Daniel Dunbar1b077112009-11-21 09:06:10 +000026class raw_ostream;
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000027}
28
29namespace clang {
Daniel Dunbar1b077112009-11-21 09:06:10 +000030class ASTContext;
31class CXXConstructorDecl;
32class CXXDestructorDecl;
33class FunctionDecl;
34class NamedDecl;
35class VarDecl;
Mike Stump1eb44332009-09-09 15:08:12 +000036
Daniel Dunbar1b077112009-11-21 09:06:10 +000037/// MangleContext - Context for tracking state which persists across multiple
38/// calls to the C++ name mangler.
39class MangleContext {
40 ASTContext &Context;
Anders Carlssonc4355b62009-10-07 01:45:02 +000041
Daniel Dunbar1b077112009-11-21 09:06:10 +000042 llvm::DenseMap<const TagDecl *, uint64_t> AnonStructIds;
43
44public:
45 explicit MangleContext(ASTContext &Context)
Anders Carlssonb5404912009-10-07 01:06:45 +000046 : Context(Context) { }
Anders Carlssonb5404912009-10-07 01:06:45 +000047
Daniel Dunbar1b077112009-11-21 09:06:10 +000048 ASTContext &getASTContext() const { return Context; }
49
50 uint64_t getAnonymousStructId(const TagDecl *TD) {
51 std::pair<llvm::DenseMap<const TagDecl *,
52 uint64_t>::iterator, bool> Result =
53 AnonStructIds.insert(std::make_pair(TD, AnonStructIds.size()));
54 return Result.first->second;
55 }
56
57 /// @name Mangler Entry Points
58 /// @{
59
60 bool mangleName(const NamedDecl *D, llvm::raw_ostream &os);
61 void mangleThunk(const FunctionDecl *FD, int64_t n, int64_t vn,
62 llvm::raw_ostream &os);
63 void mangleCovariantThunk(const FunctionDecl *FD, int64_t nv_t, int64_t v_t,
64 int64_t nv_r, int64_t v_r, llvm::raw_ostream &os);
65 void mangleGuardVariable(const VarDecl *D, llvm::raw_ostream &os);
66 void mangleCXXVtable(const CXXRecordDecl *RD, llvm::raw_ostream &os);
67 void mangleCXXVTT(const CXXRecordDecl *RD, llvm::raw_ostream &os);
68 void mangleCXXCtorVtable(const CXXRecordDecl *RD, int64_t Offset,
69 const CXXRecordDecl *Type, llvm::raw_ostream &os);
70 void mangleCXXRtti(QualType T, llvm::raw_ostream &os);
71 void mangleCXXRttiName(QualType T, llvm::raw_ostream &os);
72 void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type,
Anders Carlssonfc3bf4d2009-10-11 21:24:51 +000073 llvm::raw_ostream &os);
Daniel Dunbar1b077112009-11-21 09:06:10 +000074 void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
75 llvm::raw_ostream &os);
76
77 /// @}
78};
Douglas Gregor5f2bfd42009-02-13 00:10:09 +000079}
80
Mike Stump1eb44332009-09-09 15:08:12 +000081#endif