diff options
author | Anthony Green <green@redhat.com> | 2000-11-24 15:29:39 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2000-11-24 15:29:39 +0000 |
commit | 1510057a32b1646c235117aaed4ab54536d1d18a (patch) | |
tree | c613feae29fe58c445b9d9c9150ae1a14e173930 /gcc/java/expr.c | |
parent | 52a84e42704079b6a1e93fee1215b6d7368f856c (diff) | |
download | gcc-1510057a32b1646c235117aaed4ab54536d1d18a.zip gcc-1510057a32b1646c235117aaed4ab54536d1d18a.tar.gz gcc-1510057a32b1646c235117aaed4ab54536d1d18a.tar.bz2 |
jcf-parse.c (init_jcf_parse): Register current_file_list root.
* jcf-parse.c (init_jcf_parse): Register current_file_list root.
Move current_file_list out of yyparse and make it static.
* expr.c: Declare quick_stack and tree_list_free_list as static
(init_expr_processing): Register quick_stack and
tree_list_free_list roots.
From-SVN: r37708
Diffstat (limited to 'gcc/java/expr.c')
-rw-r--r-- | gcc/java/expr.c | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/gcc/java/expr.c b/gcc/java/expr.c index 2d59229..5b90488 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -93,19 +93,6 @@ tree dtable_ident = NULL_TREE; before static field references. */ int always_initialize_class_p; -void -init_expr_processing() -{ - operand_type[21] = operand_type[54] = int_type_node; - operand_type[22] = operand_type[55] = long_type_node; - operand_type[23] = operand_type[56] = float_type_node; - operand_type[24] = operand_type[57] = double_type_node; - operand_type[25] = operand_type[58] = ptr_type_node; - ggc_add_tree_root (operand_type, 59); - ggc_add_tree_root (&methods_ident, 1); - ggc_add_tree_root (&ncode_ident, 1); -} - /* We store the stack state in two places: Within a basic block, we use the quick_stack, which is a pushdown list (TREE_LISTs) of expression nodes. @@ -133,10 +120,10 @@ init_expr_processing() So dup cannot just add an extra element to the quick_stack, but iadd can. */ -tree quick_stack = NULL_TREE; +static tree quick_stack = NULL_TREE; /* A free-list of unused permamnet TREE_LIST nodes. */ -tree tree_list_free_list = NULL_TREE; +static tree tree_list_free_list = NULL_TREE; /* The stack pointer of the Java virtual machine. This does include the size of the quick_stack. */ @@ -146,6 +133,21 @@ int stack_pointer; const unsigned char *linenumber_table; int linenumber_count; +void +init_expr_processing() +{ + operand_type[21] = operand_type[54] = int_type_node; + operand_type[22] = operand_type[55] = long_type_node; + operand_type[23] = operand_type[56] = float_type_node; + operand_type[24] = operand_type[57] = double_type_node; + operand_type[25] = operand_type[58] = ptr_type_node; + ggc_add_tree_root (operand_type, 59); + ggc_add_tree_root (&methods_ident, 1); + ggc_add_tree_root (&ncode_ident, 1); + ggc_add_tree_root (&quick_stack, 1); + ggc_add_tree_root (&tree_list_free_list, 1); +} + tree truthvalue_conversion (expr) tree expr; |