Lines Matching refs:vmx
332 __vmx_context_t vmx;
340 memset(&vmx, 0, sizeof(__vmx_context_t));
344 ret = rs6000_ptrace64 (PTT_READ_VEC, thrd_i, (long long) &vmx, 0, 0);
346 ret = rs6000_ptrace32 (PTT_READ_VEC, thrd_i, (int *) &vmx, 0, 0);
350 regcache->raw_collect (regno, &(vmx.__vr[0]) + regno
354 ret = rs6000_ptrace64 (PTT_WRITE_VEC, thrd_i, (long long) &vmx, 0, 0);
356 ret = rs6000_ptrace32 (PTT_WRITE_VEC, thrd_i, (int *) &vmx, 0, 0);
365 supply_vrregset_aix (struct regcache *regcache, __vmx_context_t *vmx)
374 &(vmx->__vr[i]));
375 regcache->raw_supply (tdep->ppc_vrsave_regnum, &(vmx->__vrsave));
376 regcache->raw_supply (tdep->ppc_vrsave_regnum - 1, &(vmx->__vscr));
385 __vmx_context_t vmx;
393 memset(&vmx, 0, sizeof(__vmx_context_t));
397 rs6000_ptrace64 (PTT_READ_VEC, thrd_i, (long long) &vmx, 0, 0);
399 rs6000_ptrace32 (PTT_READ_VEC, thrd_i, (int *) &vmx, 0, 0);
400 supply_vrregset_aix (regcache, &vmx);