X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ast2firm.h;h=b941f3c0d636d7806d369b4d1ec393b839bb17ea;hb=0a880c90fd6d1ec23c4ec1956f3b92694ec0a139;hp=a9ed846ce17c1b0c9cf26a7012c35f3016770b3e;hpb=fd16b92f058181088a385c3224c8814831c006d3;p=cparser diff --git a/ast2firm.h b/ast2firm.h index a9ed846..b941f3c 100644 --- a/ast2firm.h +++ b/ast2firm.h @@ -1,6 +1,6 @@ /* * This file is part of cparser. - * Copyright (C) 2007-2008 Matthias Braun + * Copyright (C) 2007-2009 Matthias Braun * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -20,11 +20,23 @@ #ifndef AST2FIRM_H #define AST2FIRM_H +#include #include "ast.h" +#include "type.h" void translation_unit_to_firm(translation_unit_t *unit); void init_ast2firm(void); void exit_ast2firm(void); +ir_mode *get_atomic_mode(atomic_type_kind_t kind); +ir_type *get_ir_type(type_t *type); + +typedef ident* (*create_ld_ident_func)(entity_t *entity); + +void set_create_ld_ident(create_ld_ident_func func); + +extern fp_model_t firm_fp_model; +extern ir_mode *atomic_modes[ATOMIC_TYPE_LAST+1]; + #endif