search for: addvectoredexceptionhandler

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

2014 May 30
2
[LLVMdev] Use of Vectored Exception Handlers for crash recovery
.... Note that this does mean // we will be alerted of exceptions *before* structured exception // handling has the opportunity to catch it. But that isn't likely // to cause problems because nowhere in the project is SEH being // used. However, my understanding is that the handler specified to AddVectoredExceptionHandler will get called for EVERYTHING. In particular, since we install the handler at the front of the list, if some internal Windows library wrote something like this: __try { } except (...) { // handle exception } Then our handler would get called before the Windows handler. Furthermore, we seem t...
2015 Oct 30
4
Can JIT be targeted to 32-bit in a 64-bit Wndows environment?
You actually can mix 32 and 64 bit code in the same Windows process, but only with great effort. Fixing PR24233 is probably easier. :) We know how to generate the info, but we still have to get it registered... On Thu, Oct 29, 2015 at 2:19 PM, Lang Hames via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Hi Dibyendu, > > I'm not familiar with Windows at all, but I assume you