Home | History | Annotate | Download | only in coregrind

Lines Matching refs:stackseg

281    NSegment const *stackseg = VG_(am_find_nsegment) (SP);
295 if (UNLIKELY(stackseg == NULL)) {
304 if (UNLIKELY((!stackseg->hasR || !stackseg->hasW)
305 && (stackseg->kind != SkResvn || stackseg->smode != SmUpper))) {
316 if (UNLIKELY(*start < stackseg->start)) {
320 (void*)SP, (void*)*start, (void*)stackseg->start);
321 *start = stackseg->start;
324 /* Now, determine the stack end limit. If the stackseg is SkResvn,
327 if (UNLIKELY(stackseg->kind == SkResvn)) {
328 stackseg = VG_(am_next_nsegment)(stackseg, /*forward*/ True);
329 if (!stackseg || !stackseg->hasR || !stackseg->hasW
330 || stackseg->kind != SkAnonC) {
342 if (UNLIKELY(*end > stackseg->end)) {
346 (void*)SP, (void*)*end, (void*)stackseg->end);
347 *end = stackseg->end;