X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=entity_t.h;h=19db103747ed16c1f276615d3594c6d81096d87d;hb=f4e57c56175e0aaf04c2b97ef53f23eccfe9fad3;hp=2f4e892d253f68ed81a4591f2c75f858ea9784d6;hpb=1a47a352dc074585e56b11a6e1e693e8ece6b5be;p=cparser diff --git a/entity_t.h b/entity_t.h index 2f4e892..19db103 100644 --- a/entity_t.h +++ b/entity_t.h @@ -91,6 +91,7 @@ typedef enum decl_modifier_t { DM_RETURNS_TWICE = 1 << 25, DM_MALLOC = 1 << 26, DM_WEAK = 1 << 27, + DM_LEAF = 1 << 28, } decl_modifier_t; typedef enum elf_visibility_tag_t { @@ -239,18 +240,6 @@ struct variable_t { } v; }; -struct parameter_t { - declaration_t base; - bool address_taken : 1; - bool read : 1; - - /* ast2firm info */ - union { - unsigned int value_number; - ir_entity *entity; - } v; -}; - struct function_t { declaration_t base; bool is_inline : 1; @@ -285,21 +274,20 @@ union entity_t { typedef_t typedefe; declaration_t declaration; variable_t variable; - parameter_t parameter; function_t function; compound_member_t compound_member; }; -#define DECLARATION_KIND_CASES \ - case ENTITY_FUNCTION: \ - case ENTITY_VARIABLE: \ - case ENTITY_PARAMETER: \ - case ENTITY_COMPOUND_MEMBER: +#define DECLARATION_KIND_CASES \ + ENTITY_FUNCTION: \ + case ENTITY_VARIABLE: \ + case ENTITY_PARAMETER: \ + case ENTITY_COMPOUND_MEMBER static inline bool is_declaration(const entity_t *entity) { switch(entity->kind) { - DECLARATION_KIND_CASES + case DECLARATION_KIND_CASES: return true; default: return false; @@ -308,8 +296,10 @@ static inline bool is_declaration(const entity_t *entity) const char *get_entity_kind_name(entity_kind_t kind); -entity_t *allocate_entity_zero(entity_kind_t, entity_namespace_t, symbol_t*); +entity_t *allocate_entity_zero(entity_kind_t, entity_namespace_t, symbol_t*, source_position_t const*); elf_visibility_tag_t get_elf_visibility_from_string(const char *string); +entity_t *skip_unnamed_bitfields(entity_t*); + #endif