mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-01 11:43:41 +00:00
71 lines
2.1 KiB
C++
71 lines
2.1 KiB
C++
// Copyright 2011-2022, Molecular Matters GmbH <office@molecular-matters.com>
|
|
// See LICENSE.txt for licensing details (2-clause BSD License: https://opensource.org/licenses/BSD-2-Clause)
|
|
|
|
#pragma once
|
|
|
|
#include "Foundation/PDB_Macros.h"
|
|
#include "Foundation/PDB_BitUtil.h"
|
|
#include "PDB_DBITypes.h"
|
|
#include "PDB_Util.h"
|
|
#include "PDB_CoalescedMSFStream.h"
|
|
|
|
|
|
namespace PDB
|
|
{
|
|
class RawFile;
|
|
|
|
|
|
class PDB_NO_DISCARD ModuleSymbolStream
|
|
{
|
|
public:
|
|
ModuleSymbolStream(void) PDB_NO_EXCEPT;
|
|
explicit ModuleSymbolStream(const RawFile& file, uint16_t streamIndex, uint32_t symbolStreamSize) PDB_NO_EXCEPT;
|
|
|
|
PDB_DEFAULT_MOVE(ModuleSymbolStream);
|
|
|
|
// Returns a record's parent record.
|
|
template <typename T>
|
|
PDB_NO_DISCARD inline const CodeView::DBI::Record* GetParentRecord(const T& record) const PDB_NO_EXCEPT
|
|
{
|
|
return m_stream.GetDataAtOffset<const CodeView::DBI::Record>(record.parent);
|
|
}
|
|
|
|
// Returns a record's end record.
|
|
template <typename T>
|
|
PDB_NO_DISCARD inline const CodeView::DBI::Record* GetEndRecord(const T& record) const PDB_NO_EXCEPT
|
|
{
|
|
return m_stream.GetDataAtOffset<const CodeView::DBI::Record>(record.end);
|
|
}
|
|
|
|
// Finds a record of a certain kind.
|
|
PDB_NO_DISCARD const CodeView::DBI::Record* FindRecord(CodeView::DBI::SymbolRecordKind Kind) const PDB_NO_EXCEPT;
|
|
|
|
|
|
// Iterates all records in the stream.
|
|
template <typename F>
|
|
void ForEachSymbol(F&& functor) const PDB_NO_EXCEPT
|
|
{
|
|
// ignore the stream's 4-byte signature
|
|
size_t offset = sizeof(uint32_t);
|
|
|
|
// parse the CodeView records
|
|
while (offset < m_stream.GetSize())
|
|
{
|
|
// https://llvm.org/docs/PDB/CodeViewTypes.html
|
|
const CodeView::DBI::Record* record = m_stream.GetDataAtOffset<const CodeView::DBI::Record>(offset);
|
|
const uint32_t recordSize = GetCodeViewRecordSize(record);
|
|
|
|
functor(record);
|
|
|
|
// position the module stream offset at the next record
|
|
offset = BitUtil::RoundUpToMultiple<size_t>(offset + sizeof(CodeView::DBI::RecordHeader) + recordSize, 4u);
|
|
}
|
|
}
|
|
|
|
private:
|
|
CoalescedMSFStream m_stream;
|
|
|
|
PDB_DISABLE_COPY(ModuleSymbolStream);
|
|
};
|
|
}
|