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
|
|
|
|
|
|
|
|
*/
|
|
|
|
static const char rcsid[] =
|
|
|
|
"$Id$";
|
|
|
|
|
2002-06-01 04:41:25 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
#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"
|
|
|
|
|
|
|
|
#include "class.h"
|
2002-06-04 18:44:03 +00:00
|
|
|
#include "def.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"
|
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;
|
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
class_t class_id = {1, "id", 0, 0, 0, 0, 0, 0, &type_id};
|
|
|
|
class_t class_Class = {1, "Class", 0, 0, 0, 0, 0, 0, &type_Class};
|
|
|
|
class_t class_Protocol = {1, "Protocl", 0, 0, 0, 0, 0, 0, &type_Protocol};
|
2002-05-16 20:20:23 +00:00
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
static const char *
|
|
|
|
class_get_key (void *class, void *unused)
|
|
|
|
{
|
2002-05-15 19:10:23 +00:00
|
|
|
return ((class_t *) class)->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;
|
|
|
|
}
|
|
|
|
|
2002-05-22 01:39:07 +00:00
|
|
|
void
|
|
|
|
class_init (void)
|
|
|
|
{
|
|
|
|
class_Class.super_class = get_class ("Object", 1);
|
|
|
|
}
|
|
|
|
|
2002-07-03 20:16:32 +00:00
|
|
|
def_t *
|
|
|
|
class_def (class_t *class, int external)
|
|
|
|
{
|
|
|
|
const char *name;
|
2002-07-16 04:37:51 +00:00
|
|
|
type_t *type;
|
2002-07-03 20:16:32 +00:00
|
|
|
storage_class_t storage = external ? st_extern : st_global;
|
|
|
|
|
|
|
|
if (!class->class_name)
|
|
|
|
return 0;
|
2002-07-16 04:37:51 +00:00
|
|
|
if (class->category_name) {
|
2002-07-03 20:16:32 +00:00
|
|
|
name = va ("_OBJ_CATEGORY_%s_%s",
|
|
|
|
class->class_name, class->category_name);
|
2002-07-16 04:37:51 +00:00
|
|
|
type = type_category;
|
|
|
|
} else {
|
2002-07-03 20:16:32 +00:00
|
|
|
name = va ("_OBJ_CLASS_%s", class->class_name);
|
2002-07-16 04:37:51 +00:00
|
|
|
type = type_Class.aux_type;
|
|
|
|
}
|
|
|
|
return get_def (type, name, pr.scope, storage);
|
2002-07-03 20:16:32 +00:00
|
|
|
}
|
|
|
|
|
2002-05-08 21:24:24 +00:00
|
|
|
class_t *
|
2002-05-10 00:00:23 +00:00
|
|
|
get_class (const char *name, 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);
|
|
|
|
if (name) {
|
|
|
|
c = Hash_Find (class_hash, name);
|
|
|
|
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);
|
2002-05-15 19:10:23 +00:00
|
|
|
c->class_name = name;
|
2002-05-16 20:20:23 +00:00
|
|
|
new = *type_Class.aux_type;
|
|
|
|
new.class = c;
|
|
|
|
c->type = pointer_type (find_type (&new));
|
2002-05-15 19:10:23 +00:00
|
|
|
if (name)
|
|
|
|
Hash_Add (class_hash, c);
|
2002-05-08 21:24:24 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
void
|
|
|
|
class_add_methods (class_t *class, methodlist_t *methods)
|
|
|
|
{
|
|
|
|
if (!methods)
|
|
|
|
return;
|
|
|
|
if (!class->methods)
|
|
|
|
class->methods = new_methodlist ();
|
|
|
|
*class->methods->tail = methods->head;
|
|
|
|
class->methods->tail = methods->tail;
|
|
|
|
free (methods);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
class_add_protocol_methods (class_t *class, expr_t *protocols)
|
|
|
|
{
|
|
|
|
expr_t *e;
|
|
|
|
protocol_t *p;
|
|
|
|
|
|
|
|
if (!protocol_hash)
|
|
|
|
protocol_hash = Hash_NewTable (1021, protocol_get_key, 0, 0);
|
|
|
|
if (!class->methods)
|
|
|
|
class->methods = new_methodlist ();
|
|
|
|
|
|
|
|
for (e = protocols; e; e = e->next) {
|
2002-08-13 21:18:17 +00:00
|
|
|
method_t **m = class->methods->tail;
|
2002-05-10 00:00:23 +00:00
|
|
|
if (!(p = get_protocol (e->e.string_val, 0))) {
|
|
|
|
error (e, "undefined protocol `%s'", e->e.string_val);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
copy_methods (class->methods, p->methods);
|
2002-08-13 21:18:17 +00:00
|
|
|
while (*m) {
|
|
|
|
(*m)->params->type = class->type;
|
|
|
|
m = &(*m)->next;
|
|
|
|
}
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-15 19:10:23 +00:00
|
|
|
void
|
|
|
|
class_add_protocol (class_t *class, protocol_t *protocol)
|
|
|
|
{
|
|
|
|
if (!class->protocols)
|
|
|
|
class->protocols = new_protocollist ();
|
|
|
|
add_protocol (class->protocols, protocol);
|
|
|
|
}
|
|
|
|
|
2002-05-15 23:24:19 +00:00
|
|
|
void
|
2002-05-16 22:33:11 +00:00
|
|
|
class_begin (class_t *class)
|
2002-05-15 23:24:19 +00:00
|
|
|
{
|
2002-05-17 19:35:26 +00:00
|
|
|
current_class = class;
|
2002-07-03 20:16:32 +00:00
|
|
|
class->def = class_def (class, 0);
|
2002-05-15 23:24:19 +00:00
|
|
|
if (class->class_name && class->category_name) {
|
2002-05-21 21:28:40 +00:00
|
|
|
pr_category_t *category;
|
|
|
|
|
|
|
|
class->def->initialized = class->def->constant = 1;
|
|
|
|
category = &G_STRUCT (pr_category_t, class->def->ofs);
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_STRING (category->category_name, class->category_name);
|
|
|
|
EMIT_STRING (category->class_name, class->class_name);
|
|
|
|
EMIT_DEF (category->protocols,
|
|
|
|
emit_protocol_list (class->protocols,
|
|
|
|
va ("%s_%s",
|
|
|
|
class->class_name,
|
|
|
|
class->category_name)));
|
2002-05-15 23:24:19 +00:00
|
|
|
} else if (class->class_name) {
|
|
|
|
def_t *meta_def;
|
|
|
|
pr_class_t *meta;
|
|
|
|
pr_class_t *cls;
|
|
|
|
|
2002-06-09 04:30:02 +00:00
|
|
|
meta_def = get_def (type_Class.aux_type,
|
2002-05-15 23:24:19 +00:00
|
|
|
va ("_OBJ_METACLASS_%s", class->class_name),
|
2002-06-28 17:59:32 +00:00
|
|
|
pr.scope, st_static);
|
2002-05-16 21:57:03 +00:00
|
|
|
meta_def->initialized = meta_def->constant = 1;
|
2002-05-15 23:24:19 +00:00
|
|
|
meta = &G_STRUCT (pr_class_t, meta_def->ofs);
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_STRING (meta->class_pointer, class->class_name);
|
2002-05-17 17:37:44 +00:00
|
|
|
if (class->super_class)
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_STRING (meta->super_class, class->super_class->class_name);
|
|
|
|
EMIT_STRING (meta->name, class->class_name);
|
2002-05-17 17:37:44 +00:00
|
|
|
meta->info = _PR_CLS_META;
|
2002-05-15 23:24:19 +00:00
|
|
|
meta->instance_size = type_size (type_Class.aux_type);
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_DEF (meta->ivars, emit_struct (type_Class.aux_type, "Class"));
|
|
|
|
EMIT_DEF (meta->protocols, emit_protocol_list (class->protocols,
|
|
|
|
class->class_name));
|
2002-05-15 23:24:19 +00:00
|
|
|
|
2002-05-16 21:57:03 +00:00
|
|
|
class->def->initialized = class->def->constant = 1;
|
2002-05-15 23:24:19 +00:00
|
|
|
cls = &G_STRUCT (pr_class_t, class->def->ofs);
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_DEF (cls->class_pointer, meta_def);
|
2002-08-14 03:55:23 +00:00
|
|
|
if (class->super_class) {
|
2002-07-14 03:41:13 +00:00
|
|
|
EMIT_STRING (cls->super_class, class->super_class->class_name);
|
2002-08-14 03:55:23 +00:00
|
|
|
class_def (class->super_class, 1);
|
|
|
|
}
|
2002-07-14 03:41:13 +00:00
|
|
|
EMIT_STRING (cls->name, class->class_name);
|
2002-07-16 04:37:51 +00:00
|
|
|
cls->info = _PR_CLS_CLASS;
|
2002-05-16 22:33:11 +00:00
|
|
|
cls->protocols = meta->protocols;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
class_finish (class_t *class)
|
|
|
|
{
|
|
|
|
if (class->class_name && class->category_name) {
|
|
|
|
pr_category_t *category;
|
|
|
|
|
|
|
|
category = &G_STRUCT (pr_category_t, class->def->ofs);
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_DEF (category->instance_methods,
|
|
|
|
emit_methods (class->methods, va ("%s_%s",
|
2002-05-21 21:28:40 +00:00
|
|
|
class->class_name,
|
2002-07-13 06:09:03 +00:00
|
|
|
class->category_name), 1));
|
|
|
|
EMIT_DEF (category->class_methods,
|
|
|
|
emit_methods (class->methods, va ("%s_%s",
|
|
|
|
class->class_name,
|
|
|
|
class->category_name), 0));
|
2002-05-16 22:33:11 +00:00
|
|
|
} else if (class->class_name) {
|
|
|
|
pr_class_t *meta;
|
|
|
|
pr_class_t *cls;
|
|
|
|
|
|
|
|
cls = &G_STRUCT (pr_class_t, class->def->ofs);
|
|
|
|
|
|
|
|
meta = &G_STRUCT (pr_class_t, cls->class_pointer);
|
|
|
|
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_DEF (meta->methods, emit_methods (class->methods,
|
|
|
|
class->class_name, 0));
|
2002-05-16 22:33:11 +00:00
|
|
|
|
2002-05-15 23:24:19 +00:00
|
|
|
cls->instance_size = type_size (class->ivars);
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_DEF (cls->ivars, emit_struct (class->ivars, class->class_name));
|
|
|
|
EMIT_DEF (cls->methods, emit_methods (class->methods,
|
|
|
|
class->class_name, 1));
|
2002-05-15 23:24:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-17 06:20:27 +00:00
|
|
|
struct_field_t *
|
|
|
|
class_find_ivar (class_t *class, int protected, const char *name)
|
|
|
|
{
|
|
|
|
struct_field_t *ivar;
|
|
|
|
class_t *c;
|
|
|
|
|
|
|
|
ivar = struct_find_field (class->ivars, name);
|
2002-05-17 19:35:26 +00:00
|
|
|
if (ivar) {
|
|
|
|
if (protected && ivar->visibility != vis_public)
|
|
|
|
goto access_error;
|
2002-05-17 06:20:27 +00:00
|
|
|
return ivar;
|
2002-05-17 19:35:26 +00:00
|
|
|
}
|
2002-05-17 06:20:27 +00:00
|
|
|
for (c = class->super_class; c; c = c->super_class) {
|
|
|
|
ivar = struct_find_field (c->ivars, name);
|
|
|
|
if (ivar) {
|
|
|
|
if (ivar->visibility == vis_private
|
2002-05-17 19:35:26 +00:00
|
|
|
|| (protected && ivar->visibility == vis_protected))
|
|
|
|
goto access_error;
|
2002-05-17 06:20:27 +00:00
|
|
|
return ivar;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
error (0, "%s.%s does not exist", class->class_name, name);
|
|
|
|
return 0;
|
2002-05-17 19:35:26 +00:00
|
|
|
access_error:
|
|
|
|
error (0, "%s.%s is not accessable here", class->class_name, name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
expr_t *
|
|
|
|
class_ivar_expr (class_t *class, const char *name)
|
|
|
|
{
|
|
|
|
struct_field_t *ivar;
|
|
|
|
class_t *c;
|
|
|
|
|
|
|
|
if (!class)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ivar = struct_find_field (class->ivars, name);
|
|
|
|
if (!ivar) {
|
|
|
|
for (c = class->super_class; c; c = c->super_class) {
|
|
|
|
ivar = struct_find_field (c->ivars, name);
|
|
|
|
if (ivar)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ivar)
|
|
|
|
return 0;
|
|
|
|
if (ivar->visibility == vis_private) {
|
|
|
|
error (0, "%s.%s is not accessable here",
|
|
|
|
class->class_name, name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return binary_expr ('.', new_name_expr ("self"), new_name_expr (name));
|
2002-05-17 06:20:27 +00:00
|
|
|
}
|
|
|
|
|
2002-05-15 23:24:19 +00:00
|
|
|
method_t *
|
|
|
|
class_find_method (class_t *class, method_t *method)
|
|
|
|
{
|
|
|
|
method_t *m;
|
|
|
|
dstring_t *sel;
|
|
|
|
|
|
|
|
for (m = class->methods->head; m; m = m->next)
|
|
|
|
if (method_compare (method, m))
|
|
|
|
return m;
|
|
|
|
sel = dstring_newstr ();
|
|
|
|
selector_name (sel, (keywordarg_t *)method->selector);
|
2002-05-16 20:48:41 +00:00
|
|
|
warning (0, "%s method %s not in %s%s",
|
|
|
|
method->instance ? "instance" : "class",
|
|
|
|
sel->str, class->class_name,
|
2002-05-15 23:24:19 +00:00
|
|
|
class->category_name ? va (" (%s)", class->category_name) : "");
|
|
|
|
dstring_delete (sel);
|
|
|
|
return method;
|
|
|
|
}
|
|
|
|
|
2002-05-16 20:20:23 +00:00
|
|
|
method_t *
|
|
|
|
class_message_response (class_t *class, expr_t *sel)
|
|
|
|
{
|
|
|
|
pr_sel_t *selector;
|
|
|
|
char *sel_name;
|
|
|
|
method_t *m;
|
|
|
|
class_t *c = class;
|
|
|
|
|
|
|
|
if (sel->type != ex_pointer && sel->e.pointer.type != type_SEL.aux_type) {
|
|
|
|
error (sel, "not a selector");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
selector = &G_STRUCT (pr_sel_t, sel->e.pointer.val);
|
2002-07-05 20:02:10 +00:00
|
|
|
sel_name = G_GETSTR (selector->sel_id);
|
2002-05-16 20:20:23 +00:00
|
|
|
while (c) {
|
2002-05-21 23:29:21 +00:00
|
|
|
if (c->methods) {
|
|
|
|
for (m = c->methods->head; m; m = m->next) {
|
|
|
|
if (strcmp (sel_name, m->name) == 0)
|
|
|
|
return m;
|
|
|
|
}
|
2002-05-16 20:20:23 +00:00
|
|
|
}
|
|
|
|
c = c->super_class;
|
|
|
|
}
|
|
|
|
warning (sel, "%s does not respond to %s", class->class_name, sel_name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-05-15 19:10:23 +00:00
|
|
|
static unsigned long
|
|
|
|
category_get_hash (void *_c, void *unused)
|
|
|
|
{
|
|
|
|
class_t *c = (class_t *) _c;
|
|
|
|
return Hash_String (c->class_name) ^ Hash_String (c->category_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
category_compare (void *_c1, void *_c2, void *unused)
|
|
|
|
{
|
|
|
|
class_t *c1 = (class_t *) _c1;
|
|
|
|
class_t *c2 = (class_t *) _c2;
|
|
|
|
return strcmp (c1->class_name, c2->class_name) == 0
|
|
|
|
&& strcmp (c1->category_name, c2->category_name) == 0;
|
|
|
|
}
|
|
|
|
|
2002-05-17 06:20:27 +00:00
|
|
|
void
|
|
|
|
class_add_ivars (class_t *class, struct type_s *ivars)
|
|
|
|
{
|
|
|
|
class->ivars = ivars;
|
|
|
|
}
|
|
|
|
|
2002-05-15 19:10:23 +00:00
|
|
|
void
|
|
|
|
class_check_ivars (class_t *class, struct type_s *ivars)
|
|
|
|
{
|
|
|
|
if (!struct_compare_fields (class->ivars, ivars))
|
|
|
|
warning (0, "instance variable missmatch for %s", class->class_name);
|
|
|
|
class->ivars = ivars;
|
|
|
|
}
|
|
|
|
|
|
|
|
class_t *
|
|
|
|
get_category (const char *class_name, const char *category_name, int create)
|
|
|
|
{
|
|
|
|
class_t *c;
|
|
|
|
|
|
|
|
if (!category_hash) {
|
|
|
|
category_hash = Hash_NewTable (1021, 0, 0, 0);
|
|
|
|
Hash_SetHashCompare (category_hash,
|
|
|
|
category_get_hash, category_compare);
|
|
|
|
}
|
|
|
|
if (class_name && category_name) {
|
|
|
|
class_t _c = {0, class_name, category_name};
|
|
|
|
|
|
|
|
c = Hash_FindElement (category_hash, &_c);
|
|
|
|
if (c || !create)
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = calloc (sizeof (class_t), 1);
|
|
|
|
c->class_name = class_name;
|
2002-05-21 21:28:40 +00:00
|
|
|
c->category_name = category_name;
|
2002-05-15 19:10:23 +00:00
|
|
|
if (class_name && category_name)
|
|
|
|
Hash_AddElement (category_hash, c);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2002-05-10 00:00:23 +00:00
|
|
|
def_t *
|
2002-07-03 20:16:32 +00:00
|
|
|
class_pointer_def (class_t *class)
|
2002-05-10 00:00:23 +00:00
|
|
|
{
|
2002-05-16 22:33:11 +00:00
|
|
|
def_t *def;
|
|
|
|
|
2002-06-09 04:30:02 +00:00
|
|
|
def = get_def (class->type,
|
2002-05-16 22:33:11 +00:00
|
|
|
va ("_OBJ_CLASS_POINTER_%s", class->class_name),
|
2002-06-28 17:59:32 +00:00
|
|
|
pr.scope, st_static);
|
2002-05-17 18:46:11 +00:00
|
|
|
if (def->initialized)
|
|
|
|
return def;
|
|
|
|
def->initialized = def->constant = 1;
|
2002-07-03 20:16:32 +00:00
|
|
|
if (!class->def)
|
|
|
|
class->def = class_def (class, 1);
|
|
|
|
if (!class->def->external)
|
|
|
|
G_INT (def->ofs) = class->def->ofs;
|
2002-07-13 06:09:03 +00:00
|
|
|
reloc_def_def (class->def, def->ofs);
|
2002-05-16 22:33:11 +00:00
|
|
|
return def;
|
2002-05-10 00:00:23 +00:00
|
|
|
}
|
|
|
|
|
2002-05-21 21:28:40 +00:00
|
|
|
void
|
|
|
|
class_finish_module (void)
|
|
|
|
{
|
|
|
|
class_t **classes = 0;
|
|
|
|
class_t **categories = 0;
|
|
|
|
class_t **t;
|
|
|
|
int num_classes = 0;
|
|
|
|
int num_categories = 0;
|
|
|
|
int i;
|
|
|
|
type_t *symtab_type;
|
|
|
|
def_t *symtab_def;
|
|
|
|
pr_symtab_t *symtab;
|
|
|
|
pointer_t *def_ptr;
|
|
|
|
def_t *module_def;
|
|
|
|
pr_module_t *module;
|
|
|
|
def_t *exec_class_def;
|
|
|
|
def_t *init_def;
|
|
|
|
function_t *init_func;
|
|
|
|
expr_t *init_expr;
|
|
|
|
|
|
|
|
if (class_hash) {
|
|
|
|
classes = (class_t **) Hash_GetList (class_hash);
|
|
|
|
for (t = classes; *t; t++)
|
2002-07-13 06:09:03 +00:00
|
|
|
if ((*t)->def && !(*t)->def->external)
|
2002-05-21 21:28:40 +00:00
|
|
|
num_classes++;
|
|
|
|
}
|
|
|
|
if (category_hash) {
|
|
|
|
categories = (class_t **) Hash_GetList (category_hash);
|
|
|
|
for (t = categories; *t; t++)
|
2002-07-13 06:09:03 +00:00
|
|
|
if ((*t)->def && !(*t)->def->external)
|
2002-05-21 21:28:40 +00:00
|
|
|
num_categories++;
|
|
|
|
}
|
|
|
|
if (!num_classes && !num_categories)
|
|
|
|
return;
|
|
|
|
symtab_type = new_struct (0);
|
|
|
|
new_struct_field (symtab_type, &type_integer, "sel_ref_cnt", vis_public);
|
|
|
|
new_struct_field (symtab_type, &type_integer, "cls_def_cnt", vis_public);
|
|
|
|
new_struct_field (symtab_type, &type_integer, "cat_def_cnt", vis_public);
|
|
|
|
for (i = 0; i < num_classes + num_categories; i++)
|
|
|
|
new_struct_field (symtab_type, &type_pointer, 0, vis_public);
|
2002-06-28 17:59:32 +00:00
|
|
|
symtab_def = get_def (symtab_type, "_OBJ_SYMTAB", pr.scope, st_static);
|
2002-05-21 21:28:40 +00:00
|
|
|
symtab_def->initialized = symtab_def->constant = 1;
|
|
|
|
symtab = &G_STRUCT (pr_symtab_t, symtab_def->ofs);
|
|
|
|
symtab->cls_def_cnt = num_classes;
|
|
|
|
symtab->cat_def_cnt = num_categories;
|
|
|
|
def_ptr = symtab->defs;
|
2002-08-16 22:53:37 +00:00
|
|
|
if (classes) {
|
|
|
|
for (t = classes; *t; t++) {
|
|
|
|
if ((*t)->def && !(*t)->def->external) {
|
|
|
|
reloc_def_def ((*t)->def, POINTER_OFS (def_ptr));
|
|
|
|
*def_ptr++ = (*t)->def->ofs;
|
|
|
|
}
|
2002-07-13 06:09:03 +00:00
|
|
|
}
|
|
|
|
}
|
2002-08-16 22:53:37 +00:00
|
|
|
if (categories) {
|
|
|
|
for (t = categories; *t; t++) {
|
|
|
|
if ((*t)->def && !(*t)->def->external) {
|
|
|
|
reloc_def_def ((*t)->def, POINTER_OFS (def_ptr));
|
|
|
|
*def_ptr++ = (*t)->def->ofs;
|
|
|
|
}
|
2002-07-13 06:09:03 +00:00
|
|
|
}
|
|
|
|
}
|
2002-05-21 21:28:40 +00:00
|
|
|
|
2002-06-28 17:59:32 +00:00
|
|
|
module_def = get_def (type_module, "_OBJ_MODULE", pr.scope, st_static);
|
2002-05-21 21:28:40 +00:00
|
|
|
module_def->initialized = module_def->constant = 1;
|
|
|
|
module = &G_STRUCT (pr_module_t, module_def->ofs);
|
|
|
|
module->size = type_size (type_module);
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_STRING (module->name, options.output_file);
|
|
|
|
EMIT_DEF (module->symtab, symtab_def);
|
2002-05-21 21:28:40 +00:00
|
|
|
|
2002-06-09 04:30:02 +00:00
|
|
|
exec_class_def = get_def (&type_obj_exec_class, "__obj_exec_class",
|
2002-07-16 19:03:56 +00:00
|
|
|
pr.scope, st_extern);
|
2002-05-21 21:28:40 +00:00
|
|
|
|
2002-06-28 17:59:32 +00:00
|
|
|
init_def = get_def (&type_function, ".ctor", pr.scope, st_static);
|
2002-06-27 22:48:28 +00:00
|
|
|
init_func = new_function (".ctor");
|
2002-05-21 21:28:40 +00:00
|
|
|
init_func->def = init_def;
|
2002-07-13 06:09:03 +00:00
|
|
|
reloc_def_func (init_func, init_def->ofs);
|
2002-07-08 20:31:59 +00:00
|
|
|
init_func->code = pr.code->size;
|
2002-06-09 03:57:20 +00:00
|
|
|
build_scope (init_func, init_def, 0);
|
2002-05-21 21:28:40 +00:00
|
|
|
build_function (init_func);
|
|
|
|
init_expr = new_block_expr ();
|
|
|
|
append_expr (init_expr,
|
|
|
|
function_expr (new_def_expr (exec_class_def),
|
|
|
|
address_expr (new_def_expr (module_def), 0, 0)));
|
|
|
|
emit_function (init_func, init_expr);
|
|
|
|
finish_function (init_func);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
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;
|
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;
|
|
|
|
if (!protocol->methods)
|
|
|
|
protocol->methods = new_methodlist ();
|
|
|
|
*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
|
|
|
|
protocol_add_protocol_methods (protocol_t *protocol, expr_t *protocols)
|
2002-05-08 21:24:24 +00:00
|
|
|
{
|
2002-05-10 00:00:23 +00:00
|
|
|
expr_t *e;
|
|
|
|
protocol_t *p;
|
|
|
|
|
|
|
|
if (!protocol->methods)
|
|
|
|
protocol->methods = new_methodlist ();
|
|
|
|
|
|
|
|
for (e = protocols; e; e = e->next) {
|
|
|
|
if (!(p = get_protocol (e->e.string_val, 0))) {
|
|
|
|
error (e, "undefined protocol `%s'", e->e.string_val);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
copy_methods (protocol->methods, p->methods);
|
|
|
|
}
|
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
|
|
|
{
|
2002-06-28 17:59:32 +00:00
|
|
|
return get_def (&type_Protocol, protocol->name, pr.scope, st_static);
|
2002-05-08 21:24:24 +00:00
|
|
|
}
|
2002-05-15 19:10:23 +00:00
|
|
|
|
|
|
|
protocollist_t *
|
|
|
|
new_protocollist (void)
|
|
|
|
{
|
|
|
|
protocollist_t *protocollist = malloc (sizeof (protocollist_t));
|
|
|
|
|
|
|
|
protocollist->count = 0;
|
|
|
|
protocollist->list = 0;
|
|
|
|
return protocollist;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
add_protocol (protocollist_t *protocollist, protocol_t *protocol)
|
|
|
|
{
|
|
|
|
protocollist->list = realloc (protocollist->list,
|
|
|
|
(protocollist->count + 1)
|
|
|
|
* sizeof (protocollist_t));
|
|
|
|
protocollist->list[protocollist->count++] = protocol;
|
|
|
|
}
|
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 (protocol_t *protocol)
|
|
|
|
{
|
|
|
|
def_t *proto_def;
|
|
|
|
pr_protocol_t *proto;
|
|
|
|
|
2002-06-09 04:30:02 +00:00
|
|
|
proto_def = get_def (type_Protocol.aux_type,
|
2002-05-15 23:24:19 +00:00
|
|
|
va ("_OBJ_PROTOCOL_%s", protocol->name),
|
2002-06-28 17:59:32 +00:00
|
|
|
pr.scope, st_static);
|
2002-05-16 21:57:03 +00:00
|
|
|
proto_def->initialized = proto_def->constant = 1;
|
2002-05-15 23:24:19 +00:00
|
|
|
proto = &G_STRUCT (pr_protocol_t, proto_def->ofs);
|
|
|
|
proto->class_pointer = 0;
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_STRING (proto->protocol_name, protocol->name);
|
|
|
|
EMIT_DEF (proto->protocol_list,
|
|
|
|
emit_protocol_list (protocol->protocols,
|
|
|
|
va ("PROTOCOLo_%s", protocol->name)));
|
|
|
|
EMIT_DEF (proto->instance_methods,
|
|
|
|
emit_methods (protocol->methods, protocol->name, 1));
|
|
|
|
EMIT_DEF (proto->class_methods,
|
|
|
|
emit_methods (protocol->methods, protocol->name, 0));
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
def_t *proto_list_def;
|
|
|
|
type_t *protocol_list;
|
|
|
|
pr_protocol_list_t *proto_list;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (!protocols)
|
|
|
|
return 0;
|
|
|
|
protocol_list = new_struct (0);
|
|
|
|
new_struct_field (protocol_list, &type_pointer, "next", vis_public);
|
|
|
|
new_struct_field (protocol_list, &type_integer, "count", vis_public);
|
|
|
|
for (i = 0; i < protocols->count; i++)
|
|
|
|
new_struct_field (protocol_list, &type_pointer, 0, vis_public);
|
2002-06-09 04:30:02 +00:00
|
|
|
proto_list_def = get_def (type_Protocol.aux_type,
|
2002-05-15 23:24:19 +00:00
|
|
|
va ("_OBJ_PROTOCOLS_%s", name),
|
2002-06-28 17:59:32 +00:00
|
|
|
pr.scope, st_static);
|
2002-05-16 21:57:03 +00:00
|
|
|
proto_list_def->initialized = proto_list_def->constant = 1;
|
2002-05-15 23:24:19 +00:00
|
|
|
proto_list = &G_STRUCT (pr_protocol_list_t, proto_list_def->ofs);
|
|
|
|
proto_list->next = 0;
|
|
|
|
proto_list->count = protocols->count;
|
|
|
|
for (i = 0; i < protocols->count; i++)
|
2002-07-13 06:09:03 +00:00
|
|
|
EMIT_DEF (proto_list->list[i], emit_protocol (protocols->list[i]));
|
|
|
|
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)
|
|
|
|
class_Class.super_class = get_class ("Object", 1);
|
2002-06-28 16:00:01 +00:00
|
|
|
}
|