search for: __except_handler4

Displaying 2 results from an estimated 2 matches for "__except_handler4".

2014 Nov 10
2
[LLVMdev] RFC: How to represent SEH (__try / __except) in LLVM IR
...hy one > could not have a more powerful personality function that handles both types > of exception, but I intend to use the personality function from the CRT > directly for the time being. > > On x86_64, the SEH personality function is called __C_specific_handler. On > x86, it is __except_handler4 (or 3), but it's similar to > __C_specific_handler and doesn't change how we should represent this in IR. > > The personality function interprets some side tables similar to the > Itanium LSDA to find the filter function pointers that must be evaluated to > decide which excep...
2014 Nov 13
2
[LLVMdev] RFC: How to represent SEH (__try / __except) in LLVM IR
...tically, there is no reason why one could not have a more powerful personality function that handles both types of exception, but I intend to use the personality function from the CRT directly for the time being. On x86_64, the SEH personality function is called __C_specific_handler. On x86, it is __except_handler4 (or 3), but it's similar to __C_specific_handler and doesn't change how we should represent this in IR. The personality function interprets some side tables similar to the Itanium LSDA to find the filter function pointers that must be evaluated to decide which except handler to run at a gi...