mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 13:51:39 +00:00
Add documentation for the PDB Module Info stream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288205 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
10e4110233
commit
29916a15c8
4
docs/PDB/CodeViewSymbols.rst
Normal file
4
docs/PDB/CodeViewSymbols.rst
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
=====================================
|
||||||
|
CodeView Symbol Records
|
||||||
|
=====================================
|
||||||
|
|
4
docs/PDB/CodeViewTypes.rst
Normal file
4
docs/PDB/CodeViewTypes.rst
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
=====================================
|
||||||
|
CodeView Type Records
|
||||||
|
=====================================
|
||||||
|
|
@ -1,3 +1,80 @@
|
|||||||
=====================================
|
=====================================
|
||||||
The Module Information Stream
|
The Module Information Stream
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
|
.. contents::
|
||||||
|
:local:
|
||||||
|
|
||||||
|
.. _modi_stream_intro:
|
||||||
|
|
||||||
|
Introduction
|
||||||
|
============
|
||||||
|
|
||||||
|
The Module Info Stream (henceforth referred to as the Modi stream) contains
|
||||||
|
information about a single module (object file, import library, etc that
|
||||||
|
contributes to the binary this PDB contains debug information about. There
|
||||||
|
is one modi stream for each module, and the mapping between modi stream index
|
||||||
|
and module is contained in the :doc:`DBI Stream <DbiStream>`. The modi stream
|
||||||
|
for a single module contains line information for the compiland, as well as
|
||||||
|
all CodeView information for the symbols defined in the compiland. Finally,
|
||||||
|
there is a "global refs" substream which is not well understood.
|
||||||
|
|
||||||
|
.. _modi_stream_layout:
|
||||||
|
|
||||||
|
Stream Layout
|
||||||
|
=============
|
||||||
|
|
||||||
|
A modi stream is laid out as follows:
|
||||||
|
|
||||||
|
|
||||||
|
.. code-block:: c++
|
||||||
|
|
||||||
|
struct ModiStream {
|
||||||
|
uint32_t Signature;
|
||||||
|
uint8_t Symbols[SymbolSize-4];
|
||||||
|
uint8_t C11LineInfo[C11Size];
|
||||||
|
uint8_t C13LineInfo[C13Size];
|
||||||
|
|
||||||
|
uint32_t GlobalRefsSize;
|
||||||
|
uint8_t GlobalRefs[GlobalRefsSize];
|
||||||
|
};
|
||||||
|
|
||||||
|
- **Signature** - Unknown. In practice only the value of ``4`` has been
|
||||||
|
observed. It is hypothesized that this value corresponds to the set of
|
||||||
|
``CV_SIGNATURE_xx`` defines in ``cvinfo.h``, with the value of ``4``
|
||||||
|
meaning that this module has C13 line information (as opposed to C11 line
|
||||||
|
information). A corollary of this is that we expect to only ever see
|
||||||
|
C13 line info, and that we do not understand the format of C11 line info.
|
||||||
|
|
||||||
|
- **Symbols** - The :ref:`CodeView Symbol Substream <modi_symbol_substream>`.
|
||||||
|
``SymbolSize`` is equal to the value of ``SymByteSize`` for the
|
||||||
|
corresponding module's entry in the :ref:`Module Info Substream <dbi_mod_info_substream>`
|
||||||
|
of the :doc:`DBI Stream <DbiStream>`.
|
||||||
|
|
||||||
|
- **C11LineInfo** - A block containing CodeView line information in C11
|
||||||
|
format. ``C11Size`` is equal to the value of ``C11ByteSize`` from the
|
||||||
|
:ref:`Module Info Substream <dbi_mod_info_substream>` of the
|
||||||
|
:doc:`DBI Stream <DbiStream>`. If this value is ``0``, then C11 line
|
||||||
|
information is not present. As mentioned previously, the format of
|
||||||
|
C11 line info is not understood and we assume all line in modern PDBs
|
||||||
|
to be in C13 format.
|
||||||
|
|
||||||
|
- **C13LineInfo** - A block containing CodeView line information in C13
|
||||||
|
format. ``C13Size`` is equal to the value of ``C13ByteSize`` from the
|
||||||
|
:ref:`Module Info Substream <dbi_mod_info_substream>` of the
|
||||||
|
:doc:`DBI Stream <DbiStream>`. If this value is ``0``, then C13 line
|
||||||
|
information is not present.
|
||||||
|
|
||||||
|
- **GlobalRefs** - The meaning of this substream is not understood.
|
||||||
|
|
||||||
|
.. _modi_symbol_substream:
|
||||||
|
|
||||||
|
The CodeView Symbol Substream
|
||||||
|
=============================
|
||||||
|
|
||||||
|
The CodeView Symbol Substream. This is an array of variable length
|
||||||
|
records describing the functions, variables, inlining information,
|
||||||
|
and other symbols defined in the compiland. The entire array consumes
|
||||||
|
``SymbolSize-4`` bytes. The format of a CodeView Symbol Record (and
|
||||||
|
thusly, an array of CodeView Symbol Records) is described in
|
||||||
|
:doc:`CodeViewSymbols`.
|
||||||
|
@ -53,6 +53,8 @@ File Layout
|
|||||||
PublicStream
|
PublicStream
|
||||||
GlobalStream
|
GlobalStream
|
||||||
HashStream
|
HashStream
|
||||||
|
CodeViewSymbols
|
||||||
|
CodeViewTypes
|
||||||
|
|
||||||
.. _msf:
|
.. _msf:
|
||||||
|
|
||||||
@ -161,5 +163,5 @@ CodeView is another format which comes into the picture. While MSF defines
|
|||||||
the structure of the overall file, and PDB defines the set of streams that
|
the structure of the overall file, and PDB defines the set of streams that
|
||||||
appear within the MSF file and the format of those streams, CodeView defines
|
appear within the MSF file and the format of those streams, CodeView defines
|
||||||
the format of **symbol and type records** that appear within specific streams.
|
the format of **symbol and type records** that appear within specific streams.
|
||||||
Refer to the pages on `CodeView Symbol Records` and `CodeView Type Records` for
|
Refer to the pages on :doc:`CodeViewSymbols` and :doc:`CodeViewTypes` for
|
||||||
more information about the CodeView format.
|
more information about the CodeView format.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user