Displaying 3 results from an estimated 3 matches for "exceptioninformation".
2008 May 10
0
[LLVMdev] How to handle divide-by-zero exception?
...catch(ExceptionN exN) {
    catch-n-statements;
  }
  finally {
    final-statemements
  }
  tail-statements;
} 
foo$n(parameter-list)
{
  leading-statements.
  PushTheExceptionHandler(foo$x);
  try-statements
  PopTheExceptionHandler();
     
  final-statements;
  tail-statements;
} 
foo$x(ExceptionInformation info)
{
  // here the stack-pointer and frame-base-pointer
  // should be the same as at the beginning of the
  // try-block. Local variables from 'foo$n' are
  // at the same offsets.
  if (isExeception0) {
   catch-0-statements;
  }
  .
  else if (isExecptionN) {
    catch-n-statements;...
2008 May 09
4
[LLVMdev] How to handle divide-by-zero exception?
On May 8, 2008, at 9:35 PM, Nick Lewycky wrote:
> Talin wrote:
>> Currently it states in the language manual that the results of  
>> division
>> by zero are undefined. However, I'm curious as to how you would  
>> normally
>> handle either divide by zero or other "hardware" exceptions (null
>> pointer dereference and so on) and turn them into
2018 Mar 30
0
Wine release 3.5
...ionProperties.
      vulkan-1: Implement vkGetInstanceProcAddr.
Sebastian Lackner (4):
      bcrypt: Pass object to get_{alg, hash}_property instead of alg_id.
      bcrypt/tests: Add tests for BCryptDuplicateKey.
      bcrypt/tests: Add tests for auth data in AES GCM mode.
      ntdll: Set proper ExceptionInformation[0] for x86_64 exceptions.
Stefan Leichter (4):
      strmdll: Add stub dll.
      advapi32: Silence the fixme in EventActivityIdControl.
      include: Fix declaration of SelectDeviceDlg.
      wiaservc: Add some tests for SelectDeviceDlg.
Wei Xie (1):
      winex11: Avoid deadlock when setting c...