blob: 78efe3af1bd1424b5b84a190f588b5de8623a88a [file] [log] [blame]
Daniel Dunbar7d504782009-10-27 17:49:50 +00001/* ===-- assembly.h - compiler-rt assembler support macros -----------------===
2 *
3 * The LLVM Compiler Infrastructure
4 *
Howard Hinnant5b791f62010-11-16 22:13:33 +00005 * This file is dual licensed under the MIT and the University of Illinois Open
6 * Source Licenses. See LICENSE.TXT for details.
Daniel Dunbar7d504782009-10-27 17:49:50 +00007 *
8 * ===----------------------------------------------------------------------===
9 *
10 * This file defines macros for use in compiler-rt assembler source.
11 * This file is not part of the interface of this library.
12 *
13 * ===----------------------------------------------------------------------===
14 */
15
16#ifndef COMPILERRT_ASSEMBLY_H
17#define COMPILERRT_ASSEMBLY_H
18
Daniel Dunbar7d504782009-10-27 17:49:50 +000019#if defined(__POWERPC__) || defined(__powerpc__) || defined(__ppc__)
Daniel Dunbar7d504782009-10-27 17:49:50 +000020#define SEPARATOR @
Daniel Dunbar7d504782009-10-27 17:49:50 +000021#else
Daniel Dunbar7d504782009-10-27 17:49:50 +000022#define SEPARATOR ;
Daniel Dunbar64a198d2010-01-18 22:19:25 +000023#endif
Daniel Dunbar7d504782009-10-27 17:49:50 +000024
Daniel Dunbar64a198d2010-01-18 22:19:25 +000025#if defined(__APPLE__)
Saleem Abdulrasool9a614bd2014-05-18 18:39:10 +000026#define HIDDEN(name) .private_extern name
Anton Korobeynikov16536102011-04-19 17:50:09 +000027#define LOCAL_LABEL(name) L_##name
Jonathan Roelofsb351c1a2014-05-12 17:38:36 +000028// tell linker it can break up file at label boundaries
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +000029#define FILE_LEVEL_DIRECTIVE .subsections_via_symbols
Joerg Sonnenberger197568a2014-01-14 23:31:23 +000030#define SYMBOL_IS_FUNC(name)
Saleem Abdulrasooldd9b0342014-05-18 18:39:15 +000031#elif defined(__ELF__)
Saleem Abdulrasool9a614bd2014-05-18 18:39:10 +000032#define HIDDEN(name) .hidden name
Anton Korobeynikov16536102011-04-19 17:50:09 +000033#define LOCAL_LABEL(name) .L_##name
Joerg Sonnenberger197568a2014-01-14 23:31:23 +000034#define FILE_LEVEL_DIRECTIVE
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +000035#if defined(__arm__)
36#define SYMBOL_IS_FUNC(name) .type name,%function
37#else
38#define SYMBOL_IS_FUNC(name) .type name,@function
39#endif
Saleem Abdulrasooldd9b0342014-05-18 18:39:15 +000040#else
41#define HIDDEN_DIRECTIVE(name)
42#define LOCAL_LABEL(name) .L ## name
43#define SYMBOL_IS_FUNC(name) \
44 .def name SEPARATOR \
45 .scl 3 SEPARATOR \
46 .type 32 SEPARATOR \
47 .endef
48#define FILE_LEVEL_DIRECTIVE
Daniel Dunbar7d504782009-10-27 17:49:50 +000049#endif
50
Joerg Sonnenberger1f8cb3e2014-01-24 13:39:51 +000051#if defined(__arm__)
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +000052#ifndef __ARM_ARCH
53#if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || \
54 defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || \
55 defined(__ARM_ARCH_7EM__)
56#define __ARM_ARCH 7
57#endif
Joerg Sonnenberger1f8cb3e2014-01-24 13:39:51 +000058#endif
59
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +000060#ifndef __ARM_ARCH
61#if defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || \
62 defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6Z__) || \
63 defined(__ARM_ARCH_6ZK__) || defined(__ARM_ARCH_6ZM__)
64#define __ARM_ARCH 6
65#endif
66#endif
67
68#ifndef __ARM_ARCH
69#if defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5T__) || \
70 defined(__ARM_ARCH_5TE__) || defined(__ARM_ARCH_5TEJ__)
71#define __ARM_ARCH 5
72#endif
73#endif
74
75#ifndef __ARM_ARCH
76#define __ARM_ARCH 4
77#endif
78
79#if defined(__ARM_ARCH_4T__) || __ARM_ARCH >= 5
80#define ARM_HAS_BX
81#endif
82#if !defined(__ARM_FEATURE_CLZ) && \
83 (__ARM_ARCH >= 6 || (__ARM_ARCH == 5 && !defined(__ARM_ARCH_5__)))
84#define __ARM_FEATURE_CLZ
85#endif
86
87#ifdef ARM_HAS_BX
88#define JMP(r) bx r
89#define JMPc(r, c) bx##c r
90#else
91#define JMP(r) mov pc, r
92#define JMPc(r, c) mov##c pc, r
93#endif
94#endif
95
96#define GLUE2(a, b) a##b
Anton Korobeynikov3c519902011-04-19 21:22:14 +000097#define GLUE(a, b) GLUE2(a, b)
98#define SYMBOL_NAME(name) GLUE(__USER_LABEL_PREFIX__, name)
99
Bob Wilsone67004e2012-02-10 16:41:46 +0000100#ifdef VISIBILITY_HIDDEN
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000101#define DECLARE_SYMBOL_VISIBILITY(name) \
Saleem Abdulrasool9a614bd2014-05-18 18:39:10 +0000102 HIDDEN(SYMBOL_NAME(name)) SEPARATOR
Daniel Dunbarf665b322010-01-18 22:19:34 +0000103#else
Bob Wilson66cdd222011-08-22 21:49:47 +0000104#define DECLARE_SYMBOL_VISIBILITY(name)
105#endif
106
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000107#define DEFINE_COMPILERRT_FUNCTION(name) \
108 FILE_LEVEL_DIRECTIVE SEPARATOR \
109 .globl SYMBOL_NAME(name) SEPARATOR \
110 SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR \
111 DECLARE_SYMBOL_VISIBILITY(name) \
Daniel Dunbar7d504782009-10-27 17:49:50 +0000112 SYMBOL_NAME(name):
113
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000114#define DEFINE_COMPILERRT_PRIVATE_FUNCTION(name) \
115 FILE_LEVEL_DIRECTIVE SEPARATOR \
116 .globl SYMBOL_NAME(name) SEPARATOR \
117 SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR \
Saleem Abdulrasool9a614bd2014-05-18 18:39:10 +0000118 HIDDEN(SYMBOL_NAME(name)) SEPARATOR \
Daniel Dunbar7d504782009-10-27 17:49:50 +0000119 SYMBOL_NAME(name):
120
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000121#define DEFINE_COMPILERRT_PRIVATE_FUNCTION_UNMANGLED(name) \
122 .globl name SEPARATOR \
123 SYMBOL_IS_FUNC(name) SEPARATOR \
Saleem Abdulrasool9a614bd2014-05-18 18:39:10 +0000124 HIDDEN(name) SEPARATOR \
Daniel Dunbaref898582010-01-18 22:19:20 +0000125 name:
126
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000127#define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
128 .globl SYMBOL_NAME(name) SEPARATOR \
129 SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR \
Anton Korobeynikov75e3c192011-04-19 17:51:24 +0000130 .set SYMBOL_NAME(name), SYMBOL_NAME(target) SEPARATOR
131
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000132#if defined(__ARM_EABI__)
133#define DEFINE_AEABI_FUNCTION_ALIAS(aeabi_name, name) \
Anton Korobeynikov75e3c192011-04-19 17:51:24 +0000134 DEFINE_COMPILERRT_FUNCTION_ALIAS(aeabi_name, name)
135#else
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000136#define DEFINE_AEABI_FUNCTION_ALIAS(aeabi_name, name)
Anton Korobeynikov75e3c192011-04-19 17:51:24 +0000137#endif
138
Joerg Sonnenberger25468a2a2014-01-23 18:31:46 +0000139#ifdef __ELF__
Saleem Abdulrasoolda2c2ce2014-05-16 06:16:21 +0000140#define END_COMPILERRT_FUNCTION(name) \
141 .size SYMBOL_NAME(name), . - SYMBOL_NAME(name)
Joerg Sonnenberger25468a2a2014-01-23 18:31:46 +0000142#else
143#define END_COMPILERRT_FUNCTION(name)
144#endif
145
Daniel Dunbar7d504782009-10-27 17:49:50 +0000146#endif /* COMPILERRT_ASSEMBLY_H */