X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=entity_t.h;h=a543a897415d89c7ba316d9a9ec622ddf05b012e;hb=e628f683385763274b551d468107872a058b31d7;hp=d6d37020d74bc5f44baec659d6955e8b3e5c60fb;hpb=03d3b8c10e86bd5604ac13f2cb020c11261977f8;p=cparser diff --git a/entity_t.h b/entity_t.h index d6d3702..a543a89 100644 --- a/entity_t.h +++ b/entity_t.h @@ -95,6 +95,14 @@ typedef enum decl_modifier_t { DM_WEAK = 1 << 27, } decl_modifier_t; +typedef enum elf_visibility_tag_t { + ELF_VISIBILITY_DEFAULT, + ELF_VISIBILITY_HIDDEN, + ELF_VISIBILITY_INTERNAL, + ELF_VISIBILITY_PROTECTED, + ELF_VISIBILITY_ERROR +} elf_visibility_tag_t; + /** * A scope containing entities. */ @@ -212,13 +220,14 @@ struct compound_member_t { struct variable_t { declaration_t base; - bool thread_local : 1; /**< GCC __thread */ - bool restricta : 1; - bool deprecated : 1; - bool noalias : 1; + bool thread_local : 1; /**< GCC __thread */ + bool restricta : 1; + bool deprecated : 1; + bool noalias : 1; - bool address_taken : 1; /**< Set if the address of this declaration was taken. */ - bool read : 1; + bool address_taken : 1; /**< Set if the address of this declaration was taken. */ + bool read : 1; + unsigned elf_visibility : 2; initializer_t *initializer; @@ -244,10 +253,11 @@ struct parameter_t { struct function_t { declaration_t base; - bool is_inline : 1; + bool is_inline : 1; - bool need_closure : 1; /**< Inner function needs closure. */ - bool goto_to_outer : 1; /**< Inner function has goto to outer function. */ + bool need_closure : 1; /**< Inner function needs closure. */ + bool goto_to_outer : 1; /**< Inner function has goto to outer function. */ + unsigned elf_visibility : 2; builtin_kind_t btk; scope_t parameters; @@ -263,8 +273,6 @@ struct function_t { union entity_t { entity_kind_t kind; entity_base_t base; - compound_t structe; - compound_t unione; compound_t compound; enum_t enume; enum_value_t enum_value; @@ -296,6 +304,8 @@ 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 kind); +entity_t *allocate_entity_zero(entity_kind_t, entity_namespace_t, symbol_t*); + +elf_visibility_tag_t get_elf_visibility_from_string(const char *string); #endif