gpt4 book ai didi

c++ - 与C++和汇编相关,什么是ebp+8?

转载 作者:可可西里 更新时间:2023-11-01 17:36:45 25 4
gpt4 key购买 nike

我有以下 C++ 代码:

#include <tuple>
std::tuple<int, bool> foo()
{
return std::make_tuple(128, true);
}
int main()
{
auto result = foo();
}

以下是 foo() 函数的反汇编版本:

push    ebp
mov ebp, esp
sub esp, 24
mov BYTE PTR [ebp-13], 1 // second argument
mov DWORD PTR [ebp-12], 128 // first argument
mov eax, DWORD PTR [ebp+8] // what is this? why we need this here?
sub esp, 4
lea edx, [ebp-13]
push edx // second
lea edx, [ebp-12]
push edx // first
push eax // same as "ebp+8", what is this?
call std::tuple<std::__decay_and_strip<int>::__type, std::__decay_and_strip<bool>::__type> std::make_tuple<int, bool>(int&&, bool&&)
add esp, 12
mov eax, DWORD PTR [ebp+8]
leave
ret 4

据我所知,ebp+X 用于访问函数参数,但foo 没有这样的东西,那么编译器为什么要使用它呢?它似乎是 std::make_tuple() 的第一个参数。

编辑:

我不是在使用优化,我只是想学习 RE。

Assembly 的主要部分:

lea     eax, [ebp-16]  // loaction of local variable
sub esp, 12
push eax // as hidden argument for foo
call foo()
add esp, 12

最佳答案

调用约定指定通过作为参数传递的隐藏指针返回非平凡对象。这就是你所看到的。从技术上讲,您的代码是这样实现的:

std::tuple<int, bool>* foo(std::tuple<int, bool>* result)
{
*result = std::make_tuple(128, true);
return result;
}
int main()
{
std::tuple<int, bool> result;
foo(&result);
}

关于c++ - 与C++和汇编相关,什么是ebp+8?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41451618/

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