2001-12-08 20:40:50 +00:00
|
|
|
/*
|
2002-10-22 14:53:18 +00:00
|
|
|
struct.h
|
2001-12-08 20:40:50 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
structure support
|
2001-12-08 20:40:50 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
Copyright (C) 2001 Bill Currie <bill@taniwha.org>
|
2001-12-08 20:40:50 +00:00
|
|
|
|
2002-10-22 14:53:18 +00:00
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2001/12/08
|
2001-12-08 20:40:50 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __struct_h
|
|
|
|
#define __struct_h
|
|
|
|
|
2011-01-24 06:41:43 +00:00
|
|
|
struct def_s;
|
|
|
|
enum storage_class_e;
|
2011-01-17 13:33:33 +00:00
|
|
|
struct symbol_s;
|
|
|
|
struct symtab_s;
|
|
|
|
struct type_s;
|
2003-07-30 04:11:45 +00:00
|
|
|
|
2011-01-17 13:33:33 +00:00
|
|
|
typedef struct {
|
2002-10-16 02:05:39 +00:00
|
|
|
const char *name;
|
|
|
|
struct type_s *type;
|
2011-01-24 06:41:43 +00:00
|
|
|
void (*emit) (struct def_s *def, void *data, int index);
|
2011-01-17 13:33:33 +00:00
|
|
|
} struct_def_t;
|
|
|
|
|
|
|
|
struct symbol_s *find_struct (int su, struct symbol_s *tag,
|
|
|
|
struct type_s *type);
|
|
|
|
struct symbol_s *build_struct (int su, struct symbol_s *tag,
|
|
|
|
struct symtab_s *symtab, struct type_s *type);
|
|
|
|
struct symbol_s *find_enum (struct symbol_s *tag);
|
|
|
|
struct symtab_s *start_enum (struct symbol_s *enm);
|
|
|
|
void add_enum (struct symbol_s *enm, struct symbol_s *name,
|
|
|
|
struct expr_s *val);
|
2011-03-02 13:46:55 +00:00
|
|
|
int enum_as_bool (struct type_s *enm, struct expr_s **zero,
|
|
|
|
struct expr_s **one);
|
2011-01-17 13:33:33 +00:00
|
|
|
|
|
|
|
struct symbol_s *make_structure (const char *name, int su, struct_def_t *defs,
|
|
|
|
struct type_s *type);
|
2011-01-24 06:41:43 +00:00
|
|
|
struct def_s * emit_structure (const char *name, int su, struct_def_t *defs,
|
|
|
|
struct type_s *type, void *data,
|
|
|
|
enum storage_class_e storage);
|
2003-07-30 04:11:45 +00:00
|
|
|
|
2001-12-08 20:40:50 +00:00
|
|
|
#endif//__struct_h
|