X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/cb3231590a3c94ab4375e2228bd5e86b0cf1ad7e..94ff46dc2849db4d43eaaf144872decc522aafb4:/osfmk/arm/genassym.c diff --git a/osfmk/arm/genassym.c b/osfmk/arm/genassym.c index 5ebbf990b..585d71303 100644 --- a/osfmk/arm/genassym.c +++ b/osfmk/arm/genassym.c @@ -131,11 +131,9 @@ main( DECLARE("ACT_TASK", offsetof(struct thread, task)); DECLARE("ACT_PCBDATA", offsetof(struct thread, machine.PcbData)); #if __ARM_VFP__ - DECLARE("ACT_UVFP", offsetof(struct thread, machine.uVFPdata)); - DECLARE("ACT_KVFP", offsetof(struct thread, machine.kVFPdata)); + DECLARE("ACT_UVFP", offsetof(struct thread, machine.PcbData.VFPdata)); #endif DECLARE("TH_CTH_SELF", offsetof(struct thread, machine.cthread_self)); - DECLARE("TH_CTH_DATA", offsetof(struct thread, machine.cthread_data)); DECLARE("ACT_PCBDATA_PC", offsetof(struct thread, machine.PcbData.pc)); DECLARE("ACT_PCBDATA_R0", offsetof(struct thread, machine.PcbData.r[0])); DECLARE("ACT_PREEMPT_CNT", offsetof(struct thread, machine.preemption_count)); @@ -176,6 +174,7 @@ main( DECLARE("SS_EXC", offsetof(struct arm_saved_state, exception)); #if __ARM_VFP__ + DECLARE("SS_KVFP", offsetof(struct arm_saved_state, VFPdata)); DECLARE("VSS_SIZE", sizeof(struct arm_vfpsaved_state)); DECLARE("VSS_FPSCR", offsetof(struct arm_vfpsaved_state, fpscr)); DECLARE("VSS_FPEXC", offsetof(struct arm_vfpsaved_state, fpexc));