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

Packit 6c4009
/* Copyright (C) 1999-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
#include <sysdep.h>
Packit 6c4009
Packit 6c4009
/* If no SA_RESTORER function was specified by the application we use
Packit 6c4009
   one of these.  This avoids the need for the kernel to synthesise a return
Packit 6c4009
   instruction on the stack, which would involve expensive cache flushes.
Packit 6c4009
Packit 6c4009
   Nowadays (2.6 series, and somewhat earlier) the kernel uses a high page
Packit 6c4009
   for signal trampolines, so the cache flushes are not an issue.  But since
Packit 6c4009
   we do not have a vDSO, continue to use these so that we can provide
Packit 6c4009
   unwind information.
Packit 6c4009
Packit 6c4009
   Start the unwind tables at least one instruction before the signal
Packit 6c4009
   trampoline, because the unwinder will assume we are returning after
Packit 6c4009
   a call site.  */
Packit 6c4009
Packit 6c4009
/* Used in ENTRY.  */
Packit 6c4009
#undef cfi_startproc
Packit 6c4009
#define cfi_startproc \
Packit 6c4009
	.cfi_startproc simple; \
Packit 6c4009
	.cfi_signal_frame
Packit 6c4009
Packit 6c4009
/* The CFA is not computed / used correctly here; this is neither trivial to
Packit 6c4009
   do, nor is it needed.  */
Packit 6c4009
#define CFI \
Packit 6c4009
	cfi_def_cfa (sp, 0); \
Packit 6c4009
	cfi_offset (r0, OFFSET + 0 * 4); \
Packit 6c4009
	cfi_offset (r1, OFFSET + 1 * 4); \
Packit 6c4009
	cfi_offset (r2, OFFSET + 2 * 4); \
Packit 6c4009
	cfi_offset (r3, OFFSET + 3 * 4); \
Packit 6c4009
	cfi_offset (r4, OFFSET + 4 * 4); \
Packit 6c4009
	cfi_offset (r5, OFFSET + 5 * 4); \
Packit 6c4009
	cfi_offset (r6, OFFSET + 6 * 4); \
Packit 6c4009
	cfi_offset (r7, OFFSET + 7 * 4); \
Packit 6c4009
	cfi_offset (r8, OFFSET + 8 * 4); \
Packit 6c4009
	cfi_offset (r9, OFFSET + 9 * 4); \
Packit 6c4009
	cfi_offset (r10, OFFSET + 10 * 4); \
Packit 6c4009
	cfi_offset (r11, OFFSET + 11 * 4); \
Packit 6c4009
	cfi_offset (r12, OFFSET + 12 * 4); \
Packit 6c4009
	cfi_offset (r13, OFFSET + 13 * 4); \
Packit 6c4009
	cfi_offset (r14, OFFSET + 14 * 4); \
Packit 6c4009
	cfi_offset (r15, OFFSET + 15 * 4)
Packit 6c4009
Packit 6c4009
#define OFFSET 32
Packit 6c4009
	.fnstart
Packit 6c4009
	.save {r0-r15}
Packit 6c4009
	.pad #OFFSET
Packit 6c4009
	nop
Packit 6c4009
ENTRY(__default_sa_restorer)
Packit 6c4009
	CFI
Packit 6c4009
	mov	r7, $SYS_ify(sigreturn)
Packit 6c4009
	swi	0x0
Packit 6c4009
	.fnend
Packit 6c4009
END(__default_sa_restorer)
Packit 6c4009
#undef OFFSET
Packit 6c4009
Packit 6c4009
#define OFFSET 160
Packit 6c4009
	.fnstart
Packit 6c4009
	.save {r0-r15}
Packit 6c4009
	.pad #OFFSET
Packit 6c4009
	nop
Packit 6c4009
ENTRY(__default_rt_sa_restorer)
Packit 6c4009
	CFI
Packit 6c4009
	mov	r7, $SYS_ify(rt_sigreturn)
Packit 6c4009
	swi	0x0
Packit 6c4009
	.fnend
Packit 6c4009
END(__default_rt_sa_restorer)
Packit 6c4009
#undef OFFSET