X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=parser.h;h=6984b736b027153c6bd998f877159713a0c9b4f7;hb=779610287a11b207e958e31a29f0dd9ea5459e39;hp=d9df4492ba3918aae8fb4f176be08ef7860a23c0;hpb=b4e35bf2387e9b22ae6a97bad28daa8a438483ed;p=cparser diff --git a/parser.h b/parser.h index d9df449..6984b73 100644 --- a/parser.h +++ b/parser.h @@ -1,11 +1,46 @@ +/* + * This file is part of cparser. + * Copyright (C) 2012 Matthias Braun + */ #ifndef PARSER_H #define PARSER_H #include "ast.h" +#include "entity_t.h" +#include "type.h" +typedef struct environment_entry_t environment_entry_t; + +/** + * Initialize parser. Should be called once when the program starts + */ void init_parser(void); +/** + * Frees resources occupied by parser. Should be called once before the program + * exits. + */ void exit_parser(void); -translation_unit_t *parse(void); +/** + * Start parsing a new compilation unit + */ +void start_parsing(void); + +/** + * Parse input. The source of the input is determined by the lexer module + */ +void parse(void); + +/** + * Finish parsing a complete compilation unit and return the AST. + */ +translation_unit_t *finish_parsing(void); + +type_t *revert_automatic_type_conversion(const expression_t *expression); + +entity_t *record_entity(entity_t *entity, bool is_definition); + +/** set default elf visbility */ +void set_default_visibility(elf_visibility_tag_t visibility); #endif