LLVM 19.0.0git
NativeEnumSymbols.cpp
Go to the documentation of this file.
1//==- NativeEnumSymbols.cpp - Native Symbol 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
10
16
17using namespace llvm;
18using namespace llvm::codeview;
19using namespace llvm::pdb;
20
22 std::vector<SymIndexId> Symbols)
23 : Symbols(std::move(Symbols)), Index(0), Session(PDBSession) {}
24
26 return static_cast<uint32_t>(Symbols.size());
27}
28
29std::unique_ptr<PDBSymbol>
31 if (N < Symbols.size()) {
32 return Session.getSymbolCache().getSymbolById(Symbols[N]);
33 }
34 return nullptr;
35}
36
37std::unique_ptr<PDBSymbol> NativeEnumSymbols::getNext() {
38 return getChildAtIndex(Index++);
39}
40
std::unique_ptr< PDBSymbol > getNext() override
uint32_t getChildCount() const override
NativeEnumSymbols(NativeSession &Session, std::vector< SymIndexId > Symbols)
std::unique_ptr< PDBSymbol > getChildAtIndex(uint32_t Index) const override
SymbolCache & getSymbolCache()
std::unique_ptr< PDBSymbol > getSymbolById(SymIndexId SymbolId) const
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1849
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
#define N