Lines Matching refs:stackptr
461 vms_debug (4, "<push %016lx (%d) at %d>\n", val, psect, PRIV (stackptr)); in _bfd_vms_push()
467 PRIV (stack[PRIV (stackptr)]).value = val; in _bfd_vms_push()
468 PRIV (stack[PRIV (stackptr)]).psect = last_psect; in _bfd_vms_push()
469 PRIV (stackptr)++; in _bfd_vms_push()
470 if (PRIV (stackptr) >= STACKSIZE) in _bfd_vms_push()
473 (*_bfd_error_handler) (_("Stack overflow (%d) in _bfd_vms_push"), PRIV (stackptr)); in _bfd_vms_push()
485 if (PRIV (stackptr) == 0) in _bfd_vms_pop()
491 PRIV (stackptr)--; in _bfd_vms_pop()
492 value = PRIV (stack[PRIV (stackptr)]).value; in _bfd_vms_pop()
493 if ((psect != NULL) && (PRIV (stack[PRIV (stackptr)]).psect >= 0)) in _bfd_vms_pop()
494 *psect = PRIV (stack[PRIV (stackptr)]).psect; in _bfd_vms_pop()
497 vms_debug (4, "<pop %016lx(%d)>\n", value, PRIV (stack[PRIV (stackptr)]).psect); in _bfd_vms_pop()