-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aarch64:vfp: fix vfp ctx changed in kernel
issue: #16 -------- 1 Exception doesn't save VFP registers 2 kernel generate code shouldn't use VFP registers, need close -neon and -fp-armv8 3 taskctx need save/restore user application VFP ctx, need access VFP registers After rustc update, it would complain when 2&3 happend, on this commit :65a4f5896317115cf1edc74800f0da5d92923243, opened neon when fp_smid enable,it broken 2, so it create bug; after return user from kernel trap, usr vfp registers ctx are changed; This commit close neon when complie kernel, taskctx need access VFP registers through build.rs to fix Signed-off-by: guoweikang <[email protected]>
- Loading branch information
1 parent
a684fd7
commit 024d3fc
Showing
5 changed files
with
105 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
.section .text | ||
.global vfp_setjmp | ||
vfp_setjmp: | ||
stp x19, x20, [x0,#0] | ||
stp x21, x22, [x0,#16] | ||
stp x23, x24, [x0,#32] | ||
stp x25, x26, [x0,#48] | ||
stp x27, x28, [x0,#64] | ||
stp x29, x30, [x0,#80] | ||
mov x2, sp | ||
str x2, [x0,#104] | ||
stp d8, d9, [x0,#112] | ||
stp d10, d11, [x0,#128] | ||
stp d12, d13, [x0,#144] | ||
stp d14, d15, [x0,#160] | ||
mov x0, #0 | ||
ret | ||
|
||
.section .text | ||
.global vfp_longjmp | ||
vfp_longjmp: | ||
ldp x19, x20, [x0,#0] | ||
ldp x21, x22, [x0,#16] | ||
ldp x23, x24, [x0,#32] | ||
ldp x25, x26, [x0,#48] | ||
ldp x27, x28, [x0,#64] | ||
ldp x29, x30, [x0,#80] | ||
ldr x2, [x0,#104] | ||
mov sp, x2 | ||
ldp d8 , d9, [x0,#112] | ||
ldp d10, d11, [x0,#128] | ||
ldp d12, d13, [x0,#144] | ||
ldp d14, d15, [x0,#160] | ||
|
||
cmp w1, 0 | ||
csinc w0, w1, wzr, ne | ||
br x30 |