mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
It seems there have only been a small amount to the compiler-rt source code in the mean time. I'd rather have the code in sync as much as possible by the time we release 9.0. Changes: - The libcompiler_rt library is now dual licensed under both the University of Illinois "BSD-Like" license and the MIT license. - Our local modifications for using .hidden instead of .private_extern have been upstreamed, meaning our changes to lib/assembly.h can now be reverted. - A possible endless recursion in __modsi3() has been fixed. - Support for ARM EABI has been added, but it has no effect on FreeBSD (yet). - The functions __udivmodsi4 and __divmodsi4 have been added. Requested by: many, including bf@ and Pedro Giffuni
69 lines
2.2 KiB
C
69 lines
2.2 KiB
C
/* ===-- assembly.h - compiler-rt assembler support macros -----------------===
|
|
*
|
|
* The LLVM Compiler Infrastructure
|
|
*
|
|
* This file is dual licensed under the MIT and the University of Illinois Open
|
|
* Source Licenses. See LICENSE.TXT for details.
|
|
*
|
|
* ===----------------------------------------------------------------------===
|
|
*
|
|
* This file defines macros for use in compiler-rt assembler source.
|
|
* This file is not part of the interface of this library.
|
|
*
|
|
* ===----------------------------------------------------------------------===
|
|
*/
|
|
|
|
#ifndef COMPILERRT_ASSEMBLY_H
|
|
#define COMPILERRT_ASSEMBLY_H
|
|
|
|
#if defined(__POWERPC__) || defined(__powerpc__) || defined(__ppc__)
|
|
#define SEPARATOR @
|
|
#else
|
|
#define SEPARATOR ;
|
|
#endif
|
|
|
|
#if defined(__APPLE__)
|
|
#define HIDDEN_DIRECTIVE .private_extern
|
|
#define LOCAL_LABEL(name) L_##name
|
|
#else
|
|
#define HIDDEN_DIRECTIVE .hidden
|
|
#define LOCAL_LABEL(name) .L_##name
|
|
#endif
|
|
|
|
#define GLUE2(a, b) a ## b
|
|
#define GLUE(a, b) GLUE2(a, b)
|
|
#define SYMBOL_NAME(name) GLUE(__USER_LABEL_PREFIX__, name)
|
|
|
|
#ifdef VISIBILITY_HIDDEN
|
|
#define DEFINE_COMPILERRT_FUNCTION(name) \
|
|
.globl SYMBOL_NAME(name) SEPARATOR \
|
|
HIDDEN_DIRECTIVE SYMBOL_NAME(name) SEPARATOR \
|
|
SYMBOL_NAME(name):
|
|
#else
|
|
#define DEFINE_COMPILERRT_FUNCTION(name) \
|
|
.globl SYMBOL_NAME(name) SEPARATOR \
|
|
SYMBOL_NAME(name):
|
|
#endif
|
|
|
|
#define DEFINE_COMPILERRT_PRIVATE_FUNCTION(name) \
|
|
.globl SYMBOL_NAME(name) SEPARATOR \
|
|
HIDDEN_DIRECTIVE SYMBOL_NAME(name) SEPARATOR \
|
|
SYMBOL_NAME(name):
|
|
|
|
#define DEFINE_COMPILERRT_PRIVATE_FUNCTION_UNMANGLED(name) \
|
|
.globl name SEPARATOR \
|
|
HIDDEN_DIRECTIVE name SEPARATOR \
|
|
name:
|
|
|
|
#define DEFINE_COMPILERRT_FUNCTION_ALIAS(name, target) \
|
|
.globl SYMBOL_NAME(name) SEPARATOR \
|
|
.set SYMBOL_NAME(name), SYMBOL_NAME(target) SEPARATOR
|
|
|
|
#if defined (__ARM_EABI__)
|
|
# define DEFINE_AEABI_FUNCTION_ALIAS(aeabi_name, name) \
|
|
DEFINE_COMPILERRT_FUNCTION_ALIAS(aeabi_name, name)
|
|
#else
|
|
# define DEFINE_AEABI_FUNCTION_ALIAS(aeabi_name, name)
|
|
#endif
|
|
|
|
#endif /* COMPILERRT_ASSEMBLY_H */
|