/* def.h #DESCRIPTION# Copyright (C) 2001 #AUTHOR# Author: #AUTHOR# Date: #DATE# 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 __def_h #define __def_h #include "QF/pr_comp.h" #include "QF/pr_debug.h" typedef struct def_s { struct type_s *type; const char *name; int locals; int *alloc; int ofs; int initialized; // for uninit var detection int constant; // 1 when a declaration included "= immediate" struct statref_s *refs; // for relocations unsigned freed:1; // already freed from the scope unsigned removed:1; // already removed from the symbol table unsigned used:1; // unused local detection unsigned absolute:1; // don't relocate (for temps for shorts) unsigned managed:1; // managed temp string_t file; // source file int line; // source line int users; // ref counted temps struct expr_s *expr; // temp expr using this def struct def_s *def_next; // for writing out the global defs list struct def_s *next; // general purpose linking struct def_s *scope_next; // to facilitate hash table removal struct def_s *scope; // function the var was defined in, or NULL struct def_s *parent; // vector/quaternion member } def_t; extern def_t def_ret, def_parms[MAX_PARMS]; extern def_t def_void; extern def_t def_function; struct def_s *PR_GetArray (struct type_s *etype, const char *name, int size, struct def_s *scope, int *allocate); struct def_s *PR_GetDef (struct type_s *type, const char *name, struct def_s *scope, int *allocate); struct def_s *PR_NewDef (struct type_s *type, const char *name, struct def_s *scope); int PR_NewLocation (struct type_s *type); void PR_FreeLocation (struct def_s *def); struct def_s *PR_GetTempDef (struct type_s *type, struct def_s *scope); void PR_FreeTempDefs (); void PR_ResetTempDefs (); void PR_FlushScope (struct def_s *scope, int force_used); void PR_DefInitialized (struct def_s *d); #endif//__def_h