]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/s390/s390-64/sysdep.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / s390 / s390-64 / sysdep.h
CommitLineData
ffeac417 1/* Assembler macros for 64 bit S/390.
688903eb 2 Copyright (C) 2001-2018 Free Software Foundation, Inc.
847b055c
AJ
3 Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com).
4 This file is part of the GNU C Library.
5
6 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
847b055c
AJ
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 14 Lesser General Public License for more details.
847b055c 15
41bdb6e2 16 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
847b055c
AJ
19
20#include <sysdeps/generic/sysdep.h>
21
22#ifdef __ASSEMBLER__
23
24/* Syntactic details of assembler. */
25
847b055c
AJ
26/* ELF uses byte-counts for .align, most others use log2 of count of bytes. */
27#define ALIGNARG(log2) 1<<log2
847b055c
AJ
28#define ASM_SIZE_DIRECTIVE(name) .size name,.-name;
29
847b055c
AJ
30
31/* Define an entry point visible from C. */
32#define ENTRY(name) \
b67e9372
MP
33 .globl C_SYMBOL_NAME(name); \
34 .type C_SYMBOL_NAME(name),@function; \
847b055c
AJ
35 .align ALIGNARG(2); \
36 C_LABEL(name) \
844a34a2 37 cfi_startproc; \
847b055c
AJ
38 CALL_MCOUNT
39
40#undef END
41#define END(name) \
844a34a2 42 cfi_endproc; \
847b055c
AJ
43 ASM_SIZE_DIRECTIVE(name) \
44
45/* If compiled for profiling, call `mcount' at the start of each function. */
46#ifdef PROF
47#ifdef PIC
48#define CALL_MCOUNT \
ffeac417
UD
49 lgr 0,14 ; larl 1,0f ; brasl 14,_mcount@PLT ; lgr 14,0 ; \
50 .data ; .align 4 ; 0: .long 0 ; .text ;
847b055c
AJ
51#else
52#define CALL_MCOUNT \
ffeac417 53 lgr 0,14 ; larl 1,0f ; brasl 14,_mcount ; lgr 14,0 ; \
8addbe04 54 .data ; .align 4 ; 0: .long 0 ; .text ;
847b055c
AJ
55#endif
56#else
57#define CALL_MCOUNT /* Do nothing. */
58#endif
59
847b055c
AJ
60/* Since C identifiers are not normally prefixed with an underscore
61 on this system, the asm identifier `syscall_error' intrudes on the
62 C name space. Make sure we use an innocuous name. */
63#define syscall_error __syscall_error
64#define mcount _mcount
847b055c 65
24116fcd 66#undef PSEUDO
db0a052c
UD
67#define PSEUDO(name, syscall_name, args) \
68lose: SYSCALL_PIC_SETUP \
69 jg JUMPTARGET(syscall_error); \
70 .globl syscall_error; \
71 ENTRY (name) \
72 DO_CALL (syscall_name, args); \
847b055c
AJ
73 jm lose
74
75#undef PSEUDO_END
76#define PSEUDO_END(name) \
77 END (name)
78
29d9a17d 79#undef JUMPTARGET
5e5b3b88 80#ifdef SHARED
db0a052c 81#define JUMPTARGET(name) name##@PLT
ffeac417
UD
82#define SYSCALL_PIC_SETUP \
83 larl %r12,_GLOBAL_OFFSET_TABLE_
847b055c 84#else
db0a052c 85#define JUMPTARGET(name) name
847b055c
AJ
86#define SYSCALL_PIC_SETUP /* Nothing. */
87#endif
88
89/* Local label name for asm code. */
90#ifndef L
8addbe04 91#define L(name) .L##name
847b055c
AJ
92#endif
93
94#endif /* __ASSEMBLER__ */