debug.c

Include dependency graph for debug.c:

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

Functions

static void debug_display_type(term t, const Context *ctx)
static void debug_dump_binary_mem(char *buf, term val, unsigned n)
static void debug_dump_term(Context *ctx, term *pos, const char *region, unsigned i)
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.

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_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.

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.