2018-01-31 04:11:46 +00:00
|
|
|
/*
|
2020-03-30 05:02:49 +00:00
|
|
|
* Copyright (c) 2018, 2020 Ariadne Conill <ariadne@dereferenced.org>
|
2018-01-31 04:11:46 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* This software is provided 'as is' and without any warranty, express or
|
|
|
|
* implied. In no event shall the authors be liable for any damages arising
|
|
|
|
* from the use of this software.
|
|
|
|
*/
|
|
|
|
|
2020-03-30 05:02:49 +00:00
|
|
|
#include "defs.h"
|
|
|
|
|
2020-12-06 09:03:07 +00:00
|
|
|
ALIAS(setcontext, libucontext_setcontext)
|
2021-01-08 09:30:50 +00:00
|
|
|
ALIAS(__setcontext, libucontext_setcontext)
|
2020-03-30 05:02:49 +00:00
|
|
|
|
2020-12-06 09:03:07 +00:00
|
|
|
FUNC(libucontext_setcontext)
|
2022-03-04 18:35:25 +00:00
|
|
|
#ifndef FORCE_SOFT_FLOAT
|
|
|
|
#ifndef FORCE_HARD_FLOAT
|
|
|
|
/* test for vfp magic number set by getcontext */
|
|
|
|
ldr r2, [r0, #VFP_MAGIC_OFFSET]
|
|
|
|
ldr r3, =#0x56465001
|
|
|
|
cmp r2, r3
|
|
|
|
bne 1f
|
|
|
|
#endif
|
|
|
|
/* if vfp in use, restore d8-d15 from uc_regspace */
|
|
|
|
.fpu vfp
|
|
|
|
add r14, r0, #VFP_D8_OFFSET
|
|
|
|
vldmia r14, {d8-d15}
|
|
|
|
.fpu softvfp
|
|
|
|
1:
|
|
|
|
#endif
|
|
|
|
|
2018-01-31 04:11:46 +00:00
|
|
|
/* copy all of the current registers into the ucontext structure */
|
2020-03-30 05:02:49 +00:00
|
|
|
add r14, r0, #REG_OFFSET(0)
|
2018-01-31 04:11:46 +00:00
|
|
|
ldmia r14, {r0-r12}
|
|
|
|
ldr r13, [r14, #52]
|
|
|
|
add r14, r14, #56
|
|
|
|
|
|
|
|
/* load link register and jump to new context */
|
|
|
|
ldmia r14, {r14, pc}
|
2020-12-06 09:03:07 +00:00
|
|
|
END(libucontext_setcontext)
|