Lines Matching refs:gc_stack
255 typedef struct _gc_stack gc_stack; typedef
258 gc_stack *prev;
259 gc_stack *next;
264 gc_stack *_stack = init; \
273 static zend_never_inline gc_stack* gc_stack_next(gc_stack *stack) in gc_stack_next()
276 gc_stack *segment = emalloc(sizeof(gc_stack)); in gc_stack_next()
284 static zend_always_inline void gc_stack_push(gc_stack **stack, size_t *top, zend_refcounted *ref) in gc_stack_push()
293 static zend_always_inline zend_refcounted* gc_stack_pop(gc_stack **stack, size_t *top) in gc_stack_pop()
308 static void gc_stack_free(gc_stack *stack) in gc_stack_free()
310 gc_stack *p = stack->next; in gc_stack_free()
683 static void gc_scan_black(zend_refcounted *ref, gc_stack *stack) in gc_scan_black()
803 static void gc_mark_grey(zend_refcounted *ref, gc_stack *stack) in gc_mark_grey()
966 static void gc_mark_roots(gc_stack *stack) in gc_mark_roots()
985 static void gc_scan(zend_refcounted *ref, gc_stack *stack) in gc_scan()
1116 static void gc_scan_roots(gc_stack *stack) in gc_scan_roots()
1157 static int gc_collect_white(zend_refcounted *ref, uint32_t *flags, gc_stack *stack) in gc_collect_white()
1306 static int gc_collect_roots(uint32_t *flags, gc_stack *stack) in gc_collect_roots()
1459 gc_stack stack; in zend_gc_collect_cycles()