2002-05-08 05:15:19 +00:00
|
|
|
|
/*
|
|
|
|
|
function.c
|
|
|
|
|
|
|
|
|
|
QC function support code
|
|
|
|
|
|
2002-07-05 20:02:10 +00:00
|
|
|
|
Copyright (C) 2002 Bill Currie
|
2002-05-08 05:15:19 +00:00
|
|
|
|
|
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
|
Date: 2002/5/7
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2005-08-04 15:27:09 +00:00
|
|
|
|
static __attribute__ ((used)) const char rcsid[] =
|
2003-01-15 15:31:36 +00:00
|
|
|
|
"$Id$";
|
|
|
|
|
|
2002-06-01 04:41:25 +00:00
|
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
|
# include <string.h>
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
|
# include <strings.h>
|
|
|
|
|
#endif
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
|
#include "QF/dstring.h"
|
2004-11-13 11:50:00 +00:00
|
|
|
|
#include "QF/hash.h"
|
|
|
|
|
#include "QF/va.h"
|
2002-05-08 21:24:24 +00:00
|
|
|
|
|
2002-05-08 05:15:19 +00:00
|
|
|
|
#include "qfcc.h"
|
|
|
|
|
|
2011-01-09 10:41:24 +00:00
|
|
|
|
#include "codespace.h"
|
2002-06-04 21:23:39 +00:00
|
|
|
|
#include "debug.h"
|
|
|
|
|
#include "def.h"
|
2011-01-17 13:33:33 +00:00
|
|
|
|
#include "defspace.h"
|
2011-01-24 12:54:57 +00:00
|
|
|
|
#include "diagnostic.h"
|
2002-07-08 18:53:07 +00:00
|
|
|
|
#include "emit.h"
|
2002-06-01 05:30:16 +00:00
|
|
|
|
#include "expr.h"
|
2002-05-08 05:15:19 +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-07-17 14:19:30 +00:00
|
|
|
|
#include "options.h"
|
2002-06-21 20:46:56 +00:00
|
|
|
|
#include "reloc.h"
|
2011-01-19 06:47:45 +00:00
|
|
|
|
#include "statements.h"
|
2011-01-24 12:31:32 +00:00
|
|
|
|
#include "strpool.h"
|
2011-01-13 05:45:53 +00:00
|
|
|
|
#include "symtab.h"
|
2002-05-08 05:15:19 +00:00
|
|
|
|
#include "type.h"
|
|
|
|
|
|
2002-06-27 22:48:28 +00:00
|
|
|
|
static param_t *free_params;
|
|
|
|
|
static function_t *free_functions;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
static hashtab_t *overloaded_functions;
|
|
|
|
|
static hashtab_t *function_map;
|
|
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
|
ol_func_get_key (void *_f, void *unused)
|
|
|
|
|
{
|
|
|
|
|
overloaded_function_t *f = (overloaded_function_t *) _f;
|
|
|
|
|
return f->full_name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
|
func_map_get_key (void *_f, void *unused)
|
|
|
|
|
{
|
|
|
|
|
overloaded_function_t *f = (overloaded_function_t *) _f;
|
|
|
|
|
return f->name;
|
|
|
|
|
}
|
2002-06-27 22:48:28 +00:00
|
|
|
|
|
2002-05-08 05:15:19 +00:00
|
|
|
|
param_t *
|
|
|
|
|
new_param (const char *selector, type_t *type, const char *name)
|
|
|
|
|
{
|
2002-06-27 22:48:28 +00:00
|
|
|
|
param_t *param;
|
2002-05-08 05:15:19 +00:00
|
|
|
|
|
2002-06-27 22:48:28 +00:00
|
|
|
|
ALLOC (4096, param_t, params, param);
|
2002-05-08 05:15:19 +00:00
|
|
|
|
param->next = 0;
|
|
|
|
|
param->selector = selector;
|
|
|
|
|
param->type = type;
|
|
|
|
|
param->name = name;
|
|
|
|
|
|
|
|
|
|
return param;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-13 05:45:53 +00:00
|
|
|
|
param_t *
|
|
|
|
|
param_append_identifiers (param_t *params, symbol_t *idents, type_t *type)
|
|
|
|
|
{
|
|
|
|
|
param_t **p = ¶ms;
|
|
|
|
|
|
|
|
|
|
while (*p)
|
|
|
|
|
p = &(*p)->next;
|
|
|
|
|
if (!idents) {
|
|
|
|
|
*p = new_param (0, 0, 0);
|
|
|
|
|
p = &(*p)->next;
|
|
|
|
|
}
|
|
|
|
|
while (idents) {
|
|
|
|
|
idents->type = type;
|
|
|
|
|
*p = new_param (0, type, idents->name);
|
|
|
|
|
(*p)->symbol = idents;
|
|
|
|
|
p = &(*p)->next;
|
|
|
|
|
idents = idents->next;
|
|
|
|
|
}
|
|
|
|
|
return params;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
|
param_t *
|
2002-05-08 17:33:28 +00:00
|
|
|
|
_reverse_params (param_t *params, param_t *next)
|
|
|
|
|
{
|
|
|
|
|
param_t *p = params;
|
|
|
|
|
if (params->next)
|
|
|
|
|
p = _reverse_params (params->next, params);
|
|
|
|
|
params->next = next;
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
param_t *
|
|
|
|
|
reverse_params (param_t *params)
|
|
|
|
|
{
|
|
|
|
|
if (!params)
|
|
|
|
|
return 0;
|
|
|
|
|
return _reverse_params (params, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-20 02:09:34 +00:00
|
|
|
|
param_t *
|
|
|
|
|
copy_params (param_t *params)
|
|
|
|
|
{
|
|
|
|
|
param_t *n_parms = 0, **p = &n_parms;
|
|
|
|
|
|
|
|
|
|
while (params) {
|
|
|
|
|
*p = new_param (params->selector, params->type, params->name);
|
|
|
|
|
params = params->next;
|
|
|
|
|
p = &(*p)->next;
|
|
|
|
|
}
|
|
|
|
|
return n_parms;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-08 05:15:19 +00:00
|
|
|
|
type_t *
|
|
|
|
|
parse_params (type_t *type, param_t *parms)
|
|
|
|
|
{
|
|
|
|
|
param_t *p;
|
|
|
|
|
type_t new;
|
|
|
|
|
|
|
|
|
|
memset (&new, 0, sizeof (new));
|
|
|
|
|
new.type = ev_func;
|
2011-01-09 10:41:24 +00:00
|
|
|
|
new.t.func.type = type;
|
|
|
|
|
new.t.func.num_params = 0;
|
2002-05-08 05:15:19 +00:00
|
|
|
|
|
2002-05-09 20:12:28 +00:00
|
|
|
|
for (p = parms; p; p = p->next) {
|
2011-01-09 10:41:24 +00:00
|
|
|
|
if (new.t.func.num_params > MAX_PARMS) {
|
2002-05-08 05:15:19 +00:00
|
|
|
|
error (0, "too many params");
|
|
|
|
|
return type;
|
|
|
|
|
}
|
2002-05-08 17:33:28 +00:00
|
|
|
|
if (!p->selector && !p->type && !p->name) {
|
|
|
|
|
if (p->next) {
|
|
|
|
|
error (0, "internal error");
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
2011-01-09 10:41:24 +00:00
|
|
|
|
new.t.func.num_params = -(new.t.func.num_params + 1);
|
2002-05-09 20:12:28 +00:00
|
|
|
|
} else if (p->type) {
|
2011-01-09 10:41:24 +00:00
|
|
|
|
new.t.func.param_types[new.t.func.num_params] = p->type;
|
|
|
|
|
new.t.func.num_params++;
|
2002-05-08 17:33:28 +00:00
|
|
|
|
}
|
2002-05-08 05:15:19 +00:00
|
|
|
|
}
|
|
|
|
|
//print_type (&new); puts("");
|
2002-05-09 06:34:48 +00:00
|
|
|
|
return find_type (&new);
|
2002-05-08 05:15:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
static overloaded_function_t *
|
2004-11-13 11:50:00 +00:00
|
|
|
|
get_function (const char *name, type_t *type, int overload, int create)
|
|
|
|
|
{
|
|
|
|
|
const char *full_name;
|
|
|
|
|
overloaded_function_t *func;
|
|
|
|
|
|
|
|
|
|
if (!overloaded_functions) {
|
|
|
|
|
overloaded_functions = Hash_NewTable (1021, ol_func_get_key, 0, 0);
|
|
|
|
|
function_map = Hash_NewTable (1021, func_map_get_key, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
name = save_string (name);
|
|
|
|
|
|
|
|
|
|
full_name = save_string (va ("%s|%s", name, encode_params (type)));
|
|
|
|
|
|
|
|
|
|
func = Hash_Find (overloaded_functions, full_name);
|
|
|
|
|
if (func) {
|
|
|
|
|
if (func->type != type) {
|
|
|
|
|
error (0, "can't overload on return types");
|
|
|
|
|
return func;
|
|
|
|
|
}
|
|
|
|
|
return func;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!create)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
func = Hash_Find (function_map, name);
|
|
|
|
|
if (func) {
|
|
|
|
|
if (!overload && !func->overloaded) {
|
2007-04-06 12:02:34 +00:00
|
|
|
|
expr_t *e = new_expr ();
|
|
|
|
|
e->line = func->line;
|
|
|
|
|
e->file = func->file;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
warning (0, "creating overloaded function %s without @overload",
|
|
|
|
|
full_name);
|
2007-05-13 09:02:51 +00:00
|
|
|
|
warning (e, "(previous function is %s)", func->full_name);
|
2004-11-13 11:50:00 +00:00
|
|
|
|
}
|
|
|
|
|
overload = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func = calloc (1, sizeof (overloaded_function_t));
|
|
|
|
|
func->name = name;
|
|
|
|
|
func->full_name = full_name;
|
|
|
|
|
func->type = type;
|
|
|
|
|
func->overloaded = overload;
|
2007-04-06 12:02:34 +00:00
|
|
|
|
func->file = pr.source_file;
|
|
|
|
|
func->line = pr.source_line;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
|
|
|
|
|
Hash_Add (overloaded_functions, func);
|
|
|
|
|
Hash_Add (function_map, func);
|
|
|
|
|
return func;
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
symbol_t *
|
|
|
|
|
function_symbol (symbol_t *sym, int overload, int create)
|
|
|
|
|
{
|
|
|
|
|
const char *name = sym->name;
|
|
|
|
|
overloaded_function_t *func;
|
|
|
|
|
symbol_t *s;
|
|
|
|
|
|
|
|
|
|
func = get_function (name, sym->type, overload, create);
|
|
|
|
|
|
|
|
|
|
if (func && func->overloaded)
|
|
|
|
|
name = func->full_name;
|
|
|
|
|
s = symtab_lookup (current_symtab, name);
|
|
|
|
|
if ((!s || s->table != current_symtab) && create) {
|
|
|
|
|
s = new_symbol (name);
|
|
|
|
|
s->sy_type = sy_func;
|
|
|
|
|
s->type = sym->type;
|
|
|
|
|
s->params = sym->params;
|
|
|
|
|
s->s.func = 0; // function not yet defined
|
|
|
|
|
symtab_addsymbol (current_symtab, s);
|
|
|
|
|
}
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-13 11:50:00 +00:00
|
|
|
|
// NOTE sorts the list in /reverse/ order
|
|
|
|
|
static int
|
|
|
|
|
func_compare (const void *a, const void *b)
|
|
|
|
|
{
|
|
|
|
|
overloaded_function_t *fa = *(overloaded_function_t **) a;
|
|
|
|
|
overloaded_function_t *fb = *(overloaded_function_t **) b;
|
|
|
|
|
type_t *ta = fa->type;
|
|
|
|
|
type_t *tb = fb->type;
|
2011-01-09 10:41:24 +00:00
|
|
|
|
int na = ta->t.func.num_params;
|
|
|
|
|
int nb = tb->t.func.num_params;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
int ret, i;
|
|
|
|
|
|
|
|
|
|
if (na < 0)
|
|
|
|
|
na = ~na;
|
|
|
|
|
if (nb < 0)
|
|
|
|
|
nb = ~nb;
|
|
|
|
|
if (na != nb)
|
|
|
|
|
return nb - na;
|
2011-01-09 10:41:24 +00:00
|
|
|
|
if ((ret = (fb->type->t.func.num_params - fa->type->t.func.num_params)))
|
2004-11-13 11:50:00 +00:00
|
|
|
|
return ret;
|
|
|
|
|
for (i = 0; i < na && i < nb; i++)
|
2011-01-09 10:41:24 +00:00
|
|
|
|
if (ta->t.func.param_types[i] != tb->t.func.param_types[i])
|
|
|
|
|
return (long)(tb->t.func.param_types[i] - ta->t.func.param_types[i]);
|
2004-11-13 11:50:00 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expr_t *
|
|
|
|
|
find_function (expr_t *fexpr, expr_t *params)
|
|
|
|
|
{
|
|
|
|
|
expr_t *e;
|
|
|
|
|
int i, j, func_count, parm_count, reported = 0;
|
|
|
|
|
overloaded_function_t *f, dummy, *best = 0;
|
|
|
|
|
type_t type;
|
|
|
|
|
void **funcs, *dummy_p = &dummy;
|
|
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
|
if (fexpr->type != ex_symbol)
|
2004-11-13 11:50:00 +00:00
|
|
|
|
return fexpr;
|
|
|
|
|
|
|
|
|
|
memset (&type, 0, sizeof (type));
|
|
|
|
|
|
|
|
|
|
for (e = params; e; e = e->next) {
|
|
|
|
|
if (e->type == ex_error)
|
|
|
|
|
return e;
|
2011-01-09 10:41:24 +00:00
|
|
|
|
type.t.func.num_params++;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
}
|
2011-01-09 10:41:24 +00:00
|
|
|
|
if (type.t.func.num_params > MAX_PARMS)
|
2004-11-13 11:50:00 +00:00
|
|
|
|
return fexpr;
|
|
|
|
|
for (i = 0, e = params; e; i++, e = e->next) {
|
2011-01-09 10:41:24 +00:00
|
|
|
|
type.t.func.param_types[type.t.func.num_params - 1 - i] = get_type (e);
|
2004-11-13 11:50:00 +00:00
|
|
|
|
if (e->type == ex_error)
|
|
|
|
|
return e;
|
|
|
|
|
}
|
2011-01-17 13:33:33 +00:00
|
|
|
|
funcs = Hash_FindList (function_map, fexpr->e.symbol->name);
|
2004-11-13 11:50:00 +00:00
|
|
|
|
if (!funcs)
|
|
|
|
|
return fexpr;
|
|
|
|
|
for (func_count = 0; funcs[func_count]; func_count++)
|
|
|
|
|
;
|
|
|
|
|
if (func_count < 2) {
|
|
|
|
|
free (funcs);
|
|
|
|
|
return fexpr;
|
|
|
|
|
}
|
2011-01-09 10:41:24 +00:00
|
|
|
|
type.t.func.type = ((overloaded_function_t *) funcs[0])->type->t.func.type;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
dummy.type = find_type (&type);
|
|
|
|
|
|
|
|
|
|
qsort (funcs, func_count, sizeof (void *), func_compare);
|
2011-01-17 13:33:33 +00:00
|
|
|
|
dummy.full_name = save_string (va ("%s|%s", fexpr->e.symbol->name,
|
2004-11-13 11:50:00 +00:00
|
|
|
|
encode_params (&type)));
|
|
|
|
|
dummy_p = bsearch (&dummy_p, funcs, func_count, sizeof (void *),
|
|
|
|
|
func_compare);
|
|
|
|
|
if (dummy_p) {
|
|
|
|
|
f = (overloaded_function_t *) *(void **) dummy_p;
|
|
|
|
|
if (f->overloaded)
|
2011-01-17 13:33:33 +00:00
|
|
|
|
fexpr->e.symbol->name = f->full_name;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
free (funcs);
|
|
|
|
|
return fexpr;
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < func_count; i++) {
|
|
|
|
|
f = (overloaded_function_t *) funcs[i];
|
2011-01-09 10:41:24 +00:00
|
|
|
|
parm_count = f->type->t.func.num_params;
|
|
|
|
|
if ((parm_count >= 0 && parm_count != type.t.func.num_params)
|
|
|
|
|
|| (parm_count < 0 && ~parm_count > type.t.func.num_params)) {
|
2004-11-13 11:50:00 +00:00
|
|
|
|
funcs[i] = 0;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (parm_count < 0)
|
|
|
|
|
parm_count = ~parm_count;
|
|
|
|
|
for (j = 0; j < parm_count; j++) {
|
2011-01-09 10:41:24 +00:00
|
|
|
|
if (!type_assignable (f->type->t.func.param_types[j],
|
|
|
|
|
type.t.func.param_types[j])) {
|
2004-11-13 11:50:00 +00:00
|
|
|
|
funcs[i] = 0;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (j < parm_count)
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < func_count; i++) {
|
|
|
|
|
f = (overloaded_function_t *) funcs[i];
|
|
|
|
|
if (f) {
|
|
|
|
|
if (!best) {
|
|
|
|
|
best = f;
|
|
|
|
|
} else {
|
|
|
|
|
if (!reported) {
|
|
|
|
|
reported = 1;
|
|
|
|
|
error (fexpr, "unable to disambiguate %s",
|
|
|
|
|
dummy.full_name);
|
|
|
|
|
error (fexpr, "possible match: %s", best->full_name);
|
|
|
|
|
}
|
|
|
|
|
error (fexpr, "possible match: %s", f->full_name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (reported)
|
|
|
|
|
return fexpr;
|
|
|
|
|
if (best) {
|
|
|
|
|
if (best->overloaded)
|
2011-01-17 13:33:33 +00:00
|
|
|
|
fexpr->e.symbol->name = best->full_name;
|
2004-11-13 11:50:00 +00:00
|
|
|
|
free (funcs);
|
|
|
|
|
return fexpr;
|
|
|
|
|
}
|
|
|
|
|
error (fexpr, "unable to find function matching %s", dummy.full_name);
|
|
|
|
|
free (funcs);
|
|
|
|
|
return fexpr;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-17 05:45:35 +00:00
|
|
|
|
static void
|
2011-01-18 03:37:12 +00:00
|
|
|
|
check_function (symbol_t *fsym)
|
2010-11-17 05:45:35 +00:00
|
|
|
|
{
|
2011-01-18 03:37:12 +00:00
|
|
|
|
param_t *params = fsym->params;
|
2010-11-17 05:45:35 +00:00
|
|
|
|
param_t *p;
|
|
|
|
|
int i;
|
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
if (!type_size (fsym->type->t.func.type)) {
|
2010-11-17 05:45:35 +00:00
|
|
|
|
error (0, "return type is an incomplete type");
|
2011-01-24 12:13:37 +00:00
|
|
|
|
fsym->type->t.func.type = &type_void;//FIXME better type?
|
2010-11-17 05:45:35 +00:00
|
|
|
|
}
|
2011-01-18 03:37:12 +00:00
|
|
|
|
if (type_size (fsym->type->t.func.type) > type_size (&type_param)) {
|
2010-11-17 05:45:35 +00:00
|
|
|
|
error (0, "return value too large to be passed by value");
|
2011-01-24 12:13:37 +00:00
|
|
|
|
fsym->type->t.func.type = &type_void;//FIXME better type?
|
2010-11-17 05:45:35 +00:00
|
|
|
|
}
|
|
|
|
|
for (p = params, i = 0; p; p = p->next, i++) {
|
|
|
|
|
if (!p->selector && !p->type && !p->name)
|
|
|
|
|
continue; // ellipsis marker
|
|
|
|
|
if (!p->type)
|
|
|
|
|
continue; // non-param selector
|
|
|
|
|
if (!type_size (p->type))
|
|
|
|
|
error (0, "parameter %d (‘%s’) has incomplete type",
|
|
|
|
|
i + 1, p->name);
|
|
|
|
|
if (type_size (p->type) > type_size (&type_param))
|
|
|
|
|
error (0, "param %d (‘%s’) is too large to be passed by value",
|
|
|
|
|
i + 1, p->name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
static void
|
|
|
|
|
build_scope (symbol_t *fsym, symtab_t *parent)
|
2002-05-08 05:15:19 +00:00
|
|
|
|
{
|
2002-05-22 20:43:29 +00:00
|
|
|
|
int i;
|
2002-05-08 17:33:28 +00:00
|
|
|
|
param_t *p;
|
2011-01-18 03:37:12 +00:00
|
|
|
|
symbol_t *args = 0;
|
|
|
|
|
symbol_t *param;
|
|
|
|
|
symtab_t *symtab;
|
2002-05-08 05:15:19 +00:00
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
check_function (fsym);
|
2010-11-17 05:45:35 +00:00
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
symtab = new_symtab (parent, stab_local);
|
|
|
|
|
fsym->s.func->symtab = symtab;
|
2011-01-25 03:34:45 +00:00
|
|
|
|
symtab->space = new_defspace ();
|
2002-05-08 05:15:19 +00:00
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
if (fsym->type->t.func.num_params < 0) {
|
|
|
|
|
args = new_symbol_type (".args", &type_va_list);
|
2011-01-25 06:43:57 +00:00
|
|
|
|
initialize_def (args, args->type, 0, symtab->space, st_local);
|
2011-01-18 03:37:12 +00:00
|
|
|
|
symtab_addsymbol (symtab, args);
|
2002-05-22 20:43:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
for (p = fsym->params, i = 0; p; p = p->next) {
|
2002-05-08 17:33:28 +00:00
|
|
|
|
if (!p->selector && !p->type && !p->name)
|
2002-05-08 05:15:19 +00:00
|
|
|
|
continue; // ellipsis marker
|
2002-05-09 20:12:28 +00:00
|
|
|
|
if (!p->type)
|
|
|
|
|
continue; // non-param selector
|
2011-01-18 03:37:12 +00:00
|
|
|
|
param = new_symbol_type (p->name, p->type);
|
2011-01-25 06:43:57 +00:00
|
|
|
|
initialize_def (param, param->type, 0, symtab->space, st_local);
|
2011-01-18 03:37:12 +00:00
|
|
|
|
symtab_addsymbol (symtab, param);
|
2002-05-22 20:43:29 +00:00
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
|
2002-10-16 02:28:08 +00:00
|
|
|
|
if (args) {
|
2002-05-22 20:43:29 +00:00
|
|
|
|
while (i < MAX_PARMS) {
|
2011-01-18 03:37:12 +00:00
|
|
|
|
param = new_symbol_type (va (".par%d", i), &type_param);
|
|
|
|
|
symtab_addsymbol (symtab, param);
|
2002-05-22 20:43:29 +00:00
|
|
|
|
i++;
|
|
|
|
|
}
|
2002-05-08 05:15:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function_t *
|
2011-01-18 03:37:12 +00:00
|
|
|
|
new_function (const char *name, const char *nice_name)
|
2002-05-08 05:15:19 +00:00
|
|
|
|
{
|
|
|
|
|
function_t *f;
|
|
|
|
|
|
2002-06-27 22:48:28 +00:00
|
|
|
|
ALLOC (1024, function_t, functions, f);
|
2011-01-18 03:37:12 +00:00
|
|
|
|
f->s_name = ReuseString (name);
|
2008-08-01 13:54:24 +00:00
|
|
|
|
f->s_file = pr.source_file;
|
2010-12-31 09:26:42 +00:00
|
|
|
|
if (!(f->name = nice_name))
|
2011-01-18 03:37:12 +00:00
|
|
|
|
f->name = name;
|
2008-08-01 13:54:24 +00:00
|
|
|
|
return f;
|
|
|
|
|
}
|
2002-06-27 22:48:28 +00:00
|
|
|
|
|
2011-01-26 05:48:22 +00:00
|
|
|
|
void
|
|
|
|
|
make_function (symbol_t *sym, const char *nice_name, storage_class_t storage)
|
|
|
|
|
{
|
|
|
|
|
if (sym->sy_type != sy_func)
|
|
|
|
|
internal_error (0, "%s is not a function", sym->name);
|
|
|
|
|
if (storage == st_extern && sym->s.func)
|
|
|
|
|
return;
|
|
|
|
|
if (!sym->s.func) {
|
|
|
|
|
sym->s.func = new_function (sym->name, nice_name);
|
|
|
|
|
sym->s.func->sym = sym;
|
|
|
|
|
}
|
|
|
|
|
if (sym->s.func->def && sym->s.func->def->external
|
|
|
|
|
&& storage != st_extern) {
|
|
|
|
|
free_def (sym->s.func->def);
|
|
|
|
|
sym->s.func->def = 0;
|
|
|
|
|
}
|
|
|
|
|
if (!sym->s.func->def)
|
|
|
|
|
sym->s.func->def = new_def (sym->name, sym->type, sym->table->space,
|
|
|
|
|
storage);
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-01 13:54:24 +00:00
|
|
|
|
void
|
|
|
|
|
add_function (function_t *f)
|
|
|
|
|
{
|
2002-06-06 21:51:47 +00:00
|
|
|
|
*pr.func_tail = f;
|
|
|
|
|
pr.func_tail = &f->next;
|
2002-06-11 06:54:32 +00:00
|
|
|
|
f->function_num = pr.num_functions++;
|
2002-07-17 14:19:30 +00:00
|
|
|
|
if (options.code.debug)
|
|
|
|
|
f->aux = new_auxfunction ();
|
2002-05-08 05:15:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-01-06 11:22:30 +00:00
|
|
|
|
function_t *
|
2011-01-18 03:37:12 +00:00
|
|
|
|
begin_function (symbol_t *sym, const char *nicename, symtab_t *parent)
|
2011-01-06 11:22:30 +00:00
|
|
|
|
{
|
2011-01-18 03:37:12 +00:00
|
|
|
|
if (sym->sy_type != sy_func) {
|
|
|
|
|
error (0, "%s is not a function", sym->name);
|
|
|
|
|
return 0;
|
2011-01-06 11:22:30 +00:00
|
|
|
|
}
|
2011-01-26 05:48:22 +00:00
|
|
|
|
if (sym->s.func && sym->s.func->def && sym->s.func->def->initialized) {
|
2011-01-18 03:37:12 +00:00
|
|
|
|
error (0, "%s redefined", sym->name);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2011-01-26 05:48:22 +00:00
|
|
|
|
make_function (sym, nicename, current_storage);
|
|
|
|
|
if (!sym->s.func->def->external) {
|
|
|
|
|
sym->s.func->def->initialized = 1;
|
|
|
|
|
sym->s.func->def->constant = 1;
|
|
|
|
|
sym->s.func->def->nosave = 1;
|
2011-01-18 03:37:12 +00:00
|
|
|
|
add_function (sym->s.func);
|
2011-01-26 05:48:22 +00:00
|
|
|
|
reloc_def_func (sym->s.func, sym->s.func->def->offset);
|
|
|
|
|
}
|
2011-01-18 03:37:12 +00:00
|
|
|
|
sym->s.func->code = pr.code->size;
|
2011-01-26 05:48:22 +00:00
|
|
|
|
|
|
|
|
|
if (options.code.debug && sym->s.func->aux) {
|
2011-01-06 11:22:30 +00:00
|
|
|
|
pr_lineno_t *lineno = new_lineno ();
|
2011-01-26 05:48:22 +00:00
|
|
|
|
sym->s.func->aux->source_line = sym->s.func->def->line;
|
|
|
|
|
sym->s.func->aux->line_info = lineno - pr.linenos;
|
|
|
|
|
sym->s.func->aux->local_defs = pr.num_locals;
|
|
|
|
|
sym->s.func->aux->return_type = sym->type->t.func.type->type;
|
2011-01-06 11:22:30 +00:00
|
|
|
|
|
2011-01-26 05:48:22 +00:00
|
|
|
|
lineno->fa.func = sym->s.func->aux - pr.auxfunctions;
|
2011-01-06 11:22:30 +00:00
|
|
|
|
}
|
2011-01-26 05:48:22 +00:00
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
build_scope (sym, parent);
|
|
|
|
|
return sym->s.func;
|
2011-01-06 11:22:30 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-02-11 00:36:34 +00:00
|
|
|
|
function_t *
|
2011-01-18 23:38:09 +00:00
|
|
|
|
build_code_function (symbol_t *fsym, expr_t *state_expr, expr_t *statements)
|
2004-02-11 00:36:34 +00:00
|
|
|
|
{
|
2011-01-18 23:38:09 +00:00
|
|
|
|
build_function (fsym->s.func);
|
2004-02-11 00:36:34 +00:00
|
|
|
|
if (state_expr) {
|
|
|
|
|
state_expr->next = statements;
|
2011-01-18 23:38:09 +00:00
|
|
|
|
statements = state_expr;
|
2004-02-11 00:36:34 +00:00
|
|
|
|
}
|
2011-01-18 23:38:09 +00:00
|
|
|
|
emit_function (fsym->s.func, statements);
|
|
|
|
|
finish_function (fsym->s.func);
|
|
|
|
|
return fsym->s.func;
|
2004-02-11 00:36:34 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-06-21 20:46:56 +00:00
|
|
|
|
function_t *
|
2011-01-18 03:37:12 +00:00
|
|
|
|
build_builtin_function (symbol_t *sym, expr_t *bi_val)
|
2002-05-17 18:35:54 +00:00
|
|
|
|
{
|
2011-01-18 03:37:12 +00:00
|
|
|
|
int bi;
|
2002-05-17 18:35:54 +00:00
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
if (sym->sy_type != sy_func) {
|
|
|
|
|
error (bi_val, "%s is not a function", sym->name);
|
2002-06-21 20:46:56 +00:00
|
|
|
|
return 0;
|
2002-05-17 18:35:54 +00:00
|
|
|
|
}
|
2011-01-26 05:48:22 +00:00
|
|
|
|
if (sym->s.func && sym->s.func->def && sym->s.func->def->initialized) {
|
2011-01-18 03:37:12 +00:00
|
|
|
|
error (bi_val, "%s redefined", sym->name);
|
2004-02-11 01:53:17 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2011-01-18 23:41:24 +00:00
|
|
|
|
if (!is_integer_val (bi_val) && !is_float_val (bi_val)) {
|
2002-05-17 18:35:54 +00:00
|
|
|
|
error (bi_val, "invalid constant for = #");
|
2002-06-21 20:46:56 +00:00
|
|
|
|
return 0;
|
2002-05-17 18:35:54 +00:00
|
|
|
|
}
|
2011-01-26 05:48:22 +00:00
|
|
|
|
make_function (sym, 0, current_storage);
|
|
|
|
|
if (sym->s.func->def->external)
|
|
|
|
|
return 0;
|
2002-05-17 18:35:54 +00:00
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
add_function (sym->s.func);
|
2002-05-17 18:35:54 +00:00
|
|
|
|
|
2011-01-18 23:41:24 +00:00
|
|
|
|
if (is_integer_val (bi_val))
|
|
|
|
|
bi = expr_integer (bi_val);
|
|
|
|
|
else
|
|
|
|
|
bi = expr_float (bi_val);
|
2011-01-18 03:37:12 +00:00
|
|
|
|
sym->s.func->builtin = bi;
|
2011-01-26 05:48:22 +00:00
|
|
|
|
reloc_def_func (sym->s.func, sym->s.func->def->offset);
|
2011-01-18 03:37:12 +00:00
|
|
|
|
build_function (sym->s.func);
|
|
|
|
|
finish_function (sym->s.func);
|
2011-01-17 13:33:33 +00:00
|
|
|
|
|
|
|
|
|
// for debug info
|
2011-01-18 03:37:12 +00:00
|
|
|
|
//build_scope (f, f->def, sym->params);
|
|
|
|
|
//flush_scope (f->scope, 1);
|
|
|
|
|
return sym->s.func;
|
2002-05-17 18:35:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-05-08 05:15:19 +00:00
|
|
|
|
void
|
|
|
|
|
build_function (function_t *f)
|
|
|
|
|
{
|
2011-01-18 03:37:12 +00:00
|
|
|
|
// FIXME
|
|
|
|
|
// f->def->constant = 1;
|
|
|
|
|
// f->def->nosave = 1;
|
|
|
|
|
// f->def->initialized = 1;
|
|
|
|
|
// G_FUNCTION (f->def->ofs) = f->function_num;
|
2002-05-08 05:15:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
finish_function (function_t *f)
|
|
|
|
|
{
|
2011-01-18 03:37:12 +00:00
|
|
|
|
// FIXME
|
|
|
|
|
// if (f->aux) {
|
|
|
|
|
// def_t *def;
|
|
|
|
|
// f->aux->function = f->function_num;
|
|
|
|
|
// if (f->scope) {
|
|
|
|
|
// for (def = f->scope->head; def; def = def->def_next) {
|
|
|
|
|
// if (def->name) {
|
|
|
|
|
// def_to_ddef (def, new_local (), 0);
|
|
|
|
|
// f->aux->num_locals++;
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2002-05-08 05:15:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
emit_function (function_t *f, expr_t *e)
|
|
|
|
|
{
|
2011-01-19 06:47:45 +00:00
|
|
|
|
sblock_t *sblock;
|
2011-01-25 06:46:48 +00:00
|
|
|
|
//statement_t *s;
|
2011-01-19 06:47:45 +00:00
|
|
|
|
|
2011-01-25 06:46:48 +00:00
|
|
|
|
f->code = pr.code->size;
|
2011-01-28 02:45:19 +00:00
|
|
|
|
//printf ("%s %d\n", f->name, f->code);
|
2011-01-19 06:47:45 +00:00
|
|
|
|
sblock = make_statements (e);
|
2011-01-25 06:46:48 +00:00
|
|
|
|
//for (/**/; sblock; sblock = sblock->next) {
|
|
|
|
|
// printf ("block %p\n", sblock);
|
|
|
|
|
// for (s = sblock->statements; s; s = s->next) {
|
|
|
|
|
// printf (" ");
|
|
|
|
|
// print_statement (s);
|
|
|
|
|
// }
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
emit_statements (sblock);
|
2002-05-08 05:15:19 +00:00
|
|
|
|
}
|
2002-06-27 22:48:28 +00:00
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
function_parms (function_t *f, byte *parm_size)
|
|
|
|
|
{
|
2011-01-18 03:37:12 +00:00
|
|
|
|
//FIXME this is icky
|
2002-06-27 22:48:28 +00:00
|
|
|
|
int count, i;
|
|
|
|
|
|
2011-01-18 03:37:12 +00:00
|
|
|
|
if (f->sym->type->t.func.num_params >= 0)
|
|
|
|
|
count = f->sym->type->t.func.num_params;
|
2002-06-27 22:48:28 +00:00
|
|
|
|
else
|
2011-01-18 03:37:12 +00:00
|
|
|
|
count = -f->sym->type->t.func.num_params - 1;
|
2002-06-27 22:48:28 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
2011-01-18 03:37:12 +00:00
|
|
|
|
parm_size[i] = type_size (f->sym->type->t.func.param_types[i]);
|
|
|
|
|
return f->sym->type->t.func.num_params;
|
2002-06-27 22:48:28 +00:00
|
|
|
|
}
|