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"]
    "25" [label="refc_binary.h" tooltip="refc_binary.h"]
    "6" [label="atom.h" tooltip="atom.h"]
    "12" [label="assert.h" tooltip="assert.h"]
    "17" [label="utils.h" tooltip="utils.h"]
    "21" [label="synclist.h" tooltip="synclist.h"]
    "15" [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"]
    "24" [label="memory.h" tooltip="memory.h"]
    "26" [label="resources.h" tooltip="resources.h"]
    "22" [label="term.h" tooltip="term.h"]
    "18" [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"]
    "23" [label="string.h" tooltip="string.h"]
    "11" [label="term_typedef.h" tooltip="term_typedef.h"]
    "4" [label="globalcontext.h" tooltip="globalcontext.h"]
    "20" [label="smp.h" tooltip="smp.h"]
    "27" [label="timer_list.h" tooltip="timer_list.h"]
    "16" [label="mailbox.h" tooltip="mailbox.h"]
    "19" [label="stdio.h" tooltip="stdio.h"]
    "14" [label="inttypes.h" tooltip="inttypes.h"]
    "25" -> "9" [dir=forward tooltip="include"]
    "25" -> "7" [dir=forward tooltip="include"]
    "25" -> "15" [dir=forward tooltip="include"]
    "25" -> "26" [dir=forward tooltip="include"]
    "6" -> "5" [dir=forward tooltip="include"]
    "6" -> "7" [dir=forward tooltip="include"]
    "17" -> "18" [dir=forward tooltip="include"]
    "17" -> "19" [dir=forward tooltip="include"]
    "17" -> "7" [dir=forward tooltip="include"]
    "21" -> "19" [dir=forward tooltip="include"]
    "21" -> "15" [dir=forward tooltip="include"]
    "21" -> "20" [dir=forward tooltip="include"]
    "3" -> "4" [dir=forward tooltip="include"]
    "3" -> "15" [dir=forward tooltip="include"]
    "3" -> "16" [dir=forward tooltip="include"]
    "3" -> "20" [dir=forward tooltip="include"]
    "3" -> "22" [dir=forward tooltip="include"]
    "3" -> "27" [dir=forward tooltip="include"]
    "24" -> "5" [dir=forward tooltip="include"]
    "24" -> "7" [dir=forward tooltip="include"]
    "24" -> "10" [dir=forward tooltip="include"]
    "24" -> "11" [dir=forward tooltip="include"]
    "24" -> "17" [dir=forward tooltip="include"]
    "26" -> "7" [dir=forward tooltip="include"]
    "26" -> "10" [dir=forward tooltip="include"]
    "26" -> "15" [dir=forward tooltip="include"]
    "26" -> "24" [dir=forward tooltip="include"]
    "22" -> "9" [dir=forward tooltip="include"]
    "22" -> "5" [dir=forward tooltip="include"]
    "22" -> "19" [dir=forward tooltip="include"]
    "22" -> "7" [dir=forward tooltip="include"]
    "22" -> "23" [dir=forward tooltip="include"]
    "22" -> "24" [dir=forward tooltip="include"]
    "22" -> "25" [dir=forward tooltip="include"]
    "22" -> "17" [dir=forward tooltip="include"]
    "22" -> "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" -> "20" [dir=forward tooltip="include"]
    "4" -> "21" [dir=forward tooltip="include"]
    "4" -> "22" [dir=forward tooltip="include"]
    "4" -> "27" [dir=forward tooltip="include"]
    "20" -> "9" [dir=forward tooltip="include"]
    "27" -> "9" [dir=forward tooltip="include"]
    "27" -> "5" [dir=forward tooltip="include"]
    "27" -> "15" [dir=forward tooltip="include"]
    "16" -> "9" [dir=forward tooltip="include"]
    "16" -> "15" [dir=forward tooltip="include"]
    "16" -> "11" [dir=forward tooltip="include"]
    "16" -> "17" [dir=forward tooltip="include"]
}](../../../_images/graphviz-79c67d2a9f5012a46705f4d8acb2bafd0e5e4c06.png)
Functions
- 
static void debug_dump_binary_mem(char *buf, term val, unsigned n)
- 
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.