[fpc-devel] Exceptions on wiki

Sven Barth pascaldragon at googlemail.com
Thu Aug 2 07:54:35 CEST 2018


Kirinn <kirinn at mooncore.eu> schrieb am Mi., 1. Aug. 2018, 23:30:

> Hi all,
>
> Inspired by Gareth aka. Kit's infectious enthusiasm, and the recent long
> discussion on exceptions on this list, I wrote up an article on
> Exceptions on the FPC wiki. (Strangely enough we didn't have one before.)
>
> http://wiki.freepascal.org/Exceptions
>
> I hope it'll be useful, and not entirely inaccurate! Particularly the
> part about performance. If a programmer knows exactly what each
> exception statement inserts in the code, that should help in deciding
> when to worry about the performance, and when to embrace the convenience.
>

Please note that you can't generalize the performance impact as it depends
on the used exception handling mechanism. By default FPC uses
setjmp/longjmp which exhibit the behavior you described. On Win64 however
SEH is used which - in that platform - relies on metadata inside the binary
to mark the areas for a protected block (no matter whether it's for
"except" or "finally"). On Win32 with SEH enabled (which isn't the default
currently) it is again different. And should we decide to support DWARF
exception frames that would again be different.

Regards,
Sven

>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freepascal.org/pipermail/fpc-devel/attachments/20180802/4b7513cd/attachment.html>


More information about the fpc-devel mailing list