GC_trace_buf_ptr 1411 gc/mark.c      int GC_trace_buf_ptr = 0;
GC_trace_buf_ptr 1415 gc/mark.c          GC_trace_buf[GC_trace_buf_ptr].kind = kind;
GC_trace_buf_ptr 1416 gc/mark.c          GC_trace_buf[GC_trace_buf_ptr].gc_no = GC_gc_no;
GC_trace_buf_ptr 1417 gc/mark.c          GC_trace_buf[GC_trace_buf_ptr].words_allocd = GC_words_allocd;
GC_trace_buf_ptr 1418 gc/mark.c          GC_trace_buf[GC_trace_buf_ptr].arg1 = arg1 ^ 0x80000000;
GC_trace_buf_ptr 1419 gc/mark.c          GC_trace_buf[GC_trace_buf_ptr].arg2 = arg2 ^ 0x80000000;
GC_trace_buf_ptr 1420 gc/mark.c          GC_trace_buf_ptr++;
GC_trace_buf_ptr 1421 gc/mark.c          if (GC_trace_buf_ptr >= TRACE_ENTRIES) GC_trace_buf_ptr = 0;
GC_trace_buf_ptr 1430 gc/mark.c          for (i = GC_trace_buf_ptr-1; i != GC_trace_buf_ptr; i--) {