[ARM] Split large truncating MVE stores
[llvm-complete.git] / lib / DebugInfo / PDB / Native / NativeEnumModules.cpp
blobc6621924b5160b5403052eb5d56304bb88dfd310
1 //==- NativeEnumModules.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 //===----------------------------------------------------------------------===//
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"
19 namespace llvm {
20 namespace pdb {
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())
36 return nullptr;
37 return getChildAtIndex(Index++);
40 void NativeEnumModules::reset() { Index = 0; }