NAME ^

src/jit_debug_xcoff.c - XCOFF stabs for JIT

DESCRIPTION ^

Write an XCOFF stabs file for JIT code. This file is based on src/jit_debug.c.

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.

Functions ^

static void write_types(FILE *stabs, Interp *interp)

Writes the types to stabs.

static void write_vars(FILE *stabs, Interp *interp)

Writes the contents of the registers to stabs.

static STRING *debug_file(Interp *interp, STRING *file, const char *ext)

Returns file with ext appended.

static void Parrot_jit_debug_stabs(Interp *interp)

Writes the JIT debugging stabs.

void Parrot_jit_debug(Interp *interp)

Writes the JIT debugging stabs. Just calls Parrot_jit_debug_stabs().

SEE ALSO ^

src/jit_debug.c, src/jit.c, src/jit.h.


parrot