mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
384 lines
9.3 KiB
C
384 lines
9.3 KiB
C
/*
|
|
pr_debug.c
|
|
|
|
progs debugging
|
|
|
|
Copyright (C) 2001 Bill Currie <bill@tanwiha.org>
|
|
|
|
Author: Bill Currie <bill@tanwiha.org>
|
|
Date: 2001/7/13
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to:
|
|
|
|
Free Software Foundation, Inc.
|
|
59 Temple Place - Suite 330
|
|
Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
static const char rcsid[] =
|
|
"$Id$";
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
#ifdef HAVE_STRING_H
|
|
# include <string.h>
|
|
#endif
|
|
#ifdef HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "QF/cvar.h"
|
|
#include "QF/hash.h"
|
|
#include "QF/pr_debug.h"
|
|
#include "QF/progs.h"
|
|
#include "QF/qendian.h"
|
|
#include "QF/quakefs.h"
|
|
#include "QF/sys.h"
|
|
#include "QF/zone.h"
|
|
|
|
typedef struct {
|
|
char *text;
|
|
size_t len;
|
|
} line_t;
|
|
|
|
typedef struct {
|
|
char *name;
|
|
char *text;
|
|
line_t *lines;
|
|
int num_lines;
|
|
progs_t *pr;
|
|
} file_t;
|
|
|
|
cvar_t *pr_debug;
|
|
cvar_t *pr_source_path;
|
|
static hashtab_t *file_hash;
|
|
|
|
|
|
static const char *
|
|
file_get_key (void *_f, void *unused)
|
|
{
|
|
return ((file_t*)_f)->name;
|
|
}
|
|
|
|
static void
|
|
file_free (void *_f, void *unused)
|
|
{
|
|
file_t *f = (file_t*)_f;
|
|
progs_t *pr = f->pr;
|
|
|
|
free (f->lines);
|
|
((progs_t *) pr)->free_progs_mem (pr, f->text);
|
|
free (f->name);
|
|
free (f);
|
|
}
|
|
|
|
void
|
|
PR_Debug_Init (void)
|
|
{
|
|
file_hash = Hash_NewTable (1024, file_get_key, file_free, 0);
|
|
}
|
|
|
|
void
|
|
PR_Debug_Init_Cvars (void)
|
|
{
|
|
pr_debug = Cvar_Get ("pr_debug", "0", CVAR_NONE, NULL,
|
|
"enable progs debugging");
|
|
pr_source_path = Cvar_Get ("pr_source_path", ".", CVAR_NONE, NULL, "where "
|
|
"to look (within gamedir) for source files");
|
|
}
|
|
|
|
file_t *
|
|
PR_Load_Source_File (progs_t *pr, const char *fname)
|
|
{
|
|
char *path, *l;
|
|
file_t *f = Hash_Find (file_hash, fname);
|
|
|
|
if (f)
|
|
return f;
|
|
f = malloc (sizeof (file_t));
|
|
if (!f)
|
|
return 0;
|
|
path = Hunk_TempAlloc (strlen (pr_source_path->string) + strlen (fname) +
|
|
2);
|
|
sprintf (path, "%s/%s", pr_source_path->string, fname);
|
|
f->text = pr->load_file (pr, path);
|
|
if (!f->text) {
|
|
free (f);
|
|
return 0;
|
|
}
|
|
for (f->num_lines = 1, l = f->text; *l; l++)
|
|
if (*l == '\n')
|
|
f->num_lines++;
|
|
f->name = strdup (fname);
|
|
if (!f->name) {
|
|
pr->free_progs_mem (pr, f->text);
|
|
free (f);
|
|
return 0;
|
|
}
|
|
f->lines = malloc (f->num_lines * sizeof (line_t));
|
|
if (!f->lines) {
|
|
free (f->name);
|
|
pr->free_progs_mem (pr, f->text);
|
|
free (f);
|
|
return 0;
|
|
}
|
|
f->lines[0].text = f->text;
|
|
for (f->num_lines = 0, l = f->text; *l; l++) {
|
|
if (*l == '\n') {
|
|
f->lines[f->num_lines].len = l - f->lines[f->num_lines].text;
|
|
f->lines[++f->num_lines].text = l + 1;
|
|
}
|
|
}
|
|
f->lines[f->num_lines++].len = l - f->lines[f->num_lines].text;
|
|
f->pr = pr;
|
|
Hash_Add (file_hash, f);
|
|
return f;
|
|
}
|
|
|
|
void
|
|
PR_LoadDebug (progs_t *pr)
|
|
{
|
|
char *sym_path;
|
|
const char *path_end, *sym_file;
|
|
int i;
|
|
int start = Hunk_LowMark ();
|
|
ddef_t *def;
|
|
pr_type_t *str = 0;
|
|
|
|
pr->debug = 0;
|
|
pr->auxfunctions = 0;
|
|
pr->auxfunction_map = 0;
|
|
pr->linenos = 0;
|
|
pr->local_defs = 0;
|
|
|
|
if (!pr_debug->int_val)
|
|
return;
|
|
|
|
def = PR_FindGlobal (pr, ".debug_file");
|
|
if (def)
|
|
str = &pr->pr_globals[def->ofs];
|
|
|
|
Hash_FlushTable (file_hash);
|
|
if (!str)
|
|
return;
|
|
pr->debugfile = PR_GetString (pr, str->string_var);
|
|
sym_file = COM_SkipPath (pr->debugfile);
|
|
path_end = COM_SkipPath (pr->progs_name);
|
|
sym_path = Hunk_TempAlloc (strlen (sym_file) + (path_end - pr->progs_name)
|
|
+ 1);
|
|
strncpy (sym_path, pr->progs_name, path_end - pr->progs_name);
|
|
strcpy (sym_path + (path_end - pr->progs_name), sym_file);
|
|
pr->debug = pr->load_file (pr, sym_path);
|
|
if (!pr->debug) {
|
|
Sys_Printf ("can't load %s for debug info\n", sym_path);
|
|
return;
|
|
}
|
|
pr->debug->version = LittleLong (pr->debug->version);
|
|
if (pr->debug->version != PROG_DEBUG_VERSION) {
|
|
Sys_Printf ("ignoring %s with unsupported version %x.%03x.%03x\n",
|
|
sym_path,
|
|
(pr->debug->version >> 24) & 0xff,
|
|
(pr->debug->version >> 12) & 0xfff,
|
|
pr->debug->version & 0xfff);
|
|
Hunk_FreeToLowMark (start);
|
|
pr->debug = 0;
|
|
return;
|
|
}
|
|
pr->debug->crc = LittleShort (pr->debug->crc);
|
|
if (pr->debug->crc != pr->crc) {
|
|
Sys_Printf ("ignoring %s that doesn't match %s. (CRCs: "
|
|
"sym:%d dat:%d)\n",
|
|
sym_path,
|
|
pr->progs_name,
|
|
pr->debug->crc,
|
|
pr->crc);
|
|
Hunk_FreeToLowMark (start);
|
|
pr->debug = 0;
|
|
return;
|
|
}
|
|
pr->debug->you_tell_me_and_we_will_both_know = LittleShort
|
|
(pr->debug->you_tell_me_and_we_will_both_know);
|
|
pr->debug->auxfunctions = LittleLong (pr->debug->auxfunctions);
|
|
pr->debug->num_auxfunctions = LittleLong (pr->debug->num_auxfunctions);
|
|
pr->debug->linenos = LittleLong (pr->debug->linenos);
|
|
pr->debug->num_linenos = LittleLong (pr->debug->num_linenos);
|
|
pr->debug->locals = LittleLong (pr->debug->locals);
|
|
pr->debug->num_locals = LittleLong (pr->debug->num_locals);
|
|
|
|
pr->auxfunctions = (pr_auxfunction_t*)((char*)pr->debug +
|
|
pr->debug->auxfunctions);
|
|
pr->linenos = (pr_lineno_t*)((char*)pr->debug + pr->debug->linenos);
|
|
pr->local_defs = (ddef_t*)((char*)pr->debug + pr->debug->locals);
|
|
|
|
pr->auxfunction_map = Hunk_Alloc (pr->progs->numfunctions *
|
|
sizeof (pr_auxfunction_t*));
|
|
|
|
for (i = 0; i < pr->debug->num_auxfunctions; i++) {
|
|
pr->auxfunctions[i].function = LittleLong
|
|
(pr->auxfunctions[i].function);
|
|
pr->auxfunctions[i].source_line = LittleLong
|
|
(pr->auxfunctions[i].source_line);
|
|
pr->auxfunctions[i].line_info = LittleLong
|
|
(pr->auxfunctions[i].line_info);
|
|
pr->auxfunctions[i].local_defs = LittleLong
|
|
(pr->auxfunctions[i].local_defs);
|
|
pr->auxfunctions[i].num_locals = LittleLong
|
|
(pr->auxfunctions[i].num_locals);
|
|
|
|
pr->auxfunction_map[pr->auxfunctions[i].function] =
|
|
&pr->auxfunctions[i];
|
|
}
|
|
for (i = 0; i < pr->debug->num_linenos; i++) {
|
|
pr->linenos[i].fa.func = LittleLong (pr->linenos[i].fa.func);
|
|
pr->linenos[i].line = LittleLong (pr->linenos[i].line);
|
|
}
|
|
for (i = 0; i < pr->debug->num_locals; i++) {
|
|
pr->local_defs[i].type = LittleShort (pr->local_defs[i].type);
|
|
pr->local_defs[i].ofs = LittleShort (pr->local_defs[i].ofs);
|
|
pr->local_defs[i].s_name = LittleLong (pr->local_defs[i].s_name);
|
|
}
|
|
}
|
|
|
|
pr_auxfunction_t *
|
|
PR_Get_Lineno_Func (progs_t *pr, pr_lineno_t *lineno)
|
|
{
|
|
while (lineno > pr->linenos && lineno->line)
|
|
lineno--;
|
|
if (lineno->line)
|
|
return 0;
|
|
return &pr->auxfunctions[lineno->fa.func];
|
|
}
|
|
|
|
unsigned int
|
|
PR_Get_Lineno_Addr (progs_t *pr, pr_lineno_t *lineno)
|
|
{
|
|
pr_auxfunction_t *f;
|
|
|
|
if (lineno->line)
|
|
return lineno->fa.addr;
|
|
f = &pr->auxfunctions[lineno->fa.func];
|
|
return pr->pr_functions[f->function].first_statement;
|
|
}
|
|
|
|
unsigned int
|
|
PR_Get_Lineno_Line (progs_t *pr, pr_lineno_t *lineno)
|
|
{
|
|
pr_auxfunction_t *f;
|
|
|
|
if (lineno->line)
|
|
return lineno->line;
|
|
f = &pr->auxfunctions[lineno->fa.func];
|
|
return f->source_line;
|
|
}
|
|
|
|
pr_lineno_t *
|
|
PR_Find_Lineno (progs_t *pr, unsigned int addr)
|
|
{
|
|
int i;
|
|
pr_lineno_t *lineno = 0;
|
|
|
|
if (!pr->debug)
|
|
return 0;
|
|
if (!pr->debug->num_linenos)
|
|
return 0;
|
|
for (i = pr->debug->num_linenos - 1; i >= 0; i--) {
|
|
if (PR_Get_Lineno_Addr (pr, &pr->linenos[i]) <= addr) {
|
|
lineno = &pr->linenos[i];
|
|
break;
|
|
}
|
|
}
|
|
return lineno;
|
|
}
|
|
|
|
const char *
|
|
PR_Get_Source_File (progs_t *pr, pr_lineno_t *lineno)
|
|
{
|
|
pr_auxfunction_t *f;
|
|
|
|
f = PR_Get_Lineno_Func (pr, lineno);
|
|
return PR_GetString(pr, pr->pr_functions[f->function].s_file);
|
|
}
|
|
|
|
const char *
|
|
PR_Get_Source_Line (progs_t *pr, unsigned int addr)
|
|
{
|
|
char *str;
|
|
const char *fname;
|
|
unsigned int line;
|
|
file_t *file;
|
|
pr_auxfunction_t *func;
|
|
|
|
pr_lineno_t *lineno = PR_Find_Lineno (pr, addr);
|
|
if (!lineno || PR_Get_Lineno_Addr (pr, lineno) != addr)
|
|
return 0;
|
|
func = PR_Get_Lineno_Func (pr, lineno);
|
|
fname = PR_Get_Source_File (pr, lineno);
|
|
if (!func || !fname)
|
|
return 0;
|
|
line = PR_Get_Lineno_Line (pr, lineno);
|
|
line += func->source_line;
|
|
|
|
file = PR_Load_Source_File (pr, fname);
|
|
|
|
str = Hunk_TempAlloc (strlen (fname) + 12);
|
|
sprintf (str, "%s:%d", fname, line);
|
|
|
|
if (!file || line > file->num_lines)
|
|
return str;
|
|
|
|
str = Hunk_TempAlloc (strlen (str) + file->lines[line - 1].len + 2);
|
|
sprintf (str, "%s:%d:%.*s", fname, line,
|
|
(int)file->lines[line - 1].len, file->lines[line - 1].text);
|
|
return str;
|
|
}
|
|
|
|
ddef_t *
|
|
PR_Get_Local_Def (progs_t *pr, int offs)
|
|
{
|
|
int i;
|
|
dfunction_t *func = pr->pr_xfunction;
|
|
pr_auxfunction_t *aux_func;
|
|
|
|
if (!func)
|
|
return 0;
|
|
aux_func = pr->auxfunction_map[func - pr->pr_functions];
|
|
if (!aux_func)
|
|
return 0;
|
|
offs -= func->parm_start;
|
|
if (offs < 0 || offs >= func->locals)
|
|
return 0;
|
|
for (i = 0; i < aux_func->num_locals; i++)
|
|
if (pr->local_defs[aux_func->local_defs + i].ofs == offs)
|
|
return &pr->local_defs[aux_func->local_defs + i];
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
PR_DumpState (progs_t *pr)
|
|
{
|
|
if (pr_debug->int_val && pr->debug) {
|
|
int addr = pr->pr_xstatement;
|
|
|
|
while (!PR_Get_Source_Line (pr, addr))
|
|
addr--;
|
|
while (addr != pr->pr_xstatement)
|
|
PR_PrintStatement (pr, pr->pr_statements + addr++);
|
|
}
|
|
PR_PrintStatement (pr, pr->pr_statements + pr->pr_xstatement);
|
|
PR_StackTrace (pr);
|
|
}
|