LLVM 19.0.0git
NativeEnumTypes.h
Go to the documentation of this file.
1//==- NativeEnumTypes.h - Native Type Enumerator impl ------------*- 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_NATIVEENUMTYPES_H
10#define LLVM_DEBUGINFO_PDB_NATIVE_NATIVEENUMTYPES_H
11
16
17#include <vector>
18
19namespace llvm {
20namespace codeview {
21class LazyRandomTypeCollection;
22}
23namespace pdb {
24
25class NativeSession;
26
27class NativeEnumTypes : public IPDBEnumChildren<PDBSymbol> {
28public:
31 std::vector<codeview::TypeLeafKind> Kinds);
32
34 std::vector<codeview::TypeIndex> Indices);
35
36 uint32_t getChildCount() const override;
37 std::unique_ptr<PDBSymbol> getChildAtIndex(uint32_t Index) const override;
38 std::unique_ptr<PDBSymbol> getNext() override;
39 void reset() override;
40
41private:
42 std::vector<codeview::TypeIndex> Matches;
44 NativeSession &Session;
45};
46
47} // namespace pdb
48} // namespace llvm
49
50#endif
Provides amortized O(1) random access to a CodeView type stream.
std::unique_ptr< PDBSymbol > getChildAtIndex(uint32_t Index) const override
uint32_t getChildCount() const override
std::unique_ptr< PDBSymbol > getNext() override
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18