quakeforge/tools/qfcc/include/emit.h

71 lines
1.7 KiB
C
Raw Normal View History

/*
2002-10-22 14:53:18 +00:00
emit.h
2002-10-22 14:53:18 +00:00
statement emittion
Copyright (C) 2011 Bill Currie <bill@taniwha.org>
2002-10-22 14:53:18 +00:00
Author: Bill Currie <bill@taniwha.org>
Date: 2011/01/25
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 __emit_h
#define __emit_h
struct sblock_s;
void emit_statements (struct sblock_s *first_sblock);
#define EMIT_STRING(s,dest,str) \
do { \
def_t loc; \
loc.space = s; \
loc.offset = POINTER_OFS (s, &(dest)); \
(dest) = ReuseString (str); \
reloc_def_string (&loc);\
} while (0)
#define EMIT_DEF(s,dest,def) \
do { \
def_t *d = (def); \
def_t loc; \
loc.space = s; \
loc.offset = POINTER_OFS (s, &(dest)); \
(dest) = d ? d->offset : 0; \
if (d) \
reloc_def_def (d, &loc); \
} while (0)
#define EMIT_DEF_OFS(s,dest,def) \
do { \
def_t *d = (def); \
def_t loc; \
loc.space = s; \
loc.offset = POINTER_OFS (s, &(dest)); \
(dest) = d ? d->offset : 0; \
if (d) \
reloc_def_def_ofs (d, &loc); \
} while (0)
#endif//__emit_h