When writing a function/procedure/method that utilizes Windows API functions or functions of certain Windows DLLs (e.g. ntdll.dll), which Delphi exception class should be used to raise the last Win32/Win64 errors?
Quoted from Delphi XE3 documentation about System.SysUtils.EExternal:
"Note:
EExternalclasses represent Win32 exception codes. TheExceptionRecordmember points to a Win32 exception record."From that point, I conclude that there are differences between Win32 and Win64 exception mechanism. What are the differences between them?
For debugging purpose—I mean in regards to the stack frames related stuffs—, are the differences lead to different code implementation of exception handling for each platform?
|
|
|||||
|
|
First of all, I am assuming that your question concerns Delphi, despite the Free Pascal tag. I'm basing that assumption on the fact that you quote the Delphi documentation. A Windows API message should be converted into an exception by calling The The underlying exception handling model is completely different between 32 and 64 bit Windows. The 32 bit model is stack based and the 64 bit model is table based. This means that the implementations of exception handling, and try/finally, are completely different between 32 and 64 bit architectures. The original implementation in XE2 of the 64 bit table based model had a large number of faults. I am pleased to say that, following a number of QC reports submitted by myself and others, the implementation in XE3 is much improved. Stack Overflow is not the place to go into the low-level details of the exception handling ABI of these two architectures. Instead I offer the following articles: |
|||||||||||||||||
|