gpt4 book ai didi

macos - 相对寻址错误 - Mac 10.10

转载 作者:行者123 更新时间:2023-12-03 05:06:07 24 4
gpt4 key购买 nike

我正在尝试学习如何编写汇编代码,并且是在 http://gnu.mirrors.pair.com/savannah/savannah//pgubook/ProgrammingGroundUp-0-8.pdf 的帮助下完成的。 。这是一个极好的资源,我正在尝试以 Macho64 格式为我的 Mac 编写 64 位代码。

我在绝对和相对寻址方面遇到了一些麻烦。

这是我的代码:

    DEFAULT REL
;PURPOSE: This program finds the maximum number of a set of data items
;

;VARIABLES: The registers have the following uses
;
; rbx - Holds the index of the data item being examined
; rdi - Largest data item found
; rax - Current data item
;
; The following memory locations are used:
;
; data_items - contains the item data. A 0 is used to terminate the data
;

global _main

section .data
data_items: dw 3,67,34,222,45,75,54,34,44,33,22,11,66,0
;These are the data items

section .text

_main:
mov rdi, 0 ;move 0 into index register
mov rax, [data_items+rbx*4] ;load the first data byte
mov rdi, rax ;since this is the first item, eax is biggest

start_loop: ;start loop
cmp 0, rax ;check to see if we've hit the end
je loop_exit
inc rdi
mov rax, [data_items+rbx*4]
cmp rdi, rax
jle start_loop

mov rdi,rax
jmp start_loop

loop_exit:
mov rax, 0x2000001 ;1 is the exit() syscall
syscall

这些是我收到的错误消息:

Samuels-MBP:Starting sam$ make
src/maximum.s:26: error: Mach-O 64-bit format does not support 32-bit absolute addresses
src/maximum.s:30: error: invalid combination of opcode and operands
src/maximum.s:33: error: Mach-O 64-bit format does not support 32-bit absolute addresses

所以我想知道是否有人可以帮助我。我查找了相对寻址,但找不到任何可以用简单语言解释我做错了什么的内容。

我确实知道 cmp 语句也是错误的,但我想我可以自己修复它。

最佳答案

Mach-O 64-bit does not support 32-bit absolute addressing because the image base is greater than 2^32 .

通常您应该使用 RIP 相对寻址来访问单个内存元素。但是,在您的情况下,您正在访问静态数组(在数据部分/bss部分中分配的数组)和
Addressing static arrays in 64 bit mode in Agner Fog's Optimizing Assembly manual 部分所述.

It is not possible to access static arrays with RIP-relative addressing and an index register.

所以当 NASM 处理你的代码时

mov rax, [data_items+rbx*4]

它无法执行 RIP 相对寻址,因此它尝试使用 32 位绝对 + 索引地址,这在 Mach-O 64 位中是不允许的,这会导致 NASM 报告错误。

Exampels 3.11b-3.11d 在 Agner 的手册中介绍了三种访问静态数组的方法。然而,由于 64 位 OSX 不允许 32 位绝对寻址(尽管在 Linux 中是可能的),第一个示例 3.11b 是不可能的。

示例 3.11c 使用图像基引用点__mh_execute_header。我没有研究过这个,但 3.11d 很容易理解。使用 lea 将 RIP+offset 加载到寄存器中,如下所示:

lea rsi, [rel data_items]

然后使用 mov rax, [data_items+rbx*4] 将代码更改为

mov rax, [rsi+rbx*4]

既然您已经取消了 DEFAULT REL,您应该能够省略 [rel data_items] 中的 rel。

关于macos - 相对寻址错误 - Mac 10.10,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26927278/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com