X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=type_t.h;h=efc97b650a2c755a51150cda9238ab4c2608f523;hb=353985d8d06fcac2f36682820b8ae635c5e6162e;hp=f4f9592d2c6d3fb197828e222435167670449df7;hpb=e66a2691d3291916ed2ec07ed1cdead2a95e1a9a;p=cparser diff --git a/type_t.h b/type_t.h index f4f9592..efc97b6 100644 --- a/type_t.h +++ b/type_t.h @@ -1,6 +1,10 @@ #ifndef TYPE_T_H #define TYPE_T_H +#include + +#include + #include "type.h" #include "symbol.h" #include "token_t.h" @@ -15,9 +19,12 @@ typedef enum { TYPE_COMPOUND_STRUCT, TYPE_COMPOUND_UNION, TYPE_ENUM, - TYPE_METHOD, + TYPE_FUNCTION, TYPE_POINTER, - TYPE_BUILTIN + TYPE_ARRAY, + TYPE_BUILTIN, + TYPE_TYPEDEF, + TYPE_TYPEOF } type_type_t; typedef enum { @@ -58,8 +65,10 @@ typedef enum { } type_qualifier_t; struct type_t { - type_type_t type; - unsigned qualifiers; + type_type_t type; + type_qualifier_t qualifiers; + + ir_type *firm_type; }; struct atomic_type_t { @@ -70,39 +79,62 @@ struct atomic_type_t { struct builtin_type_t { type_t type; symbol_t *symbol; + type_t *real_type; }; -struct enum_entry_t { - symbol_t *symbol; - expression_t *value; - enum_entry_t *next; +struct pointer_type_t { + type_t type; + type_t *points_to; }; -struct enum_type_t { - type_t type; - symbol_t *symbol; - enum_entry_t *entries; - source_position_t source_position; +struct array_type_t { + type_t type; + type_t *element_type; + bool is_static; + bool is_variable; + expression_t *size; }; -struct pointer_type_t { - type_t type; - type_t *points_to; +struct function_parameter_t { + type_t *type; + function_parameter_t *next; }; -struct method_type_t { - type_t type; - type_t *result_type; - declaration_t *parameters; - int variadic; - int unspecified_parameters; +struct function_type_t { + type_t type; + type_t *result_type; + function_parameter_t *parameters; + bool variadic; + bool unspecified_parameters; }; struct compound_type_t { - type_t type; - symbol_t *symbol; - context_t context; - source_position_t source_position; + type_t type; + /** the declaration of the compound type, it's context field + * contains the compound entries. */ + declaration_t *declaration; +}; + +struct enum_type_t { + type_t type; + /** the declaration of the enum type. You can find the enum entries by + * walking the declaration->context_next list until you don't find + * STORAGE_CLASS_ENUM_ENTRY declarations anymore */ + declaration_t *declaration; }; +struct typedef_type_t { + type_t type; + declaration_t *declaration; +}; + +struct typeof_type_t { + type_t type; + expression_t *expression; + type_t *typeof_type; +}; + +type_t *make_atomic_type(atomic_type_type_t type, type_qualifier_t qualifiers); +type_t *make_pointer_type(type_t *points_to, type_qualifier_t qualifiers); + #endif