-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[libcpu][cortex-m4]Added HardFault_Handler to save floating point registers #10618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -237,14 +237,28 @@ HardFault_Handler: | |||||
MRS r0, psp ; get fault context from thread. | ||||||
_get_sp_done | ||||||
|
||||||
#if defined ( __ARMVFP__ ) | ||||||
TST lr, #0x10 ; if(!EXC_RETURN[4]) | ||||||
BNE skip_push_fpu | ||||||
VSTMDB r0!, {d8 - d15} ; push FPU register s16~s31 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comment incorrectly states 's16~s31' but the instruction saves double precision registers d8-d15. The comment should be corrected to 'd8-d15' or explain that these correspond to s16-s31 in single precision mode.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
skip_push_fpu | ||||||
#endif | ||||||
|
||||||
STMFD r0!, {r4 - r11} ; push r4 - r11 register | ||||||
;STMFD r0!, {lr} ; push exec_return register | ||||||
|
||||||
#if defined ( __ARMVFP__ ) | ||||||
SUB r0, r0, #0x04 ; push dummy for flag | ||||||
STR lr, [r0] | ||||||
MOV r4, #0x00 ; flag = 0 | ||||||
|
||||||
TST lr, #0x10 ; if(!EXC_RETURN[4]) | ||||||
BNE push_flag | ||||||
MOV r4, #0x01 ; flag = 1 | ||||||
push_flag | ||||||
SUB r0, r0, #0x04 | ||||||
STR r4, [r0] ; push flag | ||||||
#endif | ||||||
|
||||||
SUB r0, r0, #0x04 | ||||||
STR lr, [r0] | ||||||
STR lr, [r0] ; push exec_return register | ||||||
|
||||||
TST lr, #0x04 ; if(!EXC_RETURN[2]) | ||||||
BEQ _update_msp | ||||||
|
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -236,10 +236,21 @@ HardFault_Handler PROC | |||||||||
MRSEQ r0, msp ; [2]=0 ==> Z=1, get fault context from handler. | ||||||||||
MRSNE r0, psp ; [2]=1 ==> Z=0, get fault context from thread. | ||||||||||
|
||||||||||
IF {FPU} != "SoftVFP" | ||||||||||
TST lr, #0x10 ; if(!EXC_RETURN[4]) | ||||||||||
VSTMFDEQ r0!, {d8 - d15} ; push FPU register s16~s31 | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The comment incorrectly states 's16~s31' but the instruction saves double precision registers d8-d15. The comment should be corrected to 'd8-d15' or explain that these correspond to s16-s31 in single precision mode.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The VSTMFDEQ instruction uses full descending stack mode, but this is inconsistent with the STMFD instructions used elsewhere. Consider using VSTMDBEQ for consistency with decrement before operation mode.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||||
ENDIF | ||||||||||
|
||||||||||
STMFD r0!, {r4 - r11} ; push r4 - r11 register | ||||||||||
|
||||||||||
IF {FPU} != "SoftVFP" | ||||||||||
STMFD r0!, {lr} ; push dummy for flag | ||||||||||
MOV r4, #0x00 ; flag = 0 | ||||||||||
|
||||||||||
TST lr, #0x10 ; if(!EXC_RETURN[4]) | ||||||||||
MOVEQ r4, #0x01 ; flag = 1 | ||||||||||
STMFD r0!, {r4} ; push flag | ||||||||||
ENDIF | ||||||||||
|
||||||||||
STMFD r0!, {lr} ; push exec_return register | ||||||||||
|
||||||||||
TST lr, #0x04 ; if(!EXC_RETURN[2]) | ||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comment incorrectly states 's16~s31' but the instruction saves double precision registers d8-d15. The comment should be corrected to 'd8-d15' or explain that these correspond to s16-s31 in single precision mode.
Copilot uses AI. Check for mistakes.