LLVM  8.0.1
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 
23 public:
24  std::unique_ptr<IPDBEnumSymbols> getArguments() const;
25 
26  void dump(PDBSymDumper &Dumper) const override;
27  void dumpRight(PDBSymDumper &Dumper) const override;
28  void dumpArgList(raw_ostream &OS) const;
29 
30  bool isCVarArgs() const;
31 
33  FORWARD_SYMBOL_ID_METHOD(getClassParent)
34  FORWARD_SYMBOL_ID_METHOD(getUnmodifiedType)
35  FORWARD_SYMBOL_METHOD(isConstType)
36  FORWARD_SYMBOL_METHOD(getCount)
37  FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
38  // FORWARD_SYMBOL_METHOD(getObjectPointerType)
39  FORWARD_SYMBOL_METHOD(getThisAdjust)
41  FORWARD_SYMBOL_METHOD(isUnalignedType)
42  FORWARD_SYMBOL_METHOD(isVolatileType)
43 };
44 
45 } // namespace llvm
46 }
47 
48 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEFUNCTIONSIG_H
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:51
void dumpArgList(raw_ostream &OS) const
This class represents lattice values for constants.
Definition: AllocatorList.h:24
void dumpRight(PDBSymDumper &Dumper) const override
For certain PDBSymbolTypes, dumps additional information for the type that normally goes on the right...
std::unique_ptr< IPDBEnumSymbols > getArguments() 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:377
static wasm::ValType getType(const TargetRegisterClass *RC)
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:74
#define FORWARD_SYMBOL_ID_METHOD(MethodName)
Definition: PDBSymbol.h:39
#define FORWARD_SYMBOL_ID_METHOD_WITH_NAME(PrivateName, PublicName)
Definition: PDBSymbol.h:35
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46