diff options
author | gingold | 2012-12-11 02:46:11 +0000 |
---|---|---|
committer | gingold | 2012-12-11 02:46:11 +0000 |
commit | 560c4c42f15155771b5558c37cec7a1acbb48751 (patch) | |
tree | ef3a6144800e7ae38d4caab31ab1be9eb29d6cd7 | |
parent | 03cc455ed44229ecd2b925e110f9019c4e6f497b (diff) | |
download | ghdl-560c4c42f15155771b5558c37cec7a1acbb48751.tar.gz ghdl-560c4c42f15155771b5558c37cec7a1acbb48751.tar.bz2 ghdl-560c4c42f15155771b5558c37cec7a1acbb48751.zip |
Part of the previous commit (upgrade to gcc 4.7)
-rw-r--r-- | libraries/Makefile.inc | 8 | ||||
-rw-r--r-- | ortho/gcc/Makefile | 9 | ||||
-rw-r--r-- | ortho/gcc/lang.opt | 20 | ||||
-rw-r--r-- | ortho/gcc/ortho-lang.c | 391 | ||||
-rw-r--r-- | ortho/gcc/ortho_gcc.ads | 15 | ||||
-rw-r--r-- | translate/gcc/Make-lang.in | 54 | ||||
-rwxr-xr-x | translate/gcc/dist.sh | 9 | ||||
-rw-r--r-- | translate/ghdldrv/Makefile | 20 | ||||
-rw-r--r-- | translate/ghdldrv/ghdldrv.adb | 18 | ||||
-rw-r--r-- | translate/ortho_front.adb | 13 | ||||
-rw-r--r-- | version.ads | 4 |
11 files changed, 296 insertions, 265 deletions
diff --git a/libraries/Makefile.inc b/libraries/Makefile.inc index 4b8920e..24e9ec5 100644 --- a/libraries/Makefile.inc +++ b/libraries/Makefile.inc @@ -98,8 +98,8 @@ std.v93: $(LIB93_DIR) $(STD93_SRCS) force mkdir $(STD93_DIR) prev=`pwd`; cd $(STD93_DIR); \ for i in $(STD93_SRCS); do \ - echo $$i; \ - $(ANALYZE93) --bootstrap --work=std $(REL_DIR)/$$i || exit 1; \ + cmd="$(ANALYZE93) --bootstrap --work=std $(REL_DIR)/$$i"; \ + echo $$cmd; eval $$cmd || exit 1; \ done; \ cd $$prev @@ -149,8 +149,8 @@ std.v87: $(LIB87_DIR) $(STD87_SRCS) force mkdir $(STD87_DIR) prev=`pwd`; cd $(STD87_DIR); \ for i in $(STD87_SRCS); do \ - echo $$i; \ - $(ANALYZE87) --bootstrap --work=std $(REL_DIR)/$$i || exit 1; \ + cmd="$(ANALYZE87) --bootstrap --work=std $(REL_DIR)/$$i"; \ + echo $$cmd; eval $$cmd || exit 1; \ done; \ cd $$prev diff --git a/ortho/gcc/Makefile b/ortho/gcc/Makefile index 00a68c6..2687b79 100644 --- a/ortho/gcc/Makefile +++ b/ortho/gcc/Makefile @@ -2,7 +2,7 @@ ortho_srcdir=.. orthobe_srcdir=$(ortho_srcdir)/gcc agcc_objdir=. agcc_srcdir=$(ortho_srcdir)/gcc -AGCC_GCCSRC_DIR:=$(HOME)/dist/gcc-4.3.4 +AGCC_GCCSRC_DIR:=$(HOME)/dist/gcc-4.7.2 AGCC_GCCOBJ_DIR:=$(AGCC_GCCSRC_DIR)-objs/ SED=sed GNATMAKE=gnatmake @@ -15,13 +15,16 @@ include $(orthobe_srcdir)/Makefile.inc ORTHO_BASENAME=$(orthobe_srcdir)/ortho_gcc ORTHO_PACKAGE=Ortho_Gcc -LIBFLAGS=$(HOME)/dist/mpfr-2.3.1/.libs/libmpfr.a $(HOME)/dist/gmp-4.2.2/.libs/libgmp.a -#LIBFLAGS=-lmpfr -lgmp +#LIBFLAGS=$(HOME)/dist/mpfr-2.3.1/.libs/libmpfr.a $(HOME)/dist/gmp-4.2.2/.libs/libgmp.a +LIBFLAGS=-L$(HOME)/dist/build/lib -lmpc -lmpfr -lgmp -lz -ldl #$(AGCC_GCCOBJ_DIR)/intl/libintl.a -liconv -lz $(ortho_exec): $(AGCC_DEPS) $(ORTHO_BASENAME).ads force $(GNATMAKE) -m -o $@ -g -aI$(ortho_srcdir) \ -aI$(ortho_srcdir)/gcc $(GNAT_FLAGS) ortho_gcc-main \ -bargs -E -largs $(AGCC_OBJS) \ + $(AGCC_GCCOBJ_DIR)gcc/libbackend.a \ + $(AGCC_GCCOBJ_DIR)gcc/libcommon-target.a \ + $(AGCC_GCCOBJ_DIR)gcc/libcommon.a \ $(AGCC_GCCOBJ_DIR)libcpp/libcpp.a \ $(AGCC_GCCOBJ_DIR)libiberty/libiberty.a \ $(AGCC_GCCOBJ_DIR)libdecnumber/libdecnumber.a \ diff --git a/ortho/gcc/lang.opt b/ortho/gcc/lang.opt index eb63959..2636885 100644 --- a/ortho/gcc/lang.opt +++ b/ortho/gcc/lang.opt @@ -33,13 +33,14 @@ vhdl Separate vhdl Separate --anaelab <name> Used internally during elaboration of <name> -c -vhdl Separate --c <filename> Analyze <filename> for --anaelab +; -c is a driver option for gcc. --ghdl-source is used instead. +;c +;vhdl Separate +;-c <filename> Analyze <filename> for --anaelab -v -vhdl -Verbose +;v +;vhdl +;Verbose -warn- vhdl Joined @@ -81,9 +82,10 @@ l vhdl Joined Separate -l<filename> Put list of files for link in <filename> -C -vhdl -Allow any character in comments +; -C was commented out, as it is already defined for C/C++. +;C +;vhdl +;Allow any character in comments -mb-comments vhdl diff --git a/ortho/gcc/ortho-lang.c b/ortho/gcc/ortho-lang.c index 449f1b6..ef4c9ee 100644 --- a/ortho/gcc/ortho-lang.c +++ b/ortho/gcc/ortho-lang.c @@ -15,7 +15,7 @@ #include "opts.h" #include "options.h" #include "real.h" -#include "tree-gimple.h" +#include "tree-iterator.h" #include "function.h" #include "cgraph.h" #include "target.h" @@ -23,11 +23,16 @@ #include "tree-pass.h" #include "tree-dump.h" +/* TODO: + * remove stmt_list_stack, save in if/case/loop block + * Re-add -v (if necessary) + */ + static tree type_for_size (unsigned int precision, int unsignedp); const int tree_identifier_size = sizeof (struct tree_identifier); -struct binding_level GTY(()) +struct GTY(()) binding_level { /* The BIND_EXPR node for this binding. */ tree bind; @@ -56,7 +61,8 @@ static GTY(()) struct binding_level *cur_binding_level = NULL; /* Chain of unused binding levels. */ static GTY(()) struct binding_level *old_binding_levels = NULL; -static tree cur_stmts = NULL_TREE; +/* Chain of statements currently generated. */ +static GTY(()) tree cur_stmts = NULL_TREE; static void push_binding (void) @@ -64,7 +70,7 @@ push_binding (void) struct binding_level *res; if (old_binding_levels == NULL) - res = (struct binding_level *) ggc_alloc (sizeof (struct binding_level)); + res = ggc_alloc_binding_level (); else { res = old_binding_levels; @@ -93,7 +99,7 @@ push_binding (void) if (cur_binding_level->first_block == NULL) cur_binding_level->first_block = res->block; else - TREE_CHAIN (cur_binding_level->last_block) = res->block; + BLOCK_CHAIN (cur_binding_level->last_block) = res->block; cur_binding_level->last_block = res->block; BLOCK_SUPERCONTEXT (res->block) = cur_binding_level->block; @@ -133,22 +139,21 @@ pop_binding (void) tree t; /* Create an artificial var to save the stack pointer. */ - tmp_var = build_decl (VAR_DECL, NULL, ptr_type_node); + tmp_var = build_decl (input_location, VAR_DECL, NULL, ptr_type_node); DECL_ARTIFICIAL (tmp_var) = true; DECL_IGNORED_P (tmp_var) = true; TREE_USED (tmp_var) = true; push_decl (tmp_var); /* Create the save stmt. */ - save_call = build_function_call_expr - (implicit_built_in_decls[BUILT_IN_STACK_SAVE], NULL_TREE); + save_call = build_call_expr + (builtin_decl_implicit (BUILT_IN_STACK_SAVE), 0); save = build2 (MODIFY_EXPR, ptr_type_node, tmp_var, save_call); TREE_SIDE_EFFECTS (save) = true; /* Create the restore stmt. */ - restore = build_function_call_expr - (implicit_built_in_decls[BUILT_IN_STACK_RESTORE], - tree_cons (NULL_TREE, tmp_var, NULL_TREE)); + restore = build_call_expr + (builtin_decl_implicit (BUILT_IN_STACK_RESTORE), 1, tmp_var); /* Build a try-finally block. The statement list is the block of current statements. */ @@ -181,30 +186,29 @@ pop_binding (void) return res; } -static void -append_stmt (tree stmt) -{ - if (!EXPR_HAS_LOCATION (stmt)) - SET_EXPR_LOCATION (stmt, input_location); - TREE_SIDE_EFFECTS (stmt) = true; - append_to_statement_list (stmt, &cur_stmts); -} +/* This is a stack of current statement_lists */ +static GTY(()) VEC_tree_gc * stmt_list_stack; static void push_stmts (tree stmts) { - TREE_CHAIN (stmts) = cur_stmts; + VEC_safe_push (tree, gc, stmt_list_stack, cur_stmts); cur_stmts = stmts; } - + static void pop_stmts (void) { - tree prev; + cur_stmts = VEC_pop (tree, stmt_list_stack); +} - prev = cur_stmts; - cur_stmts = TREE_CHAIN (prev); - TREE_CHAIN (prev) = NULL_TREE; +static void +append_stmt (tree stmt) +{ + if (!EXPR_HAS_LOCATION (stmt)) + SET_EXPR_LOCATION (stmt, input_location); + TREE_SIDE_EFFECTS (stmt) = true; + append_to_statement_list (stmt, &cur_stmts); } static GTY(()) tree top; @@ -212,22 +216,16 @@ static GTY(()) tree top; static GTY(()) tree stack_alloc_function_ptr; extern void ortho_fe_init (void); -static int +static bool global_bindings_p (void) { return cur_binding_level->prev == NULL; } -static void -insert_block (tree b) -{ - abort (); -} - static tree pushdecl (tree t) { - abort (); + gcc_unreachable (); } static tree @@ -253,13 +251,12 @@ ortho_init (void) push_binding (); build_common_tree_nodes (0, 0); - size_type_node = type_for_size (GET_MODE_BITSIZE (Pmode), 1); - set_sizetype (size_type_node); - build_common_tree_nodes_2 (0); - n = build_decl (TYPE_DECL, get_identifier ("int"), integer_type_node); + n = build_decl (input_location, + TYPE_DECL, get_identifier ("int"), integer_type_node); push_decl (n); - n = build_decl (TYPE_DECL, get_identifier ("char"), char_type_node); + n = build_decl (input_location, + TYPE_DECL, get_identifier ("char"), char_type_node); push_decl (n); /* Create alloca builtin. */ @@ -267,22 +264,26 @@ ortho_init (void) tree args_type = tree_cons (NULL_TREE, size_type_node, void_list_node); tree func_type = build_function_type (ptr_type_node, args_type); - implicit_built_in_decls[BUILT_IN_ALLOCA] = builtin_function - ("__builtin_alloca", func_type, - BUILT_IN_ALLOCA, BUILT_IN_NORMAL, NULL, NULL_TREE); + set_builtin_decl + (BUILT_IN_ALLOCA, + builtin_function + ("__builtin_alloca", func_type, + BUILT_IN_ALLOCA, BUILT_IN_NORMAL, NULL, NULL_TREE), true); stack_alloc_function_ptr = build1 (ADDR_EXPR, build_pointer_type (func_type), - implicit_built_in_decls[BUILT_IN_ALLOCA]); + builtin_decl_implicit (BUILT_IN_ALLOCA)); } { tree ptr_ftype = build_function_type (ptr_type_node, NULL_TREE); - implicit_built_in_decls[BUILT_IN_STACK_SAVE] = builtin_function - ("__builtin_stack_save", ptr_ftype, - BUILT_IN_STACK_SAVE, BUILT_IN_NORMAL, NULL, NULL_TREE); + set_builtin_decl + (BUILT_IN_STACK_SAVE, + builtin_function + ("__builtin_stack_save", ptr_ftype, + BUILT_IN_STACK_SAVE, BUILT_IN_NORMAL, NULL, NULL_TREE), true); } { @@ -292,9 +293,11 @@ ortho_init (void) (void_type_node, tree_cons (NULL_TREE, ptr_type_node, NULL_TREE)); - implicit_built_in_decls[BUILT_IN_STACK_RESTORE] = builtin_function - ("__builtin_stack_restore", ftype_ptr, - BUILT_IN_STACK_RESTORE, BUILT_IN_NORMAL, NULL, NULL_TREE); + set_builtin_decl + (BUILT_IN_STACK_RESTORE, + builtin_function + ("__builtin_stack_restore", ftype_ptr, + BUILT_IN_STACK_RESTORE, BUILT_IN_NORMAL, NULL, NULL_TREE), true); } { @@ -320,7 +323,7 @@ ortho_finish (void) } static unsigned int -ortho_init_options (unsigned int argc, const char **argv) +ortho_option_lang_mask (void) { return CL_vhdl; } @@ -331,14 +334,19 @@ ortho_post_options (const char **pfilename) if (*pfilename == NULL || strcmp (*pfilename, "-") == 0) *pfilename = "*stdin*"; + /* Default hook. */ + lhd_post_options (pfilename); + /* Run the back-end. */ return false; } -extern int lang_handle_option (const char *opt, const char *arg); +extern bool lang_handle_option (const char *opt, const char *arg); -static int -ortho_handle_option (size_t code, const char *arg, int value) +static bool +ortho_handle_option (size_t code, const char *arg, int value, int kind, + location_t loc, + const struct cl_option_handlers *handlers) { const char *opt; @@ -375,7 +383,7 @@ ortho_handle_option (size_t code, const char *arg, int value) extern int lang_parse_file (const char *filename); static void -ortho_parse_file (int debug) +ortho_parse_file (void) { const char *filename; @@ -389,11 +397,6 @@ ortho_parse_file (int debug) if (!lang_parse_file (filename)) errorcount++; - else - { - cgraph_finalize_compilation_unit (); - cgraph_optimize (); - } linemap_add (line_table, LC_LEAVE, 0, NULL, 1); } @@ -436,7 +439,7 @@ ortho_mark_addressable (tree exp) return true; default: - abort (); + gcc_unreachable (); } } @@ -483,7 +486,7 @@ ortho_truthvalue_conversion (tree expr) return real_zerop (expr) ? f : t; default: - abort (); + gcc_unreachable (); } } @@ -544,8 +547,7 @@ convert (tree type, tree expr) return error_mark_node; if (TREE_CODE (TREE_TYPE (expr)) == VOID_TYPE || code == VOID_TYPE) { - abort (); - return error_mark_node; + gcc_unreachable (); } if (code == INTEGER_TYPE || code == ENUMERAL_TYPE) return fold (convert_to_integer (type, e)); @@ -567,7 +569,7 @@ convert (tree type, tree expr) if (code == REAL_TYPE) return fold (convert_to_real (type, e)); - abort (); + gcc_unreachable (); } /* Return a definition for a builtin function named NAME and whose data type @@ -586,7 +588,8 @@ builtin_function (const char *name, const char *library_name, tree attrs ATTRIBUTE_UNUSED) { - tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type); + tree decl = build_decl (input_location, + FUNCTION_DECL, get_identifier (name), type); DECL_EXTERNAL (decl) = 1; TREE_PUBLIC (decl) = 1; if (library_name) @@ -646,8 +649,8 @@ type_for_mode (enum machine_mode mode, int unsignedp) #define LANG_HOOKS_INIT ortho_init #undef LANG_HOOKS_FINISH #define LANG_HOOKS_FINISH ortho_finish -#undef LANG_HOOKS_INIT_OPTIONS -#define LANG_HOOKS_INIT_OPTIONS ortho_init_options +#undef LANG_HOOKS_OPTION_LANG_MASK +#define LANG_HOOKS_OPTION_LANG_MASK ortho_option_lang_mask #undef LANG_HOOKS_HANDLE_OPTION #define LANG_HOOKS_HANDLE_OPTION ortho_handle_option #undef LANG_HOOKS_POST_OPTIONS @@ -678,60 +681,31 @@ type_for_mode (enum machine_mode mode, int unsignedp) #undef LANG_HOOKS_GETDECLS #define LANG_HOOKS_GETDECLS lhd_return_null_tree_v -const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER; - -/* Tree code classes. */ - -#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) TYPE, - -const enum tree_code_class tree_code_type[] = { -#include "tree.def" - 'x' -}; -#undef DEFTREECODE - -/* Table indexed by tree code giving number of expression - operands beyond the fixed part of the node structure. - Not used for types or decls. */ - -#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) LENGTH, - -const unsigned char tree_code_length[] = { -#include "tree.def" - 0 -}; -#undef DEFTREECODE - -#define DEFTREECODE(SYM, NAME, TYPE, LENGTH) NAME, -const char * const tree_code_name[] = { -#include "tree.def" - "@@dummy" -}; -#undef DEFTREECODE +struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER; -union lang_tree_node - GTY((desc ("0"), - chain_next ("(union lang_tree_node *) GENERIC_NEXT (&%h.generic)"))) +union GTY((desc ("0"), + chain_next ("CODE_CONTAINS_STRUCT (TREE_CODE (&%h.generic), TS_COMMON) ? ((union lang_tree_node *) TREE_CHAIN (&%h.generic)) : NULL"))) + lang_tree_node { - union tree_node GTY ((tag ("0"))) generic; + union tree_node GTY((tag ("0"), + desc ("tree_node_structure (&%h)"))) generic; }; -struct lang_decl GTY(()) -{ - char dummy; -}; +/* GHDL does not use the lang_decl and lang_type. -struct lang_type GTY (()) -{ - char dummy; -}; + FIXME: the variable_size annotation here is needed because these types are + variable-sized in some other front-ends. Due to gengtype deficiency, the + GTY options of such types have to agree across all front-ends. */ -struct language_function GTY (()) +struct GTY((variable_size)) lang_type { char dummy; }; +struct GTY((variable_size)) lang_decl { char dummy; }; + +struct GTY(()) language_function { char dummy; }; -struct chain_constr_type +struct GTY(()) chain_constr_type { tree first; tree last; @@ -749,8 +723,7 @@ chain_append (struct chain_constr_type *constr, tree el) { if (constr->first == NULL_TREE) { - if (constr->last != NULL_TREE) - abort (); + gcc_assert (constr->last == NULL_TREE); constr->first = el; } else @@ -758,7 +731,7 @@ chain_append (struct chain_constr_type *constr, tree el) constr->last = el; } -struct list_constr_type +struct GTY(()) list_constr_type { tree first; tree last; @@ -855,8 +828,7 @@ new_dyadic_op (enum ON_op_kind kind, tree left, tree right) enum tree_code code; left_type = TREE_TYPE (left); - if (left_type != TREE_TYPE (right)) - abort (); + gcc_assert (left_type == TREE_TYPE (right)); switch (kind) { @@ -882,10 +854,8 @@ new_monadic_op (enum ON_op_kind kind, tree operand) tree new_compare_op (enum ON_op_kind kind, tree left, tree right, tree ntype) { - if (TREE_CODE (ntype) != BOOLEAN_TYPE) - abort (); - if (TREE_TYPE (left) != TREE_TYPE (right)) - abort (); + gcc_assert (TREE_CODE (ntype) == BOOLEAN_TYPE); + gcc_assert (TREE_TYPE (left) == TREE_TYPE (right)); return build2 (ON_op_to_TREE_CODE[kind], ntype, left, right); } @@ -947,7 +917,7 @@ new_convert_ov (tree val, tree rtype) else if (val_code == REAL_TYPE && rtype_code == REAL_TYPE) code = NOP_EXPR; else - abort (); + gcc_unreachable (); return build1 (code, rtype, val); } @@ -956,15 +926,14 @@ tree new_alloca (tree rtype, tree size) { tree res; - tree args; /* Must save stack except when at function level. */ if (cur_binding_level->prev != NULL && cur_binding_level->prev->prev != NULL) cur_binding_level->save_stack = 1; - args = tree_cons (NULL_TREE, fold_convert (size_type_node, size), NULL_TREE); - res = build_call_list (ptr_type_node, stack_alloc_function_ptr, args); + res = build_call_nary (ptr_type_node, stack_alloc_function_ptr, + 1, fold_convert (size_type_node, size)); return fold_convert (rtype, res); } @@ -976,11 +945,7 @@ new_signed_literal (tree ltype, long long value) HOST_WIDE_INT hi; lo = value; - if (sizeof (HOST_WIDE_INT) == sizeof (long long)) - hi = value >> (8 * sizeof (HOST_WIDE_INT) - 1); - else - hi = value >> (8 * sizeof (HOST_WIDE_INT)); - + hi = (value >> 1) >> (8 * sizeof (HOST_WIDE_INT) - 1); res = build_int_cst_wide (ltype, lo, hi); return res; } @@ -993,11 +958,7 @@ new_unsigned_literal (tree ltype, unsigned long long value) unsigned HOST_WIDE_INT hi; lo = value; - if (sizeof (HOST_WIDE_INT) == sizeof (long long)) - hi = 0; - else - hi = value >> (8 * sizeof (HOST_WIDE_INT)); - + hi = (value >> 1) >> (8 * sizeof (HOST_WIDE_INT) - 1); res = build_int_cst_wide (ltype, lo, hi); return res; } @@ -1028,11 +989,7 @@ new_float_literal (tree ltype, double value) s = ldexp (frac, 60); lo = s; - if (sizeof (HOST_WIDE_INT) == sizeof (long long)) - hi = s >> (8 * sizeof (HOST_WIDE_INT) - 1); - else - hi = s >> (8 * sizeof (HOST_WIDE_INT)); - + hi = (s >> 1) >> (8 * sizeof (HOST_WIDE_INT) - 1); res = build_int_cst_wide (long_integer_type_node, lo, hi); REAL_VALUE_FROM_INT (r_sign, lo, hi, DFmode); real_2expN (&r_exp, ex - 60, DFmode); @@ -1041,7 +998,7 @@ new_float_literal (tree ltype, double value) return res; } -struct o_element_list +struct GTY(()) o_element_list { tree res; struct chain_constr_type chain; @@ -1075,7 +1032,8 @@ new_record_union_field (struct o_element_list *list, { tree res; - res = build_decl (FIELD_DECL, ident, etype); + res = build_decl (input_location, + FIELD_DECL, ident, etype); DECL_CONTEXT (res) = list->res; chain_append (&list->chain, res); *el = res; @@ -1104,7 +1062,6 @@ finish_record_type (struct o_element_list *elements, tree *res) } } - void start_union_type (struct o_element_list *elements) { @@ -1162,7 +1119,7 @@ new_access_type (tree dtype) res = make_node (POINTER_TYPE); TREE_TYPE (res) = NULL_TREE; /* Seems necessary. */ - TYPE_MODE (res) = Pmode; + SET_TYPE_MODE (res, Pmode); layout_type (res); return res; } @@ -1173,9 +1130,8 @@ new_access_type (tree dtype) void finish_access_type (tree atype, tree dtype) { - if (TREE_CODE (atype) != POINTER_TYPE - || TREE_TYPE (atype) != NULL_TREE) - abort (); + gcc_assert (TREE_CODE (atype) == POINTER_TYPE + && TREE_TYPE (atype) == NULL_TREE); TREE_TYPE (atype) = dtype; } @@ -1260,62 +1216,78 @@ finish_enum_type (struct o_enum_list *list, tree *res) { *res = list->res; TYPE_VALUES (*res) = list->chain.first; - TYPE_MIN_VALUE (*res) = TREE_VALUE (list->chain.first); - TYPE_MAX_VALUE (*res) = TREE_VALUE (list->chain.last); TYPE_UNSIGNED (*res) = 1; TYPE_PRECISION (*res) = list->size; + set_min_and_max_values_for_integral_type (*res, list->size, 1); layout_type (*res); } -struct o_record_aggr_list +struct GTY(()) o_record_aggr_list { + /* Type of the record. */ tree atype; - struct chain_constr_type chain; + /* Type of the next field to be added. */ + tree field; + /* Vector of elements. */ + VEC(constructor_elt,gc) *elts; }; void start_record_aggr (struct o_record_aggr_list *list, tree atype) { list->atype = atype; - chain_init (&list->chain); + list->field = TYPE_FIELDS (atype); + list->elts = VEC_alloc (constructor_elt, gc, fields_length (atype)); + } void new_record_aggr_el (struct o_record_aggr_list *list, tree value) { - chain_append (&list->chain, build_tree_list (NULL_TREE, value)); + CONSTRUCTOR_APPEND_ELT (list->elts, list->field, value); + list->field = TREE_CHAIN (list->field); } void finish_record_aggr (struct o_record_aggr_list *list, tree *res) { - *res = build_constructor_from_list (list->atype, list->chain.first); + *res = build_constructor (list->atype, list->elts); } -struct o_array_aggr_list +struct GTY(()) o_array_aggr_list { tree atype; - struct chain_constr_type chain; + /* Vector of elements. */ + VEC(constructor_elt,gc) *elts; }; void start_array_aggr (struct o_array_aggr_list *list, tree atype) { + tree nelts; + unsigned HOST_WIDE_INT n; + list->atype = atype; - chain_init (&list->chain); + list->elts = NULL; + + nelts = array_type_nelts (atype); + gcc_assert (nelts != NULL_TREE && host_integerp (nelts, 1)); + + n = tree_low_cst (nelts, 1) + 1; + list->elts = VEC_alloc (constructor_elt, gc, n); } void new_array_aggr_el (struct o_array_aggr_list *list, tree value) { - chain_append (&list->chain, build_tree_list (NULL_TREE, value)); + CONSTRUCTOR_APPEND_ELT (list->elts, NULL_TREE, value); } void finish_array_aggr (struct o_array_aggr_list *list, tree *res) { - *res = build_constructor_from_list (list->atype, list->chain.first); + *res = build_constructor (list->atype, list->elts); } @@ -1349,8 +1321,7 @@ new_slice (tree arr, tree res_type, tree index) /* *((RES_TYPE *)(&ARR[INDEX])) convert ARR to a pointer, add index, and reconvert to array ? */ - if (TREE_CODE (res_type) != ARRAY_TYPE) - abort (); + gcc_assert (TREE_CODE (res_type) == ARRAY_TYPE); ortho_mark_addressable (arr); return build4 (ARRAY_RANGE_REF, res_type, arr, index, NULL_TREE, NULL_TREE); @@ -1372,8 +1343,7 @@ new_selected_element (tree rec, tree el) { tree res; - if (TREE_CODE (TREE_TYPE (rec)) != RECORD_TYPE) - abort (); + gcc_assert (TREE_CODE (TREE_TYPE (rec)) == RECORD_TYPE); res = build3 (COMPONENT_REF, TREE_TYPE (el), rec, el, NULL_TREE); return res; @@ -1385,8 +1355,7 @@ new_access_element (tree acc) tree acc_type; acc_type = TREE_TYPE (acc); - if (TREE_CODE (acc_type) != POINTER_TYPE) - abort (); + gcc_assert (TREE_CODE (acc_type) == POINTER_TYPE); return build1 (INDIRECT_REF, TREE_TYPE (acc_type), acc); } @@ -1400,18 +1369,14 @@ new_offsetof (tree field, tree rtype) tree res; off = DECL_FIELD_OFFSET (field); - if (!host_integerp (off, 1)) - { - /* The offset must be a constant. */ - abort (); - } + + /* The offset must be a constant. */ + gcc_assert (host_integerp (off, 1)); bit_off = DECL_FIELD_BIT_OFFSET (field); - if (!host_integerp (bit_off, 1)) - { - /* The offset must be a constant. */ - abort (); - } + + /* The offset must be a constant. */ + gcc_assert (host_integerp (bit_off, 1)); pos = TREE_INT_CST_LOW (off) + (TREE_INT_CST_LOW (bit_off) / BITS_PER_UNIT); @@ -1574,7 +1539,7 @@ new_type_decl (tree ident, tree atype) tree decl; TYPE_NAME (atype) = ident; - decl = build_decl (TYPE_DECL, ident, atype); + decl = build_decl (input_location, TYPE_DECL, ident, atype); TYPE_STUB_DECL (atype) = decl; push_decl (decl); /* @@ -1623,14 +1588,14 @@ new_const_decl (tree *res, tree ident, enum o_storage storage, tree atype) { tree cst; - cst = build_decl (VAR_DECL, ident, atype); + cst = build_decl (input_location, VAR_DECL, ident, atype); set_storage (cst, storage); TREE_READONLY (cst) = 1; push_decl (cst); switch (storage) { case o_storage_local: - abort (); + gcc_unreachable (); case o_storage_external: /* We are at top level if Current_Function_Decl is null. */ rest_of_decl_compilation @@ -1663,7 +1628,7 @@ new_var_decl (tree *res, tree ident, enum o_storage storage, tree atype) { tree var; - var = build_decl (VAR_DECL, ident, atype); + var = build_decl (input_location, VAR_DECL, ident, atype); if (current_function_decl != NULL_TREE) { /* Local variable. */ @@ -1682,7 +1647,7 @@ new_var_decl (tree *res, tree ident, enum o_storage storage, tree atype) *res = var; } -struct o_inter_list +struct GTY(()) o_inter_list { tree ident; enum o_storage storage; @@ -1726,7 +1691,7 @@ new_interface_decl (struct o_inter_list *interfaces, { tree r; - r = build_decl (PARM_DECL, ident, atype); + r = build_decl (input_location, PARM_DECL, ident, atype); /* DECL_CONTEXT (Res, Xxx); */ /* Do type conversion: convert boolean and enums to int */ @@ -1746,10 +1711,6 @@ new_interface_decl (struct o_inter_list *interfaces, *res = r; } -/* Current function nest level, or the number of parents. */ -/* static int function_nest_level; */ - - void finish_subprogram_decl (struct o_inter_list *interfaces, tree *res) { @@ -1762,7 +1723,7 @@ finish_subprogram_decl (struct o_inter_list *interfaces, tree *res) is known not be have variables arguments. */ ortho_list_append (&interfaces->param_list, void_type_node); - decl = build_decl (FUNCTION_DECL, interfaces->ident, + decl = build_decl (input_location, FUNCTION_DECL, interfaces->ident, build_function_type (interfaces->rtype, interfaces->param_list.first)); DECL_SOURCE_LOCATION (decl) = input_location; @@ -1784,7 +1745,8 @@ finish_subprogram_decl (struct o_inter_list *interfaces, tree *res) /* Declare the result. FIXME: should be moved in start_function_body. */ - result = build_decl (RESULT_DECL, NULL_TREE, interfaces->rtype); + result = build_decl (input_location, + RESULT_DECL, NULL_TREE, interfaces->rtype); DECL_RESULT (decl) = result; DECL_CONTEXT (result) = decl; @@ -1811,8 +1773,7 @@ finish_subprogram_decl (struct o_inter_list *interfaces, tree *res) void start_subprogram_body (tree func) { - if (current_function_decl != DECL_CONTEXT (func)) - abort (); + gcc_assert (current_function_decl == DECL_CONTEXT (func)); current_function_decl = func; /* The function is not anymore external. */ @@ -1842,19 +1803,11 @@ finish_subprogram_body (void) /* Store the end of the function. */ cfun->function_end_locus = input_location; - /* This function is being processed in whole-function mode. */ - /* cfun->x_whole_function_mode_p = 1; */ - - gimplify_function_tree (func); - - /* Dump the genericized tree IR. - Enabled by -fdump-tree-gimple. */ - dump_function (TDI_generic, func); parent = DECL_CONTEXT (func); if (parent != NULL) - cgraph_node (func); + cgraph_get_create_node (func); else cgraph_finalize_function (func, false); @@ -1887,31 +1840,31 @@ finish_declare_stmt (void) } -struct o_assoc_list +struct GTY(()) o_assoc_list { tree subprg; - struct list_constr_type list; + VEC(tree,gc) *vec; }; void start_association (struct o_assoc_list *assocs, tree subprg) { assocs->subprg = subprg; - list_init (&assocs->list); + assocs->vec = NULL; } void new_association (struct o_assoc_list *assocs, tree val) { - ortho_list_append (&assocs->list, val); + VEC_safe_push (tree, gc, assocs->vec, val); } tree new_function_call (struct o_assoc_list *assocs) { - return build_call_list (TREE_TYPE (TREE_TYPE (assocs->subprg)), - build_function_ptr (assocs->subprg), - assocs->list.first); + return build_call_vec (TREE_TYPE (TREE_TYPE (assocs->subprg)), + build_function_ptr (assocs->subprg), + assocs->vec); } void @@ -1919,9 +1872,9 @@ new_procedure_call (struct o_assoc_list *assocs) { tree res; - res = build_call_list (TREE_TYPE (TREE_TYPE (assocs->subprg)), - build_function_ptr (assocs->subprg), - assocs->list.first); + res = build_call_vec (TREE_TYPE (TREE_TYPE (assocs->subprg)), + build_function_ptr (assocs->subprg), + assocs->vec); TREE_SIDE_EFFECTS (res) = 1; append_stmt (res); } @@ -1962,7 +1915,7 @@ new_proc_return_stmt (void) } -struct o_if_block +struct GTY(()) o_if_block { tree stmt; }; @@ -2012,13 +1965,7 @@ finish_if_stmt (struct o_if_block *block) } -struct o_loop_block -{ - tree beg_label; - tree end_label; -}; - -struct o_snode +struct GTY(()) o_snode { tree beg_label; tree end_label; @@ -2030,7 +1977,7 @@ build_label (void) { tree res; - res = build_decl (LABEL_DECL, NULL_TREE, void_type_node); + res = build_decl (input_location, LABEL_DECL, NULL_TREE, void_type_node); DECL_CONTEXT (res) = current_function_decl; DECL_ARTIFICIAL (res) = 1; return res; @@ -2086,7 +2033,7 @@ new_next_stmt (struct o_snode *l) append_stmt (stmt); } -struct o_case_block +struct GTY(()) o_case_block { tree end_label; int add_break; @@ -2125,8 +2072,8 @@ new_expr_choice (struct o_case_block *block, tree expr) { tree stmt; - stmt = build3 (CASE_LABEL_EXPR, void_type_node, - expr, NULL_TREE, create_artificial_label ()); + stmt = build_case_label + (expr, NULL_TREE, create_artificial_label (input_location)); append_stmt (stmt); } @@ -2135,8 +2082,8 @@ new_range_choice (struct o_case_block *block, tree low, tree high) { tree stmt; - stmt = build3 (CASE_LABEL_EXPR, void_type_node, - low, high, create_artificial_label ()); + stmt = build_case_label + (low, high, create_artificial_label (input_location)); append_stmt (stmt); } @@ -2145,8 +2092,8 @@ new_default_choice (struct o_case_block *block) { tree stmt; - stmt = build3 (CASE_LABEL_EXPR, void_type_node, - NULL_TREE, NULL_TREE, create_artificial_label ()); + stmt = build_case_label + (NULL_TREE, NULL_TREE, create_artificial_label (input_location)); append_stmt (stmt); } diff --git a/ortho/gcc/ortho_gcc.ads b/ortho/gcc/ortho_gcc.ads index a718f93..9b53568 100644 --- a/ortho/gcc/ortho_gcc.ads +++ b/ortho/gcc/ortho_gcc.ads @@ -426,6 +426,9 @@ package Ortho_Gcc is private subtype Tree is System.Address; NULL_TREE : constant Tree := System.Null_Address; + + subtype Vec_Ptr is System.Address; + type O_Cnode is new Tree; type O_Enode is new Tree; type O_Lnode is new Tree; @@ -513,9 +516,17 @@ private Chain : Chain_Constr_Type; end record; - type O_Record_Aggr_List is new O_Aggr_List; + type O_Record_Aggr_List is record + Atype : Tree; + Afield : Tree; + Vec : Vec_Ptr; + end record; pragma Convention (C, O_Record_Aggr_List); - type O_Array_Aggr_List is new O_Aggr_List; + + type O_Array_Aggr_List is record + Atype : Tree; + Vec : Vec_Ptr; + end record; pragma Convention (C, O_Array_Aggr_List); type O_Assoc_List is record diff --git a/translate/gcc/Make-lang.in b/translate/gcc/Make-lang.in index 308f400..3c6e5c3 100644 --- a/translate/gcc/Make-lang.in +++ b/translate/gcc/Make-lang.in @@ -69,17 +69,67 @@ AGCC_GCCSRC_DIR=$(srcdir)/.. AGCC_GCCOBJ_DIR=../ ####gcc Makefile.inc +# -*- Makefile -*- for the gcc implemantation of ortho. +# Copyright (C) 2005 Tristan Gingold +# +# GHDL is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation; either version 2, or (at your option) any later +# version. +# +# GHDL is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with GCC; see the file COPYING. If not, write to the Free +# Software Foundation, 59 Temple Place - Suite 330, Boston, MA +# 02111-1307, USA. + +# Variable used: +# AGCC_GCCSRC_DIR: the gcc source base directory (ie gcc-X.Y.Z-objs/) +# AGCC_GCCOBJ_DIR: the gcc objects base directory +# agcc_srcdir: the agcc source directory +# agcc_objdir: the agcc object directory + +AGCC_INC_FLAGS=-I$(AGCC_GCCOBJ_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/include \ + -I$(AGCC_GCCSRC_DIR)/gcc -I$(AGCC_GCCSRC_DIR)/gcc/config \ + -I$(AGCC_GCCSRC_DIR)/libcpp/include +AGCC_CFLAGS=-g -Wall -DIN_GCC $(AGCC_INC_FLAGS) + +AGCC_LOCAL_OBJS=ortho-lang.o + +AGCC_DEPS := $(AGCC_LOCAL_OBJS) +AGCC_OBJS := $(AGCC_LOCAL_OBJS) $(AGCC_GCCOBJ_DIR)gcc/attribs.o +# $(AGCC_GCCOBJ_DIR)gcc/toplev.o + +ortho-lang.o: $(agcc_srcdir)/ortho-lang.c \ + $(AGCC_GCCOBJ_DIR)gcc/gtype-vhdl.h \ + $(AGCC_GCCOBJ_DIR)gcc/gt-vhdl-ortho-lang.h + $(CC) -c -o $@ $< $(AGCC_CFLAGS) + +agcc-clean: force + $(RM) -f $(agcc_objdir)/*.o + $(RM) -f $(agcc_srcdir)/*~ + +agcc-maintainer-clean: force + $(RM) -f $(AGCC_DEPS) + + +.PHONY: agcc-clean agcc-maintainer-clean # The compiler proper. # It is compiled into the vhdl/ subdirectory to avoid file name clashes but # linked in in gcc directory to be able to access to gcc object files. -ghdl1$(exeext): $(AGCC_OBJS) $(AGCC_DEPS) force +ghdl1$(exeext): $(AGCC_OBJS) $(AGCC_DEPS) force $(BACKEND) $(LIBDEPS) CURDIR=`pwd`; cd $(srcdir)/vhdl; VHDLSRCDIR=`pwd`; cd $$CURDIR/vhdl; \ $(GNATMAKE) -c -aI$$VHDLSRCDIR ortho_gcc-main \ -cargs $(CFLAGS) $(GHDL_ADAFLAGS) $(GNATMAKE) -o $@ -aI$(srcdir)/vhdl -aOvhdl ortho_gcc-main \ -bargs -E -cargs $(CFLAGS) $(GHDL_ADAFLAGS) \ - -largs $(AGCC_OBJS) $(LIBS) $(GMPLIBS) + -largs $(AGCC_OBJS) $(filter-out main.o,$(BACKEND)) \ + $(LIBS) $(BACKENDLIBS) # The driver for ghdl. ghdl$(exeext): force diff --git a/translate/gcc/dist.sh b/translate/gcc/dist.sh index f79719b..9501334 100755 --- a/translate/gcc/dist.sh +++ b/translate/gcc/dist.sh @@ -39,7 +39,7 @@ set -e # GCC version -GCCVERSION=4.3.4 +GCCVERSION=4.7.2 # Machine name used by GCC MACHINE=i686-pc-linux-gnu # Directory where GCC sources (and objects) stay. @@ -187,12 +187,17 @@ do_compile () case x86 in x86) BUILD=i686-pc-linux-gnu - CONFIG_LIBS="--with-gmp=$PWD/../build --with-mpfr=$PWD/../build" + # gmp location (mpfr and mpc are supposed to be at the same place) + CONFIG_LIBS="--with-gmp=$PWD/../build" ;; x86-64) BUILD=x86_64-pc-linux-gnu CONFIG_LIBS="" ;; + darwin) + BUILD=x86_64-apple-darwin10.7 + CONFIG_LIBS="--with-gmp=$HOME/local" + ;; *) exit 1 ;; diff --git a/translate/ghdldrv/Makefile b/translate/ghdldrv/Makefile index 56c0675..b4199a9 100644 --- a/translate/ghdldrv/Makefile +++ b/translate/ghdldrv/Makefile @@ -15,7 +15,7 @@ # along with GCC; see the file COPYING. If not, write to the Free # Software Foundation, 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. -GNATFLAGS=-gnaty3befhkmr -gnata -gnatwae -aI../.. -aI.. -aI../../psl -aI../grt -aO.. -g -gnatf +GNATFLAGS=-gnaty3befhkmr -gnata -gnatwae -aI../.. -aI.. -aI../../psl -aI../grt -aO.. -g -gnatf -gnat05 GRT_FLAGS=-g LIB_CFLAGS=-g -O2 GNATMAKE=gnatmake @@ -41,6 +41,8 @@ all: ghdl_mcode target=i686-pc-linux-gnu #target=x86_64-pc-linux-gnu +#target=i686-apple-darwin +#target=x86_64-apple-darwin GRTSRCDIR=../grt include $(GRTSRCDIR)/Makefile.inc @@ -63,11 +65,11 @@ ghdl_mcode: default_pathes.ads $(GRT_ADD_OBJS) $(ORTHO_DEPS) memsegs_c.o chkstk. $(GNATMAKE) -aI../../ortho/mcode -aI../../ortho $(GNATFLAGS) ghdl_mcode $(GNAT_BARGS) -largs memsegs_c.o chkstk.o $(GNAT_LARGS) $(GRT_ADD_OBJS) $(subst @,$(GRTSRCDIR),$(GRT_EXTRA_LIB)) ghdl_llvm_jit: GRT_FLAGS+=-DWITH_GNAT_RUN_TIME -ghdl_llvm_jit: default_pathes.ads $(GRT_ADD_OBJS) $(ORTHO_DEPS) bindings.o force +ghdl_llvm_jit: default_pathes.ads $(GRT_ADD_OBJS) $(ORTHO_DEPS) bindings.o force $(GNATMAKE) -o $@ -aI../../ortho/llvm -aI../../ortho/mcode -aI../../ortho $(GNATFLAGS) ghdl_mcode $(GNAT_BARGS) -largs -m64 bindings.o $(GNAT_LARGS) $(GRT_ADD_OBJS) $(subst @,$(GRTSRCDIR),$(GRT_EXTRA_LIB)) --LINK=g++ -ghdl_simul: default_pathes.ads force - $(GNATMAKE) -aI../../simulate $(GNATFLAGS) ghdl_simul $(GNAT_BARGS) -largs $(GNAT_LARGS) +ghdl_simul: default_pathes.ads $(GRT_ADD_OBJS) force + $(GNATMAKE) -aI../../simulate $(GNATFLAGS) ghdl_simul $(GNAT_BARGS) -largs $(GNAT_LARGS) $(GRT_ADD_OBJS) $(subst @,$(GRTSRCDIR),$(GRT_EXTRA_LIB)) memsegs_c.o: ../../ortho/mcode/memsegs_c.c $(CC) -c -g -o $@ $< @@ -75,10 +77,10 @@ memsegs_c.o: ../../ortho/mcode/memsegs_c.c bindings.o: ../../ortho/llvm/bindings.cpp $(CXX) -c -m64 `$(LLVM_CONFIG) --cxxflags` -g -o $@ $< -ghdl_gcc: default_pathes.ads force +ghdl_gcc: default_pathes.ads force $(GNATMAKE) $(GNATFLAGS) ghdl_gcc $(GNAT_BARGS) -largs $(GNAT_LARGS) -ghdl_llvm: default_pathes.ads force +ghdl_llvm: default_pathes.ads force $(GNATMAKE) $(GNATFLAGS) ghdl_llvm $(GNAT_BARGS) -largs $(GNAT_LARGS) default_pathes.ads: default_pathes.ads.in Makefile @@ -104,7 +106,8 @@ LIB08_DIR:=../lib/v08 LIBSRC_DIR:=../../libraries REL_DIR:=../.. -ANALYZE:=../../../ghdldrv/ghdl -a $(LIB_CFLAGS) +GHDL=ghdl +ANALYZE:=../../../ghdldrv/$(GHDL) -a $(LIB_CFLAGS) LN=ln -s CP=cp @@ -151,6 +154,9 @@ install.all: install.v87 install.v93 install.standard install.mcode: install.v87 install.v93 install.v08 install.llvm: install.standard-llvm +install.simul: + $(MAKE) GHDL=ghdl_simul install.v87 install.v93 + clean: force $(RM) -f *.o *.ali ghdl_gcc ghdl_mcode $(RM) -f b~*.ad? *~ default_pathes.ads diff --git a/translate/ghdldrv/ghdldrv.adb b/translate/ghdldrv/ghdldrv.adb index 438227d..dde8a40 100644 --- a/translate/ghdldrv/ghdldrv.adb +++ b/translate/ghdldrv/ghdldrv.adb @@ -671,6 +671,11 @@ package body Ghdldrv is Add_Argument (Compiler_Args, new String'(Opt)); Flag_Expect_Failure := True; Res := Option_Ok; + elsif Opt = "-C" then + -- Translate -C into --mb-comments, as gcc already has a definition + -- for -C. Done before Flags.Parse_Option. + Add_Argument (Compiler_Args, new String'("--mb-comments")); + Res := Option_Ok; elsif Options.Parse_Option (Opt) then Add_Argument (Compiler_Args, new String'(Opt)); Res := Option_Ok; @@ -888,22 +893,21 @@ package body Ghdldrv is procedure Bind_Anaelab (Files : Argument_List) is - Comp_List : Argument_List (1 .. 2 * Files'Length + 2); - Flag_C : String_Access; + Comp_List : Argument_List (1 .. Files'Length + 2); Index : Natural; begin Comp_List (1) := new String'("--anaelab"); Comp_List (2) := Unit_Name; - Flag_C := new String'("-c"); Index := 3; for I in Files'Range loop - Comp_List (Index) := Flag_C; - Comp_List (Index + 1) := Files (I); - Index := Index + 2; + Comp_List (Index) := new String'("--ghdl-source=" & Files (I).all); + Index := Index + 1; end loop; Do_Compile (Comp_List, Elab_Name.all); - Free (Flag_C); Free (Comp_List (1)); + for I in 3 .. Comp_List'Last loop + Free (Comp_List (I)); + end loop; end Bind_Anaelab; procedure Link (Add_Std : Boolean; diff --git a/translate/ortho_front.adb b/translate/ortho_front.adb index e5d6626..4f6e201 100644 --- a/translate/ortho_front.adb +++ b/translate/ortho_front.adb @@ -164,20 +164,23 @@ package body Ortho_Front is end if; Action := Action_Anaelab; return Decode_Elab_Option (Arg); - elsif Opt.all = "-c" then + elsif Opt'Length > 14 + and then Opt (Opt'First .. Opt'First + 13) = "--ghdl-source=" + then if Action /= Action_Anaelab then Error_Msg_Option - ("-c option allowed only after --anaelab options"); + ("--ghdl-source option allowed only after --anaelab options"); return 0; end if; - if Arg = null then - Error_Msg_Option ("filename required after -c"); + if Arg /= null then + Error_Msg_Option ("no argument allowed after --ghdl-source"); return 0; end if; declare L : Id_Link_Acc; begin - L := new Id_Link'(Id => Name_Table.Get_Identifier (Arg.all), + L := new Id_Link'(Id => Name_Table.Get_Identifier + (Opt (Opt'First + 14 .. Opt'Last)), Link => null); if Anaelab_Files = null then Anaelab_Files := L; diff --git a/version.ads b/version.ads index b8e404e..2bf3d76 100644 --- a/version.ads +++ b/version.ads @@ -1,5 +1,5 @@ package Version is Ghdl_Release : constant String := - "GHDL 0.29 (20100109) [Sokcho edition]"; - Ghdl_Ver : constant String := "0.29"; + "GHDL 0.30dev (20100112) [Sokcho edition]"; + Ghdl_Ver : constant String := "0.30dev"; end Version; |