我们如何在 Apple 平台的 AArch64 程序集中在一行中编写多个语句?
How do we write multiple statements on one line in AArch64 assembly for Apple platforms?
我正在将一些 Arm64 汇编语言移植到 M1。
其中一些是通过 C 预处理生成的,其中单个 #define
宏生成多个以分号分隔的语句。
不幸的是,在 M1 上,汇编程序将分号视为注释字符。
例如:
#define DEFUN(NAME) \
.globl _ ## NAME ; \
.palign 2 ; \
_ ## NAME:
导致 .globl
指令之后的所有内容都被视为注释。
MacOS as
手册页没有提供任何线索;它没有涵盖语法。
是否有用于分隔语句的替代字符?我尝试使用 @
和 !
,但都被拒绝了。
this question 的答案在这里没有用。
针对 Apple 平台的 aarch64 程序集,您可以使用 %%
作为分隔符。不确定 if/where 它是否已记录在案,但它是在 LLVM 源代码中设置的 here. And even if it might not be documented explicitly anywhere, it is used in a number of places, e.g. in libunwind and compiler-rt,因此它可能不会随心所欲地改变。
我正在将一些 Arm64 汇编语言移植到 M1。
其中一些是通过 C 预处理生成的,其中单个 #define
宏生成多个以分号分隔的语句。
不幸的是,在 M1 上,汇编程序将分号视为注释字符。
例如:
#define DEFUN(NAME) \
.globl _ ## NAME ; \
.palign 2 ; \
_ ## NAME:
导致 .globl
指令之后的所有内容都被视为注释。
MacOS as
手册页没有提供任何线索;它没有涵盖语法。
是否有用于分隔语句的替代字符?我尝试使用 @
和 !
,但都被拒绝了。
this question 的答案在这里没有用。
针对 Apple 平台的 aarch64 程序集,您可以使用 %%
作为分隔符。不确定 if/where 它是否已记录在案,但它是在 LLVM 源代码中设置的 here. And even if it might not be documented explicitly anywhere, it is used in a number of places, e.g. in libunwind and compiler-rt,因此它可能不会随心所欲地改变。