blob: 0bb75623a70de33c87ea9ad841bca2387a08bdf0 (
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
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/* This testcase is part of GDB, the GNU debugger.
Copyright 2008-2017 Free Software Foundation, Inc.
This program 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 3 of the License, or
(at your option) any later version.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */
/*
* Test restoration of machine state
*/
extern void hide (int);
/* Test register variable
Requires -- compiler honors 'register'. */
void
register_state (void)
{
register int a = 0;
hide (a); /* External function to defeat optimization. */
a++; /* register_state: set breakpoint here */
hide (a); /* register post-change */
}
/* Test auto variable (whatever that means). */
void
auto_state (void)
{
auto int a = 0;
hide (a); /* External function to defeat optimization. */
a++; /* auto_state: set breakpoint here */
hide (a); /* auto post-change */
}
/* Test function-static variable. */
void
function_static_state (void)
{
static int a = 0;
hide (a); /* External function to defeat optimization. */
a++; /* function_static_state: set breakpoint here */
hide (a); /* function static post-change */
}
/* Test module-static variable. */
static int astatic;
void
module_static_state (void)
{
astatic = 0;
hide (astatic); /* External function to defeat optimization. */
astatic++; /* module_static_state: set breakpoint here */
hide (astatic); /* module static post-change */
}
/* Test module-global variable. */
int aglobal;
void
module_global_state (void)
{
aglobal = 0;
hide (aglobal); /* External function to defeat optimization. */
aglobal++; /* module_global_state: set breakpoint here */
hide (aglobal); /* module global post-change */
}
/* main test driver */
int
main (int argc, char **argv)
{
register_state (); /* begin main */
auto_state ();
function_static_state ();
module_static_state ();
module_global_state ();
return 0; /* end main */
}
|