Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | //===- EnumTables.h - Enum to string conversion tables ----------*- C++ -*-===// |
| 2 | // |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame^] | 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 |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_DEBUGINFO_CODEVIEW_ENUMTABLES_H |
| 10 | #define LLVM_DEBUGINFO_CODEVIEW_ENUMTABLES_H |
| 11 | |
| 12 | #include "llvm/ADT/ArrayRef.h" |
| 13 | #include "llvm/BinaryFormat/COFF.h" |
| 14 | #include "llvm/DebugInfo/CodeView/CodeView.h" |
| 15 | #include "llvm/Support/ScopedPrinter.h" |
| 16 | #include <cstdint> |
| 17 | |
| 18 | namespace llvm { |
| 19 | namespace codeview { |
| 20 | |
| 21 | ArrayRef<EnumEntry<SymbolKind>> getSymbolTypeNames(); |
| 22 | ArrayRef<EnumEntry<TypeLeafKind>> getTypeLeafNames(); |
| 23 | ArrayRef<EnumEntry<uint16_t>> getRegisterNames(); |
| 24 | ArrayRef<EnumEntry<uint32_t>> getPublicSymFlagNames(); |
| 25 | ArrayRef<EnumEntry<uint8_t>> getProcSymFlagNames(); |
| 26 | ArrayRef<EnumEntry<uint16_t>> getLocalFlagNames(); |
| 27 | ArrayRef<EnumEntry<uint8_t>> getFrameCookieKindNames(); |
| 28 | ArrayRef<EnumEntry<SourceLanguage>> getSourceLanguageNames(); |
| 29 | ArrayRef<EnumEntry<uint32_t>> getCompileSym2FlagNames(); |
| 30 | ArrayRef<EnumEntry<uint32_t>> getCompileSym3FlagNames(); |
| 31 | ArrayRef<EnumEntry<uint32_t>> getFileChecksumNames(); |
| 32 | ArrayRef<EnumEntry<unsigned>> getCPUTypeNames(); |
| 33 | ArrayRef<EnumEntry<uint32_t>> getFrameProcSymFlagNames(); |
| 34 | ArrayRef<EnumEntry<uint16_t>> getExportSymFlagNames(); |
| 35 | ArrayRef<EnumEntry<uint32_t>> getModuleSubstreamKindNames(); |
| 36 | ArrayRef<EnumEntry<uint8_t>> getThunkOrdinalNames(); |
| 37 | ArrayRef<EnumEntry<uint16_t>> getTrampolineNames(); |
| 38 | ArrayRef<EnumEntry<COFF::SectionCharacteristics>> |
| 39 | getImageSectionCharacteristicNames(); |
| 40 | |
| 41 | } // end namespace codeview |
| 42 | } // end namespace llvm |
| 43 | |
| 44 | #endif // LLVM_DEBUGINFO_CODEVIEW_ENUMTABLES_H |