mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-07 13:41:32 +00:00
151 lines
3.2 KiB
C
151 lines
3.2 KiB
C
/*
|
|
debug.c
|
|
|
|
debug info support
|
|
|
|
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
Date: 2001/7/14
|
|
|
|
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
|
|
|
|
*/
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
static __attribute__ ((used)) const char rcsid[] =
|
|
"$Id$";
|
|
|
|
#ifdef HAVE_STRING_H
|
|
# include <string.h>
|
|
#endif
|
|
#ifdef HAVE_STRINGS_H
|
|
# include <strings.h>
|
|
#endif
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
|
|
#include "QF/pr_comp.h"
|
|
|
|
#include "debug.h"
|
|
#include "expr.h"
|
|
#include "immediate.h"
|
|
#include "qfcc.h"
|
|
|
|
static srcline_t *free_srclines;
|
|
|
|
void
|
|
push_source_file (void)
|
|
{
|
|
srcline_t *srcline;
|
|
ALLOC (16, srcline_t, srclines, srcline);
|
|
srcline->source_file = pr.source_file;
|
|
srcline->source_line = pr.source_line;
|
|
srcline->next = pr.srcline_stack;
|
|
pr.srcline_stack = srcline;
|
|
}
|
|
|
|
void
|
|
pop_source_file (void)
|
|
{
|
|
srcline_t *tmp;
|
|
|
|
if (!pr.srcline_stack) {
|
|
notice (0, "unbalanced #includes. bug in preprocessor?");
|
|
return;
|
|
}
|
|
tmp = pr.srcline_stack;
|
|
pr.srcline_stack = tmp->next;
|
|
tmp->next = free_srclines;
|
|
free_srclines = tmp;
|
|
}
|
|
|
|
void
|
|
line_info (char *text)
|
|
{
|
|
char *p;
|
|
char *s;
|
|
const char *str;
|
|
int line;
|
|
int flags;
|
|
|
|
p = text;
|
|
line = strtol (p, &s, 10);
|
|
p = s;
|
|
while (isspace ((unsigned char)*p))
|
|
p++;
|
|
if (!*p)
|
|
error (0, "Unexpected end of file");
|
|
str = make_string (p, &s); // grab the filename
|
|
p = s;
|
|
while (isspace ((unsigned char) *p))
|
|
p++;
|
|
flags = strtol (p, &s, 10);
|
|
switch (flags) {
|
|
case 1:
|
|
push_source_file ();
|
|
break;
|
|
case 2:
|
|
pop_source_file ();
|
|
break;
|
|
}
|
|
while (*p && *p != '\n') // ignore rest
|
|
p++;
|
|
pr.source_line = line - 1;
|
|
pr.source_file = ReuseString (strip_path (str));
|
|
}
|
|
|
|
pr_auxfunction_t *
|
|
new_auxfunction (void)
|
|
{
|
|
if (pr.num_auxfunctions == pr.auxfunctions_size) {
|
|
pr.auxfunctions_size += 1024;
|
|
pr.auxfunctions = realloc (pr.auxfunctions,
|
|
pr.auxfunctions_size
|
|
* sizeof (pr_auxfunction_t));
|
|
}
|
|
memset (&pr.auxfunctions[pr.num_auxfunctions], 0,
|
|
sizeof (pr_auxfunction_t));
|
|
return &pr.auxfunctions[pr.num_auxfunctions++];
|
|
}
|
|
|
|
pr_lineno_t *
|
|
new_lineno (void)
|
|
{
|
|
if (pr.num_linenos == pr.linenos_size) {
|
|
pr.linenos_size += 1024;
|
|
pr.linenos = realloc (pr.linenos,
|
|
pr.linenos_size * sizeof (pr_lineno_t));
|
|
}
|
|
memset (&pr.linenos[pr.num_linenos], 0, sizeof (pr_lineno_t));
|
|
return &pr.linenos[pr.num_linenos++];
|
|
}
|
|
|
|
ddef_t *
|
|
new_local (void)
|
|
{
|
|
if (pr.num_locals == pr.locals_size) {
|
|
pr.locals_size += 1024;
|
|
pr.locals = realloc (pr.locals, pr.locals_size * sizeof (ddef_t));
|
|
}
|
|
memset (&pr.locals[pr.num_locals], 0, sizeof (ddef_t));
|
|
return &pr.locals[pr.num_locals++];
|
|
}
|