From: rth Date: Tue, 25 Jan 2000 10:47:46 +0000 (+0000) Subject: * dwarf2out.c (dwarf2out_init): Use ggc_add_rtx_varray_root. X-Git-Tag: upstream/4.9.2~103554 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cf6cce73b00b21231f26553af4223134392f5a6f;p=platform%2Fupstream%2Flinaro-gcc.git * dwarf2out.c (dwarf2out_init): Use ggc_add_rtx_varray_root. * ggc-common.c (ggc_add_rtx_varray_root): New. (ggc_mark_rtx_varray): New. (ggc_mark_rtx_varray_ptr): New. Shift all ggc_mark_foo_ptr functions down below ggc_mark_foo. * ggc.h (ggc_add_rtx_varray_root, ggc_mark_rtx_varray): Declare. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31607 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f89a936..edc2475 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,14 @@ 2000-01-25 Richard Henderson + * dwarf2out.c (dwarf2out_init): Use ggc_add_rtx_varray_root. + * ggc-common.c (ggc_add_rtx_varray_root): New. + (ggc_mark_rtx_varray): New. + (ggc_mark_rtx_varray_ptr): New. Shift all ggc_mark_foo_ptr + functions down below ggc_mark_foo. + * ggc.h (ggc_add_rtx_varray_root, ggc_mark_rtx_varray): Declare. + +2000-01-25 Richard Henderson + * alpha.c (secondary_reload_class): Don't allocate a secondary for integral mode memories into FLOAT_REGS. Rearrange the more complicated memory expression inward. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 22c515b..2ca007a4 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -9829,7 +9829,7 @@ dwarf2out_init (asm_out_file, main_input_filename) if (ggc_p) { VARRAY_RTX_INIT (used_rtx_varray, 32, "used_rtx_varray"); - ggc_add_tree_varray_root (&used_rtx_varray, 1); + ggc_add_rtx_varray_root (&used_rtx_varray, 1); } ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0); diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index 55d7db4..bc2a9dc 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -35,6 +35,7 @@ static ggc_statistics *ggc_stats; static void ggc_mark_rtx_ptr PARAMS ((void *)); static void ggc_mark_tree_ptr PARAMS ((void *)); +static void ggc_mark_rtx_varray_ptr PARAMS ((void *)); static void ggc_mark_tree_varray_ptr PARAMS ((void *)); static void ggc_mark_tree_hash_table_ptr PARAMS ((void *)); static void ggc_mark_string_ptr PARAMS ((void *)); @@ -56,57 +57,6 @@ struct ggc_root static struct ggc_root *roots; -/* Type-correct function to pass to ggc_add_root. It just forwards - *ELT (which is an rtx) to ggc_mark_tree_varray. */ - -static void -ggc_mark_rtx_ptr (elt) - void *elt; -{ - ggc_mark_rtx (*(rtx *) elt); -} - -/* Type-correct function to pass to ggc_add_root. It just forwards - *ELT (which is a tree) to ggc_mark_tree. */ - -static void -ggc_mark_tree_ptr (elt) - void *elt; -{ - ggc_mark_tree (*(tree *) elt); -} - -/* Type-correct function to pass to ggc_add_root. It just forwards - ELT (which is really a varray_type *) to ggc_mark_tree_varray. */ - -static void -ggc_mark_tree_varray_ptr (elt) - void *elt; -{ - ggc_mark_tree_varray (*(varray_type *) elt); -} - -/* Type-correct function to pass to ggc_add_root. It just forwards - ELT (which is really a struct hash_table **) to - ggc_mark_tree_hash_table. */ - -static void -ggc_mark_tree_hash_table_ptr (elt) - void *elt; -{ - ggc_mark_tree_hash_table (*(struct hash_table **) elt); -} - -/* Type-correct function to pass to ggc_add_root. It just forwards - ELT (which is really a char **) to ggc_mark_string. */ - -static void -ggc_mark_string_ptr (elt) - void *elt; -{ - ggc_mark_string (*(char **) elt); -} - /* Add BASE as a new garbage collection root. It is an array of length NELT with each element SIZE bytes long. CB is a function that will be called with a pointer to each element @@ -150,6 +100,17 @@ ggc_add_tree_root (base, nelt) ggc_add_root (base, nelt, sizeof(tree), ggc_mark_tree_ptr); } +/* Register a varray of rtxs as a GC root. */ + +void +ggc_add_rtx_varray_root (base, nelt) + varray_type *base; + int nelt; +{ + ggc_add_root (base, nelt, sizeof (varray_type), + ggc_mark_rtx_varray_ptr); +} + /* Register a varray of trees as a GC root. */ void @@ -476,6 +437,19 @@ ggc_mark_tree_children (t) } } +/* Mark all the elements of the varray V, which contains rtxs. */ + +void +ggc_mark_rtx_varray (v) + varray_type v; +{ + int i; + + if (v) + for (i = v->num_elements - 1; i >= 0; --i) + ggc_mark_rtx (VARRAY_RTX (v, i)); +} + /* Mark all the elements of the varray V, which contains trees. */ void @@ -509,6 +483,67 @@ ggc_mark_tree_hash_table (ht) hash_traverse (ht, ggc_mark_tree_hash_table_entry, /*info=*/0); } +/* Type-correct function to pass to ggc_add_root. It just forwards + *ELT (which is an rtx) to ggc_mark_rtx. */ + +static void +ggc_mark_rtx_ptr (elt) + void *elt; +{ + ggc_mark_rtx (*(rtx *) elt); +} + +/* Type-correct function to pass to ggc_add_root. It just forwards + *ELT (which is a tree) to ggc_mark_tree. */ + +static void +ggc_mark_tree_ptr (elt) + void *elt; +{ + ggc_mark_tree (*(tree *) elt); +} + +/* Type-correct function to pass to ggc_add_root. It just forwards + ELT (which is really a varray_type *) to ggc_mark_rtx_varray. */ + +static void +ggc_mark_rtx_varray_ptr (elt) + void *elt; +{ + ggc_mark_rtx_varray (*(varray_type *) elt); +} + +/* Type-correct function to pass to ggc_add_root. It just forwards + ELT (which is really a varray_type *) to ggc_mark_tree_varray. */ + +static void +ggc_mark_tree_varray_ptr (elt) + void *elt; +{ + ggc_mark_tree_varray (*(varray_type *) elt); +} + +/* Type-correct function to pass to ggc_add_root. It just forwards + ELT (which is really a struct hash_table **) to + ggc_mark_tree_hash_table. */ + +static void +ggc_mark_tree_hash_table_ptr (elt) + void *elt; +{ + ggc_mark_tree_hash_table (*(struct hash_table **) elt); +} + +/* Type-correct function to pass to ggc_add_root. It just forwards + ELT (which is really a char **) to ggc_mark_string. */ + +static void +ggc_mark_string_ptr (elt) + void *elt; +{ + ggc_mark_string (*(char **) elt); +} + /* Allocate a gc-able string. If CONTENTS is null, then the memory will be uninitialized. If LENGTH is -1, then CONTENTS is assumed to be a null-terminated string and the memory sized accordingly. Otherwise, diff --git a/gcc/ggc.h b/gcc/ggc.h index 425243b..1782a4d 100644 --- a/gcc/ggc.h +++ b/gcc/ggc.h @@ -50,12 +50,14 @@ void ggc_add_root PARAMS ((void *base, int nelt, int size, void (*)(void *))); void ggc_add_rtx_root PARAMS ((struct rtx_def **, int nelt)); void ggc_add_tree_root PARAMS ((union tree_node **, int nelt)); void ggc_add_string_root PARAMS ((char **, int nelt)); +void ggc_add_rtx_varray_root PARAMS ((struct varray_head_tag **, int nelt)); void ggc_add_tree_varray_root PARAMS ((struct varray_head_tag **, int nelt)); void ggc_add_tree_hash_table_root PARAMS ((struct hash_table **, int nelt)); void ggc_del_root PARAMS ((void *base)); /* Mark nodes from the gc_add_root callback. These functions follow pointers to mark other objects too. */ +extern void ggc_mark_rtx_varray PARAMS ((struct varray_head_tag *)); extern void ggc_mark_tree_varray PARAMS ((struct varray_head_tag *)); extern void ggc_mark_tree_hash_table PARAMS ((struct hash_table *)); extern void ggc_mark_roots PARAMS ((void));