blob: 2df930214fae5bbddfe841ec0f32e54f92c51ef9 [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
Daniel Cederman9f2f07a2019-01-14 10:15:20 +000088#elif defined(__sparc__)
89
Martin Storsjo6038ed32017-10-22 19:39:26 +000090#else
91
92#error Unsupported target
93
Saleem Abdulrasool17552662015-04-24 19:39:17 +000094#endif
95
96#define DEFINE_LIBUNWIND_FUNCTION(name) \
97 .globl SYMBOL_NAME(name) SEPARATOR \
Charles Davisc5094702018-08-31 18:11:48 +000098 EXPORT_SYMBOL(name) SEPARATOR \
Saleem Abdulrasool17552662015-04-24 19:39:17 +000099 SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR \
100 SYMBOL_NAME(name):
101
102#define DEFINE_LIBUNWIND_PRIVATE_FUNCTION(name) \
103 .globl SYMBOL_NAME(name) SEPARATOR \
Martin Storsjo6038ed32017-10-22 19:39:26 +0000104 HIDDEN_SYMBOL(SYMBOL_NAME(name)) SEPARATOR \
Saleem Abdulrasool17552662015-04-24 19:39:17 +0000105 SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR \
106 SYMBOL_NAME(name):
107
108#if defined(__arm__)
109#if !defined(__ARM_ARCH)
110#define __ARM_ARCH 4
111#endif
112
113#if defined(__ARM_ARCH_4T__) || __ARM_ARCH >= 5
114#define ARM_HAS_BX
115#endif
116
117#ifdef ARM_HAS_BX
118#define JMP(r) bx r
119#else
120#define JMP(r) mov pc, r
121#endif
122#endif /* __arm__ */
123
124#endif /* UNWIND_ASSEMBLY_H */