1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
//===-- gcc_personality_test_helper.cxx -----------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <stdlib.h>
#include <stdio.h>
extern "C" {
extern void foo_clean(void* x);
extern void bar_clean(void* x);
extern void register_foo_local(int* x);
extern void register_bar_local(int* x);
extern void done_foo();
extern void done_bar();
extern void foo();
}
static int* foo_x = NULL;
void register_foo_local(int* x)
{
foo_x = x;
}
static int* bar_x = NULL;
void register_bar_local(int* x)
{
bar_x = x;
}
static bool foo_clean_called = false;
void foo_clean(void* x)
{
if ( foo_x == NULL )
abort();
if ( foo_x != (int*)x)
abort();
foo_clean_called = true;
}
static bool bar_clean_called = false;
void bar_clean(void* x)
{
if ( bar_x == NULL )
abort();
if ( bar_x != (int*)x)
abort();
bar_clean_called = true;
}
void done_foo()
{
}
void done_bar()
{
throw "done";
}
//
// foo() is in gcc_personality_test.c and calls bar() which
// calls done_bar() which throws an exception.
// main() will catch the exception and verify that the cleanup
// routines for foo() and bar() were called by the personality
// function.
//
int main()
{
try {
foo();
}
catch(...) {
if ( !foo_clean_called )
abort();
if ( !bar_clean_called )
abort();
return 0;
}
abort();
}
|