Searched refs:PL_savestack_max (Results 1 – 8 of 8) sorted by relevance
30 #define SSGROW(need) if (UNLIKELY(PL_savestack_ix + (I32)(need) > PL_savestack_max)) savestack_grow…63 assert(ix <= PL_savestack_max + SS_MAXPUSH); \64 if (UNLIKELY(ix > PL_savestack_max)) savestack_grow_cnt(ix - PL_savestack_max); \65 assert(PL_savestack_ix <= PL_savestack_max);
169 const I32 by = PL_savestack_max - PL_savestack_ix; in Perl_savestack_grow()184 const IV new_floor = PL_savestack_max + need; /* what we need */ in Perl_savestack_grow_cnt()191 if (new_max > I32_MAX || new_max < PL_savestack_max) { in Perl_savestack_grow_cnt()192 if (new_floor > I32_MAX || new_floor < PL_savestack_max) { in Perl_savestack_grow_cnt()207 PL_savestack_max = new_max; in Perl_savestack_grow_cnt()
258 # define PL_savestack_max (vTHX->Isavestack_max) macro
3693 if (PL_savestack_ix + 15 <= PL_savestack_max) { in Perl_perly_sighandler()
4496 PL_savestack_max = size - SS_MAXPUSH; in Perl_init_stacks()
15600 PL_savestack_max = -1;15794 PL_savestack_max = proto_perl->Isavestack_max;
266 assert((IV)PL_savestack_max > (IV)(total_elems + REGCP_FRAME_ELEMS)); in S_regcppush()
503 PL_savestack_max # Z added by devel/scanprov