LLVM  8.0.1
NativeTypeArray.h
Go to the documentation of this file.
1 //===- NativeTypeArray.h ------------------------------------------ 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_NATIVE_NATIVETYPEARRAY_H
11 #define LLVM_DEBUGINFO_PDB_NATIVE_NATIVETYPEARRAY_H
12 
14 
17 
18 namespace llvm {
19 namespace pdb {
20 
21 class NativeSession;
22 
24 public:
27  ~NativeTypeArray() override;
28 
29  void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields,
30  PdbSymbolIdField RecurseIdFields) const override;
31 
32  SymIndexId getArrayIndexTypeId() const override;
33 
34  bool isConstType() const override;
35  bool isUnalignedType() const override;
36  bool isVolatileType() const override;
37 
38  uint32_t getCount() const override;
39  SymIndexId getTypeId() const override;
40  uint64_t getLength() const override;
41 
42 protected:
45 };
46 
47 } // namespace pdb
48 } // namespace llvm
49 
50 #endif
void dump(raw_ostream &OS, int Indent, PdbSymbolIdField ShowIdFields, PdbSymbolIdField RecurseIdFields) const override
This class represents lattice values for constants.
Definition: AllocatorList.h:24
SymIndexId getTypeId() const override
bool isVolatileType() const override
NativeTypeArray(NativeSession &Session, SymIndexId Id, codeview::TypeIndex TI, codeview::ArrayRecord Record)
codeview::TypeIndex Index
uint64_t getLength() const override
A 32-bit type reference.
Definition: TypeIndex.h:96
bool isUnalignedType() const override
uint32_t getCount() const override
codeview::ArrayRecord Record
SymIndexId getArrayIndexTypeId() const override
Definition: JSON.cpp:598
bool isConstType() const override
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46