2023-07-07 01:15:59 +02:00
|
|
|
#ifdef __CYGWIN__
|
|
|
|
# define SYMBOL(s) s
|
|
|
|
# define WEAK .weak
|
|
|
|
# define GLOBAL .global
|
|
|
|
# define SECTION .data
|
|
|
|
.macro GLOBAL ep
|
|
|
|
.global SYMBOL(\ep)
|
|
|
|
.type SYMBOL(\ep), "object"
|
|
|
|
.endm
|
|
|
|
.macro SIZE ep
|
|
|
|
.endm
|
|
|
|
#elif defined(__ELF__)
|
|
|
|
# define SYMBOL(s) s
|
|
|
|
# define WEAK .weak
|
|
|
|
# define SECTION .data
|
|
|
|
.macro GLOBAL ep
|
|
|
|
.global SYMBOL(\ep)
|
|
|
|
.type SYMBOL(\ep), "object"
|
|
|
|
.endm
|
|
|
|
.macro SIZE ep
|
|
|
|
.size SYMBOL(\ep), . - SYMBOL(\ep)
|
|
|
|
.endm
|
|
|
|
#else
|
|
|
|
# define SYMBOL(s) _##s
|
|
|
|
# define WEAK .weak_definition
|
|
|
|
# define SECTION .section __DATA,__data
|
|
|
|
.macro GLOBAL ep
|
|
|
|
.private_extern SYMBOL(\ep)
|
|
|
|
.globl SYMBOL(\ep)
|
|
|
|
.endm
|
|
|
|
.macro SIZE ep
|
|
|
|
.endm
|
|
|
|
#endif
|
|
|
|
|
2022-09-26 08:22:03 +02:00
|
|
|
#if __SIZEOF_POINTER__ == 8
|
|
|
|
.macro globalEntry index, ep
|
2023-07-07 01:15:59 +02:00
|
|
|
WEAK SYMBOL(\ep)
|
|
|
|
.quad .l\index
|
|
|
|
.quad \ep
|
2022-09-26 08:22:03 +02:00
|
|
|
.endm
|
|
|
|
# define ALIGN 8
|
|
|
|
#else
|
|
|
|
.macro globalEntry index, ep
|
2023-07-07 01:15:59 +02:00
|
|
|
WEAK SYMBOL(\ep)
|
|
|
|
.long .l\index
|
|
|
|
.long \ep
|
2022-09-26 08:22:03 +02:00
|
|
|
.endm
|
|
|
|
# define ALIGN 4
|
|
|
|
#endif
|
|
|
|
#ifdef __ARM_ARCH_ISA_THUMB2
|
|
|
|
# ifdef __ARM_ARCH_7M__
|
2023-07-07 01:15:59 +02:00
|
|
|
.arch armv7e-m
|
2022-09-26 08:22:03 +02:00
|
|
|
# elif defined ___ARM_ARCH 8
|
|
|
|
.arch armv8-m.base
|
|
|
|
#endif
|
2023-07-07 01:15:59 +02:00
|
|
|
#ifdef __ARM_ASM_SYNTAX_UNIFIED__
|
|
|
|
.syntax unified
|
|
|
|
#endif
|
|
|
|
.thumb
|
|
|
|
#endif
|
|
|
|
.data
|
|
|
|
.align ALIGN
|
|
|
|
GLOBAL globalNames
|
2022-09-26 08:22:03 +02:00
|
|
|
|
2023-07-07 01:15:59 +02:00
|
|
|
SYMBOL(globalNames):
|
|
|
|
SIZE globalNames
|
2022-09-26 08:22:03 +02:00
|
|
|
|
|
|
|
.align ALIGN
|
2023-07-09 00:16:11 +02:00
|
|
|
GLOBAL nglobals
|
|
|
|
SYMBOL(nglobals):
|
2023-07-07 01:15:59 +02:00
|
|
|
.word 0
|
2023-07-09 00:16:11 +02:00
|
|
|
SIZE nglobals
|
2022-09-26 08:22:03 +02:00
|
|
|
|
|
|
|
.align ALIGN
|
2023-07-09 00:16:11 +02:00
|
|
|
GLOBAL global_table
|
|
|
|
SYMBOL(global_table):
|
|
|
|
SIZE global_table
|