Lines Matching refs:obstack
89 struct obstack *obstack; member
388 struct obstack *obstack = XMALLOC (struct obstack); in gdbarch_alloc() local
389 obstack_init (obstack); in gdbarch_alloc()
390 current_gdbarch = obstack_alloc (obstack, sizeof (*current_gdbarch)); in gdbarch_alloc()
392 current_gdbarch->obstack = obstack; in gdbarch_alloc()
466 void *data = obstack_alloc (arch->obstack, size); in gdbarch_obstack_zalloc()
481 struct obstack *obstack; in gdbarch_free() local
484 obstack = arch->obstack; in gdbarch_free()
485 obstack_free (obstack, 0); /* Includes the ARCH. */ in gdbarch_free()
486 xfree (obstack); in gdbarch_free()
3831 gdbarch->data[data->index] = data->pre_init (gdbarch->obstack); in gdbarch_data()