• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/

Lines Matching refs:save

668 	struct savearea		*save;
681 save = (struct savearea *)act->machine.pcb; /* Set the start of the normal chain */
688 while(save) { /* Do them all */
690 db_printf(" Norm %08X: %016llX %016llX - tot = %d\n", save, save->save_srr0, save->save_srr1, totsaves);
691 save = (struct savearea *)save->save_hdr.save_prev; /* Next one */
693 db_printf(" Chain terminated by count (%d) before %08X\n", chainmax, save);
698 save = (struct savearea *)act->machine.facctx.FPUsave; /* Set the start of the floating point chain */
700 while(save) { /* Do them all */
702 db_printf(" FPU %08X: %08X - tot = %d\n", save, save->save_hdr.save_level, totsaves);
703 save = (struct savearea *)save->save_hdr.save_prev; /* Next one */
705 db_printf(" Chain terminated by count (%d) before %08X\n", chainmax, save);
710 save = (struct savearea *)act->machine.facctx.VMXsave; /* Set the start of the floating point chain */
712 while(save) { /* Do them all */
714 db_printf(" Vec %08X: %08X - tot = %d\n", save, save->save_hdr.save_level, totsaves);
715 save = (struct savearea *)save->save_hdr.save_prev; /* Next one */
717 db_printf(" Chain terminated by count (%d) before %08X\n", chainmax, save);
735 save = (struct savearea *)CTable->vmmc[vmid].vmmFacCtx.FPUsave; /* Set the start of the floating point chain */
737 while(save) { /* Do them all */
739 db_printf(" FPU %08X: %08X - tot = %d\n", save, save->save_hdr.save_level, totsaves);
740 save = (struct savearea *)save->save_hdr.save_prev; /* Next one */
742 db_printf(" Chain terminated by count (%d) before %08X\n", chainmax, save);
747 save = (struct savearea *)CTable->vmmc[vmid].vmmFacCtx.VMXsave; /* Set the start of the floating point chain */
749 while(save) { /* Do them all */
751 db_printf(" Vec %08X: %08X - tot = %d\n", save, save->save_hdr.save_level, totsaves);
752 save = (struct savearea *)save->save_hdr.save_prev; /* Next one */
754 db_printf(" Chain terminated by count (%d) before %08X\n", chainmax, save);