2002-05-08 21:24:24 +00:00
|
|
|
/*
|
2002-10-22 14:53:18 +00:00
|
|
|
class.c
|
2002-05-08 21:24:24 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
QC class support code
|
2002-05-08 21:24:24 +00:00
|
|
|
|
2002-07-05 20:02:10 +00:00
|
|
|
Copyright (C) 2002 Bill Currie
|
2002-05-08 21:24:24 +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"
|
2002-05-10 00:00:23 +00:00
|
|
|
#include "QF/hash.h"
|
2002-05-15 23:24:19 +00:00
|
|
|
#include "QF/pr_obj.h"
|
|
|
|
#include "QF/va.h"
|
2002-05-08 21:24:24 +00:00
|
|
|
|
|
|
|
#include "qfcc.h"
|
|
|
|
|
2011-01-09 10:41:24 +00:00
|
|
|
#include "codespace.h"
|
2002-05-08 21:24:24 +00:00
|
|
|
#include "class.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#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 20:31:59 +00:00
|
|
|
#include "emit.h"
|
2002-05-16 22:33:11 +00:00
|
|
|
#include "expr.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#include "immediate.h"
|
2002-05-10 00:00:23 +00:00
|
|
|
#include "method.h"
|
2002-06-24 22:53:21 +00:00
|
|
|
#include "options.h"
|
2002-06-21 20:46:56 +00:00
|
|
|
#include "reloc.h"
|
2002-07-05 20:02:10 +00:00
|
|
|
#include "strpool.h"
|
2002-05-15 19:10:23 +00:00
|
|
|
#include "struct.h"
|
2011-01-17 13:33:33 +00:00
|
|
|
#include "symtab.h"
|
2002-05-08 21:24:24 +00:00
|
|
|
#include "type.h"
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
static hashtab_t *class_hash;
|
2002-05-15 19:10:23 +00:00
|
|
|
static hashtab_t *category_hash;
|
2002-05-10 00:00:23 +00:00
|
|
|
static hashtab_t *protocol_hash;
|
|
|
|
|
2011-02-04 03:07:32 +00:00
|
|
|
// these will be built up further
|
|
|
|
type_t type_SEL = { ev_pointer, "SEL" };
|
|
|
|
type_t type_IMP = { ev_func, "IMP", ty_none,
|
|
|
|
{{&type_id, -3, {&type_id, &type_SEL}}}};
|
2011-02-11 02:29:25 +00:00
|
|
|
type_t type_Super = { ev_invalid, "Super" };
|
|
|
|
type_t type_SuperPtr = { ev_pointer, 0, ty_none, {{&type_Super}}};
|
2011-02-04 03:07:32 +00:00
|
|
|
type_t type_supermsg = { ev_func, ".supermsg", ty_none,
|
2011-02-11 02:29:25 +00:00
|
|
|
{{&type_id, -3, {&type_SuperPtr, &type_SEL}}}};
|
2011-02-04 03:07:32 +00:00
|
|
|
type_t type_Method = { ev_invalid, "Method" };
|
|
|
|
type_t type_method_description = { ev_invalid, "obj_method_description",
|
|
|
|
ty_struct };
|
2011-02-07 11:48:01 +00:00
|
|
|
type_t type_category = { ev_invalid, "category", ty_struct};
|
|
|
|
type_t type_ivar = { ev_invalid, "ivar", ty_struct};
|
2011-02-09 15:15:19 +00:00
|
|
|
type_t type_module = { ev_invalid, 0, ty_struct};
|
|
|
|
type_t type_moduleptr = { ev_pointer, 0, ty_none, {{&type_module}}};
|
|
|
|
type_t type_obj_exec_class = { ev_func, 0, ty_none,
|
|
|
|
{{&type_void, 1, { &type_moduleptr }}}};
|
2011-02-04 03:07:32 +00:00
|
|
|
|
2011-02-06 06:36:21 +00:00
|
|
|
type_t type_object = {ev_invalid, "object", ty_class};
|
|
|
|
type_t type_id = { ev_pointer, "id", ty_none, {{&type_object}}};
|
2011-02-04 05:29:47 +00:00
|
|
|
type_t type_Class = { ev_invalid, "Class", ty_class};
|
|
|
|
type_t type_ClassPtr = { ev_pointer, 0, ty_none, {{&type_Class}}};
|
|
|
|
type_t type_Protocol = { ev_invalid, "Protocol", ty_class};
|
2011-02-07 11:48:01 +00:00
|
|
|
|
2011-02-06 06:36:21 +00:00
|
|
|
class_t class_object = {1, "id"};
|
2011-01-17 13:33:33 +00:00
|
|
|
class_t class_Class = {1, "Class"};
|
2011-02-04 05:29:47 +00:00
|
|
|
class_t class_Protocol = {1, "Protocol"};
|
2002-05-16 20:20:23 +00:00
|
|
|
|
2011-02-04 03:07:32 +00:00
|
|
|
static struct_def_t sel_struct[] = {
|
|
|
|
{"sel_id", &type_string},
|
|
|
|
{"sel_types", &type_string},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t method_struct[] = {
|
|
|
|
{"method_name", &type_SEL},
|
|
|
|
{"method_types", &type_string},
|
|
|
|
{"method_imp", &type_IMP},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t method_desc_struct[] = {
|
|
|
|
{"name", &type_string},
|
|
|
|
{"types", &type_string},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t category_struct[] = {
|
|
|
|
{"category_name", &type_string},
|
|
|
|
{"class_name", &type_string},
|
|
|
|
{"instance_methods", &type_pointer},
|
|
|
|
{"class_methods", &type_pointer},
|
|
|
|
{"protocols", &type_pointer},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t ivar_struct[] = {
|
|
|
|
{"ivar_name", &type_string},
|
|
|
|
{"ivar_type", &type_string},
|
|
|
|
{"ivar_offset", &type_integer},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t super_struct[] = {
|
|
|
|
{"self", &type_id},
|
2011-02-08 09:25:23 +00:00
|
|
|
{"class", &type_ClassPtr},
|
2011-02-04 03:07:32 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t module_struct[] = {
|
|
|
|
{"version", &type_integer},
|
|
|
|
{"size", &type_integer},
|
|
|
|
{"name", &type_string},
|
|
|
|
{"symtab", &type_pointer},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t class_ivars[] = {
|
2011-02-08 09:25:23 +00:00
|
|
|
{"class_pointer", &type_ClassPtr},
|
|
|
|
{"super_class", &type_ClassPtr},
|
2011-02-04 03:07:32 +00:00
|
|
|
{"name", &type_string},
|
|
|
|
{"version", &type_integer},
|
|
|
|
{"info", &type_integer},
|
|
|
|
{"instance_size", &type_integer},
|
|
|
|
{"ivars", &type_pointer},
|
|
|
|
{"methods", &type_pointer},
|
|
|
|
{"dtable", &type_pointer},
|
|
|
|
{"subclass_list", &type_pointer},
|
|
|
|
{"sibling_class", &type_pointer},
|
|
|
|
{"protocols", &type_pointer},
|
|
|
|
{"gc_object_type", &type_pointer},
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct_def_t protocol_ivars[] = {
|
2011-02-08 09:25:23 +00:00
|
|
|
{"class_pointer", &type_ClassPtr},
|
2011-02-04 03:07:32 +00:00
|
|
|
{"protocol_name", &type_string},
|
|
|
|
{"protocol_list", &type_pointer},
|
|
|
|
{"instance_methods", &type_pointer},
|
|
|
|
{"class_methods", &type_pointer},
|
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
2011-02-06 06:41:15 +00:00
|
|
|
static struct_def_t object_ivars[] = {
|
2011-02-08 09:25:23 +00:00
|
|
|
{"class_pointer", &type_ClassPtr},
|
2011-02-04 03:07:32 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
static const char *
|
|
|
|
class_get_key (void *class, void *unused)
|
|
|
|
{
|
2002-11-12 19:52:43 +00:00
|
|
|
return ((class_t *) class)->name;
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
protocol_get_key (void *protocol, void *unused)
|
|
|
|
{
|
|
|
|
return ((protocol_t *) protocol)->name;
|
|
|
|
}
|
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
const char *
|
|
|
|
get_class_name (class_type_t *class_type, int pretty)
|
|
|
|
{
|
|
|
|
switch (class_type->type) {
|
|
|
|
case ct_class:
|
|
|
|
if (pretty)
|
|
|
|
return class_type->c.class->name;
|
|
|
|
else
|
|
|
|
return va ("%s_", class_type->c.class->name);
|
|
|
|
case ct_category:
|
|
|
|
if (pretty)
|
|
|
|
return va ("%s (%s)", class_type->c.category->class->name,
|
|
|
|
class_type->c.category->name);
|
|
|
|
else
|
|
|
|
return va ("%s_%s", class_type->c.category->class->name,
|
|
|
|
class_type->c.category->name);
|
|
|
|
case ct_protocol:
|
|
|
|
return va ("<%s>", class_type->c.protocol->name);
|
|
|
|
}
|
|
|
|
return "???";
|
|
|
|
}
|
|
|
|
|
2011-02-04 05:29:47 +00:00
|
|
|
static void
|
|
|
|
init_objective_structs (void)
|
2002-05-22 01:39:07 +00:00
|
|
|
{
|
2011-02-04 03:07:32 +00:00
|
|
|
type_SEL.t.fldptr.type = make_structure (0, 's', sel_struct, 0)->type;
|
2011-02-04 05:29:47 +00:00
|
|
|
chain_type (&type_SEL);
|
|
|
|
chain_type (&type_IMP);
|
2011-02-04 03:07:32 +00:00
|
|
|
|
|
|
|
make_structure (0, 's', method_struct, &type_Method);
|
2011-02-04 05:29:47 +00:00
|
|
|
chain_type (&type_Method);
|
2011-02-04 03:07:32 +00:00
|
|
|
|
|
|
|
make_structure (0, 's', method_desc_struct, &type_method_description);
|
2011-02-04 05:29:47 +00:00
|
|
|
chain_type (&type_method_description);
|
2011-02-04 03:07:32 +00:00
|
|
|
|
|
|
|
make_structure (0, 's', category_struct, &type_category);
|
2011-02-04 05:29:47 +00:00
|
|
|
chain_type (&type_category);
|
2011-02-04 03:07:32 +00:00
|
|
|
|
|
|
|
make_structure (0, 's', ivar_struct, &type_ivar);
|
2011-02-04 05:29:47 +00:00
|
|
|
chain_type (&type_ivar);
|
2011-02-04 03:07:32 +00:00
|
|
|
|
|
|
|
make_structure (0, 's', super_struct, &type_Super);
|
|
|
|
chain_type (&type_Super);
|
2011-02-11 02:29:25 +00:00
|
|
|
chain_type (&type_SuperPtr);
|
|
|
|
chain_type (&type_supermsg);
|
2011-02-04 03:07:32 +00:00
|
|
|
|
|
|
|
make_structure ("obj_module_s", 's', module_struct, &type_module);
|
|
|
|
|
2002-05-22 01:39:07 +00:00
|
|
|
}
|
|
|
|
|
2011-02-04 05:29:47 +00:00
|
|
|
static void
|
|
|
|
init_classes (void)
|
|
|
|
{
|
|
|
|
symbol_t *sym;
|
|
|
|
|
|
|
|
type_Class.ty = ty_class;
|
|
|
|
type_Class.t.class = &class_Class;
|
|
|
|
chain_type (&type_Class);
|
|
|
|
sym = make_structure (0, 's', class_ivars, 0);
|
|
|
|
class_Class.ivars = sym->type->t.symtab;
|
|
|
|
class_Class.type = &type_Class;
|
|
|
|
class_Class.super_class = get_class (sym = new_symbol ("Object"), 1);
|
|
|
|
class_Class.methods = new_methodlist ();
|
|
|
|
symtab_addsymbol (pr.symtab, sym);
|
|
|
|
|
|
|
|
chain_type (&type_ClassPtr);
|
|
|
|
|
|
|
|
type_Protocol.ty = ty_class;
|
|
|
|
type_Protocol.t.class = &class_Protocol;
|
|
|
|
chain_type (&type_Protocol);
|
|
|
|
sym = make_structure (0, 's', protocol_ivars, &type_Protocol);
|
|
|
|
class_Protocol.ivars = sym->type->t.symtab;
|
|
|
|
class_Protocol.type = &type_Protocol;
|
|
|
|
|
2011-02-06 06:36:21 +00:00
|
|
|
type_object.t.class = &class_object;
|
|
|
|
chain_type (&type_object);
|
2011-02-06 06:41:15 +00:00
|
|
|
sym = make_structure (0, 's', object_ivars, 0);
|
2011-02-06 06:36:21 +00:00
|
|
|
class_object.ivars = sym->type->t.symtab;
|
|
|
|
class_object.type = &type_id;
|
|
|
|
chain_type (&type_id);
|
2011-02-04 05:29:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
class_init (void)
|
|
|
|
{
|
2011-02-08 13:26:35 +00:00
|
|
|
if (!current_symtab)
|
|
|
|
current_symtab = pr.symtab;
|
2011-02-04 05:29:47 +00:00
|
|
|
init_classes ();
|
|
|
|
init_objective_structs ();
|
2011-02-09 15:15:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
class_init_obj_module (void)
|
|
|
|
{
|
|
|
|
symbol_t *sym;
|
|
|
|
|
|
|
|
sym = new_symbol ("obj_module_s");
|
|
|
|
sym = find_struct ('s', sym, &type_module);
|
|
|
|
chain_type (&type_module);
|
|
|
|
chain_type (&type_moduleptr);
|
|
|
|
chain_type (&type_obj_exec_class);
|
|
|
|
if (!sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, sym);
|
2011-02-04 05:29:47 +00:00
|
|
|
|
2011-02-09 15:15:19 +00:00
|
|
|
sym = new_symbol_type ("obj_module_t", sym->type);
|
2011-02-04 05:29:47 +00:00
|
|
|
sym->sy_type = sy_type;
|
|
|
|
symtab_addsymbol (pr.symtab, sym);
|
|
|
|
}
|
|
|
|
|
2011-01-24 06:41:43 +00:00
|
|
|
symbol_t *
|
|
|
|
class_symbol (class_type_t *class_type, int external)
|
2002-07-03 20:16:32 +00:00
|
|
|
{
|
2010-12-31 06:44:54 +00:00
|
|
|
const char *name = 0;
|
|
|
|
type_t *type = 0;
|
2011-02-08 08:08:58 +00:00
|
|
|
symbol_t *sym;
|
2002-07-03 20:16:32 +00:00
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
switch (class_type->type) {
|
|
|
|
case ct_category:
|
|
|
|
name = va ("_OBJ_CATEGORY_%s_%s",
|
|
|
|
class_type->c.category->class->name,
|
|
|
|
class_type->c.category->name);
|
2011-01-17 13:33:33 +00:00
|
|
|
type = &type_category;
|
2010-12-31 06:44:54 +00:00
|
|
|
break;
|
|
|
|
case ct_class:
|
|
|
|
name = va ("_OBJ_CLASS_%s", class_type->c.class->name);
|
2011-02-04 05:29:47 +00:00
|
|
|
type = &type_Class;
|
2010-12-31 06:44:54 +00:00
|
|
|
break;
|
|
|
|
case ct_protocol:
|
|
|
|
return 0; // probably in error recovery
|
2002-07-16 04:37:51 +00:00
|
|
|
}
|
2011-02-08 08:08:58 +00:00
|
|
|
sym = make_symbol (name, type, pr.far_data,
|
|
|
|
external ? st_extern : st_global);
|
|
|
|
if (!sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, sym);
|
|
|
|
return sym;
|
2002-07-03 20:16:32 +00:00
|
|
|
}
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
class_t *
|
2011-01-17 13:33:33 +00:00
|
|
|
get_class (symbol_t *sym, int create)
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2002-05-10 00:00:23 +00:00
|
|
|
class_t *c;
|
2002-05-16 20:20:23 +00:00
|
|
|
type_t new;
|
2002-05-10 00:00:23 +00:00
|
|
|
|
|
|
|
if (!class_hash)
|
|
|
|
class_hash = Hash_NewTable (1021, class_get_key, 0, 0);
|
2011-01-17 13:33:33 +00:00
|
|
|
if (sym) {
|
|
|
|
c = Hash_Find (class_hash, sym->name);
|
2002-05-10 00:00:23 +00:00
|
|
|
if (c || !create)
|
|
|
|
return c;
|
|
|
|
}
|
2002-05-08 21:24:24 +00:00
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
c = calloc (sizeof (class_t), 1);
|
2011-01-17 13:33:33 +00:00
|
|
|
if (sym)
|
|
|
|
c->name = sym->name;
|
2011-02-04 05:29:47 +00:00
|
|
|
new = type_Class;
|
2011-01-09 10:41:24 +00:00
|
|
|
new.t.class = c;
|
|
|
|
c->type = find_type (&new);
|
2004-11-02 11:56:00 +00:00
|
|
|
c->methods = new_methodlist ();
|
2010-12-31 06:44:54 +00:00
|
|
|
c->class_type.type = ct_class;
|
2002-11-14 18:17:43 +00:00
|
|
|
c->class_type.c.class = c;
|
2011-02-03 06:21:09 +00:00
|
|
|
if (sym) {
|
2002-05-15 19:10:23 +00:00
|
|
|
Hash_Add (class_hash, c);
|
2011-02-03 06:21:09 +00:00
|
|
|
sym->type = c->type;
|
|
|
|
}
|
2002-05-08 21:24:24 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2004-11-02 07:13:00 +00:00
|
|
|
static void
|
|
|
|
set_self_type (class_t *class, method_t *method)
|
|
|
|
{
|
|
|
|
if (method->instance)
|
2011-01-09 10:41:24 +00:00
|
|
|
method->params->type = pointer_type (class->type);
|
2004-11-02 07:13:00 +00:00
|
|
|
else
|
2011-02-04 05:29:47 +00:00
|
|
|
method->params->type = &type_ClassPtr;
|
2004-11-02 07:13:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
methods_set_self_type (class_t *class, methodlist_t *methods)
|
|
|
|
{
|
|
|
|
method_t *method;
|
|
|
|
|
|
|
|
for (method = methods->head; method; method = method->next)
|
|
|
|
set_self_type (class, method);
|
|
|
|
}
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
void
|
|
|
|
class_add_methods (class_t *class, methodlist_t *methods)
|
|
|
|
{
|
|
|
|
if (!methods)
|
|
|
|
return;
|
2002-11-14 18:17:43 +00:00
|
|
|
|
|
|
|
*class->methods->tail = methods->head;
|
|
|
|
class->methods->tail = methods->tail;
|
2002-05-10 00:00:23 +00:00
|
|
|
free (methods);
|
2004-11-02 07:13:00 +00:00
|
|
|
|
|
|
|
methods_set_self_type (class, class->methods);
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2004-11-11 00:34:00 +00:00
|
|
|
class_add_protocols (class_t *class, protocollist_t *protocols)
|
2002-05-10 00:00:23 +00:00
|
|
|
{
|
2004-11-11 00:34:00 +00:00
|
|
|
int i;
|
2002-05-10 00:00:23 +00:00
|
|
|
protocol_t *p;
|
2004-11-11 00:34:00 +00:00
|
|
|
methodlist_t *methods;
|
2002-05-10 00:00:23 +00:00
|
|
|
|
2004-11-11 00:34:00 +00:00
|
|
|
if (!protocols)
|
|
|
|
return;
|
2002-11-12 19:52:43 +00:00
|
|
|
|
2004-11-11 00:34:00 +00:00
|
|
|
methods = class->methods;
|
2002-11-12 19:52:43 +00:00
|
|
|
|
2004-11-11 00:34:00 +00:00
|
|
|
for (i = 0; i < protocols->count; i++) {
|
|
|
|
p = protocols->list[i];
|
2002-11-12 19:52:43 +00:00
|
|
|
copy_methods (methods, p->methods);
|
2004-11-11 00:34:00 +00:00
|
|
|
if (p->protocols)
|
|
|
|
class_add_protocols (class, p->protocols);
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
2004-11-11 00:34:00 +00:00
|
|
|
class->protocols = protocols;
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
static void
|
|
|
|
begin_category (category_t *category)
|
|
|
|
{
|
|
|
|
pr_category_t *pr_category;
|
|
|
|
class_t *class = category->class;
|
2011-01-24 06:41:43 +00:00
|
|
|
symbol_t *sym;
|
|
|
|
def_t *def;
|
|
|
|
defspace_t *space;
|
2010-12-31 06:44:54 +00:00
|
|
|
|
|
|
|
current_class = &category->class_type;
|
2011-01-24 06:41:43 +00:00
|
|
|
sym = class_symbol (current_class, 0);
|
|
|
|
category->def = def = sym->s.def;
|
|
|
|
def->initialized = def->constant = def->nosave = 1;
|
|
|
|
space = def->space;
|
|
|
|
|
|
|
|
pr_category = &D_STRUCT (pr_category_t, def);
|
|
|
|
EMIT_STRING (space, pr_category->category_name, category->name);
|
|
|
|
EMIT_STRING (space, pr_category->class_name, class->name);
|
|
|
|
EMIT_DEF (space, pr_category->protocols,
|
2010-12-31 06:44:54 +00:00
|
|
|
emit_protocol_list (category->protocols,
|
|
|
|
va ("%s_%s", class->name, category->name)));
|
|
|
|
}
|
|
|
|
|
2011-02-04 06:10:47 +00:00
|
|
|
typedef struct {
|
|
|
|
int count;
|
|
|
|
symbol_t *ivars;
|
|
|
|
dstring_t *encoding;
|
|
|
|
} ivar_data_t;
|
|
|
|
|
|
|
|
static void
|
|
|
|
emit_ivar_count (def_t *def, void *data, int index)
|
|
|
|
{
|
|
|
|
ivar_data_t *ivar_data = (ivar_data_t *) data;
|
|
|
|
|
|
|
|
if (def->type != &type_integer)
|
|
|
|
internal_error (0, "%s: expected integer def", __FUNCTION__);
|
|
|
|
D_INT (def) = ivar_data->count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emit_ivar_list_item (def_t *def, void *data, int index)
|
|
|
|
{
|
|
|
|
ivar_data_t *ivar_data = (ivar_data_t *) data;
|
|
|
|
symbol_t *ivar_sym;
|
|
|
|
pr_ivar_t *ivar;
|
|
|
|
defspace_t *space;
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
//FIXME the type is dynamic, so need a way to pass it before it cn be
|
|
|
|
//checked
|
|
|
|
if (def->type != &XXX)
|
|
|
|
internal_error (0, "%s: expected XXX def",
|
|
|
|
__FUNCTION__);
|
|
|
|
#endif
|
|
|
|
if (index < 0 || index >= ivar_data->count)
|
|
|
|
internal_error (0, "%s: out of bounds index: %d %d",
|
|
|
|
__FUNCTION__, index, ivar_data->count);
|
|
|
|
|
|
|
|
for (ivar_sym = ivar_data->ivars; ivar_sym; ivar_sym = ivar_sym->next) {
|
|
|
|
if (ivar_sym->sy_type != sy_var)
|
|
|
|
continue;
|
|
|
|
if (!index--)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
ivar = D_POINTER (pr_ivar_t, def);
|
|
|
|
space = def->space;
|
|
|
|
dstring_clearstr (ivar_data->encoding);
|
|
|
|
|
|
|
|
EMIT_STRING (space, ivar->ivar_name, ivar_sym->name);
|
|
|
|
encode_type (ivar_data->encoding, ivar_sym->type);
|
|
|
|
EMIT_STRING (space, ivar->ivar_type, ivar_data->encoding->str);
|
|
|
|
ivar->ivar_offset = ivar_sym->s.offset;
|
|
|
|
}
|
|
|
|
|
2011-01-24 06:41:43 +00:00
|
|
|
static def_t *
|
|
|
|
emit_ivars (symtab_t *ivars, const char *name)
|
|
|
|
{
|
|
|
|
static struct_def_t ivar_list_struct[] = {
|
2011-02-04 06:10:47 +00:00
|
|
|
{"ivar_count", &type_integer, emit_ivar_count},
|
|
|
|
{"ivar_list", 0, emit_ivar_list_item},
|
2011-01-24 06:41:43 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
2011-02-04 06:10:47 +00:00
|
|
|
ivar_data_t ivar_data = {0, 0};
|
2011-01-24 06:41:43 +00:00
|
|
|
symbol_t *s;
|
|
|
|
def_t *def;
|
|
|
|
|
2011-02-04 06:10:47 +00:00
|
|
|
ivar_data.encoding = dstring_newstr ();
|
|
|
|
ivar_data.ivars = ivars->symbols;
|
2011-01-24 06:41:43 +00:00
|
|
|
for (s = ivars->symbols; s; s = s->next)
|
|
|
|
if (s->sy_type == sy_var)
|
2011-02-04 06:10:47 +00:00
|
|
|
ivar_data.count++;
|
|
|
|
ivar_list_struct[1].type = array_type (&type_ivar, ivar_data.count);
|
2011-01-24 06:41:43 +00:00
|
|
|
|
2011-02-04 06:10:47 +00:00
|
|
|
def = emit_structure (va ("_OBJ_INSTANCE_VARIABLES_%s", name), 's',
|
|
|
|
ivar_list_struct, 0, &ivar_data, st_static);
|
|
|
|
|
|
|
|
dstring_delete (ivar_data.encoding);
|
2011-01-24 06:41:43 +00:00
|
|
|
return def;
|
|
|
|
}
|
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
static void
|
|
|
|
begin_class (class_t *class)
|
|
|
|
{
|
|
|
|
def_t *meta_def;
|
|
|
|
pr_class_t *meta;
|
2011-01-24 06:41:43 +00:00
|
|
|
pr_class_t *pr_class;
|
|
|
|
symbol_t *sym;
|
|
|
|
def_t *def;
|
|
|
|
defspace_t *space;
|
|
|
|
|
|
|
|
sym = make_symbol (va ("_OBJ_METACLASS_%s", class->name),
|
2011-02-04 05:29:47 +00:00
|
|
|
&type_Class, pr.far_data, st_static);
|
2011-01-24 06:41:43 +00:00
|
|
|
meta_def = sym->s.def;
|
|
|
|
meta_def->initialized = meta_def->constant = meta_def->nosave = 1;
|
|
|
|
space = meta_def->space;
|
|
|
|
meta = &D_STRUCT (pr_class_t, meta_def);
|
|
|
|
EMIT_STRING (space, meta->class_pointer, class->name);
|
2010-12-31 06:44:54 +00:00
|
|
|
if (class->super_class)
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_STRING (space, meta->super_class, class->super_class->name);
|
|
|
|
EMIT_STRING (space, meta->name, class->name);
|
2010-12-31 06:44:54 +00:00
|
|
|
meta->info = _PR_CLS_META;
|
2011-02-04 05:29:47 +00:00
|
|
|
meta->instance_size = type_size (&type_Class);
|
|
|
|
EMIT_DEF (space, meta->ivars, emit_ivars (class_Class.ivars, "Class"));
|
2011-01-24 06:41:43 +00:00
|
|
|
current_class = &class->class_type;
|
|
|
|
sym = class_symbol (current_class, 0);
|
|
|
|
class->def = def = sym->s.def;
|
|
|
|
def->initialized = def->constant = def->nosave = 1;
|
|
|
|
space = def->space;
|
|
|
|
|
|
|
|
pr_class = &D_STRUCT (pr_class_t, def);
|
|
|
|
EMIT_DEF (space, pr_class->class_pointer, meta_def);
|
2010-12-31 06:44:54 +00:00
|
|
|
if (class->super_class) {
|
|
|
|
class_type_t class_type = {ct_class, {0}};
|
|
|
|
class_type.c.class = class->super_class;
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_STRING (space, pr_class->super_class, class->super_class->name);
|
|
|
|
class_symbol (&class_type, 1);
|
2010-12-31 06:44:54 +00:00
|
|
|
}
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_STRING (space, pr_class->name, class->name);
|
|
|
|
pr_class->info = _PR_CLS_CLASS;
|
|
|
|
EMIT_DEF (space, pr_class->protocols,
|
2010-12-31 06:44:54 +00:00
|
|
|
emit_protocol_list (class->protocols, class->name));
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
void
|
2002-11-14 18:17:43 +00:00
|
|
|
class_begin (class_type_t *class_type)
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
2010-12-31 06:44:54 +00:00
|
|
|
switch (class_type->type) {
|
|
|
|
case ct_category:
|
|
|
|
begin_category (class_type->c.category);
|
|
|
|
break;
|
|
|
|
case ct_class:
|
|
|
|
begin_class (class_type->c.class);
|
|
|
|
break;
|
|
|
|
case ct_protocol:
|
|
|
|
return; // probably error recovery
|
2002-05-16 22:33:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-12 11:27:56 +00:00
|
|
|
void
|
2003-03-13 19:16:45 +00:00
|
|
|
emit_class_ref (const char *class_name)
|
|
|
|
{
|
2011-02-11 06:42:37 +00:00
|
|
|
symbol_t *ref_sym;
|
|
|
|
symbol_t *name_sym;
|
|
|
|
def_t *ref_def;
|
|
|
|
def_t *name_def;
|
|
|
|
|
|
|
|
ref_sym = make_symbol (va (".obj_class_ref_%s", class_name), &type_pointer,
|
|
|
|
pr.far_data, st_static);
|
|
|
|
if (!ref_sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, ref_sym);
|
|
|
|
ref_def = ref_sym->s.def;
|
|
|
|
if (ref_def->initialized)
|
2003-03-13 19:16:45 +00:00
|
|
|
return;
|
2011-02-11 06:42:37 +00:00
|
|
|
ref_def->initialized = ref_def->constant = ref_def->nosave = 1;
|
|
|
|
name_sym = make_symbol (va (".obj_class_name_%s", class_name),
|
|
|
|
&type_pointer, pr.far_data, st_extern);
|
|
|
|
if (!name_sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, name_sym);
|
|
|
|
name_def = name_sym->s.def;
|
|
|
|
if (!name_def->external)
|
|
|
|
D_INT (ref_def) = name_def->offset;
|
|
|
|
reloc_def_def (name_def, ref_def->offset);
|
2003-03-13 19:16:45 +00:00
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
static void
|
2003-03-13 19:16:45 +00:00
|
|
|
emit_class_name (const char *class_name)
|
|
|
|
{
|
2011-02-11 06:42:37 +00:00
|
|
|
symbol_t *name_sym;
|
|
|
|
def_t *name_def;
|
|
|
|
|
|
|
|
name_sym = make_symbol (va (".obj_class_name_%s", class_name),
|
|
|
|
&type_pointer, pr.far_data, st_global);
|
|
|
|
if (!name_sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, name_sym);
|
|
|
|
name_def = name_sym->s.def;
|
|
|
|
if (name_def->initialized)
|
2003-03-13 19:16:45 +00:00
|
|
|
return;
|
2011-02-11 06:42:37 +00:00
|
|
|
name_def->initialized = name_def->constant = 1;
|
|
|
|
name_def->nosave = 1;
|
|
|
|
D_INT (name_def) = 0;
|
2003-03-13 19:16:45 +00:00
|
|
|
}
|
|
|
|
|
2010-12-12 11:27:56 +00:00
|
|
|
void
|
|
|
|
emit_category_ref (const char *class_name, const char *category_name)
|
|
|
|
{
|
2011-02-11 06:42:37 +00:00
|
|
|
symbol_t *ref_sym;
|
|
|
|
symbol_t *name_sym;
|
|
|
|
def_t *ref_def;
|
|
|
|
def_t *name_def;
|
2010-12-12 11:27:56 +00:00
|
|
|
|
2011-02-11 06:42:37 +00:00
|
|
|
ref_sym = make_symbol (va (".obj_category_ref_%s_%s",
|
2011-01-24 06:41:43 +00:00
|
|
|
class_name, category_name),
|
2011-02-11 06:42:37 +00:00
|
|
|
&type_pointer, pr.far_data, st_static);
|
|
|
|
if (!ref_sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, ref_sym);
|
|
|
|
ref_def = ref_sym->s.def;
|
|
|
|
if (ref_def->initialized)
|
2010-12-12 11:27:56 +00:00
|
|
|
return;
|
2011-02-11 06:42:37 +00:00
|
|
|
ref_def->initialized = ref_def->constant = 1;
|
|
|
|
ref_def->nosave = 1;
|
|
|
|
name_sym = make_symbol (va (".obj_category_name_%s_%s",
|
2011-01-24 06:41:43 +00:00
|
|
|
class_name, category_name),
|
2011-02-11 06:42:37 +00:00
|
|
|
&type_pointer, pr.far_data, st_extern);
|
|
|
|
if (!name_sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, name_sym);
|
|
|
|
name_def = name_sym->s.def;
|
|
|
|
if (!name_def->external)
|
|
|
|
D_INT (ref_def) = name_def->offset;
|
|
|
|
reloc_def_def (name_def, ref_def->offset);
|
2010-12-12 11:27:56 +00:00
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
static void
|
2003-03-13 19:16:45 +00:00
|
|
|
emit_category_name (const char *class_name, const char *category_name)
|
|
|
|
{
|
2011-02-11 06:42:37 +00:00
|
|
|
symbol_t *name_sym;
|
|
|
|
def_t *name_def;
|
|
|
|
|
|
|
|
name_sym = make_symbol (va (".obj_category_name_%s_%s",
|
|
|
|
class_name, category_name),
|
|
|
|
&type_pointer, pr.far_data, st_global);
|
|
|
|
if (!name_sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, name_sym);
|
|
|
|
name_def = name_sym->s.def;
|
|
|
|
if (name_def->initialized)
|
2003-03-13 19:16:45 +00:00
|
|
|
return;
|
2011-02-11 06:42:37 +00:00
|
|
|
name_def->initialized = name_def->constant = 1;
|
|
|
|
name_def->nosave = 1;
|
|
|
|
D_INT (name_def) = 0;
|
2003-03-13 19:16:45 +00:00
|
|
|
}
|
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
static void
|
|
|
|
finish_category (category_t *category)
|
2002-05-16 22:33:11 +00:00
|
|
|
{
|
2010-12-31 06:44:54 +00:00
|
|
|
pr_category_t *pr_category;
|
|
|
|
class_t *class = category->class;
|
|
|
|
char *name;
|
2011-01-24 06:41:43 +00:00
|
|
|
defspace_t *space;
|
2003-07-24 19:41:59 +00:00
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
if (!category->def) // probably in error recovery
|
|
|
|
return;
|
|
|
|
name = nva ("%s_%s", class->name, category->name);
|
2011-01-24 06:41:43 +00:00
|
|
|
pr_category = &D_STRUCT (pr_category_t, category->def);
|
|
|
|
space = category->def->space;
|
|
|
|
EMIT_DEF (space, pr_category->instance_methods,
|
2010-12-31 06:44:54 +00:00
|
|
|
emit_methods (category->methods, name, 1));
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_DEF (space, pr_category->class_methods,
|
2010-12-31 06:44:54 +00:00
|
|
|
emit_methods (category->methods, name, 0));
|
|
|
|
free (name);
|
|
|
|
emit_class_ref (class->name);
|
|
|
|
emit_category_name (class->name, category->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
finish_class (class_t *class)
|
|
|
|
{
|
|
|
|
pr_class_t *meta;
|
|
|
|
pr_class_t *cls;
|
2011-01-24 06:41:43 +00:00
|
|
|
defspace_t *space;
|
2002-05-16 22:33:11 +00:00
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
if (!class->def) // probably in error recovery
|
|
|
|
return;
|
2011-01-24 06:41:43 +00:00
|
|
|
space = class->def->space;
|
|
|
|
cls = &D_STRUCT (pr_class_t, class->def);
|
2002-05-16 22:33:11 +00:00
|
|
|
|
2011-01-24 06:41:43 +00:00
|
|
|
meta = &G_STRUCT (space, pr_class_t, cls->class_pointer);
|
2010-12-31 06:44:54 +00:00
|
|
|
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_DEF (space, meta->methods, emit_methods (class->methods,
|
|
|
|
class->name, 0));
|
2010-12-31 06:44:54 +00:00
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
cls->instance_size = class->ivars ? class->ivars->size : 0;
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_DEF (space, cls->ivars, emit_ivars (class->ivars, class->name));
|
|
|
|
EMIT_DEF (space, cls->methods, emit_methods (class->methods,
|
|
|
|
class->name, 1));
|
2010-12-31 06:44:54 +00:00
|
|
|
if (class->super_class)
|
|
|
|
emit_class_ref (class->super_class->name);
|
|
|
|
emit_class_name (class->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
class_finish (class_type_t *class_type)
|
|
|
|
{
|
|
|
|
switch (class_type->type) {
|
|
|
|
case ct_category:
|
|
|
|
finish_category (class_type->c.category);
|
|
|
|
break;
|
|
|
|
case ct_class:
|
|
|
|
finish_class (class_type->c.class);
|
|
|
|
break;
|
|
|
|
case ct_protocol:
|
|
|
|
return; // probably in error recovery
|
|
|
|
}
|
|
|
|
}
|
2002-05-16 22:33:11 +00:00
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
class_t *
|
|
|
|
extract_class (class_type_t *class_type)
|
|
|
|
{
|
|
|
|
switch (class_type->type) {
|
|
|
|
case ct_class:
|
|
|
|
return current_class->c.class;
|
|
|
|
case ct_category:
|
|
|
|
return current_class->c.category->class;
|
|
|
|
case ct_protocol:
|
|
|
|
return 0; // probably in error recovery
|
2002-05-15 23:24:19 +00:00
|
|
|
}
|
2010-12-31 06:44:54 +00:00
|
|
|
return 0; // should not happen
|
2002-05-15 23:24:19 +00:00
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
int
|
2010-12-31 06:44:54 +00:00
|
|
|
class_access (class_type_t *class_type, class_t *class)
|
2002-11-14 18:17:43 +00:00
|
|
|
{
|
2004-11-13 01:37:00 +00:00
|
|
|
class_t *cur;
|
2010-12-31 06:44:54 +00:00
|
|
|
if (class_type) {
|
|
|
|
if (!(cur = extract_class (class_type)))
|
|
|
|
return vis_private;
|
2004-11-13 01:37:00 +00:00
|
|
|
if (cur == class)
|
|
|
|
return vis_private;
|
|
|
|
cur = cur->super_class;
|
|
|
|
while (cur) {
|
|
|
|
if (cur == class)
|
|
|
|
return vis_protected;
|
|
|
|
cur = cur->super_class;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return vis_public;
|
2002-11-14 18:17:43 +00:00
|
|
|
}
|
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
symbol_t *
|
2004-11-13 01:37:00 +00:00
|
|
|
class_find_ivar (class_t *class, int vis, const char *name)
|
2002-05-17 06:20:27 +00:00
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
symbol_t *ivar;
|
2002-05-17 06:20:27 +00:00
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
ivar = symtab_lookup (class->ivars, name);
|
|
|
|
if (ivar) {
|
|
|
|
if (ivar->visibility > (vis_e) vis)
|
|
|
|
goto access_error;
|
|
|
|
return ivar;
|
2002-05-17 06:20:27 +00:00
|
|
|
}
|
2002-11-12 19:52:43 +00:00
|
|
|
error (0, "%s.%s does not exist", class->name, name);
|
2002-05-17 06:20:27 +00:00
|
|
|
return 0;
|
2003-07-24 19:41:59 +00:00
|
|
|
access_error:
|
2002-11-12 19:52:43 +00:00
|
|
|
error (0, "%s.%s is not accessable here", class->name, name);
|
2002-05-17 19:35:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
method_t *
|
2002-11-14 18:17:43 +00:00
|
|
|
class_find_method (class_type_t *class_type, method_t *method)
|
2002-05-15 23:24:19 +00:00
|
|
|
{
|
2010-12-31 06:44:54 +00:00
|
|
|
methodlist_t *methods = 0, *start_methods;
|
2002-05-15 23:24:19 +00:00
|
|
|
method_t *m;
|
|
|
|
dstring_t *sel;
|
2010-12-31 06:44:54 +00:00
|
|
|
class_t *class = 0, *start_class;
|
2002-11-14 18:17:43 +00:00
|
|
|
const char *class_name;
|
|
|
|
const char *category_name = 0;
|
2002-05-15 23:24:19 +00:00
|
|
|
|
2010-12-31 06:44:54 +00:00
|
|
|
switch (class_type->type) {
|
|
|
|
case ct_category:
|
|
|
|
methods = class_type->c.category->methods;
|
|
|
|
category_name = class_type->c.category->name;
|
|
|
|
class = class_type->c.category->class;
|
|
|
|
break;
|
|
|
|
case ct_class:
|
|
|
|
class = class_type->c.class;
|
|
|
|
methods = class->methods;
|
|
|
|
break;
|
|
|
|
case ct_protocol:
|
|
|
|
return 0; // probably in error recovery
|
2003-08-01 05:08:15 +00:00
|
|
|
}
|
|
|
|
class_name = class->name;
|
|
|
|
start_methods = methods;
|
|
|
|
start_class = class;
|
|
|
|
while (class) {
|
|
|
|
for (m = methods->head; m; m = m->next)
|
|
|
|
if (method_compare (method, m)) {
|
|
|
|
if (m->type != method->type)
|
|
|
|
error (0, "method type mismatch");
|
|
|
|
if (methods != start_methods) {
|
|
|
|
m = copy_method (m);
|
2004-11-02 11:56:00 +00:00
|
|
|
set_self_type (start_class, m);
|
2003-08-01 16:24:44 +00:00
|
|
|
add_method (start_methods, m);
|
2003-08-01 05:08:15 +00:00
|
|
|
}
|
2004-11-02 11:56:00 +00:00
|
|
|
method_set_param_names (m, method);
|
2003-08-01 05:08:15 +00:00
|
|
|
return m;
|
|
|
|
}
|
|
|
|
if (class->methods == methods)
|
|
|
|
class = class->super_class;
|
|
|
|
else
|
|
|
|
methods = class->methods;
|
2002-11-14 18:17:43 +00:00
|
|
|
}
|
2002-05-15 23:24:19 +00:00
|
|
|
sel = dstring_newstr ();
|
|
|
|
selector_name (sel, (keywordarg_t *)method->selector);
|
2004-11-02 11:56:00 +00:00
|
|
|
set_self_type (start_class, method);
|
2004-02-03 07:48:23 +00:00
|
|
|
add_method (start_methods, method);
|
2002-05-15 23:24:19 +00:00
|
|
|
dstring_delete (sel);
|
|
|
|
return method;
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
method_t *
|
2003-07-27 19:47:14 +00:00
|
|
|
class_message_response (class_t *class, int class_msg, expr_t *sel)
|
2002-05-16 20:20:23 +00:00
|
|
|
{
|
2003-08-23 06:15:19 +00:00
|
|
|
selector_t *selector;
|
2002-05-16 20:20:23 +00:00
|
|
|
method_t *m;
|
|
|
|
class_t *c = class;
|
2002-11-12 19:52:43 +00:00
|
|
|
category_t *cat;
|
2002-05-16 20:20:23 +00:00
|
|
|
|
2011-01-18 23:41:24 +00:00
|
|
|
if (sel->type != ex_value && sel->e.value.type != ev_pointer
|
|
|
|
&& sel->e.value.v.pointer.type != type_SEL.t.fldptr.type) {
|
2002-05-16 20:20:23 +00:00
|
|
|
error (sel, "not a selector");
|
|
|
|
return 0;
|
|
|
|
}
|
2003-08-23 06:15:19 +00:00
|
|
|
selector = get_selector (sel);
|
2003-07-29 17:38:29 +00:00
|
|
|
if (class->type == &type_id) {
|
2003-08-23 06:15:19 +00:00
|
|
|
m = find_method (selector->name);
|
2003-07-29 17:38:29 +00:00
|
|
|
if (m)
|
|
|
|
return m;
|
2004-02-17 00:39:21 +00:00
|
|
|
//FIXME right option?
|
|
|
|
if (options.warnings.interface_check)
|
|
|
|
warning (sel, "could not find method for %c%s",
|
|
|
|
class_msg ? '+' : '-', selector->name);
|
2003-07-29 17:38:29 +00:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
while (c) {
|
2004-11-02 11:56:00 +00:00
|
|
|
for (cat = c->categories; cat; cat = cat->next) {
|
|
|
|
for (m = cat->methods->head; m; m = m->next) {
|
2010-12-16 07:41:16 +00:00
|
|
|
if (((!c->super_class && class_msg)
|
|
|
|
|| class_msg != m->instance)
|
|
|
|
&& strcmp (selector->name, m->name) == 0)
|
2002-11-12 19:52:43 +00:00
|
|
|
return m;
|
|
|
|
}
|
|
|
|
}
|
2004-11-02 11:56:00 +00:00
|
|
|
for (m = c->methods->head; m; m = m->next) {
|
2010-12-16 07:41:16 +00:00
|
|
|
if (((!c->super_class && class_msg)
|
|
|
|
|| class_msg != m->instance)
|
|
|
|
&& strcmp (selector->name, m->name) == 0)
|
2004-11-02 11:56:00 +00:00
|
|
|
return m;
|
|
|
|
}
|
2003-07-29 17:38:29 +00:00
|
|
|
c = c->super_class;
|
2002-05-16 20:20:23 +00:00
|
|
|
}
|
2004-02-17 00:39:21 +00:00
|
|
|
//FIXME right option?
|
|
|
|
if (options.warnings.interface_check)
|
2010-12-16 07:41:16 +00:00
|
|
|
warning (sel, "%s may not respond to %c%s", class->name,
|
2004-02-17 00:39:21 +00:00
|
|
|
class_msg ? '+' : '-', selector->name);
|
2002-05-16 20:20:23 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-04 11:22:48 +00:00
|
|
|
static uintptr_t
|
2002-05-15 19:10:23 +00:00
|
|
|
category_get_hash (void *_c, void *unused)
|
|
|
|
{
|
2002-11-12 19:52:43 +00:00
|
|
|
category_t *c = (category_t *) _c;
|
|
|
|
return Hash_String (c->name) ^ Hash_String (c->class->name);
|
2002-05-15 19:10:23 +00:00
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
static int
|
2002-05-15 19:10:23 +00:00
|
|
|
category_compare (void *_c1, void *_c2, void *unused)
|
|
|
|
{
|
2002-11-12 19:52:43 +00:00
|
|
|
category_t *c1 = (category_t *) _c1;
|
|
|
|
category_t *c2 = (category_t *) _c2;
|
|
|
|
return strcmp (c1->name, c2->name) == 0
|
2003-07-24 19:41:59 +00:00
|
|
|
&& strcmp (c1->class->name, c2->class->name) == 0;
|
2002-05-15 19:10:23 +00:00
|
|
|
}
|
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
symtab_t *
|
2003-07-30 04:11:45 +00:00
|
|
|
class_new_ivars (class_t *class)
|
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
symtab_t *ivars;
|
|
|
|
symtab_t *super_ivars = 0;
|
|
|
|
|
|
|
|
if (class->super_class)
|
|
|
|
super_ivars = class->super_class->ivars;
|
|
|
|
ivars = new_symtab (super_ivars, stab_local);
|
2003-07-30 04:11:45 +00:00
|
|
|
return ivars;
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
void
|
2011-01-17 13:33:33 +00:00
|
|
|
class_add_ivars (class_t *class, symtab_t *ivars)
|
2002-05-17 06:20:27 +00:00
|
|
|
{
|
2011-02-09 13:02:52 +00:00
|
|
|
int base = 0;
|
|
|
|
symbol_t *sym;
|
|
|
|
|
|
|
|
if (class->super_class)
|
|
|
|
base = type_size (class->super_class->type);
|
|
|
|
for (sym = ivars->symbols; sym; sym = sym->next)
|
|
|
|
sym->s.offset += base;
|
2002-05-17 06:20:27 +00:00
|
|
|
class->ivars = ivars;
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
void
|
2011-01-17 13:33:33 +00:00
|
|
|
class_check_ivars (class_t *class, symtab_t *ivars)
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
2011-01-24 12:13:37 +00:00
|
|
|
symbol_t *civ, *iv;
|
|
|
|
|
|
|
|
if (!class->ivars != !ivars)
|
|
|
|
goto missmatch;
|
|
|
|
if (ivars) {
|
|
|
|
for (civ = class->ivars->symbols, iv = ivars->symbols;
|
|
|
|
civ && iv; civ = civ->next, iv = iv->next) {
|
|
|
|
if (memcmp (civ, iv, sizeof (*civ))) //FIXME does this work?
|
|
|
|
goto missmatch;
|
|
|
|
}
|
2004-02-17 00:39:21 +00:00
|
|
|
}
|
2011-01-24 12:13:37 +00:00
|
|
|
class->ivars = ivars;
|
|
|
|
return;
|
|
|
|
missmatch:
|
|
|
|
//FIXME right option?
|
|
|
|
if (options.warnings.interface_check)
|
|
|
|
warning (0, "instance variable missmatch for %s", class->name);
|
2002-05-15 19:10:23 +00:00
|
|
|
class->ivars = ivars;
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
category_t *
|
2011-01-17 13:33:33 +00:00
|
|
|
get_category (symbol_t *class_name, const char *category_name, int create)
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
2002-11-14 18:17:43 +00:00
|
|
|
category_t *category;
|
2002-11-12 19:52:43 +00:00
|
|
|
class_t *class;
|
2002-05-15 19:10:23 +00:00
|
|
|
|
|
|
|
if (!category_hash) {
|
|
|
|
category_hash = Hash_NewTable (1021, 0, 0, 0);
|
|
|
|
Hash_SetHashCompare (category_hash,
|
2003-07-24 19:41:59 +00:00
|
|
|
category_get_hash, category_compare);
|
2002-05-15 19:10:23 +00:00
|
|
|
}
|
2002-11-12 19:52:43 +00:00
|
|
|
class = get_class (class_name, 0);
|
|
|
|
if (!class) {
|
2011-01-17 13:33:33 +00:00
|
|
|
error (0, "undefined class %s", class_name->name);
|
2002-11-14 18:17:43 +00:00
|
|
|
return 0;
|
2002-11-12 19:52:43 +00:00
|
|
|
}
|
2002-05-15 19:10:23 +00:00
|
|
|
if (class_name && category_name) {
|
2002-11-14 18:17:43 +00:00
|
|
|
category_t _c = {0, category_name, class};
|
|
|
|
|
|
|
|
category = Hash_FindElement (category_hash, &_c);
|
|
|
|
if (category || !create)
|
|
|
|
return category;
|
2002-05-15 19:10:23 +00:00
|
|
|
}
|
|
|
|
|
2002-11-14 18:17:43 +00:00
|
|
|
category = calloc (sizeof (category_t), 1);
|
|
|
|
category->next = class->categories;
|
|
|
|
class->categories = category;
|
|
|
|
category->name = category_name;
|
|
|
|
category->class = class;
|
2004-11-02 11:56:00 +00:00
|
|
|
category->methods = new_methodlist ();
|
2010-12-31 06:44:54 +00:00
|
|
|
category->class_type.type = ct_category;
|
2002-11-14 18:17:43 +00:00
|
|
|
category->class_type.c.category = category;
|
2002-05-15 19:10:23 +00:00
|
|
|
if (class_name && category_name)
|
2002-11-14 18:17:43 +00:00
|
|
|
Hash_AddElement (category_hash, category);
|
|
|
|
return category;
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
void
|
2002-11-14 18:17:43 +00:00
|
|
|
category_add_methods (category_t *category, methodlist_t *methods)
|
|
|
|
{
|
|
|
|
if (!methods)
|
|
|
|
return;
|
|
|
|
*category->methods->tail = methods->head;
|
|
|
|
category->methods->tail = methods->tail;
|
|
|
|
free (methods);
|
2004-11-02 11:56:00 +00:00
|
|
|
|
|
|
|
methods_set_self_type (category->class, category->methods);
|
2002-11-14 18:17:43 +00:00
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
void
|
2004-11-11 00:34:00 +00:00
|
|
|
category_add_protocols (category_t *category, protocollist_t *protocols)
|
2002-11-14 18:17:43 +00:00
|
|
|
{
|
2004-11-11 00:34:00 +00:00
|
|
|
int i;
|
2002-11-14 18:17:43 +00:00
|
|
|
protocol_t *p;
|
2004-11-11 00:34:00 +00:00
|
|
|
methodlist_t *methods;
|
2002-11-14 18:17:43 +00:00
|
|
|
|
2004-11-11 00:34:00 +00:00
|
|
|
if (!protocols)
|
|
|
|
return;
|
2002-11-14 18:17:43 +00:00
|
|
|
|
2004-11-11 00:34:00 +00:00
|
|
|
methods = category->methods;
|
2002-11-14 18:17:43 +00:00
|
|
|
|
2004-11-11 00:34:00 +00:00
|
|
|
for (i = 0; i < protocols->count; i++) {
|
|
|
|
p = protocols->list[i];
|
2002-11-14 18:17:43 +00:00
|
|
|
copy_methods (methods, p->methods);
|
2004-11-11 00:34:00 +00:00
|
|
|
if (p->protocols)
|
|
|
|
category_add_protocols (category, p->protocols);
|
2002-11-14 18:17:43 +00:00
|
|
|
}
|
2004-11-11 00:34:00 +00:00
|
|
|
category->protocols = protocols;
|
2002-05-15 19:10:23 +00:00
|
|
|
}
|
|
|
|
|
2011-02-06 05:33:52 +00:00
|
|
|
symbol_t *
|
|
|
|
class_pointer_symbol (class_t *class)
|
2002-05-10 00:00:23 +00:00
|
|
|
{
|
2002-05-16 22:33:11 +00:00
|
|
|
def_t *def;
|
2011-02-06 05:33:52 +00:00
|
|
|
symbol_t *sym;
|
2010-12-31 06:44:54 +00:00
|
|
|
class_type_t class_type = {ct_class, {0}};
|
2002-11-14 18:17:43 +00:00
|
|
|
|
|
|
|
class_type.c.class = class;
|
2002-05-16 22:33:11 +00:00
|
|
|
|
2011-02-06 05:33:52 +00:00
|
|
|
sym = make_symbol (va ("_OBJ_CLASS_POINTER_%s", class->name),
|
2011-02-08 08:09:27 +00:00
|
|
|
&type_ClassPtr,
|
2011-02-06 05:33:52 +00:00
|
|
|
pr.far_data, st_static);
|
2011-02-06 07:56:19 +00:00
|
|
|
if (!sym->table)
|
|
|
|
symtab_addsymbol (pr.symtab, sym);
|
2011-02-06 05:33:52 +00:00
|
|
|
def = sym->s.def;
|
2002-05-17 18:46:11 +00:00
|
|
|
if (def->initialized)
|
2011-02-06 05:33:52 +00:00
|
|
|
return sym;
|
2002-05-17 18:46:11 +00:00
|
|
|
def->initialized = def->constant = 1;
|
2003-04-25 17:00:22 +00:00
|
|
|
def->nosave = 1;
|
2002-07-03 20:16:32 +00:00
|
|
|
if (!class->def)
|
2011-01-24 06:41:43 +00:00
|
|
|
class->def = class_symbol (&class_type, 1)->s.def;
|
2002-07-03 20:16:32 +00:00
|
|
|
if (!class->def->external)
|
2011-01-24 06:41:43 +00:00
|
|
|
D_INT (def) = class->def->offset;
|
|
|
|
reloc_def_def (class->def, def->offset);
|
2011-02-06 05:33:52 +00:00
|
|
|
return sym;
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
|
2011-01-24 12:13:37 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
def_t *refs;
|
|
|
|
class_t **classes;
|
|
|
|
int cls_def_cnt;
|
|
|
|
category_t **categories;
|
|
|
|
int cat_def_cnt;
|
|
|
|
} obj_symtab_data_t;
|
|
|
|
|
|
|
|
static void
|
|
|
|
emit_symtab_ref_cnt (def_t *def, void *data, int index)
|
|
|
|
{
|
|
|
|
obj_symtab_data_t *da = (obj_symtab_data_t *)data;
|
|
|
|
|
|
|
|
if (def->type != &type_integer)
|
|
|
|
internal_error (0, "%s: expected integer def", __FUNCTION__);
|
2011-02-08 13:28:32 +00:00
|
|
|
D_INT (def) = 0;
|
|
|
|
if (da->refs)
|
|
|
|
D_INT (def) = da->refs->type->t.array.size;
|
2011-01-24 12:13:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emit_symtab_refs (def_t *def, void *data, int index)
|
|
|
|
{
|
|
|
|
obj_symtab_data_t *da = (obj_symtab_data_t *)data;
|
|
|
|
|
|
|
|
if (def->type != &type_SEL)
|
|
|
|
internal_error (0, "%s: expected SEL def", __FUNCTION__);
|
2011-02-08 13:28:32 +00:00
|
|
|
D_INT (def) = 0;
|
|
|
|
if (da->refs)
|
2011-02-09 06:58:32 +00:00
|
|
|
EMIT_DEF (def->space, D_INT (def), da->refs);
|
2011-01-24 12:13:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emit_symtab_cls_def_cnt (def_t *def, void *data, int index)
|
|
|
|
{
|
|
|
|
obj_symtab_data_t *da = (obj_symtab_data_t *)data;
|
|
|
|
|
|
|
|
if (def->type != &type_integer)
|
|
|
|
internal_error (0, "%s: expected integer def", __FUNCTION__);
|
|
|
|
D_INT (def) = da->cls_def_cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emit_symtab_cat_def_cnt (def_t *def, void *data, int index)
|
|
|
|
{
|
|
|
|
obj_symtab_data_t *da = (obj_symtab_data_t *)data;
|
|
|
|
|
|
|
|
if (def->type != &type_integer)
|
|
|
|
internal_error (0, "%s: expected integer def", __FUNCTION__);
|
|
|
|
D_INT (def) = da->cat_def_cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
emit_symtab_defs (def_t *def, void *data, int index)
|
|
|
|
{
|
|
|
|
obj_symtab_data_t *da = (obj_symtab_data_t *)data;
|
|
|
|
|
2011-02-08 13:31:09 +00:00
|
|
|
if (!is_array (def->type) || def->type->t.array.type->type != ev_pointer)
|
|
|
|
internal_error (0, "%s: expected array of pointers def", __FUNCTION__);
|
2011-01-24 12:13:37 +00:00
|
|
|
if (index < 0 || index >= da->cls_def_cnt + da->cat_def_cnt)
|
|
|
|
internal_error (0, "%s: out of bounds index: %d %d",
|
|
|
|
__FUNCTION__, index,
|
|
|
|
da->cls_def_cnt + da->cat_def_cnt);
|
|
|
|
|
|
|
|
if (index < da->cls_def_cnt) {
|
|
|
|
class_t *cl = da->classes[index];
|
2011-02-09 06:58:32 +00:00
|
|
|
EMIT_DEF (def->space, D_INT (def), cl->def);
|
2011-01-24 12:13:37 +00:00
|
|
|
} else {
|
|
|
|
category_t *ca = da->categories[index - da->cls_def_cnt];
|
2011-02-09 06:58:32 +00:00
|
|
|
EMIT_DEF (def->space, D_INT (def), ca->def);
|
2011-01-24 12:13:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-27 18:50:17 +00:00
|
|
|
void
|
2002-05-21 21:28:40 +00:00
|
|
|
class_finish_module (void)
|
|
|
|
{
|
2011-01-17 13:33:33 +00:00
|
|
|
static struct_def_t symtab_struct[] = {
|
2011-01-24 12:13:37 +00:00
|
|
|
{"sel_ref_cnt", &type_integer, emit_symtab_ref_cnt},
|
|
|
|
{"refs", &type_SEL, emit_symtab_refs},
|
|
|
|
{"cls_def_cnt", &type_integer, emit_symtab_cls_def_cnt},
|
|
|
|
{"cat_def_cnt", &type_integer, emit_symtab_cat_def_cnt},
|
|
|
|
{"defs", 0, emit_symtab_defs},
|
2011-01-17 13:33:33 +00:00
|
|
|
{0, 0}
|
|
|
|
};
|
2011-01-24 12:13:37 +00:00
|
|
|
|
|
|
|
obj_symtab_data_t data = {0, 0, 0, 0, 0};
|
|
|
|
|
|
|
|
class_t **cl;
|
|
|
|
category_t **ca;
|
2002-05-21 21:28:40 +00:00
|
|
|
def_t *symtab_def;
|
2011-01-19 13:19:26 +00:00
|
|
|
symbol_t *module_sym;
|
2011-01-24 12:13:37 +00:00
|
|
|
pr_module_t *module;
|
2011-01-19 13:19:26 +00:00
|
|
|
symbol_t *exec_class_sym;
|
|
|
|
symbol_t *init_sym;
|
2002-05-21 21:28:40 +00:00
|
|
|
expr_t *init_expr;
|
|
|
|
|
2011-01-24 12:13:37 +00:00
|
|
|
data.refs = emit_selectors ();
|
2002-05-21 21:28:40 +00:00
|
|
|
if (class_hash) {
|
2011-01-24 12:13:37 +00:00
|
|
|
data.classes = (class_t **) Hash_GetList (class_hash);
|
|
|
|
for (cl = data.classes; *cl; cl++)
|
2002-11-14 18:17:43 +00:00
|
|
|
if ((*cl)->def && !(*cl)->def->external)
|
2011-01-24 12:13:37 +00:00
|
|
|
data.cls_def_cnt++;
|
2002-05-21 21:28:40 +00:00
|
|
|
}
|
|
|
|
if (category_hash) {
|
2011-01-24 12:13:37 +00:00
|
|
|
data.categories = (category_t **) Hash_GetList (category_hash);
|
|
|
|
for (ca = data.categories; *ca; ca++)
|
2002-11-14 18:17:43 +00:00
|
|
|
if ((*ca)->def && !(*ca)->def->external)
|
2011-01-24 12:13:37 +00:00
|
|
|
data.cat_def_cnt++;
|
2002-05-21 21:28:40 +00:00
|
|
|
}
|
2011-01-24 12:13:37 +00:00
|
|
|
if (!data.refs && !data.cls_def_cnt && !data.cat_def_cnt)
|
2002-05-21 21:28:40 +00:00
|
|
|
return;
|
2011-01-17 13:33:33 +00:00
|
|
|
symtab_struct[4].type = array_type (&type_pointer,
|
2011-01-24 12:13:37 +00:00
|
|
|
data.cls_def_cnt + data.cat_def_cnt);
|
|
|
|
symtab_def = emit_structure ("_OBJ_SYMTAB", 's', symtab_struct, 0, &data,
|
|
|
|
st_static);
|
|
|
|
|
|
|
|
module_sym = make_symbol ("_OBJ_MODULE", &type_module, pr.near_data,
|
|
|
|
st_static);
|
2011-02-08 13:38:34 +00:00
|
|
|
symtab_addsymbol (current_symtab, module_sym);
|
2011-01-24 12:13:37 +00:00
|
|
|
module = &D_STRUCT (pr_module_t, module_sym->s.def);
|
|
|
|
module->size = type_size (&type_module);
|
|
|
|
EMIT_STRING (module_sym->s.def->space, module->name,
|
|
|
|
GETSTR (pr.source_file));
|
|
|
|
EMIT_DEF (module_sym->s.def->space, module->symtab, symtab_def);
|
2002-05-21 21:28:40 +00:00
|
|
|
|
2011-02-11 09:27:07 +00:00
|
|
|
exec_class_sym = symtab_lookup (pr.symtab, "__obj_exec_class");
|
|
|
|
if (!exec_class_sym) {
|
|
|
|
exec_class_sym = new_symbol_type ("__obj_exec_class",
|
|
|
|
&type_obj_exec_class);
|
|
|
|
exec_class_sym = function_symbol (exec_class_sym, 0, 1);
|
|
|
|
make_function (exec_class_sym, 0, st_extern);
|
|
|
|
}
|
2002-05-21 21:28:40 +00:00
|
|
|
|
2011-01-19 13:19:26 +00:00
|
|
|
init_sym = new_symbol_type (".ctor", &type_function);
|
2011-02-08 13:38:34 +00:00
|
|
|
init_sym = function_symbol (init_sym, 0, 1);
|
|
|
|
|
2002-05-21 21:28:40 +00:00
|
|
|
init_expr = new_block_expr ();
|
|
|
|
append_expr (init_expr,
|
2011-01-19 13:19:26 +00:00
|
|
|
build_function_call (new_symbol_expr (exec_class_sym),
|
|
|
|
exec_class_sym->type,
|
|
|
|
address_expr (new_symbol_expr (module_sym),
|
2004-11-11 00:34:00 +00:00
|
|
|
0, 0)));
|
2011-02-08 13:38:34 +00:00
|
|
|
|
|
|
|
current_func = begin_function (init_sym, 0, current_symtab);
|
2011-01-19 13:19:26 +00:00
|
|
|
build_code_function (init_sym, 0, init_expr);;
|
2008-08-01 22:55:10 +00:00
|
|
|
current_func = 0;
|
2002-05-21 21:28:40 +00:00
|
|
|
}
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
protocol_t *
|
2002-05-10 00:00:23 +00:00
|
|
|
get_protocol (const char *name, int create)
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2002-05-10 00:00:23 +00:00
|
|
|
protocol_t *p;
|
|
|
|
|
2003-07-24 19:41:59 +00:00
|
|
|
if (!protocol_hash)
|
|
|
|
protocol_hash = Hash_NewTable (1021, protocol_get_key, 0, 0);
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
if (name) {
|
|
|
|
p = Hash_Find (protocol_hash, name);
|
|
|
|
if (p || !create)
|
|
|
|
return p;
|
|
|
|
}
|
2002-05-08 21:24:24 +00:00
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
p = calloc (sizeof (protocol_t), 1);
|
2002-05-08 21:24:24 +00:00
|
|
|
p->name = name;
|
2004-11-11 00:34:00 +00:00
|
|
|
p->methods = new_methodlist ();
|
2010-12-31 06:44:54 +00:00
|
|
|
p->class_type.type = ct_protocol;
|
|
|
|
p->class_type.c.protocol = p;
|
2002-05-15 19:10:23 +00:00
|
|
|
if (name)
|
|
|
|
Hash_Add (protocol_hash, p);
|
2002-05-08 21:24:24 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
void
|
|
|
|
protocol_add_methods (protocol_t *protocol, methodlist_t *methods)
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2002-05-10 00:00:23 +00:00
|
|
|
if (!methods)
|
|
|
|
return;
|
|
|
|
*protocol->methods->tail = methods->head;
|
|
|
|
protocol->methods->tail = methods->tail;
|
|
|
|
free (methods);
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
void
|
2004-11-11 00:34:00 +00:00
|
|
|
protocol_add_protocols (protocol_t *protocol, protocollist_t *protocols)
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2004-11-11 00:34:00 +00:00
|
|
|
protocol->protocols = protocols;
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
def_t *
|
|
|
|
protocol_def (protocol_t *protocol)
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2011-01-24 06:41:43 +00:00
|
|
|
return make_symbol (protocol->name, &type_Protocol,
|
|
|
|
pr.far_data, st_static)->s.def;
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2002-05-15 19:10:23 +00:00
|
|
|
|
|
|
|
protocollist_t *
|
2004-11-11 00:34:00 +00:00
|
|
|
new_protocol_list (void)
|
2002-05-15 19:10:23 +00:00
|
|
|
{
|
|
|
|
protocollist_t *protocollist = malloc (sizeof (protocollist_t));
|
|
|
|
|
|
|
|
protocollist->count = 0;
|
|
|
|
protocollist->list = 0;
|
|
|
|
return protocollist;
|
|
|
|
}
|
|
|
|
|
2004-11-11 00:34:00 +00:00
|
|
|
protocollist_t *
|
|
|
|
add_protocol (protocollist_t *protocollist, const char *name)
|
|
|
|
{
|
|
|
|
protocol_t *protocol = get_protocol (name, 0);
|
|
|
|
|
|
|
|
if (!protocol) {
|
|
|
|
error (0, "undefined protocol `%s'", name);
|
|
|
|
return protocollist;
|
|
|
|
}
|
|
|
|
protocollist->count++;
|
|
|
|
protocollist->list = realloc (protocollist->list,
|
|
|
|
sizeof (protocol_t) * protocollist->count);
|
|
|
|
protocollist->list[protocollist->count - 1] = protocol;
|
|
|
|
return protocollist;
|
|
|
|
}
|
|
|
|
|
2002-07-13 06:09:03 +00:00
|
|
|
def_t *
|
2002-05-15 23:24:19 +00:00
|
|
|
emit_protocol (protocol_t *protocol)
|
|
|
|
{
|
|
|
|
def_t *proto_def;
|
|
|
|
pr_protocol_t *proto;
|
2011-01-24 06:41:43 +00:00
|
|
|
defspace_t *space;
|
2002-05-15 23:24:19 +00:00
|
|
|
|
2011-01-24 06:41:43 +00:00
|
|
|
proto_def = make_symbol (va ("_OBJ_PROTOCOL_%s", protocol->name),
|
|
|
|
&type_Protocol, pr.far_data, st_static)->s.def;
|
|
|
|
if (proto_def->initialized)
|
2006-12-16 08:09:10 +00:00
|
|
|
return proto_def;
|
2002-05-16 21:57:03 +00:00
|
|
|
proto_def->initialized = proto_def->constant = 1;
|
2003-04-25 17:00:22 +00:00
|
|
|
proto_def->nosave = 1;
|
2011-01-24 06:41:43 +00:00
|
|
|
space = proto_def->space;
|
|
|
|
proto = &D_STRUCT (pr_protocol_t, proto_def);
|
2002-05-15 23:24:19 +00:00
|
|
|
proto->class_pointer = 0;
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_STRING (space, proto->protocol_name, protocol->name);
|
|
|
|
EMIT_DEF (space, proto->protocol_list,
|
2002-07-13 06:09:03 +00:00
|
|
|
emit_protocol_list (protocol->protocols,
|
2004-11-11 00:34:00 +00:00
|
|
|
va ("PROTOCOL_%s", protocol->name)));
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_DEF (space, proto->instance_methods,
|
2004-11-11 00:34:00 +00:00
|
|
|
emit_method_descriptions (protocol->methods, protocol->name, 1));
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_DEF (space, proto->class_methods,
|
2004-11-11 00:34:00 +00:00
|
|
|
emit_method_descriptions (protocol->methods, protocol->name, 0));
|
|
|
|
emit_class_ref ("Protocol");
|
2002-07-13 06:09:03 +00:00
|
|
|
return proto_def;
|
2002-05-15 23:24:19 +00:00
|
|
|
}
|
|
|
|
|
2002-07-13 06:09:03 +00:00
|
|
|
def_t *
|
2002-05-15 23:24:19 +00:00
|
|
|
emit_protocol_list (protocollist_t *protocols, const char *name)
|
|
|
|
{
|
2011-01-24 12:13:37 +00:00
|
|
|
//FIXME use emit_struct
|
2011-01-17 13:33:33 +00:00
|
|
|
static struct_def_t proto_list_struct[] = {
|
|
|
|
{"next", &type_pointer},
|
|
|
|
{"count", &type_integer},
|
|
|
|
{"list", 0}, // type will be filled in at run time
|
|
|
|
{0, 0},
|
|
|
|
};
|
|
|
|
type_t *proto_list_type;
|
2002-05-15 23:24:19 +00:00
|
|
|
def_t *proto_list_def;
|
2011-01-24 06:41:43 +00:00
|
|
|
defspace_t *space;
|
2002-05-15 23:24:19 +00:00
|
|
|
pr_protocol_list_t *proto_list;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!protocols)
|
|
|
|
return 0;
|
2011-01-17 13:33:33 +00:00
|
|
|
proto_list_struct[2].type = array_type (&type_pointer, protocols->count);
|
|
|
|
proto_list_type = make_structure (0, 's', proto_list_struct, 0)->type;
|
2011-01-24 06:41:43 +00:00
|
|
|
proto_list_def = make_symbol (va ("_OBJ_PROTOCOLS_%s", name),
|
|
|
|
proto_list_type,
|
|
|
|
pr.far_data, st_static)->s.def;
|
2002-05-16 21:57:03 +00:00
|
|
|
proto_list_def->initialized = proto_list_def->constant = 1;
|
2003-04-25 17:00:22 +00:00
|
|
|
proto_list_def->nosave = 1;
|
2011-01-24 06:41:43 +00:00
|
|
|
space = proto_list_def->space;
|
|
|
|
proto_list = &D_STRUCT (pr_protocol_list_t, proto_list_def);
|
2002-05-15 23:24:19 +00:00
|
|
|
proto_list->next = 0;
|
|
|
|
proto_list->count = protocols->count;
|
|
|
|
for (i = 0; i < protocols->count; i++)
|
2011-01-24 06:41:43 +00:00
|
|
|
EMIT_DEF (space, proto_list->list[i],
|
|
|
|
emit_protocol (protocols->list[i]));
|
2002-07-13 06:09:03 +00:00
|
|
|
return proto_list_def;
|
2002-05-15 23:24:19 +00:00
|
|
|
}
|
2002-06-28 16:00:01 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
clear_classes (void)
|
|
|
|
{
|
|
|
|
if (class_hash)
|
|
|
|
Hash_FlushTable (class_hash);
|
|
|
|
if (protocol_hash)
|
|
|
|
Hash_FlushTable (protocol_hash);
|
|
|
|
if (category_hash)
|
|
|
|
Hash_FlushTable (category_hash);
|
2002-08-13 17:03:26 +00:00
|
|
|
if (class_hash)
|
2011-01-17 13:33:33 +00:00
|
|
|
class_Class.super_class = get_class (new_symbol ("Object"), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
symtab_t *
|
|
|
|
class_to_struct (class_t *class, symtab_t *symtab)
|
|
|
|
{
|
|
|
|
symtab_t *parent = symtab->parent;
|
|
|
|
symtab_t *ivars = class->ivars;
|
|
|
|
symtab_t *ancestor;
|
|
|
|
|
|
|
|
if (!ivars)
|
|
|
|
return symtab;
|
|
|
|
|
|
|
|
// disconnect the struct symbol table from the scope
|
|
|
|
symtab->parent = 0;
|
|
|
|
// find the ancestor of the ivars symbol table chain
|
|
|
|
for (ancestor = ivars; ancestor->parent; ancestor = ancestor->parent)
|
|
|
|
;
|
|
|
|
// connect the ivars symbol table chain to the struct symbol table
|
|
|
|
ancestor->parent = symtab;
|
|
|
|
// create a new struct symbol table from the ivars symbol table chain
|
|
|
|
symtab = symtab_flat_copy (ivars, 0);
|
|
|
|
// disconnect the ivars symbol table chain
|
|
|
|
ancestor->parent = 0;
|
|
|
|
// connect the new struct symbol table to the scope
|
|
|
|
symtab->parent = parent;
|
|
|
|
return symtab;
|
2003-08-20 19:58:41 +00:00
|
|
|
}
|
2011-02-06 23:32:52 +00:00
|
|
|
|
|
|
|
symtab_t *
|
|
|
|
class_ivar_scope (class_type_t *class_type, symtab_t *parent)
|
|
|
|
{
|
|
|
|
class_t *class = extract_class (class_type);
|
|
|
|
return symtab_flat_copy (class->ivars, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
class_finish_ivar_scope (class_type_t *class_type, symtab_t *ivar_scope,
|
|
|
|
symtab_t *param_scope)
|
|
|
|
{
|
|
|
|
class_t *class = extract_class (class_type);
|
|
|
|
type_t *class_ptr = pointer_type (class->type);
|
|
|
|
symbol_t *sym;
|
|
|
|
symbol_t *self;
|
|
|
|
expr_t *self_expr;
|
|
|
|
|
|
|
|
self = symtab_lookup (param_scope, "self");
|
|
|
|
if (!self)
|
|
|
|
internal_error (0, "I've lost my self!");
|
|
|
|
self_expr = new_symbol_expr (self);
|
|
|
|
if (self->type != class_ptr) {
|
|
|
|
debug (0, "class method scope");
|
|
|
|
//FIXME should generate a warning on access
|
|
|
|
self_expr = cast_expr (class_ptr, self_expr);
|
|
|
|
}
|
|
|
|
for (sym = ivar_scope->symbols; sym; sym = sym->next) {
|
|
|
|
if (sym->sy_type != sy_var)
|
|
|
|
continue;
|
|
|
|
sym->sy_type = sy_expr;
|
|
|
|
sym->s.expr = binary_expr ('.', copy_expr (self_expr),
|
|
|
|
new_symbol_expr (new_symbol (sym->name)));
|
|
|
|
}
|
|
|
|
}
|