Searched refs:ggc_alloc (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-10.0-release/contrib/gcc/
H A Dggc.h207 #define ggc_alloc(s) ggc_alloc_stat (s MEM_STAT_INFO)
211 /* Like ggc_alloc, but allocates cleared memory. */
228 /* Type-safe, C++-friendly versions of ggc_alloc() and gcc_calloc(). */
229 #define GGC_NEW(T) ((T *) ggc_alloc (sizeof (T)))
231 #define GGC_NEWVEC(T, N) ((T *) ggc_alloc ((N) * sizeof(T)))
233 #define GGC_NEWVAR(T, S) ((T *) ggc_alloc ((S)))
314 # define ggc_alloc_zone(s, z) ggc_alloc (s)
206 #define ggc_alloc macro
H A Dstringpool.c59 return ggc_alloc (x);
230 spd = ggc_alloc (sizeof (*spd));
233 spd->entries = ggc_alloc (sizeof (spd->entries[0]) * spd->nslots);
H A Dlambda-trans.c38 ret = ggc_alloc (sizeof (*ret));
H A Dintegrate.c245 ivs = ggc_alloc (sizeof (initial_value_struct));
248 ivs->entries = ggc_alloc (5 * sizeof (initial_value_pair));
H A Dtree-iterator.c93 head = ggc_alloc (sizeof (*head));
169 head = ggc_alloc (sizeof (*head));
H A Dtree-ssanames.c271 new_ptr_info = ggc_alloc (sizeof (struct ptr_info_def));
H A Dtree-phinodes.c156 phi = ggc_alloc (size);
H A Dvalue-prof.c738 hist = ggc_alloc (sizeof (*hist));
751 hist = ggc_alloc (sizeof (*hist));
757 hist = ggc_alloc (sizeof (*hist));
H A Dvarasm.c257 sect = ggc_alloc (sizeof (struct unnamed_section));
274 sect = ggc_alloc (sizeof (struct unnamed_section));
295 sect = ggc_alloc (sizeof (struct named_section));
2820 desc = ggc_alloc (sizeof (*desc));
3157 pool = ggc_alloc (sizeof (struct rtx_constant_pool));
3173 p = ggc_alloc (sizeof (struct varasm_status));
3230 desc = ggc_alloc (sizeof (*desc));
H A Dlambda-code.c159 ret = ggc_alloc (sizeof (*ret));
332 ret = ggc_alloc (sizeof (*ret));
364 ret = ggc_alloc (sizeof (*ret));
2196 h = ggc_alloc (sizeof (struct tree_map));
H A Dlambda-mat.c40 mat = ggc_alloc (m * sizeof (lambda_vector));
H A Dtree-dfa.c165 ann = ggc_alloc (sizeof (*ann));
H A Dtree.c1078 dp = ggc_alloc (sizeof (REAL_VALUE_TYPE));
3290 SET_EXPR_LOCUS (node, ggc_alloc (sizeof (location_t)));
4013 h = ggc_alloc (sizeof (struct tree_int_map));
4043 h = ggc_alloc (sizeof (struct tree_map));
4109 h = ggc_alloc (sizeof (struct tree_map));
4139 h = ggc_alloc (sizeof (struct tree_map));
4298 h = ggc_alloc (sizeof (struct type_hash));
7017 t = ggc_alloc (size);
H A Demit-rtl.c308 *slot = ggc_alloc (sizeof (mem_attrs));
357 *slot = ggc_alloc (sizeof (reg_attrs));
4707 tem = ggc_alloc (sizeof (struct sequence_stack));
4996 f->emit = ggc_alloc (sizeof (struct emit_status));
5014 = ggc_alloc (f->emit->regno_pointer_align_length * sizeof (rtx));
H A Dtree-nested.c924 elt = ggc_alloc (sizeof (*elt));
1232 elt = ggc_alloc (sizeof (*elt));
H A Dggc-common.c201 return ggc_alloc (sz);
H A Dipa-inline.c1196 order = ggc_alloc (sizeof (*order) * cgraph_n_nodes);
H A Dpredict.c277 struct edge_prediction *i = ggc_alloc (sizeof (struct edge_prediction));
H A Dalias.c676 superset_entry = ggc_alloc (sizeof (struct alias_set_entry));
H A Dexcept.c788 entry = ggc_alloc (sizeof (*entry));
900 ret = n = ggc_alloc (sizeof (struct eh_region));
H A Dfunction.c687 p = ggc_alloc (sizeof (struct temp_slot));
712 p = ggc_alloc (sizeof (struct temp_slot));
H A Ddwarf2out.c579 dw_cfi_ref cfi = ggc_alloc (sizeof (dw_cfi_node));
1221 q = ggc_alloc (sizeof (*q));
9890 unsigned char *array = ggc_alloc (length);
9911 unsigned char *array = ggc_alloc (length * elt_size);
13631 created = ggc_alloc (sizeof (struct dwarf_file_data));
/freebsd-10.0-release/contrib/gcc/config/i386/
H A Dwinnt.c662 p = (struct extern_list *) ggc_alloc (sizeof *p);
691 p = (struct export_list *) ggc_alloc (sizeof *p);
/freebsd-10.0-release/contrib/gcc/config/
H A Ddarwin.c446 p = (machopic_indirection *) ggc_alloc (sizeof (machopic_indirection));
/freebsd-10.0-release/contrib/gcc/config/mips/
H A Dmips.c5787 p = (struct extern_list *) ggc_alloc (sizeof (struct extern_list));
5796 p = (struct extern_list *) ggc_alloc (sizeof (struct extern_list));
5814 p = (struct extern_list *) ggc_alloc (sizeof (struct extern_list));

Completed in 426 milliseconds

12