gpt4 book ai didi

delphi - 如何在 asm block 中引发异常?

转载 作者:行者123 更新时间:2023-12-03 15:12:10 25 4
gpt4 key购买 nike

我想在 X64 asm block 中引发异常。

假设我有一个像这样的函数:

function Example(Values: array of integer): integer;
asm
or rcx,rcx
jz @error
....

我知道我可以读取指针并获取 AV,但是我想提出一个更具描述性的错误。

我可以创建一个附加函数并调用该函数:

asm
or rcx,rcx
jz @error
....
@error:
mov ecx, 1
mov rdx, ErrorString
jmp RaiseError
....

function RaiseError(code: integer; const Msg: string);
begin
case code of
1: raise EEmptyArrayError.Create(Msg);

但是,错误将发生在引起该错误的函数之外。如何获取(似乎)源自 Example 函数内部的异常。

请注意,这是 X64,因此所有适用于 X86 的 SEH 答案都不好,因为 X64 使用 VEH。

最佳答案

raise 的完整语法是:

raise Exception at address  

您需要做的就是将当前 IP 作为参数传递,错误过程可以将其传递给异常。

您可以使用 lea rax, [rip] 获取 RIP。

因此代码变为:

asm
or rcx,rcx
jz @error
....
@error:
mov ecx, 1
mov rdx, ErrorString
lea r8,[rip]
jmp RaiseError
....

function RaiseError(code: integer; const Msg: string; address: pointer);
begin
case code of
1: raise EEmptyArrayError.Create(Msg) at address;

当然在这种情况下使用起来更容易

function RaiseError(code: integer; const Msg: string);
begin
case code of
1: raise EEmptyArrayError.Create(Msg) at ReturnAddress;

注意
在这种情况下,如果保留 jmp,则错误似乎源自调用例程,在这种情况下,这实际上是正确的。如果您希望异常将罪魁祸首指向您的 asm 代码,请使用调用。

关于delphi - 如何在 asm block 中引发异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31594092/

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