如何在 GNU GAS 中使用字符文字来替换数字?

How to use character literals in GNU GAS to replace numbers?

例如,我想用 C 写 'a' 而不是 0x61

手册在以下位置提到了它们:https://sourceware.org/binutils/docs/as/Chars.html 但没有示例我不确定我是否理解。

/* Immediate. Without the `$`, does a memory access, and segfaults! */
mov $'a, %al
/* al == 0x61 */

/* Memory. */
mov c, %al
/* al == 0x62 */

c: .byte 'b

/* Space character works. */
mov $' , %al
/* al == 0x20 */

/* Backslash escapes work. */
mov $'\n , %al
/* al == 0x0A */

GitHub upstream.

实际上有一个例子:https://sourceware.org/binutils/docs-2.25/as/Characters.html :

.byte  74, 0112, 092, 0x4A, 0X4a, 'J, '\J # All the same value.

我不喜欢这种语法,原因如下:

  • 不能很好地与 C 预处理器配合使用:MACRO($'a) 失败,因为 cpp 将 ' 视为字符文字。
  • 可能会生成尾随空格 $',这很难观察到
  • 不像 C 语言