gpt4 book ai didi

c - switch 语句汇编代码到c

转载 作者:行者123 更新时间:2023-11-30 19:14:56 25 4
gpt4 key购买 nike

我很难将 switch 语句从汇编代码逆向工程为 C 程序。

.file 
"switch_prob2-soln.c"
.text
.globl switch_prob
.type switch_prob, @function
switch_prob:
.LFB0:
.cfi_startproc
subq $60, %rsi
cmpq $5, %rsi
ja .L2
jmp *.L7(,%rsi,8)
.section .rodata
.align 8
.align 4
.L7:
.quad .L3
.quad .L2
.quad .L3
.quad .L4
.quad .L5
.quad .L6
.text
.L3:
leaq 0(,%rdi,8), %rax
ret
.L4:
movq %rdi, %rax
sarq $3, %rax
ret
.L5:
movq %rdi, %rax
salq $4, %rax
subq %rdi, %rax
movq %rax, %rdi
.L6:
imulq %rdi, %rdi
.L2:
leaq 75(%rdi), %rax
ret
.cfi_endproc
.LFE0:
.size switch_prob, .-switch_prob
.ident "GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3"
.section .note.GNU-stack,"",@progbits

这是我的基本 C 程序:

long switch_prob(long x, long n)
{
long result = x;
switch(n) {

}
return result;
}

我所要求的只是一些有用的入门建议。我知道我可以使用 -S 或 -O1 进行编译。感谢您抽出时间。

这是我的 C 代码在汇编中显示的内容 enter image description here

这是我的c代码

enter image description here

如果有人可以帮助我,那就太棒了,我正在努力让四边形显示出来323456

最佳答案

目前尚不清楚您遇到了什么问题。我希望您知道它使用跳转表。

很明显,您有 6 个案例和一个默认案例,并且有一些共享代码。说明非常简单,我相信您不会有任何问题。

至于 switch 表达式本身,它只是一条指令完成的简单转换。

我试图不泄露解决方案,毕竟你征求了建议以开始使用。您需要更多提示吗?

关于c - switch 语句汇编代码到c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33381475/

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