4 * Since using watchpoints can be very slow, we have to take some pains to
5 * ensure that we don't run too long with them enabled or we run the risk
6 * of having the test timeout. To help avoid this, we insert some marker
7 * functions in the execution stream so we can set breakpoints at known
8 * locations, without worrying about invalidating line numbers by changing
9 * this file. We use null bodied functions are markers since gdb does
10 * not support breakpoints at labeled text points at this time.
12 * One place we need is a marker for when we start executing our tests
13 * instructions rather than any process startup code, so we insert one
14 * right after entering main(). Another is right before we finish, before
15 * we start executing any process termination code.
17 * Another problem we have to guard against, at least for the test
18 * suite, is that we need to ensure that the line that causes the
19 * watchpoint to be hit is still the current line when gdb notices
20 * the hit. Depending upon the specific code generated by the compiler,
21 * the instruction after the one that triggers the hit may be part of
22 * the same line or part of the next line. Thus we ensure that there
23 * are always some instructions to execute on the same line after the
24 * code that should trigger the hit.
38 struct foo struct1
, struct2
, *ptr1
, *ptr2
;
67 void recurser (x
) int x
;
95 x
= 1; /* second x assignment */
103 /* The point of this is that we will set a breakpoint at this call.
105 Then, if DECR_PC_AFTER_BREAK equals the size of a function call
106 instruction (true on a sun3 if this is gcc-compiled--FIXME we
107 should use asm() to make it work for any compiler, present or
108 future), then we will end up branching to the location just after
109 the breakpoint. And we better not confuse that with hitting the
135 for (count
= 0; count
< 4; count
++) {
137 ival3
= count
; ival4
= count
;
139 ival1
= count
; /* Outside loop */
141 ival3
= count
; ival4
= count
;
145 static char msg
[] = "type stuff for buf now:";
146 write (1, msg
, sizeof (msg
) - 1);
147 read (0, &buf
[0], 5);
151 /* We have a watchpoint on ptr1->val. It should be triggered if
152 ptr1's value changes. */
155 /* This should not trigger the watchpoint. If it does, then we
156 used the wrong value chain to re-insert the watchpoints or we
157 are not evaluating the watchpoint expression correctly. */
161 /* We have a watchpoint on ptr1->val. It should be triggered if
162 ptr1's value changes. */
165 /* This should not trigger the watchpoint. If it does, then we
166 used the wrong value chain to re-insert the watchpoints or we
167 are not evaluating the watchpoint expression correctly. */
171 /* We're going to watch locals of func2, to see that out-of-scope
172 watchpoints are detected and properly deleted.
176 /* This invocation is used for watches of a single
180 /* This invocation is used for watches of an expression
181 involving a local variable. */
184 /* This invocation is used for watches of a static
185 (non-stack-based) local variable. */
188 /* This invocation is used for watches of a local variable
189 when recursion happens.