LLVM  4.0.0
PDBSymbolTypeFunctionSig.h
Go to the documentation of this file.
1 //===- PDBSymbolTypeFunctionSig.h - function signature type info *- C++ -*-===//
2 //
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 #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEFUNCTIONSIG_H
11 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEFUNCTIONSIG_H
12 
13 #include "PDBSymbol.h"
14 #include "PDBTypes.h"
15 
16 namespace llvm {
17 
18 class raw_ostream;
19 namespace pdb {
20 
22 public:
23  PDBSymbolTypeFunctionSig(const IPDBSession &PDBSession,
24  std::unique_ptr<IPDBRawSymbol> Symbol);
25 
27 
28  std::unique_ptr<PDBSymbol> getReturnType() const;
29  std::unique_ptr<IPDBEnumSymbols> getArguments() const;
30  std::unique_ptr<PDBSymbol> getClassParent() const;
31 
32  void dump(PDBSymDumper &Dumper) const override;
33  void dumpArgList(raw_ostream &OS) const;
34 
36  FORWARD_SYMBOL_METHOD(getClassParentId)
37  FORWARD_SYMBOL_METHOD(getUnmodifiedTypeId)
38  FORWARD_SYMBOL_METHOD(isConstType)
39  FORWARD_SYMBOL_METHOD(getCount)
40  FORWARD_SYMBOL_METHOD(getLexicalParentId)
41  // FORWARD_SYMBOL_METHOD(getObjectPointerType)
42  FORWARD_SYMBOL_METHOD(getThisAdjust)
43  FORWARD_SYMBOL_METHOD(getTypeId)
44  FORWARD_SYMBOL_METHOD(isUnalignedType)
45  FORWARD_SYMBOL_METHOD(isVolatileType)
46 };
47 
48 } // namespace llvm
49 }
50 
51 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEFUNCTIONSIG_H
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
Definition: IPDBSession.h:25
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:33
PDBSymbolTypeFunctionSig(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > Symbol)
std::unique_ptr< PDBSymbol > getClassParent() const
void dumpArgList(raw_ostream &OS) const
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:20
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
unsigned getCallingConvention(StringRef LanguageString)
Definition: Dwarf.cpp:207
std::unique_ptr< IPDBEnumSymbols > getArguments() const
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:43
std::unique_ptr< PDBSymbol > getReturnType() const
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:44