diff options
author | andrew <andrew@FreeBSD.org> | 2015-07-08 14:07:06 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2015-07-08 14:07:06 +0000 |
commit | 7a31b1fe9ae87af7e04c743b0344798c937a2b21 (patch) | |
tree | 31c9140a357a84613650646facc59c55a74c38ea | |
parent | ad70ced005b6c89457096f744618bb95ba71f003 (diff) | |
download | FreeBSD-src-7a31b1fe9ae87af7e04c743b0344798c937a2b21.zip FreeBSD-src-7a31b1fe9ae87af7e04c743b0344798c937a2b21.tar.gz |
Add an implementation of savectx that doesn't just call panic.
Obtained from: ABT Systems Ltd
Sponsored by: The FreeBSD Foundation
-rw-r--r-- | sys/arm64/arm64/swtch.S | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/sys/arm64/arm64/swtch.S b/sys/arm64/arm64/swtch.S index 2d547fd..bf69b86 100644 --- a/sys/arm64/arm64/swtch.S +++ b/sys/arm64/arm64/swtch.S @@ -246,10 +246,31 @@ ENTRY(fork_trampoline) END(fork_trampoline) ENTRY(savectx) - adr x0, .Lsavectx_panic_str - bl panic + /* Store the callee-saved registers */ + stp x8, x9, [x0, #PCB_REGS + 8 * 8] + stp x10, x11, [x0, #PCB_REGS + 10 * 8] + stp x12, x13, [x0, #PCB_REGS + 12 * 8] + stp x14, x15, [x0, #PCB_REGS + 14 * 8] + stp x16, x17, [x0, #PCB_REGS + 16 * 8] + stp x18, x19, [x0, #PCB_REGS + 18 * 8] + stp x20, x21, [x0, #PCB_REGS + 20 * 8] + stp x22, x23, [x0, #PCB_REGS + 22 * 8] + stp x24, x25, [x0, #PCB_REGS + 24 * 8] + stp x26, x27, [x0, #PCB_REGS + 26 * 8] + stp x28, x29, [x0, #PCB_REGS + 28 * 8] + str x30, [x0, #PCB_REGS + 30 * 8] + /* And the old stack pointer */ + mov x5, sp + mrs x6, tpidr_el0 + stp x5, x6, [x0, #PCB_SP] + + /* Store the VFP registers */ +#ifdef VFP + mov x29, lr + bl vfp_save_state + mov lr, x29 +#endif + ret -.Lsavectx_panic_str: - .asciz "savectx" END(savectx) |