debug.h

Include dependency graph for debug.h:

digraph { graph [bgcolor="#00000000"] node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2] edge [color="#1414CE"] "8" [label="stdbool.h" tooltip="stdbool.h"] "25" [label="refc_binary.h" tooltip="refc_binary.h"] "5" [label="atom.h" tooltip="atom.h"] "11" [label="assert.h" tooltip="assert.h"] "23" [label="utils.h" tooltip="utils.h"] "16" [label="synclist.h" tooltip="synclist.h"] "15" [label="list.h" tooltip="list.h"] "4" [label="stdint.h" tooltip="stdint.h"] "6" [label="stdlib.h" tooltip="stdlib.h"] "2" [label="context.h" tooltip="context.h"] "22" [label="memory.h" tooltip="memory.h"] "26" [label="resources.h" tooltip="resources.h"] "19" [label="term.h" tooltip="term.h"] "24" [label="stddef.h" tooltip="stddef.h"] "9" [label="erl_nif.h" tooltip="erl_nif.h"] "1" [label="/__w/AtomVM/AtomVM/src/libAtomVM/debug.h" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/debug.h" fillcolor="#BFBFBF"] "12" [label="limits.h" tooltip="limits.h"] "7" [label="atom_table.h" tooltip="atom_table.h"] "20" [label="sys/types.h" tooltip="sys/types.h"] "21" [label="string.h" tooltip="string.h"] "10" [label="term_typedef.h" tooltip="term_typedef.h"] "3" [label="globalcontext.h" tooltip="globalcontext.h"] "18" [label="smp.h" tooltip="smp.h"] "28" [label="timer_list.h" tooltip="timer_list.h"] "27" [label="mailbox.h" tooltip="mailbox.h"] "17" [label="stdio.h" tooltip="stdio.h"] "14" [label="ets.h" tooltip="ets.h"] "13" [label="inttypes.h" tooltip="inttypes.h"] "25" -> "8" [dir=forward tooltip="include"] "25" -> "6" [dir=forward tooltip="include"] "25" -> "15" [dir=forward tooltip="include"] "25" -> "26" [dir=forward tooltip="include"] "5" -> "4" [dir=forward tooltip="include"] "5" -> "6" [dir=forward tooltip="include"] "23" -> "24" [dir=forward tooltip="include"] "23" -> "17" [dir=forward tooltip="include"] "23" -> "6" [dir=forward tooltip="include"] "16" -> "17" [dir=forward tooltip="include"] "16" -> "15" [dir=forward tooltip="include"] "16" -> "18" [dir=forward tooltip="include"] "15" -> "8" [dir=forward tooltip="include"] "2" -> "3" [dir=forward tooltip="include"] "2" -> "15" [dir=forward tooltip="include"] "2" -> "27" [dir=forward tooltip="include"] "2" -> "18" [dir=forward tooltip="include"] "2" -> "19" [dir=forward tooltip="include"] "2" -> "28" [dir=forward tooltip="include"] "22" -> "4" [dir=forward tooltip="include"] "22" -> "6" [dir=forward tooltip="include"] "22" -> "9" [dir=forward tooltip="include"] "22" -> "10" [dir=forward tooltip="include"] "22" -> "23" [dir=forward tooltip="include"] "26" -> "6" [dir=forward tooltip="include"] "26" -> "9" [dir=forward tooltip="include"] "26" -> "15" [dir=forward tooltip="include"] "26" -> "22" [dir=forward tooltip="include"] "26" -> "16" [dir=forward tooltip="include"] "19" -> "20" [dir=forward tooltip="include"] "19" -> "8" [dir=forward tooltip="include"] "19" -> "4" [dir=forward tooltip="include"] "19" -> "17" [dir=forward tooltip="include"] "19" -> "6" [dir=forward tooltip="include"] "19" -> "21" [dir=forward tooltip="include"] "19" -> "22" [dir=forward tooltip="include"] "19" -> "25" [dir=forward tooltip="include"] "19" -> "23" [dir=forward tooltip="include"] "19" -> "10" [dir=forward tooltip="include"] "9" -> "10" [dir=forward tooltip="include"] "1" -> "2" [dir=forward tooltip="include"] "7" -> "8" [dir=forward tooltip="include"] "7" -> "5" [dir=forward tooltip="include"] "10" -> "11" [dir=forward tooltip="include"] "10" -> "12" [dir=forward tooltip="include"] "10" -> "13" [dir=forward tooltip="include"] "10" -> "4" [dir=forward tooltip="include"] "3" -> "4" [dir=forward tooltip="include"] "3" -> "5" [dir=forward tooltip="include"] "3" -> "7" [dir=forward tooltip="include"] "3" -> "9" [dir=forward tooltip="include"] "3" -> "14" [dir=forward tooltip="include"] "3" -> "15" [dir=forward tooltip="include"] "3" -> "27" [dir=forward tooltip="include"] "3" -> "18" [dir=forward tooltip="include"] "3" -> "16" [dir=forward tooltip="include"] "3" -> "19" [dir=forward tooltip="include"] "3" -> "28" [dir=forward tooltip="include"] "18" -> "8" [dir=forward tooltip="include"] "28" -> "8" [dir=forward tooltip="include"] "28" -> "4" [dir=forward tooltip="include"] "28" -> "15" [dir=forward tooltip="include"] "27" -> "8" [dir=forward tooltip="include"] "27" -> "15" [dir=forward tooltip="include"] "27" -> "10" [dir=forward tooltip="include"] "27" -> "23" [dir=forward tooltip="include"] "14" -> "15" [dir=forward tooltip="include"] "14" -> "16" [dir=forward tooltip="include"] "14" -> "19" [dir=forward tooltip="include"] }

This graph shows which files directly or indirectly include debug.h:

digraph { graph [bgcolor="#00000000"] node [shape=rectangle style=filled fillcolor="#FFFFFF" font=Helvetica padding=2] edge [color="#1414CE"] "3" [label="/__w/AtomVM/AtomVM/src/libAtomVM/memory.c" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/memory.c"] "2" [label="/__w/AtomVM/AtomVM/src/libAtomVM/debug.c" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/debug.c"] "1" [label="/__w/AtomVM/AtomVM/src/libAtomVM/debug.h" tooltip="/__w/AtomVM/AtomVM/src/libAtomVM/debug.h" fillcolor="#BFBFBF"] "1" -> "2" [dir=back tooltip="include"] "1" -> "3" [dir=back tooltip="include"] }

Debug functions and macros.

Miscellaneous functions and macros useful for debug.

Defines

DEBUG_DUMP_STACK(...)

Functions

void debug_dump_context(Context *ctx)

Print a repreentation of the context to stderr.

Print heap, stack, and registers of the given context to stderr.

Parameters:
  • ctx – the process context.

void debug_dump_heap(Context *ctx)

Print heap contents to stderr.

Print the dump of the heap of the given context to stderr.

Parameters:
  • ctx – the process context.

void debug_dump_stack(Context *ctx)

Print stack contents to stderr.

Print the dump of the stack of the given context to stderr.

Parameters:
  • ctx – the process context.

void debug_dump_registers(Context *ctx)

Print register contents to stderr.

Print the dump of the registers of the given context to stderr.

Parameters:
  • ctx – the process context.

void debug_dump_memory(Context *ctx, term *start, term *end, const char *region)

Print a region of (term) memory to stderr.

Print the dump of the memory the given context to stderr.

Parameters:
  • ctx – the process context.

  • start – the start address.

  • end – the end address.

  • region – the name of the region to display.

char reg_type_c(int reg_type)

Gets a printable char for a given register type.

Returns a printable char such as x or y for the given register type.

Parameters:
  • reg_type – register type.

Returns:

printable register type.

void debug_print_processes_list(struct ListHead *processes)

Prints a list of processes.

Prints to stderr a list of processes.

Parameters:
  • processes – the list of processes that will be printed.