Searched defs:grs (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/intel/mdb/
H A Dproc_ia32dep.c112 prgregset_t grs; local
139 if (mdb_vread(&grs, sizeof (grs), addr + off) != sizeof (grs)) {
161 if (PTL_GETREGS(t, tid, grs) != 0) {
167 eflags = grs[EFL];
170 grs[CS], grs[EAX], grs[EAX]);
173 grs[D
[all...]
H A Dproc_amd64dep.c157 prgregset_t grs; local
184 if (mdb_vread(&grs, sizeof (grs), addr + off) != sizeof (grs)) {
206 if (PTL_GETREGS(t, tid, grs) != 0) {
212 rflags = grs[REG_RFL];
215 grs[REG_RAX], grs[REG_R8]);
217 grs[REG_RBX], grs[REG_R
[all...]
/illumos-gate/usr/src/cmd/mdb/sparc/mdb/
H A Dproc_isadep.c132 prgregset_t grs; local
142 #define GETREG2(x) ((uintptr_t)grs[(x)]), ((uintptr_t)grs[(x)])
162 if (PTL_GETREGS(t, tid, grs) != 0) {
168 xgregs[i] = (ulong_t)grs[R_G0 + i];
169 xoregs[i] = (ulong_t)grs[R_O0 + i];
209 mdb_printf(" %%ccr = 0x%02x xcc=%c%c%c%c icc=%c%c%c%c\n", grs[R_CCR],
210 (grs[R_CCR] & KREG_CCR_XCC_N_MASK) ? 'N' : 'n',
211 (grs[R_CCR] & KREG_CCR_XCC_Z_MASK) ? 'Z' : 'z',
212 (grs[R_CC
262 prgregset_t grs; local
[all...]
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_proc.c4492 prgregset_t grs; local
4535 if (PTL_GETREGS(t, tid, grs) == 0) {
4536 *rp = r | (ulong_t)grs[rd_num];
4559 prgregset_t grs; local
4606 if (PTL_GETREGS(t, tid, grs) == 0) {
4607 grs[rd_num] = (prgreg_t)r;
4608 return (PTL_SETREGS(t, tid, grs));
4619 pt_stack_call(pt_stkarg_t *psp, const prgregset_t grs, uint_t argc, long *argv) argument
4621 psp->pstk_gotpc |= (grs[R_PC] != 0);
4626 return (psp->pstk_func(psp->pstk_private, grs[R_P
[all...]

Completed in 58 milliseconds