allocaPush        101 MMgc/GC.h      #  define VMPI_alloca(core, autoptr, nbytes)	core->gc->allocaPush(nbytes, autoptr)
allocaPush        102 MMgc/GC.h      #  define VMPI_alloca_gc(gc, autoptr, nbytes)	gc->allocaPush(nbytes, autoptr)
allocaPush        104 MMgc/GC.h      #  define VMPI_alloca(core, autoptr, nbytes)  (nbytes > AVMPLUS_PARAM_ALLOCA_CUTOFF ? core->gc->allocaPush(nbytes, autoptr) : alloca(nbytes))
allocaPush        105 MMgc/GC.h      #  define VMPI_alloca_gc(gc, autoptr, nbytes)  (nbytes > AVMPLUS_PARAM_ALLOCA_CUTOFF ? gc->allocaPush(nbytes, autoptr) : alloca(nbytes))
allocaPush       1721 MMgc/GC.h      		void* allocaPush(size_t nbytes, AllocaAutoPtr& x);