PDBSymbolCustom.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #pragma once
  2. #ifdef __GNUC__
  3. #pragma GCC diagnostic push
  4. #pragma GCC diagnostic ignored "-Wunused-parameter"
  5. #endif
  6. //===- PDBSymbolCustom.h - compiler-specific types --------------*- C++ -*-===//
  7. //
  8. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  9. // See https://llvm.org/LICENSE.txt for license information.
  10. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #ifndef LLVM_DEBUGINFO_PDB_PDBSYMBOLCUSTOM_H
  14. #define LLVM_DEBUGINFO_PDB_PDBSYMBOLCUSTOM_H
  15. #include "PDBSymbol.h"
  16. #include "PDBTypes.h"
  17. #include "llvm/ADT/SmallVector.h"
  18. namespace llvm {
  19. class raw_ostream;
  20. namespace pdb {
  21. /// PDBSymbolCustom represents symbols that are compiler-specific and do not
  22. /// fit anywhere else in the lexical hierarchy.
  23. /// https://msdn.microsoft.com/en-us/library/d88sf09h.aspx
  24. class PDBSymbolCustom : public PDBSymbol {
  25. DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Custom)
  26. public:
  27. void dump(PDBSymDumper &Dumper) const override;
  28. void getDataBytes(llvm::SmallVector<uint8_t, 32> &bytes);
  29. };
  30. } // namespace llvm
  31. }
  32. #endif // LLVM_DEBUGINFO_PDB_PDBSYMBOLCUSTOM_H
  33. #ifdef __GNUC__
  34. #pragma GCC diagnostic pop
  35. #endif