LLVM  8.0.1
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 namespace pdb {
20 
21 class PDBSymbolTypeArray : public PDBSymbol {
23 public:
24  void dump(PDBSymDumper &Dumper) const override;
25  void dumpRight(PDBSymDumper &Dumper) const override;
26 
27  FORWARD_SYMBOL_ID_METHOD(getArrayIndexType)
28  FORWARD_SYMBOL_METHOD(isConstType)
29  FORWARD_SYMBOL_METHOD(getCount)
30  FORWARD_SYMBOL_METHOD(getLength)
31  FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
32  FORWARD_SYMBOL_METHOD(getRank)
34  FORWARD_SYMBOL_METHOD(isUnalignedType)
35  FORWARD_SYMBOL_METHOD(isVolatileType)
36 };
37 
38 } // namespace llvm
39 }
40 
41 #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEARRAY_H
#define DECLARE_PDB_SYMBOL_CONCRETE_TYPE(TagValue)
Definition: PDBSymbol.h:51
This class represents lattice values for constants.
Definition: AllocatorList.h:24
#define FORWARD_SYMBOL_METHOD(MethodName)
Definition: PDBSymbol.h:20
void dump(PDBSymDumper &Dumper) const override
Dumps the contents of a symbol a raw_ostream.
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
void dumpRight(PDBSymDumper &Dumper) const override
For certain PDBSymbolTypes, dumps additional information for the type that normally goes on the right...