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

123

/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dggc-none.c30 ggc_alloc (size) function
H A Dggc.h97 extern void *ggc_alloc PARAMS ((size_t));
98 /* Like ggc_alloc, but allocates cleared memory. */
106 ((struct rtx_def *) ggc_alloc (sizeof (struct rtx_def) \
110 ((struct rtvec_def *) ggc_alloc (sizeof (struct rtvec_def) \
113 #define ggc_alloc_tree(LENGTH) ((union tree_node *) ggc_alloc (LENGTH))
H A Dggc-common.c150 void *buf = ggc_alloc (size);
165 return ggc_alloc (size);
186 r = ggc_alloc (size);
H A Dbitmap.c164 element = ggc_alloc (sizeof (bitmap_element));
773 head = ggc_alloc (sizeof (*head));
H A Dggc-simple.c167 ggc_alloc (size) function
H A Dc-pragma.c77 entry = (align_stack *) ggc_alloc (sizeof (* entry));
H A Dcselib.c145 el = (struct elt_list *) ggc_alloc (sizeof (struct elt_list));
164 el = (struct elt_loc_list *) ggc_alloc (sizeof (struct elt_loc_list));
698 e = (cselib_val *) ggc_alloc (sizeof (cselib_val));
/openbsd-current/gnu/gcc/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));
7016 t = ggc_alloc (size);
/openbsd-current/gnu/gcc/gcc/treelang/
H A Dtree1.c217 mem = ggc_alloc (size);
/openbsd-current/gnu/usr.bin/gcc/gcc/treelang/
H A Dtree1.c243 mem = ggc_alloc (size);
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dwhere.c119 wf = ggc_alloc (offsetof (struct _ffewhere_file_, text) + length + 1);
135 ll = ggc_alloc (sizeof (*ll));
/openbsd-current/gnu/gcc/gcc/config/i386/
H A Dwinnt.c662 p = (struct extern_list *) ggc_alloc (sizeof *p);
691 p = (struct export_list *) ggc_alloc (sizeof *p);
/openbsd-current/gnu/usr.bin/gcc/gcc/cp/
H A Dlex.c1408 ld = (struct lang_decl *) ggc_alloc (size);
1447 lt = (struct lang_type *) ggc_alloc (size);

Completed in 306 milliseconds

123