|
clang
3.8.0
|
MangleContext - Context for tracking state which persists across multiple calls to the C++ name mangler. More...
#include <Mangle.h>
Public Types | |
| enum | ManglerKind { MK_Itanium, MK_Microsoft } |
Public Member Functions | |
| ManglerKind | getKind () const |
| MangleContext (ASTContext &Context, DiagnosticsEngine &Diags, ManglerKind Kind) | |
| virtual | ~MangleContext () |
| ASTContext & | getASTContext () const |
| DiagnosticsEngine & | getDiags () const |
| virtual void | startNewFunction () |
| unsigned | getBlockId (const BlockDecl *BD, bool Local) |
| uint64_t | getAnonymousStructId (const TagDecl *TD) |
Mangler Entry Points | |
| bool | shouldMangleDeclName (const NamedDecl *D) |
| virtual bool | shouldMangleCXXName (const NamedDecl *D)=0 |
| virtual bool | shouldMangleStringLiteral (const StringLiteral *SL)=0 |
| void | mangleName (const NamedDecl *D, raw_ostream &) |
| virtual void | mangleCXXName (const NamedDecl *D, raw_ostream &)=0 |
| virtual void | mangleThunk (const CXXMethodDecl *MD, const ThunkInfo &Thunk, raw_ostream &)=0 |
| virtual void | mangleCXXDtorThunk (const CXXDestructorDecl *DD, CXXDtorType Type, const ThisAdjustment &ThisAdjustment, raw_ostream &)=0 |
| virtual void | mangleReferenceTemporary (const VarDecl *D, unsigned ManglingNumber, raw_ostream &)=0 |
| virtual void | mangleCXXRTTI (QualType T, raw_ostream &)=0 |
| virtual void | mangleCXXRTTIName (QualType T, raw_ostream &)=0 |
| virtual void | mangleCXXCtor (const CXXConstructorDecl *D, CXXCtorType Type, raw_ostream &)=0 |
| virtual void | mangleCXXDtor (const CXXDestructorDecl *D, CXXDtorType Type, raw_ostream &)=0 |
| virtual void | mangleStringLiteral (const StringLiteral *SL, raw_ostream &)=0 |
| void | mangleGlobalBlock (const BlockDecl *BD, const NamedDecl *ID, raw_ostream &Out) |
| void | mangleCtorBlock (const CXXConstructorDecl *CD, CXXCtorType CT, const BlockDecl *BD, raw_ostream &Out) |
| void | mangleDtorBlock (const CXXDestructorDecl *CD, CXXDtorType DT, const BlockDecl *BD, raw_ostream &Out) |
| void | mangleBlock (const DeclContext *DC, const BlockDecl *BD, raw_ostream &Out) |
| void | mangleObjCMethodName (const ObjCMethodDecl *MD, raw_ostream &) |
| virtual void | mangleStaticGuardVariable (const VarDecl *D, raw_ostream &)=0 |
| virtual void | mangleDynamicInitializer (const VarDecl *D, raw_ostream &)=0 |
| virtual void | mangleDynamicAtExitDestructor (const VarDecl *D, raw_ostream &)=0 |
| virtual void | mangleSEHFilterExpression (const NamedDecl *EnclosingDecl, raw_ostream &Out)=0 |
| virtual void | mangleSEHFinallyBlock (const NamedDecl *EnclosingDecl, raw_ostream &Out)=0 |
| virtual void | mangleTypeName (QualType T, raw_ostream &)=0 |
| Generates a unique string for an externally visible type for use with TBAA or type uniquing. More... | |
MangleContext - Context for tracking state which persists across multiple calls to the C++ name mangler.
|
inlineexplicit |
|
inlinevirtual |
|
inline |
Definition at line 83 of file Mangle.h.
References clang::Result.
|
inline |
Definition at line 69 of file Mangle.h.
Referenced by mangleName(), and shouldMangleDeclName().
Definition at line 75 of file Mangle.h.
References clang::Result.
Referenced by mangleBlock(), mangleFunctionBlock(), and mangleGlobalBlock().
|
inline |
|
inline |
Definition at line 60 of file Mangle.h.
Referenced by clang::ItaniumMangleContext::classof(), and clang::MicrosoftMangleContext::classof().
| void MangleContext::mangleBlock | ( | const DeclContext * | DC, |
| const BlockDecl * | BD, | ||
| raw_ostream & | Out | ||
| ) |
Definition at line 221 of file Mangle.cpp.
References Buffer, clang::Ctor_Complete, clang::Dtor_Complete, getBlockId(), clang::DeclContext::getParent(), mangleCtorBlock(), mangleDtorBlock(), mangleFunctionBlock(), mangleName(), mangleObjCMethodName(), and shouldMangleDeclName().
Referenced by clang::CodeGen::CodeGenModule::getBlockMangledName().
| void MangleContext::mangleCtorBlock | ( | const CXXConstructorDecl * | CD, |
| CXXCtorType | CT, | ||
| const BlockDecl * | BD, | ||
| raw_ostream & | Out | ||
| ) |
Definition at line 203 of file Mangle.cpp.
References Buffer, mangleCXXCtor(), and mangleFunctionBlock().
Referenced by clang::CodeGen::CodeGenModule::getBlockMangledName(), and mangleBlock().
|
pure virtual |
Referenced by clang::CodeGen::CodeGenModule::getMangledName(), and mangleCtorBlock().
|
pure virtual |
Referenced by clang::CodeGen::CodeGenModule::getMangledName(), and mangleDtorBlock().
|
pure virtual |
Referenced by clang::CodeGen::CodeGenModule::GetAddrOfThunk().
|
pure virtual |
Referenced by mangleName().
|
pure virtual |
|
pure virtual |
Referenced by getUniqueTagTypeName().
| void MangleContext::mangleDtorBlock | ( | const CXXDestructorDecl * | CD, |
| CXXDtorType | DT, | ||
| const BlockDecl * | BD, | ||
| raw_ostream & | Out | ||
| ) |
Definition at line 212 of file Mangle.cpp.
References Buffer, mangleCXXDtor(), and mangleFunctionBlock().
Referenced by clang::CodeGen::CodeGenModule::getBlockMangledName(), and mangleBlock().
|
pure virtual |
Referenced by clang::CodeGen::CodeGenFunction::createAtExitStub().
|
pure virtual |
| void MangleContext::mangleGlobalBlock | ( | const BlockDecl * | BD, |
| const NamedDecl * | ID, | ||
| raw_ostream & | Out | ||
| ) |
Definition at line 186 of file Mangle.cpp.
References getBlockId(), clang::NamedDecl::getIdentifier(), clang::IdentifierInfo::getName(), mangleName(), and shouldMangleDeclName().
Referenced by clang::CodeGen::CodeGenModule::getBlockMangledName().
| void MangleContext::mangleName | ( | const NamedDecl * | D, |
| raw_ostream & | Out | ||
| ) |
Definition at line 117 of file Mangle.cpp.
References clang::Type::castAs(), CCM_Fast, CCM_Other, CCM_Std, CCM_Vector, getASTContext(), clang::Decl::getAttr(), getCallingConvMangling(), clang::TargetInfo::getCXXABI(), clang::NamedDecl::getIdentifier(), clang::IdentifierInfo::getName(), clang::TargetInfo::getPointerWidth(), clang::ASTContext::getTargetInfo(), clang::ValueDecl::getType(), clang::ASTContext::getTypeSize(), clang::TargetInfo::getUserLabelPrefix(), mangleCXXName(), mangleObjCMethodName(), clang::TargetCXXABI::Microsoft, and shouldMangleCXXName().
Referenced by clang::CodeGen::CodeGenModule::getMangledName(), mangleBlock(), and mangleGlobalBlock().
| void MangleContext::mangleObjCMethodName | ( | const ObjCMethodDecl * | MD, |
| raw_ostream & | Out | ||
| ) |
Definition at line 257 of file Mangle.cpp.
References clang::Decl::getDeclContext(), clang::NamedDecl::getName(), clang::ObjCMethodDecl::getSelector(), clang::ObjCMethodDecl::isInstanceMethod(), clang::Name, and clang::Selector::print().
Referenced by mangleBlock(), and mangleName().
|
pure virtual |
Referenced by clang::CodeGen::CodeGenModule::GetAddrOfGlobalTemporary().
|
pure virtual |
Referenced by clang::CodeGen::CodeGenFunction::startOutlinedSEHHelper().
|
pure virtual |
Referenced by clang::CodeGen::CodeGenFunction::startOutlinedSEHHelper().
|
pure virtual |
|
pure virtual |
|
pure virtual |
Referenced by clang::CodeGen::CodeGenModule::GetAddrOfThunk().
|
pure virtual |
Generates a unique string for an externally visible type for use with TBAA or type uniquing.
TODO: Extend this to internal types by generating names that are unique across translation units so it can be used with LTO.
Referenced by clang::CodeGen::CodeGenModule::CreateMetadataIdentifierForType(), clang::CodeGen::CodeGenModule::EmitVTableBitSetEntries(), clang::CodeGen::CodeGenTBAA::getTBAAInfo(), and clang::CodeGen::CodeGenTBAA::getTBAAStructTypeInfo().
Referenced by mangleName(), and shouldMangleDeclName().
Definition at line 98 of file Mangle.cpp.
References CCM_Other, clang::frontend::CPlusPlus, getASTContext(), getCallingConvMangling(), clang::Decl::hasAttr(), clang::Decl::hasAttrs(), and shouldMangleCXXName().
Referenced by clang::CodeGen::CodeGenModule::getMangledName(), mangleBlock(), and mangleGlobalBlock().
|
pure virtual |
|
inlinevirtual |
Definition at line 73 of file Mangle.h.
Referenced by clang::CodeGen::CodeGenFunction::CodeGenFunction().
1.8.6