1 //==- NativeEnumModules.cpp - Native Symbol Enumerator impl ------*- C++ -*-==//
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
7 //===----------------------------------------------------------------------===//
9 #include "llvm/DebugInfo/PDB/Native/NativeEnumModules.h"
11 #include "llvm/DebugInfo/PDB/IPDBEnumChildren.h"
12 #include "llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h"
13 #include "llvm/DebugInfo/PDB/Native/NativeExeSymbol.h"
14 #include "llvm/DebugInfo/PDB/Native/NativeSession.h"
15 #include "llvm/DebugInfo/PDB/PDBSymbol.h"
16 #include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"
17 #include "llvm/DebugInfo/PDB/PDBSymbolExe.h"
22 NativeEnumModules::NativeEnumModules(NativeSession
&PDBSession
, uint32_t Index
)
23 : Session(PDBSession
), Index(Index
) {}
25 uint32_t NativeEnumModules::getChildCount() const {
26 return Session
.getSymbolCache().getNumCompilands();
29 std::unique_ptr
<PDBSymbol
>
30 NativeEnumModules::getChildAtIndex(uint32_t N
) const {
31 return Session
.getSymbolCache().getOrCreateCompiland(N
);
34 std::unique_ptr
<PDBSymbol
> NativeEnumModules::getNext() {
35 if (Index
>= getChildCount())
37 return getChildAtIndex(Index
++);
40 void NativeEnumModules::reset() { Index
= 0; }