quakeforge/include/QF/pr_debug.h

66 lines
1.8 KiB
C
Raw Normal View History

2001-07-13 06:08:50 +00:00
/*
pr_debug.h
progs debug info
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
Author: Bill Currie <bill@taniwha.org>
Date: 2001/7/12
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
$Id$
*/
#ifndef __pr_debug_h
#define __pr_debug_h
typedef struct pr_auxfunction_s {
2001-11-29 19:35:25 +00:00
unsigned int function; // function def this aux info is for
unsigned int source_line; // first source line for this function
unsigned int line_info; // index to first lineno entry
unsigned int local_defs; // index to the first local def
unsigned int num_locals; // number of local defs
2001-07-13 06:08:50 +00:00
} pr_auxfunction_t;
typedef struct pr_lineno_s {
2001-07-13 06:08:50 +00:00
union {
2001-11-29 19:35:25 +00:00
unsigned int func; // (line==0) index of function aux info
unsigned int addr; // (line!=0) dstatement_t address
2001-07-13 06:08:50 +00:00
} fa;
2001-11-29 19:35:25 +00:00
unsigned int line;
2001-07-13 06:08:50 +00:00
} pr_lineno_t;
#define PROG_DEBUG_VERSION 0x00001001 // MMmmmRRR 0.001.001 (hex)
typedef struct pr_debug_header_s {
2001-07-13 06:08:50 +00:00
int version;
unsigned short crc; // of the progs.dat this progs.sym file is for
unsigned short you_tell_me_and_we_will_both_know;
2001-11-29 19:35:25 +00:00
unsigned int auxfunctions;
unsigned int num_auxfunctions;
unsigned int linenos;
unsigned int num_linenos;
unsigned int locals;
unsigned int num_locals;
2001-07-13 06:08:50 +00:00
} pr_debug_header_t;
#endif//__pr_debug_h