blob: 1dc5a9590e0d5f3681f1b1303f2710f8b50edfe0 (
plain)
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
86
87
88
|
/* Copyright (C) 2008-2025 Free Software Foundation, Inc. */
/* This file is part of GNU Modula-2.
GNU Modula-2 is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.
GNU Modula-2 is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License along
with gm2; see the file COPYING. If not, write to the Free Software
Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
#include <stdio.h>
#include <stdlib.h>
// a c++ example of Modula-2 exception handling
static int *ip = NULL;
void fly (void)
{
printf("fly main body\n") ;
if (ip == NULL)
throw;
if (*ip == 0)
throw;
if (4 / (*ip) == 4)
printf("yes it worked\n");
else
printf("no it failed\n");
}
/*
* a CPP version of the Modula-2 example given in the ISO standard.
* This is a hand translation of the equivalent except2.mod file in this
* directory which is written to prove that the underlying CPP
* runtime system will support ISO Modula-2 exceptions and to reinforce
* my understanding of how the GCC trees are constructed and what
* state is held where..
*/
void tryFlying (void)
{
again_tryFlying:
printf("tryFlying main body\n");
try {
fly() ;
}
catch (...) {
printf("inside tryFlying exception routine\n") ;
if ((ip != NULL) && ((*ip) == 0)) {
*ip = 1;
// retry
goto again_tryFlying;
}
printf("did't handle exception here so we will call the next exception routine\n") ;
throw; // unhandled therefore call previous exception handler
}
}
void keepFlying (void)
{
again_keepFlying:
printf("keepFlying main body\n") ;
try {
tryFlying();
}
catch (...) {
printf("inside keepFlying exception routine\n");
if (ip == NULL) {
ip = (int *)malloc(sizeof(int));
*ip = 0;
goto again_keepFlying;
}
throw; // unhandled therefore call previous exception handler
}
}
main ()
{
keepFlying();
printf("all done\n");
}
|