1997-04-14 02:11:12 +00:00
|
|
|
/* Assembler macros for ARM.
|
2013-01-02 19:01:50 +00:00
|
|
|
Copyright (C) 1997-2013 Free Software Foundation, Inc.
|
1997-04-14 02:11:12 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:56:23 +00:00
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
1997-04-14 02:11:12 +00:00
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2001-07-06 04:56:23 +00:00
|
|
|
Lesser General Public License for more details.
|
1997-04-14 02:11:12 +00:00
|
|
|
|
2001-07-06 04:56:23 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-03-09 23:56:38 +00:00
|
|
|
License along with the GNU C Library. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>. */
|
1997-04-14 02:11:12 +00:00
|
|
|
|
|
|
|
#include <sysdeps/generic/sysdep.h>
|
2011-02-16 17:30:13 +00:00
|
|
|
#include <features.h>
|
1997-04-14 02:11:12 +00:00
|
|
|
|
2004-12-04 21:20:17 +00:00
|
|
|
#if (!defined (__ARM_ARCH_2__) && !defined (__ARM_ARCH_3__) \
|
|
|
|
&& !defined (__ARM_ARCH_3M__) && !defined (__ARM_ARCH_4__))
|
|
|
|
# define __USE_BX__
|
|
|
|
#endif
|
|
|
|
|
1998-05-29 10:20:59 +00:00
|
|
|
#ifdef __ASSEMBLER__
|
1997-04-14 02:11:12 +00:00
|
|
|
|
|
|
|
/* Syntactic details of assembler. */
|
|
|
|
|
1998-05-19 16:11:52 +00:00
|
|
|
#define ALIGNARG(log2) log2
|
1997-04-14 02:11:12 +00:00
|
|
|
#define ASM_SIZE_DIRECTIVE(name) .size name,.-name
|
|
|
|
|
1998-03-18 14:29:30 +00:00
|
|
|
#define PLTJMP(_x) _x##(PLT)
|
|
|
|
|
1997-11-18 02:39:35 +00:00
|
|
|
/* APCS-32 doesn't preserve the condition codes across function call. */
|
|
|
|
#ifdef __APCS_32__
|
1997-04-14 02:11:12 +00:00
|
|
|
#define LOADREGS(cond, base, reglist...)\
|
|
|
|
ldm##cond base,reglist
|
2004-12-04 21:20:17 +00:00
|
|
|
#ifdef __USE_BX__
|
|
|
|
#define RETINSTR(cond, reg) \
|
|
|
|
bx##cond reg
|
2003-09-17 18:09:36 +00:00
|
|
|
#define DO_RET(_reg) \
|
|
|
|
bx _reg
|
|
|
|
#else
|
2004-12-04 21:20:17 +00:00
|
|
|
#define RETINSTR(cond, reg) \
|
|
|
|
mov##cond pc, reg
|
2003-09-17 18:09:36 +00:00
|
|
|
#define DO_RET(_reg) \
|
|
|
|
mov pc, _reg
|
|
|
|
#endif
|
1997-11-18 02:39:35 +00:00
|
|
|
#else /* APCS-26 */
|
1997-04-14 02:11:12 +00:00
|
|
|
#define LOADREGS(cond, base, reglist...)\
|
|
|
|
ldm##cond base,reglist^
|
2004-12-04 21:20:17 +00:00
|
|
|
#define RETINSTR(cond, reg) \
|
|
|
|
mov##cond##s pc, reg
|
2003-09-17 18:09:36 +00:00
|
|
|
#define DO_RET(_reg) \
|
|
|
|
movs pc, _reg
|
1997-04-14 02:11:12 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define an entry point visible from C. */
|
2013-02-28 07:04:17 +00:00
|
|
|
#define ENTRY(name) \
|
|
|
|
.globl C_SYMBOL_NAME(name); \
|
|
|
|
.type C_SYMBOL_NAME(name),%function; \
|
|
|
|
.align ALIGNARG(4); \
|
|
|
|
C_LABEL(name) \
|
|
|
|
CFI_SECTIONS; \
|
|
|
|
cfi_startproc; \
|
|
|
|
CALL_MCOUNT
|
|
|
|
|
|
|
|
#define CFI_SECTIONS \
|
|
|
|
.cfi_sections .debug_frame
|
2013-02-28 00:36:47 +00:00
|
|
|
|
1997-04-14 02:11:12 +00:00
|
|
|
#undef END
|
2013-02-28 07:04:17 +00:00
|
|
|
#define END(name) \
|
|
|
|
cfi_endproc; \
|
|
|
|
ASM_SIZE_DIRECTIVE(name)
|
1997-04-14 02:11:12 +00:00
|
|
|
|
|
|
|
/* If compiled for profiling, call `mcount' at the start of each function. */
|
|
|
|
#ifdef PROF
|
2012-04-21 17:03:39 +00:00
|
|
|
/* Call __gnu_mcount_nc if GCC >= 4.4. */
|
|
|
|
#if __GNUC_PREREQ(4,4)
|
2013-02-28 07:04:17 +00:00
|
|
|
#define CALL_MCOUNT \
|
|
|
|
str lr,[sp, #-4]!; \
|
|
|
|
cfi_adjust_cfa_offset (4); \
|
|
|
|
cfi_rel_offset (lr, 0); \
|
|
|
|
bl PLTJMP(mcount); \
|
|
|
|
cfi_adjust_cfa_offset (-4); \
|
|
|
|
cfi_restore (lr)
|
2011-02-16 17:30:13 +00:00
|
|
|
#else /* else call _mcount */
|
2013-02-28 07:04:17 +00:00
|
|
|
#define CALL_MCOUNT \
|
|
|
|
str lr,[sp, #-4]!; \
|
|
|
|
cfi_adjust_cfa_offset (4); \
|
|
|
|
cfi_rel_offset (lr, 0); \
|
|
|
|
bl PLTJMP(mcount); \
|
|
|
|
ldr lr, [sp], #4; \
|
|
|
|
cfi_adjust_cfa_offset (-4); \
|
|
|
|
cfi_restore (lr)
|
2011-02-16 17:30:13 +00:00
|
|
|
#endif
|
1997-04-14 02:11:12 +00:00
|
|
|
#else
|
|
|
|
#define CALL_MCOUNT /* Do nothing. */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Since C identifiers are not normally prefixed with an underscore
|
|
|
|
on this system, the asm identifier `syscall_error' intrudes on the
|
|
|
|
C name space. Make sure we use an innocuous name. */
|
|
|
|
#define syscall_error __syscall_error
|
2012-04-21 17:03:39 +00:00
|
|
|
#if __GNUC_PREREQ(4,4)
|
2011-02-16 17:30:13 +00:00
|
|
|
#define mcount __gnu_mcount_nc
|
|
|
|
#else
|
1997-04-14 02:11:12 +00:00
|
|
|
#define mcount _mcount
|
|
|
|
#endif
|
|
|
|
|
2009-10-22 19:39:47 +00:00
|
|
|
/* Tag_ABI_align8_preserved: This code preserves 8-byte
|
|
|
|
alignment in any callee. */
|
|
|
|
.eabi_attribute 25, 1
|
|
|
|
/* Tag_ABI_align8_needed: This code may require 8-byte alignment from
|
|
|
|
the caller. */
|
|
|
|
.eabi_attribute 24, 1
|
|
|
|
|
2013-02-14 05:21:39 +00:00
|
|
|
/* Load or store to/from a pc-relative EXPR into/from R, using T. */
|
|
|
|
# ifdef __thumb2__
|
|
|
|
# define LDST_PCREL(OP, R, T, EXPR) \
|
|
|
|
ldr T, 98f; \
|
|
|
|
.subsection 2; \
|
|
|
|
98: .word EXPR - 99f - PC_OFS; \
|
|
|
|
.previous; \
|
|
|
|
99: add T, T, pc; \
|
|
|
|
OP R, [T]
|
|
|
|
# else
|
|
|
|
# define LDST_PCREL(OP, R, T, EXPR) \
|
|
|
|
ldr T, 98f; \
|
|
|
|
.subsection 2; \
|
|
|
|
98: .word EXPR - 99f - PC_OFS; \
|
|
|
|
.previous; \
|
|
|
|
99: OP R, [pc, T]
|
|
|
|
# endif
|
1998-05-29 10:20:59 +00:00
|
|
|
#endif /* __ASSEMBLER__ */
|
2013-02-13 01:15:52 +00:00
|
|
|
|
|
|
|
/* This number is the offset from the pc at the current location. */
|
|
|
|
/* ??? At the moment we're not turning on thumb mode in assembly. */
|
|
|
|
#if defined(__thumb__) && !defined(__ASSEMBLER__)
|
|
|
|
# define PC_OFS 4
|
|
|
|
#else
|
|
|
|
# define PC_OFS 8
|
|
|
|
#endif
|