Merge branch 'feature/coredump_data_in_elf_format_doc_update' into 'master'

espcoredump: apply documentation changes in core_dump.rst file

See merge request espressif/esp-idf!5697
This commit is contained in:
Krzysztof Budzynski 2020-05-28 02:25:47 +08:00
commit 95ed99671b
6 changed files with 43 additions and 0 deletions

BIN
docs/_static/core_dump_format_bin.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

BIN
docs/_static/core_dump_format_elf.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

BIN
docs/_static/core_dump_impl.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

View file

@ -19,6 +19,8 @@ ESP-IDF provides special script `espcoredump.py` to help users to retrieve and a
* info_corefile - prints crashed task's registers, callstack, list of available tasks in the system, memory regions and contents of memory stored in core dump (TCBs and stacks)
* dbg_corefile - creates core dump ELF file and runs GDB debug session with this file. User can examine memory, variables and tasks states manually. Note that since not all memory is saved in core dump only values of variables allocated on stack will be meaningfull
For more information about core dump internals see the - :doc:`Core dump internals <core_dump_internals>`
Configuration
-------------

View file

@ -0,0 +1,40 @@
:orphan:
Anatomy of core dump image
--------------------------
Core dump component can be configured to use old legacy binary format or the new ELF one. The ELF format is recommended for new designs. It provides more information about the CPU and memory state of a program at the moment when panic handler is entered.
The memory state embeds a snapshot of all tasks mapped in the memory space of the program. The CPU state contains register values when the core dump has been generated. Core dump file uses a subset of the ELF structures to register these information.
Loadable ELF segments are used for the memory state of the process while ELF notes (ELF.PT_NOTE) are used for process metadata (pid, registers, signal, ...). Especially, the CPU status is stored in a note with a special name and type (``CORE``, ``NT_PRSTATUS type``).
Here is an overview of coredump layout:
.. figure:: ../../_static/core_dump_format_elf.png
:align: center
:alt: Core dump image format
:figclass: align-center
Core dump ELF image format
.. figure:: ../../_static/core_dump_format_bin.png
:align: center
:alt: Core dump binary image format
:figclass: align-center
Core dump binary image format
Note: The format of image file showed on the above pictures represents current version of image and can be changed in future releases.
Overview of implementation
--------------------------
The figure below describes some basic aspects related to implementation of core dump:
.. figure:: ../../_static/core_dump_impl.png
:align: center
:alt: Core dump implementation overview
:figclass: align-center
Core dump implementation overview
Note: The diagram above hide some details and represents current implementation of the core dump and can be changed later.

View file

@ -0,0 +1 @@
.. include:: ../../en/api-guides/core_dump_internals.rst