Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. //===- PDBSymbolTypeArray.h - array type information ------------*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8.  
  9. #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEARRAY_H
  10. #define LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEARRAY_H
  11.  
  12. #include "PDBSymbol.h"
  13. #include "PDBTypes.h"
  14.  
  15. namespace llvm {
  16.  
  17. namespace pdb {
  18.  
  19. class PDBSymbolTypeArray : public PDBSymbol {
  20.   DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::ArrayType)
  21. public:
  22.   void dump(PDBSymDumper &Dumper) const override;
  23.   void dumpRight(PDBSymDumper &Dumper) const override;
  24.  
  25.   FORWARD_SYMBOL_ID_METHOD(getArrayIndexType)
  26.   FORWARD_SYMBOL_METHOD(isConstType)
  27.   FORWARD_SYMBOL_METHOD(getCount)
  28.   FORWARD_SYMBOL_METHOD(getLength)
  29.   FORWARD_SYMBOL_ID_METHOD(getLexicalParent)
  30.   FORWARD_SYMBOL_METHOD(getRank)
  31.   FORWARD_SYMBOL_ID_METHOD_WITH_NAME(getType, getElementType)
  32.   FORWARD_SYMBOL_METHOD(isUnalignedType)
  33.   FORWARD_SYMBOL_METHOD(isVolatileType)
  34. };
  35.  
  36. } // namespace pdb
  37. } // namespace llvm
  38.  
  39. #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLTYPEARRAY_H
  40.