mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 07:42:18 +00:00
0a60f46a64
Structs and arrays now work (though could be better, eg collapsible).
111 lines
3.1 KiB
C
111 lines
3.1 KiB
C
#ifndef __qwaq_debugger_debug_h
|
|
#define __qwaq_debugger_debug_h
|
|
|
|
#include "ruamoko/qwaq/ui/event.h"
|
|
|
|
typedef enum {
|
|
qe_debug_event = 0x0100,
|
|
} qwaq_debug_messages;
|
|
|
|
#ifdef __QFCC__
|
|
|
|
#include <QF/pr_debug.h>
|
|
|
|
//FIXME finish unsigned in qfcc
|
|
#ifndef umax
|
|
#define umax 0x7fffffff
|
|
#endif
|
|
|
|
typedef string string_t;
|
|
|
|
#endif
|
|
|
|
typedef struct qdb_event_s {
|
|
prdebug_t what;
|
|
union {
|
|
string_t message;
|
|
unsigned function;
|
|
int exit_code;
|
|
};
|
|
} qdb_event_t;
|
|
|
|
typedef struct qdb_state_s {
|
|
unsigned staddr;
|
|
unsigned func;
|
|
string_t file;
|
|
unsigned line;
|
|
} qdb_state_t;
|
|
|
|
typedef struct qdb_stack_s {
|
|
unsigned staddr; // return address
|
|
unsigned func; // calling function
|
|
// FIXME temp strings
|
|
} qdb_stack_t;
|
|
|
|
typedef struct qdb_def_s {
|
|
unsigned type_size; // type in lower 16, size in upper 16
|
|
unsigned offset;
|
|
unsigned name; // string
|
|
unsigned type_encoding;
|
|
} qdb_def_t;
|
|
|
|
typedef struct qdb_function_s {
|
|
int staddr;
|
|
unsigned local_data;
|
|
unsigned local_size;
|
|
unsigned profile;
|
|
unsigned name; // string
|
|
unsigned file; // string
|
|
unsigned num_params;
|
|
} qdb_function_t;
|
|
|
|
typedef struct qdb_auxfunction_s {
|
|
unsigned function;
|
|
unsigned source_line;
|
|
unsigned line_info;
|
|
unsigned local_defs;
|
|
unsigned num_locals;
|
|
unsigned return_type;
|
|
} qdb_auxfunction_t;
|
|
|
|
#ifdef __QFCC__
|
|
|
|
typedef struct qdb_target_s { int handle; } qdb_target_t;
|
|
|
|
void qdb_set_trace (qdb_target_t target, int state);
|
|
int qdb_set_breakpoint (qdb_target_t target, unsigned staddr);
|
|
int qdb_clear_breakpoint (qdb_target_t target, unsigned staddr);
|
|
int qdb_set_watchpoint (qdb_target_t target, unsigned offset);
|
|
int qdb_clear_watchpoint (qdb_target_t target);
|
|
int qdb_continue (qdb_target_t target);
|
|
qdb_state_t qdb_get_state (qdb_target_t target);
|
|
int qdb_get_stack_depth (qdb_target_t target);
|
|
qdb_stack_t *qdb_get_stack (qdb_target_t target);
|
|
int qdb_get_event (qdb_target_t target, qdb_event_t *event);
|
|
int qdb_get_data (qdb_target_t target, unsigned src, unsigned len, void *dst);
|
|
@overload string qdb_get_string (qdb_target_t target, unsigned str);
|
|
// note: str is likely not valid in the host progs, it's just a convinience to
|
|
// avoid cast shenanigans when getting type encoding strings
|
|
@overload string qdb_get_string (qdb_target_t target, string str);
|
|
string qdb_get_file_path (qdb_target_t target, string file);
|
|
int qdb_find_string (qdb_target_t target, string str);
|
|
qdb_def_t qdb_find_global (qdb_target_t target, string name);
|
|
qdb_def_t qdb_find_field (qdb_target_t target, string name);
|
|
qdb_function_t *qdb_find_function (qdb_target_t target, string name);
|
|
qdb_function_t *qdb_get_function (qdb_target_t target, unsigned fnum);
|
|
qdb_auxfunction_t *qdb_find_auxfunction (qdb_target_t target, string name);
|
|
qdb_auxfunction_t *qdb_get_auxfunction (qdb_target_t target, unsigned fnum);
|
|
qdb_def_t *qdb_get_local_defs (qdb_target_t target, unsigned fnum);
|
|
unsigned qdb_get_source_line_addr(qdb_target_t target, string file,
|
|
unsigned line);
|
|
void traceon();
|
|
void traceoff();
|
|
|
|
#else//GCC
|
|
|
|
void QWAQ_Debug_Init (progs_t *pr);
|
|
void QWAQ_DebugTarget_Init (progs_t *pr);
|
|
|
|
#endif
|
|
|
|
#endif//__qwaq_debugger_debug_h
|