Searched refs:pending_statics (Results 1 – 6 of 6) sorted by relevance
| /dragonfly/contrib/gcc-4.7/gcc/cp/ |
| HD | decl2.c | 94 static GTY(()) VEC(tree,gc) *pending_statics; 771 VEC_safe_push (tree, gc, pending_statics, decl); in finish_static_data_member_decl() 3965 FOR_EACH_VEC_ELT (tree, pending_statics, i, decl) in cp_write_global_declarations() 3977 if (VEC_length (tree, pending_statics) != 0 in cp_write_global_declarations() 3978 && wrapup_global_declarations (VEC_address (tree, pending_statics), in cp_write_global_declarations() 3979 VEC_length (tree, pending_statics))) in cp_write_global_declarations() 4061 if (VEC_length (tree, pending_statics) != 0) in cp_write_global_declarations() 4063 check_global_declarations (VEC_address (tree, pending_statics), in cp_write_global_declarations() 4064 VEC_length (tree, pending_statics)); in cp_write_global_declarations() 4065 emit_debug_global_declarations (VEC_address (tree, pending_statics), in cp_write_global_declarations() [all …]
|
| /dragonfly/contrib/gcc-4.7/gcc/ |
| HD | stor-layout.c | 781 rli->pending_statics = NULL; in start_record_layout() 865 if (!VEC_empty (tree, rli->pending_statics)) in debug_rli() 868 debug_vec_tree (rli->pending_statics); in debug_rli() 1079 VEC_safe_push (tree, gc, rli->pending_statics, field); in place_field() 1971 while (!VEC_empty (tree, rli->pending_statics)) in finish_record_layout() 1972 layout_decl (VEC_pop (tree, rli->pending_statics), 0); in finish_record_layout() 1977 VEC_free (tree, gc, rli->pending_statics); in finish_record_layout()
|
| HD | tree.h | 4716 VEC(tree,gc) *pending_statics;
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | stor-layout.c | 843 rli->pending_statics = 0; in start_record_layout() 968 if (!vec_safe_is_empty (rli->pending_statics)) in debug_rli() 971 debug (rli->pending_statics); in debug_rli() 1240 vec_safe_push (rli->pending_statics, field); in place_field() 2221 while (!vec_safe_is_empty (rli->pending_statics)) in finish_record_layout() 2222 layout_decl (rli->pending_statics->pop (), 0); in finish_record_layout() 2227 vec_free (rli->pending_statics); in finish_record_layout()
|
| HD | tree-core.h | 2003 vec<tree, va_gc> *pending_statics; member
|
| /dragonfly/contrib/gcc-8.0/gcc/cp/ |
| HD | decl2.c | 91 static GTY(()) vec<tree, va_gc> *pending_statics; 754 vec_safe_push (pending_statics, decl); in note_variable_template_instantiation() 773 vec_safe_push (pending_statics, decl); in finish_static_data_member_decl() 4904 FOR_EACH_VEC_SAFE_ELT (pending_statics, i, decl) in c_parse_final_cleanups() 4919 if (vec_safe_length (pending_statics) != 0 in c_parse_final_cleanups() 4920 && wrapup_global_declarations (pending_statics->address (), in c_parse_final_cleanups() 4921 pending_statics->length ())) in c_parse_final_cleanups()
|