LLVM  3.7.0
PDBSymbolTypeArray.h
Go to the documentation of this file.
1 //===- PDBSymbolTypeArray.h - array type information ------------*- 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_PDBSYMBOLTYPEARRAY_H
11 #define LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEARRAY_H
12 
13 #include "PDBSymbol.h"
14 #include "PDBTypes.h"
15 
16 namespace llvm {
17 
18 class raw_ostream;
19 
20 class PDBSymbolTypeArray : public PDBSymbol {
21 public:
22  PDBSymbolTypeArray(const IPDBSession &PDBSession,
23  std::unique_ptr<IPDBRawSymbol> ArrayTypeSymbol);
24 
26 
27  std::unique_ptr<PDBSymbol> getElementType() const;
28 
29  void dump(PDBSymDumper &Dumper) const override;
30 
31  FORWARD_SYMBOL_METHOD(getArrayIndexTypeId)
32  FORWARD_SYMBOL_METHOD(isConstType)
33  FORWARD_SYMBOL_METHOD(getCount)
34  FORWARD_SYMBOL_METHOD(getLength)
35  FORWARD_SYMBOL_METHOD(getLexicalParentId)
36  FORWARD_SYMBOL_METHOD(getRank)
37  FORWARD_SYMBOL_METHOD(getSymIndexId)
38  FORWARD_SYMBOL_METHOD(getTypeId)
39  FORWARD_SYMBOL_METHOD(isUnalignedType)
40  FORWARD_SYMBOL_METHOD(isVolatileType)
41 };
42 
43 } // namespace llvm
44 
45 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEARRAY_H
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:32
std::unique_ptr< PDBSymbol > getElementType() const
PDBSymbolTypeArray(const IPDBSession &PDBSession, std::unique_ptr< IPDBRawSymbol > ArrayTypeSymbol)
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:22
PDBSymbol defines the base of the inheritance hierarchy for concrete symbol types (e...
Definition: PDBSymbol.h:42
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
IPDBSession defines an interface used to provide a context for querying debug information from a debu...
Definition: IPDBSession.h:24