[RISCV] Refactor predicates for rvv intrinsic patterns.
[llvm-project.git] / llvm / lib / DebugInfo / PDB / Native / NativeEnumModules.cpp
blob7108b8efff83117050eaf005802e23afa293d97c
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/Native/NativeSession.h"
12 #include "llvm/DebugInfo/PDB/Native/SymbolCache.h"
13 #include "llvm/DebugInfo/PDB/PDBSymbol.h"
14 #include "llvm/DebugInfo/PDB/PDBSymbolCompiland.h"
16 namespace llvm {
17 namespace pdb {
19 NativeEnumModules::NativeEnumModules(NativeSession &PDBSession, uint32_t Index)
20 : Session(PDBSession), Index(Index) {}
22 uint32_t NativeEnumModules::getChildCount() const {
23 return Session.getSymbolCache().getNumCompilands();
26 std::unique_ptr<PDBSymbol>
27 NativeEnumModules::getChildAtIndex(uint32_t N) const {
28 return Session.getSymbolCache().getOrCreateCompiland(N);
31 std::unique_ptr<PDBSymbol> NativeEnumModules::getNext() {
32 if (Index >= getChildCount())
33 return nullptr;
34 return getChildAtIndex(Index++);
37 void NativeEnumModules::reset() { Index = 0; }