Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

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

  1. //===- NativeTypeEnum.h - info about enum type ------------------*- 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_NATIVE_NATIVETYPEENUM_H
  10. #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVETYPEENUM_H
  11.  
  12. #include "llvm/DebugInfo/CodeView/TypeIndex.h"
  13. #include "llvm/DebugInfo/CodeView/TypeRecord.h"
  14. #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
  15. #include "llvm/DebugInfo/PDB/Native/NativeRawSymbol.h"
  16. #include "llvm/DebugInfo/PDB/PDBTypes.h"
  17.  
  18. namespace llvm {
  19. class raw_ostream;
  20. namespace pdb {
  21.  
  22. class NativeTypeBuiltin;
  23.  
  24. class NativeTypeEnum : public NativeRawSymbol {
  25. public:
  26.   NativeTypeEnum(NativeSession &Session, SymIndexId Id, codeview::TypeIndex TI,
  27.                  codeview::EnumRecord Record);
  28.  
  29.   NativeTypeEnum(NativeSession &Session, SymIndexId Id,
  30.                  NativeTypeEnum &UnmodifiedType,
  31.                  codeview::ModifierRecord Modifier);
  32.   ~NativeTypeEnum() override;
  33.  
  34.   void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
  35.             PdbSymbolIdField RecurseIdFields) const override;
  36.  
  37.   std::unique_ptr<IPDBEnumSymbols>
  38.   findChildren(PDB_SymType Type) const override;
  39.  
  40.   PDB_BuiltinType getBuiltinType() const override;
  41.   PDB_SymType getSymTag() const override;
  42.   SymIndexId getUnmodifiedTypeId() const override;
  43.   bool hasConstructor() const override;
  44.   bool hasAssignmentOperator() const override;
  45.   bool hasCastOperator() const override;
  46.   uint64_t getLength() const override;
  47.   std::string getName() const override;
  48.   bool isConstType() const override;
  49.   bool isVolatileType() const override;
  50.   bool isUnalignedType() const override;
  51.   bool isNested() const override;
  52.   bool hasOverloadedOperator() const override;
  53.   bool hasNestedTypes() const override;
  54.   bool isIntrinsic() const override;
  55.   bool isPacked() const override;
  56.   bool isScoped() const override;
  57.   SymIndexId getTypeId() const override;
  58.   bool isRefUdt() const override;
  59.   bool isValueUdt() const override;
  60.   bool isInterfaceUdt() const override;
  61.  
  62.   const NativeTypeBuiltin &getUnderlyingBuiltinType() const;
  63.   const codeview::EnumRecord &getEnumRecord() const { return *Record; }
  64.  
  65. protected:
  66.   codeview::TypeIndex Index;
  67.   std::optional<codeview::EnumRecord> Record;
  68.   NativeTypeEnum *UnmodifiedType = nullptr;
  69.   std::optional<codeview::ModifierRecord> Modifiers;
  70. };
  71.  
  72. } // namespace pdb
  73. } // namespace llvm
  74.  
  75. #endif // LLVM_DEBUGINFO_PDB_NATIVE_NATIVETYPEENUM_H
  76.