Change to reflect switchframe/callframe changes.

This commit is contained in:
matt 2011-01-18 01:28:19 +00:00
parent 0c0d23d234
commit 6038a89b0e

View File

@ -157,20 +157,20 @@ ppcnbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
return 0;
read_memory (pcb->pcb_sp, (gdb_byte *)&sf, sizeof sf);
regcache_raw_supply (regcache, tdep->ppc_cr_regnum, &sf.cr);
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 2, &sf.fixreg2);
regcache_raw_supply (regcache, tdep->ppc_cr_regnum, &sf.sf_cr);
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 2, &sf.sf_fixreg2);
for (i = 0 ; i < 19 ; i++)
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 13 + i,
&sf.fixreg[i]);
&sf.sf_fixreg[i]);
read_memory(sf.sp, (gdb_byte *)&cf, sizeof(cf));
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 30, &cf.r30);
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 31, &cf.r31);
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 1, &cf.sp);
read_memory(sf.sf_sp, (gdb_byte *)&cf, sizeof(cf));
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 30, &cf.cf_r30);
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 31, &cf.cf_r31);
regcache_raw_supply (regcache, tdep->ppc_gp0_regnum + 1, &cf.cf_sp);
read_memory(cf.sp, (gdb_byte *)&cf, sizeof(cf));
regcache_raw_supply (regcache, tdep->ppc_lr_regnum, &cf.lr);
regcache_raw_supply (regcache, PC_REGNUM, &cf.lr);
read_memory(cf.cf_sp, (gdb_byte *)&cf, sizeof(cf));
regcache_raw_supply (regcache, tdep->ppc_lr_regnum, &cf.cf_lr);
regcache_raw_supply (regcache, PC_REGNUM, &cf.cf_lr);
return 1;
}