Searched refs:auxType (Results 1 - 3 of 3) sorted by relevance

/gem5/util/statetrace/arch/arm/
H A Dtracechild.cc203 uint32_t auxType, auxVal; local
205 auxType = ptrace(PTRACE_PEEKDATA, pid, sp, 0);
210 sp - 8, auxType, auxVal);
212 } while (auxType != 0 || auxVal != 0);
/gem5/util/statetrace/arch/sparc/
H A Dtracechild.cc431 uint64_t auxType, auxVal; local
433 auxType = ptrace(PTRACE_PEEKDATA, pid, sp, 0);
434 if (v8) auxType = auxType >> 32;
440 sp - 8, auxType, auxVal);
442 } while (auxType != 0 || auxVal != 0);
/gem5/util/statetrace/arch/amd64/
H A Dtracechild.cc286 uint64_t auxType, auxVal; local
288 auxType = ptrace(PTRACE_PEEKDATA, pid, sp, 0);
293 sp - 16, auxType, auxVal);
295 } while (auxType != 0 || auxVal != 0);

Completed in 9 milliseconds