1 /* PSPP - computes sample statistics.
2 Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3 Written by Ben Pfaff <blp@gnu.org>.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 This program is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25 /* BREAK transformation. */
30 struct break_trns *next; /* Next in chain of BREAKs associated
31 with a single LOOP. */
32 int loop_term; /* t_trns[] index to jump to; backpatched
36 /* Types of control structures. */
43 /* Control structure info. */
46 int type; /* One of CST_*. */
47 struct ctl_stmt *down; /* Points toward the bottom of ctl_stack. */
48 struct trns_header *trns; /* Associated transformation. */
49 struct break_trns *brk; /* (LOOP only): Chain of associated BREAKs. */
52 /* Goto transformation. */
57 int dest; /* t_trns[] index of destination of jump. */
60 /* DO IF/ELSE IF/ELSE transformation. */
65 struct ctl_stmt ctl; /* DO IF: Control information for nesting. */
67 /* Keeping track of clauses. */
68 struct do_if_trns *next; /* Points toward next ELSE IF. */
69 struct goto_trns *brk; /* ELSE IF: jumps out of DO IF structure. */
70 int has_else; /* DO IF: 1=there's been an ELSE. */
73 struct expression *cond; /* Condition. */
74 int false_jump; /* t_trns[] index of destination when false. */
75 int missing_jump; /* t_trns[] index to break out of DO IF. */
78 /* Top of the control structure stack. */
79 extern struct ctl_stmt *ctl_stack;
81 void discard_ctl_stack (void);
83 #endif /* !do_ifP_h */