parrotcode: Write stabs file for JIT code | |
Contents | C |
src/jit_debug.c - Write stabs file for JIT code
When debugging JIT code with gdb
,
do:
add-symbol-file <file.o> 0
Stabs is a file format for information that describes a program to a debugger.
For more information see the stabs documentation at http://sources.redhat.com/gdb/current/onlinedocs/stabs_toc.html.
static void write_types(FILE *stabs, PARROT_INTERP)
stabs
.static void write_vars(FILE *stabs, PARROT_INTERP)
stabs
.static STRING *debug_file(PARROT_INTERP, STRING *file, const char *ext)
file
with ext
appended.static void Parrot_jit_debug_stabs(PARROT_INTERP)
void Parrot_jit_debug(PARROT_INTERP)
Parrot_jit_debug_stabs()
.src/jit.c, include/parrot/jit.h, docs/jit.pod.
|