LLVM 19.0.0git
NativeEnumInjectedSources.h
Go to the documentation of this file.
1//==- NativeEnumInjectedSources.cpp - Native Injected Source Enumerator --*-==//
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_NATIVEENUMINJECTEDSOURCES_H
10#define LLVM_DEBUGINFO_PDB_NATIVE_NATIVEENUMINJECTEDSOURCES_H
11
15
16namespace llvm {
17namespace pdb {
18
19class InjectedSourceStream;
20class PDBFile;
21class PDBStringTable;
22
23class NativeEnumInjectedSources : public IPDBEnumChildren<IPDBInjectedSource> {
24public:
26 const PDBStringTable &Strings);
27
28 uint32_t getChildCount() const override;
29 std::unique_ptr<IPDBInjectedSource>
30 getChildAtIndex(uint32_t Index) const override;
31 std::unique_ptr<IPDBInjectedSource> getNext() override;
32 void reset() override;
33
34private:
35 PDBFile &File;
36 const InjectedSourceStream &Stream;
37 const PDBStringTable &Strings;
39};
40
41} // namespace pdb
42} // namespace llvm
43
44#endif
HashTable< SrcHeaderBlockEntry >::const_iterator const_iterator
std::unique_ptr< IPDBInjectedSource > getChildAtIndex(uint32_t Index) const override
std::unique_ptr< IPDBInjectedSource > getNext() override
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18