gpt4 book ai didi

c - 程序集 64 位无效有效地址

转载 作者:太空宇宙 更新时间:2023-11-04 07:08:21 25 4
gpt4 key购买 nike

我正在创建一个可以从 64 位 asm 中的 C 代码调用的函数这是 C 等效函数:

 /*
* x and y are two arrays of floats, this function calculates the
* distance beetween those two objects
*/
float dist(float *x, float *y, int length)
{
float c = 0;
int i;
for (i = 0; i < length; ++i)
{
c += (x[i] - y[i]) * (x[i] - y[i]);

}

return sqrt(c);
}

这是汇编代码:

section .text       

global distanza64

distanza64:



push rbp ; save base pointer
mov rbp, rsp
pushaq ; save general registers


; C function
; float dist(float *x, float *y, int length)
; in xmm0 there is *x, in xmm1 float *y, in rdi there is length
loop:
cmp rdi, 0 ; cycle counter
je end_loop
movss xmm2, [xmm0] ; x[i]
subss xmm2, [xmm1] ; x[i] = x[i] - y[i] i.e (a-b)
mulss xmm2, xmm2 ; x[i] = x[i] * x[i] i.e (a-b)*(a-b)
addss xmm3, xmm2 ; c += x[i] i.e c = (a-b)*(a-b)
addsd xmm0, 8 ; vgo to next address 8*8 = 64-bit
addsd xmm1, 8 ; same as above
dec rdi ; length--
end_loop:
sqrtss xmm3, xmm3 ; c = sqrt(c)
movss xmm0, xmm3 ; in xmm0 there is the final value

popaq
mov rsp, rbp
pop rbp
ret

我使用 nasm 编译:nasm -f elf64 distanza.asm
问题是当我尝试使用 xmm0 和 xmm1 处的地址获取 x[i] 和 y[i] 的值时:

 movss xmm2, [xmm0]      
subss xmm2, [xmm1]

它不会编译:无效的有效地址。如何使用存储在 xmm0 中的地址来获取内存中的值?我必须使用 xmm0,因为它是存储参数 float *x 的寄存器。

最佳答案

float* 是一个指针,它肯定不在 xmm0 中。

; float dist(float *x, float *y, int length)

; in xmm0 there is *x, in xmm1 float *y, in rdi there is length

实际上,rdi*xrsi*yrdx长度。阅读 abi documentationoverview at wikipedia .

此外,pusha/popa 在 64 位模式下不存在。

关于c - 程序集 64 位无效有效地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30413279/

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