2001-09-28 07:09:38 +00:00
|
|
|
/*
|
2002-10-22 14:53:18 +00:00
|
|
|
emit.c
|
2001-09-28 07:09:38 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
statement emittion
|
2001-09-28 07:09:38 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
|
2001-09-28 07:09:38 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2001/07/26
|
2001-09-28 07:09:38 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
*/
|
2002-06-01 04:41:25 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2011-01-25 06:46:48 +00:00
|
|
|
static __attribute__ ((used)) const char rcsid[] = "$Id$";
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2002-06-01 04:41:25 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
2001-07-26 05:15:34 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include <QF/mathlib.h>
|
|
|
|
#include <QF/va.h>
|
|
|
|
|
2011-01-09 10:41:24 +00:00
|
|
|
#include "codespace.h"
|
2002-06-04 21:23:39 +00:00
|
|
|
#include "def.h"
|
2011-01-25 06:46:48 +00:00
|
|
|
#include "defspace.h"
|
2002-06-04 21:23:39 +00:00
|
|
|
#include "debug.h"
|
2011-01-25 06:46:48 +00:00
|
|
|
#include "diagnostic.h"
|
2002-07-08 18:53:07 +00:00
|
|
|
#include "emit.h"
|
2008-08-01 13:54:24 +00:00
|
|
|
#include "function.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#include "immediate.h"
|
2002-06-04 21:23:39 +00:00
|
|
|
#include "opcodes.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#include "options.h"
|
2002-06-04 21:23:39 +00:00
|
|
|
#include "qfcc.h"
|
2002-06-07 17:29:30 +00:00
|
|
|
#include "reloc.h"
|
2011-01-25 06:46:48 +00:00
|
|
|
#include "statements.h"
|
2011-01-13 05:54:24 +00:00
|
|
|
#include "symtab.h"
|
2002-05-09 17:11:14 +00:00
|
|
|
#include "type.h"
|
2001-07-26 05:15:34 +00:00
|
|
|
|
2011-01-25 06:46:48 +00:00
|
|
|
static def_t zero_def;
|
|
|
|
|
|
|
|
static def_t *
|
|
|
|
get_operand_def (operand_t *op)
|
2001-07-26 05:15:34 +00:00
|
|
|
{
|
2011-01-25 06:46:48 +00:00
|
|
|
def_t *def;
|
|
|
|
|
|
|
|
if (!op)
|
|
|
|
return 0;
|
|
|
|
switch (op->op_type) {
|
|
|
|
case op_symbol:
|
2011-01-26 05:48:22 +00:00
|
|
|
switch (op->o.symbol->sy_type) {
|
|
|
|
case sy_var:
|
|
|
|
if (op->type != op->o.symbol->type->type)
|
|
|
|
return alias_def (op->o.symbol->s.def,
|
|
|
|
ev_types[op->type]);
|
|
|
|
return op->o.symbol->s.def;
|
|
|
|
case sy_func:
|
|
|
|
return op->o.symbol->s.func->def;
|
|
|
|
case sy_const:
|
|
|
|
//FIXME
|
|
|
|
case sy_type:
|
|
|
|
case sy_expr:
|
|
|
|
internal_error (0, "invalid operand type");
|
|
|
|
}
|
|
|
|
break;
|
2011-01-25 06:46:48 +00:00
|
|
|
case op_value:
|
|
|
|
//FIXME share immediates
|
|
|
|
def = new_def (".imm", ev_types[op->type], pr.near_data,
|
|
|
|
st_static);
|
2011-01-28 12:39:01 +00:00
|
|
|
if (op->type == ev_string) {
|
|
|
|
EMIT_STRING (def->space, D_STRUCT (string_t, def),
|
|
|
|
op->o.value->v.string_val);
|
|
|
|
} else {
|
|
|
|
memcpy (D_POINTER (pr_type_t, def), &op->o.value->v,
|
|
|
|
pr_type_size[op->type]);
|
|
|
|
}
|
2011-01-25 06:46:48 +00:00
|
|
|
return def;
|
|
|
|
case op_label:
|
2011-01-26 13:43:59 +00:00
|
|
|
zero_def.type = &type_short;
|
2011-01-25 06:46:48 +00:00
|
|
|
return &zero_def; //FIXME
|
|
|
|
case op_temp:
|
|
|
|
if (!op->o.def)
|
|
|
|
op->o.def = new_def (".tmp", ev_types[op->type],
|
|
|
|
current_func->symtab->space, st_local);
|
|
|
|
return op->o.def;
|
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
return 0;
|
2003-10-22 08:05:17 +00:00
|
|
|
}
|
|
|
|
|
2011-01-25 06:46:48 +00:00
|
|
|
static void
|
2011-01-27 12:10:37 +00:00
|
|
|
add_statement_def_ref (def_t *def, dstatement_t *st, int field)
|
2001-07-26 05:15:34 +00:00
|
|
|
{
|
2011-01-25 06:46:48 +00:00
|
|
|
if (def) {
|
|
|
|
int st_ofs = st - pr.code->code;
|
|
|
|
|
|
|
|
if (def->alias) {
|
|
|
|
reloc_op_def (def->alias, st_ofs, field);
|
|
|
|
free_def (def);
|
|
|
|
} else {
|
|
|
|
reloc_op_def (def, st_ofs, field);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-27 12:11:32 +00:00
|
|
|
static void
|
|
|
|
add_statement_op_ref (operand_t *op, dstatement_t *st, int field)
|
|
|
|
{
|
|
|
|
if (op && op->op_type == op_label) {
|
|
|
|
int st_ofs = st - pr.code->code;
|
|
|
|
reloc_t *reloc = new_reloc (st_ofs, rel_op_a_op + field);
|
|
|
|
|
|
|
|
reloc->next = op->o.label->dest->relocs;
|
|
|
|
op->o.label->dest->relocs = reloc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-25 06:46:48 +00:00
|
|
|
static void
|
|
|
|
emit_statement (statement_t *statement)
|
|
|
|
{
|
|
|
|
const char *opcode = statement->opcode;
|
|
|
|
def_t *def_a = get_operand_def (statement->opa);
|
|
|
|
def_t *def_b = get_operand_def (statement->opb);
|
|
|
|
def_t *def_c = get_operand_def (statement->opc);
|
|
|
|
opcode_t *op = opcode_find (opcode, def_a, def_b, def_c);
|
|
|
|
dstatement_t *s;
|
|
|
|
|
|
|
|
if (!op)
|
|
|
|
internal_error (0, "ice ice baby");
|
|
|
|
s = codespace_newstatement (pr.code);
|
|
|
|
s->op = op->opcode;
|
|
|
|
s->a = def_a ? def_a->offset : 0;
|
|
|
|
s->b = def_b ? def_b->offset : 0;
|
|
|
|
s->c = def_c ? def_c->offset : 0;
|
|
|
|
|
2011-01-27 12:10:37 +00:00
|
|
|
add_statement_def_ref (def_a, s, 0);
|
|
|
|
add_statement_def_ref (def_b, s, 1);
|
|
|
|
add_statement_def_ref (def_c, s, 2);
|
2011-01-27 12:11:32 +00:00
|
|
|
|
|
|
|
add_statement_op_ref (statement->opa, s, 0);
|
|
|
|
add_statement_op_ref (statement->opb, s, 1);
|
|
|
|
add_statement_op_ref (statement->opc, s, 2);
|
2001-07-26 05:15:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-01-25 06:46:48 +00:00
|
|
|
emit_statements (sblock_t *first_sblock)
|
2001-07-26 05:15:34 +00:00
|
|
|
{
|
2011-01-25 06:46:48 +00:00
|
|
|
sblock_t *sblock;
|
|
|
|
statement_t *s;
|
|
|
|
|
|
|
|
for (sblock = first_sblock; sblock; sblock = sblock->next) {
|
|
|
|
sblock->offset = pr.code->size;
|
|
|
|
for (s = sblock->statements; s; s = s->next)
|
|
|
|
emit_statement (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (sblock = first_sblock; sblock; sblock = sblock->next)
|
|
|
|
relocate_refs (sblock->relocs, sblock->offset);
|
2001-07-26 05:15:34 +00:00
|
|
|
}
|