Blame sysdeps/unix/sysv/linux/arm/setcontext.S

Packit 6c4009
/* Copyright (C) 2012-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
/* ??? Needs more rearrangement for the LDM to handle thumb mode.  */
Packit 6c4009
#define NO_THUMB
Packit 6c4009
#include <sysdep.h>
Packit 6c4009
#include <rtld-global-offsets.h>
Packit 6c4009
Packit 6c4009
#include "ucontext_i.h"
Packit 6c4009
Packit 6c4009
	.syntax unified
Packit 6c4009
	.text
Packit 6c4009
Packit 6c4009
/* int setcontext (const ucontext_t *ucp) */
Packit 6c4009
Packit 6c4009
ENTRY(__setcontext)
Packit 6c4009
	mov	r4, r0
Packit 6c4009
	add	r0, r0, #UCONTEXT_REGSPACE
Packit 6c4009
Packit 6c4009
	/* Restore the VFP registers.  Copied from arm/__longjmp.S.  */
Packit 6c4009
#ifdef PIC
Packit 6c4009
	ldr     r2, 1f
Packit 6c4009
	ldr     r1, .Lrtld_global_ro
Packit 6c4009
0:      add     r2, pc, r2
Packit 6c4009
	ldr     r2, [r2, r1]
Packit 6c4009
	ldr     r2, [r2, #RTLD_GLOBAL_RO_DL_HWCAP_OFFSET]
Packit 6c4009
#else
Packit 6c4009
	ldr     r2, .Lhwcap
Packit 6c4009
	ldr     r2, [r2, #0]
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#ifdef __SOFTFP__
Packit 6c4009
	tst     r2, #HWCAP_ARM_VFP
Packit 6c4009
	beq     .Lno_vfp_sc
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
	/* Following instruction is vldmia r0!, {d8-d15}.  */
Packit 6c4009
	ldc     p11, cr8, [r0], #64
Packit 6c4009
	/* Restore the floating-point status register.  */
Packit 6c4009
	ldr     r1, [r0], #4
Packit 6c4009
	/* Following instruction is fmxr fpscr, r1.  */
Packit 6c4009
	mcr     p10, 7, r1, cr1, cr0, 0
Packit 6c4009
.Lno_vfp_sc:
Packit 6c4009
	tst     r2, #HWCAP_ARM_IWMMXT
Packit 6c4009
	beq     .Lno_iwmmxt_sc
Packit 6c4009
Packit 6c4009
	/* Restore the call-preserved iWMMXt registers.  */
Packit 6c4009
	/* Following instructions are wldrd wr10, [r0], #8 (etc.)  */
Packit 6c4009
	ldcl    p1, cr10, [r0], #8
Packit 6c4009
	ldcl    p1, cr11, [r0], #8
Packit 6c4009
	ldcl    p1, cr12, [r0], #8
Packit 6c4009
	ldcl    p1, cr13, [r0], #8
Packit 6c4009
	ldcl    p1, cr14, [r0], #8
Packit 6c4009
	ldcl    p1, cr15, [r0], #8
Packit 6c4009
.Lno_iwmmxt_sc:
Packit 6c4009
Packit 6c4009
	/* Now bring back the signal status.  */
Packit 6c4009
	mov	r0, #SIG_SETMASK
Packit 6c4009
	add	r1, r4, #UCONTEXT_SIGMASK
Packit 6c4009
	mov	r2, #0
Packit 6c4009
	bl	PLTJMP(__sigprocmask)
Packit 6c4009
Packit 6c4009
	/* Loading r0-r3 makes makecontext easier.  */
Packit 6c4009
	add     r14, r4, #MCONTEXT_ARM_R0
Packit 6c4009
	ldmia   r14, {r0-r12}
Packit 6c4009
	ldr     r13, [r14, #(MCONTEXT_ARM_SP - MCONTEXT_ARM_R0)]
Packit 6c4009
	add     r14, r14, #(MCONTEXT_ARM_LR - MCONTEXT_ARM_R0)
Packit 6c4009
	ldmia   r14, {r14, pc}
Packit 6c4009
Packit 6c4009
END(setcontext)
Packit 6c4009
weak_alias(__setcontext, setcontext)
Packit 6c4009
Packit 6c4009
	/* Called when a makecontext() context returns.  Start the
Packit 6c4009
	   context in R4 or fall through to exit().  */
Packit 6c4009
	/* Unwind descriptors are looked up based on PC - 2, so we have to
Packit 6c4009
	   make sure to mark the instruction preceding the __startcontext
Packit 6c4009
	   label as .cantunwind.  */
Packit 6c4009
	.fnstart
Packit 6c4009
	.cantunwind
Packit 6c4009
	nop
Packit 6c4009
ENTRY(__startcontext)
Packit 6c4009
	movs    r0, r4
Packit 6c4009
	bne     PLTJMP(__setcontext)
Packit 6c4009
Packit 6c4009
	@ New context was 0 - exit
Packit 6c4009
	b       PLTJMP(HIDDEN_JUMPTARGET(exit))
Packit 6c4009
	.fnend
Packit 6c4009
END(__startcontext)
Packit 6c4009
Packit 6c4009
#ifdef PIC
Packit 6c4009
1:      .long   _GLOBAL_OFFSET_TABLE_ - 0b - PC_OFS
Packit 6c4009
.Lrtld_global_ro:
Packit 6c4009
	.long   C_SYMBOL_NAME(_rtld_global_ro)(GOT)
Packit 6c4009
#else
Packit 6c4009
.Lhwcap:
Packit 6c4009
	.long   C_SYMBOL_NAME(_dl_hwcap)
Packit 6c4009
#endif