blob: cc22c79d0f96ed4560a987e6817a9ef2bd0c38ca [file] [log] [blame]
Saleem Abdulrasool17552662015-04-24 19:39:17 +00001/* ===-- assembly.h - libUnwind assembler support macros -------------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
5 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
7 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file defines macros for use in libUnwind assembler source.
11 * This file is not part of the interface of this library.
12 *
13 * ===----------------------------------------------------------------------===
14 */
15
16#ifndef UNWIND_ASSEMBLY_H
17#define UNWIND_ASSEMBLY_H
18
Martin Storsjo8338b0a2018-01-02 22:11:30 +000019#if defined(__powerpc64__)
20#define SEPARATOR ;
Martin Storsjo6518fcb2018-01-16 20:54:10 +000021#define PPC64_OFFS_SRR0 0
22#define PPC64_OFFS_CR 272
23#define PPC64_OFFS_XER 280
24#define PPC64_OFFS_LR 288
25#define PPC64_OFFS_CTR 296
26#define PPC64_OFFS_VRSAVE 304
27#define PPC64_OFFS_FP 312
28#define PPC64_OFFS_V 824
29#ifdef _ARCH_PWR8
30#define PPC64_HAS_VMX
31#endif
Martin Storsjo8338b0a2018-01-02 22:11:30 +000032#elif defined(__POWERPC__) || defined(__powerpc__) || defined(__ppc__)
Saleem Abdulrasool17552662015-04-24 19:39:17 +000033#define SEPARATOR @
34#elif defined(__arm64__)
35#define SEPARATOR %%
36#else
37#define SEPARATOR ;
38#endif
39
Saleem Abdulrasool17552662015-04-24 19:39:17 +000040#define GLUE2(a, b) a ## b
41#define GLUE(a, b) GLUE2(a, b)
42#define SYMBOL_NAME(name) GLUE(__USER_LABEL_PREFIX__, name)
43
44#if defined(__APPLE__)
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000045
Saleem Abdulrasool17552662015-04-24 19:39:17 +000046#define SYMBOL_IS_FUNC(name)
Charles Davisc5094702018-08-31 18:11:48 +000047#define EXPORT_SYMBOL(name)
Martin Storsjo6038ed32017-10-22 19:39:26 +000048#define HIDDEN_SYMBOL(name) .private_extern name
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000049#define NO_EXEC_STACK_DIRECTIVE
50
Saleem Abdulrasool17552662015-04-24 19:39:17 +000051#elif defined(__ELF__)
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000052
Saleem Abdulrasool17552662015-04-24 19:39:17 +000053#if defined(__arm__)
54#define SYMBOL_IS_FUNC(name) .type name,%function
55#else
56#define SYMBOL_IS_FUNC(name) .type name,@function
57#endif
Charles Davisc5094702018-08-31 18:11:48 +000058#define EXPORT_SYMBOL(name)
Martin Storsjo6038ed32017-10-22 19:39:26 +000059#define HIDDEN_SYMBOL(name) .hidden name
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000060
Manoj Guptad8b79152017-05-16 20:18:57 +000061#if defined(__GNU__) || defined(__FreeBSD__) || defined(__Fuchsia__) || \
62 defined(__linux__)
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000063#define NO_EXEC_STACK_DIRECTIVE .section .note.GNU-stack,"",%progbits
Saleem Abdulrasool17552662015-04-24 19:39:17 +000064#else
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000065#define NO_EXEC_STACK_DIRECTIVE
66#endif
67
Martin Storsjo6038ed32017-10-22 19:39:26 +000068#elif defined(_WIN32)
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000069
Saleem Abdulrasool17552662015-04-24 19:39:17 +000070#define SYMBOL_IS_FUNC(name) \
71 .def name SEPARATOR \
72 .scl 2 SEPARATOR \
73 .type 32 SEPARATOR \
74 .endef
Charles Davisc5094702018-08-31 18:11:48 +000075#define EXPORT_SYMBOL2(name) \
76 .section .drectve,"yn" SEPARATOR \
77 .ascii "-export:", #name, "\0" SEPARATOR \
78 .text
Martin Storsjocf47ba62018-12-11 07:34:14 +000079#if defined(_LIBUNWIND_DISABLE_VISIBILITY_ANNOTATIONS)
80#define EXPORT_SYMBOL(name)
81#else
Charles Davisc5094702018-08-31 18:11:48 +000082#define EXPORT_SYMBOL(name) EXPORT_SYMBOL2(name)
Martin Storsjocf47ba62018-12-11 07:34:14 +000083#endif
Martin Storsjo6038ed32017-10-22 19:39:26 +000084#define HIDDEN_SYMBOL(name)
Saleem Abdulrasool85e5b232016-08-05 21:35:28 +000085
86#define NO_EXEC_STACK_DIRECTIVE
87
Martin Storsjo6038ed32017-10-22 19:39:26 +000088#else
89
90#error Unsupported target
91
Saleem Abdulrasool17552662015-04-24 19:39:17 +000092#endif
93
94#define DEFINE_LIBUNWIND_FUNCTION(name) \
95 .globl SYMBOL_NAME(name) SEPARATOR \
Charles Davisc5094702018-08-31 18:11:48 +000096 EXPORT_SYMBOL(name) SEPARATOR \
Saleem Abdulrasool17552662015-04-24 19:39:17 +000097 SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR \
98 SYMBOL_NAME(name):
99
100#define DEFINE_LIBUNWIND_PRIVATE_FUNCTION(name) \
101 .globl SYMBOL_NAME(name) SEPARATOR \
Martin Storsjo6038ed32017-10-22 19:39:26 +0000102 HIDDEN_SYMBOL(SYMBOL_NAME(name)) SEPARATOR \
Saleem Abdulrasool17552662015-04-24 19:39:17 +0000103 SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR \
104 SYMBOL_NAME(name):
105
106#if defined(__arm__)
107#if !defined(__ARM_ARCH)
108#define __ARM_ARCH 4
109#endif
110
111#if defined(__ARM_ARCH_4T__) || __ARM_ARCH >= 5
112#define ARM_HAS_BX
113#endif
114
115#ifdef ARM_HAS_BX
116#define JMP(r) bx r
117#else
118#define JMP(r) mov pc, r
119#endif
120#endif /* __arm__ */
121
122#endif /* UNWIND_ASSEMBLY_H */