Some consistency changes to library & headers flags.
[splint-patched.git] / src / functionClauseList.c
blob1b0ff8d2325f578801b170f0e352317574e35cf1
1 /*
2 ** Splint - annotation-assisted static program checker
3 ** Copyright (C) 1994-2003 University of Virginia,
4 ** Massachusetts Institute of Technology
5 **
6 ** This program is free software; you can redistribute it and/or modify it
7 ** under the terms of the GNU General Public License as published by the
8 ** Free Software Foundation; either version 2 of the License, or (at your
9 ** option) any later version.
10 **
11 ** This program is distributed in the hope that it will be useful, but
12 ** WITHOUT ANY WARRANTY; without even the implied warranty of
13 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ** General Public License for more details.
15 **
16 ** The GNU General Public License is available from http://www.gnu.org/ or
17 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 ** MA 02111-1307, USA.
20 ** For information on splint: info@splint.org
21 ** To report a bug: splint-bug@splint.org
22 ** For more information: http://www.splint.org
25 ** functionClauseList.c
27 ** based on list_template.c
29 ** where T has T_equal (or change this) and T_unparse
32 # include "splintMacros.nf"
33 # include "basic.h"
35 /*@constant int functionClauseListBASESIZE;@*/
36 # define functionClauseListBASESIZE MIDBASESIZE
38 functionClauseList
39 functionClauseList_new (void)
41 return functionClauseList_undefined;
44 static /*@notnull@*/ functionClauseList
45 functionClauseList_newEmpty (void)
47 functionClauseList s = (functionClauseList) dmalloc (sizeof (*s));
49 s->nelements = 0;
50 s->nspace = functionClauseListBASESIZE;
51 s->elements = (functionClause *) dmalloc (sizeof (*s->elements) * functionClauseListBASESIZE);
53 return (s);
56 static void
57 functionClauseList_grow (/*@notnull@*/ functionClauseList s)
59 int i;
60 functionClause *newelements;
62 s->nspace += functionClauseListBASESIZE;
64 newelements = (functionClause *) dmalloc (sizeof (*newelements) * (s->nelements + s->nspace));
66 if (newelements == (functionClause *) 0)
68 llfatalerror (cstring_makeLiteral ("functionClauseList_grow: out of memory!"));
71 for (i = 0; i < s->nelements; i++)
73 newelements[i] = s->elements[i];
76 sfree (s->elements);
77 s->elements = newelements;
80 static functionClauseList functionClauseList_add (/*@returned@*/ functionClauseList s, /*@keep@*/ functionClause el)
81 /*@modifies s@*/
83 if (!functionClauseList_isDefined (s))
85 s = functionClauseList_newEmpty ();
88 if (s->nspace <= 0)
90 functionClauseList_grow (s);
93 s->nspace--;
94 s->elements[s->nelements] = el;
95 s->nelements++;
97 return s;
100 static /*@only@*/ functionClauseList functionClauseList_single (/*@keep@*/ functionClause el)
102 functionClauseList s = functionClauseList_new ();
103 s = functionClauseList_add (s, el);
104 return s;
107 functionClauseList functionClauseList_prepend (functionClauseList s, /*@keep@*/ functionClause el)
109 int i;
111 if (!functionClauseList_isDefined (s))
113 return functionClauseList_single (el);
116 if (s->nspace <= 0)
118 functionClauseList_grow (s);
121 s->nspace--;
123 for (i = s->nelements; i > 0; i--)
125 s->elements[i] = s->elements [i - 1];
128 s->elements[0] = el;
129 s->nelements++;
131 return s;
134 static cstring
135 functionClauseList_unparseSep (functionClauseList s, cstring sep)
137 cstring st = cstring_undefined;
139 if (functionClauseList_isDefined (s))
141 int i;
143 for (i = 0; i < s->nelements; i++)
145 if (i == 0)
147 st = functionClause_unparse (s->elements[i]);
149 else
150 st = message ("%q%s%q", st, sep, functionClause_unparse (s->elements[i]));
154 return st;
157 cstring
158 functionClauseList_unparse (functionClauseList s)
160 return functionClauseList_unparseSep (s, cstring_makeLiteralTemp (" "));
163 void
164 functionClauseList_free (functionClauseList s)
166 if (functionClauseList_isDefined (s))
168 int i;
170 for (i = 0; i < s->nelements; i++) {
171 functionClause_free (s->elements[i]);
174 sfree (s->elements);
175 sfree (s);
179 functionClauseList
180 functionClauseList_setImplicitConstraints (/*@returned@*/ functionClauseList s)
182 bool addedConstraints;
184 constraintList c;
186 DPRINTF ((message ("functionClauseList_setImplicitConstraints called ") ));
188 addedConstraints = FALSE;
190 c = getImplicitFcnConstraints ();
192 if (constraintList_isEmpty(c) )
194 return s;
197 functionClauseList_elements(s, el)
199 if (functionClause_isRequires(el))
201 functionConstraint con = functionClause_getRequires(el);
203 if (functionConstraint_hasBufferConstraint(con))
205 if (functionConstraint_isBufferConstraint (con))
207 constraintList implCons = getImplicitFcnConstraints ();
209 DPRINTF ((message ("functionClauseList_ImplicitConstraints adding the implict constraints: %s to %s",
210 constraintList_unparse(implCons), constraintList_unparse (con->constraint.buffer))));
212 functionConstraint_addBufferConstraints (con, constraintList_copy (implCons) );
214 addedConstraints = TRUE;
216 DPRINTF ((message ("functionClauseList_ImplicitConstraints the new constraint is %s",
217 functionConstraint_unparse (con))));
220 else
222 llassert (FALSE);
228 end_functionClauseList_elements;
230 if (!addedConstraints)
232 functionConstraint fCon;
233 functionClause fClause;
235 constraintList implCons = getImplicitFcnConstraints ();
237 fCon = functionConstraint_createBufferConstraint(constraintList_copy (implCons) );
238 fClause = functionClause_createRequires(fCon);
239 s = functionClauseList_add(s, fClause);
243 return s;