此问题在此处已有答案:
How to load address of function or label into register(1个答案)
3天前关闭。
MOV有两种形式可将imm移动到r64:
| Opcode | Instruction | Op/En | 64-Bit Mode | Compat/Leg Mode | Description |
| REX.W + B8+ rd | MOV r64, imm64 | E | Valid | N.E. | Move imm64 to r64. |
| REX.W + C7 /0 | MOV r/m64,imm32 | F | Valid | N.E. | Move imm32 sign extended to 64-bits to r/m64. |
在下面的示例中,第6行(第5、7行不是很重要,我们忽略它。)使用第二种形式。所以问题是,如果我们用'-Ttext='链接目标文件来指定一个可以适合32位的地址,例如'ld m.o -Ttext= 0x 1234',它工作得很好。但是如果我们使用一个比32位更宽的地址,例如,“ld m.o -Ttext= 0x 1234567887”,则它不起作用。
如果第6行是以第一种形式编码的,我认为上面的两个链接命令都能很好地工作。
那么如何引导气体编码第一种形式中的第6行?
1
2 .code64
3 .global _start
4 _start:
5 movq $1, %rdi
6 movq $str, %rsi
7 movq $len, %rdx
8 movl $1, %eax
9 syscall
10 movq $0, %rdi
11 movl $60, %eax
12 syscall
13 str: .asciz "hello write\n"
14 .equ len, . - str
# as m.s -o m.o
# ld m.o -Ttext=0x1234
0000000000001234 <_start>:
1234: 48 c7 c7 01 00 00 00 mov $0x1,%rdi
123b: 48 c7 c6 5e 12 00 00 mov $0x125e,%rsi
1242: 48 c7 c2 0d 00 00 00 mov $0xd,%rdx
1249: b8 01 00 00 00 mov $0x1,%eax
124e: 0f 05 syscall
1250: 48 c7 c7 00 00 00 00 mov $0x0,%rdi
1257: b8 3c 00 00 00 mov $0x3c,%eax
125c: 0f 05 syscall
# ld m.o -Ttext=0x1234567887
m.o: In function `_start':
(.text+0xa): relocation truncated to fit: R_X86_64_32S against `.text'
1条答案
按热度按时间euoag5mw1#
我知道了。我写了一个函数
并且gcc生成以下asm代码
返回值。我的例子现在是这样工作的。