gpt4 book ai didi

c++ - 分析崩溃 - 将反汇编指令翻译成 C++ 等价物

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:25:09 29 4
gpt4 key购买 nike

我正在尝试调试崩溃。 (ACCESS_VIOLATION)

下面是反汇编片段。我标记了发生异常的行。在下面显示的实际 C++ 代码中,它对应什么指令?

反汇编:

420: for( Uint32 i = 0; i < m_children.size(); ++i){
06A923D3 8B 46 0C mov eax,dword ptr [esi+0Ch]
06A923D6 57 push edi
06A923D7 33 FF xor edi,edi
--> 06A923D9 39 38 cmp dword ptr [eax],edi
06A923DB 76 59 jbe ICategoryNode::iterate+66h (6A92436h)
06A923DD 53 push ebx
06A923DE 55 push ebp
06A923DF 8B 2D 04 60 B0 06 mov ebp,dword ptr [__imp_::AssertionFailure::logAssert (6B06004h)]
06A923E5 33 DB xor ebx,ebx
421: bool keepGoing = CategoryImp::recursiveIterator(handler, *m_children[i]);

实际的 C++ 代码:

void ICategoryNode::iterate(ICategoryHandler& handler) const {
for(Uint32 i = 0; i < m_children.size(); ++i) {
bool keepGoing = CategoryImp::recursiveIterator(handler, *m_children[i]);
if(!keepGoing)
return;
}
}

最佳答案

看起来 cmp dword ptr [eax],edi 对应于 m_children 的 size 成员的解引用被内联到小于检查。

很可能,您的 this 指针无效。您可能已经在空指针或已删除的对象或其他东西上调用了 ICategoryNode::iterate(如果 eax 的值非常低,它可能是一个空指针 - 但在无论如何,检查上面的堆栈帧,你应该能够得到被调用对象的错误地址)。

关于c++ - 分析崩溃 - 将反汇编指令翻译成 C++ 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7289718/

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