diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2021-03-23 23:28:47 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2021-03-23 23:28:47 -0700 |
commit | 500155609621d8021d73291d2369b28919386a69 (patch) | |
tree | 99dc92b133ac6a8edc96b30f3ade1a66c0b288fa /jmp.S | |
parent | cc966e1590332779e66d067c12ef79291dceafae (diff) | |
download | txr-500155609621d8021d73291d2369b28919386a69.tar.gz txr-500155609621d8021d73291d2369b28919386a69.tar.bz2 txr-500155609621d8021d73291d2369b28919386a69.zip |
build: port to Apple M1.
* configure (lit_align): Also don't calculate lit_align as 2
on Darwin/arm64; that is a hack needed on 32 bit x86 Mac OS.
* jmp.S: Define DEFUN for Arm64 on Darwin. We have to use %%
as the statement separator; semicolons are comments.
Use the same __aarch64__ code for __arm64__. We just need
some Apple specific tidbits before and after.
Diffstat (limited to 'jmp.S')
-rw-r--r-- | jmp.S | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -29,6 +29,11 @@ #define DEFUN(NAME) \ .global _ ## NAME ; \ _ ## NAME: ; +#elif __APPLE__ && __arm64__ +#define DEFUN(NAME) \ +.globl _ ## NAME %% \ +.p2align 2 %% \ +_ ## NAME: ; #elif __APPLE__ #define DEFUN(NAME) \ .globl _ ## NAME ; \ @@ -295,7 +300,11 @@ DEFUN(jmp_restore) mr %r3, %r4 blr -#elif __aarch64__ +#elif __aarch64__ || __arm64__ + +#if __APPLE__ + .section __TEXT,__text,regular,pure_instructions +#endif DEFUN(jmp_save) stp x19, x20, [x0, 0] @@ -329,6 +338,10 @@ DEFUN(jmp_restore) mov w0, w1 br x30 +#if __APPLE__ + .subsections_via_symbols +#endif + #elif _MIPS_SZPTR == 32 .set noreorder |