2 ** Splint - annotation-assisted static program checker
3 ** Copyright (C) 1994-2003 University of Virginia,
4 ** Massachusetts Institute of Technology
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.
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.
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"
35 /*@constant int functionClauseListBASESIZE;@*/
36 # define functionClauseListBASESIZE MIDBASESIZE
39 functionClauseList_new (void)
41 return functionClauseList_undefined
;
44 static /*@notnull@*/ functionClauseList
45 functionClauseList_newEmpty (void)
47 functionClauseList s
= (functionClauseList
) dmalloc (sizeof (*s
));
50 s
->nspace
= functionClauseListBASESIZE
;
51 s
->elements
= (functionClause
*) dmalloc (sizeof (*s
->elements
) * functionClauseListBASESIZE
);
57 functionClauseList_grow (/*@notnull@*/ functionClauseList s
)
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
];
77 s
->elements
= newelements
;
80 static functionClauseList
functionClauseList_add (/*@returned@*/ functionClauseList s
, /*@keep@*/ functionClause el
)
83 if (!functionClauseList_isDefined (s
))
85 s
= functionClauseList_newEmpty ();
90 functionClauseList_grow (s
);
94 s
->elements
[s
->nelements
] = el
;
100 static /*@only@*/ functionClauseList
functionClauseList_single (/*@keep@*/ functionClause el
)
102 functionClauseList s
= functionClauseList_new ();
103 s
= functionClauseList_add (s
, el
);
107 functionClauseList
functionClauseList_prepend (functionClauseList s
, /*@keep@*/ functionClause el
)
111 if (!functionClauseList_isDefined (s
))
113 return functionClauseList_single (el
);
118 functionClauseList_grow (s
);
123 for (i
= s
->nelements
; i
> 0; i
--)
125 s
->elements
[i
] = s
->elements
[i
- 1];
135 functionClauseList_unparseSep (functionClauseList s
, cstring sep
)
137 cstring st
= cstring_undefined
;
139 if (functionClauseList_isDefined (s
))
143 for (i
= 0; i
< s
->nelements
; i
++)
147 st
= functionClause_unparse (s
->elements
[i
]);
150 st
= message ("%q%s%q", st
, sep
, functionClause_unparse (s
->elements
[i
]));
158 functionClauseList_unparse (functionClauseList s
)
160 return functionClauseList_unparseSep (s
, cstring_makeLiteralTemp (" "));
164 functionClauseList_free (functionClauseList s
)
166 if (functionClauseList_isDefined (s
))
170 for (i
= 0; i
< s
->nelements
; i
++) {
171 functionClause_free (s
->elements
[i
]);
180 functionClauseList_setImplicitConstraints (/*@returned@*/ functionClauseList s
)
182 bool addedConstraints
;
186 DPRINTF ((message ("functionClauseList_setImplicitConstraints called ") ));
188 addedConstraints
= FALSE
;
190 c
= getImplicitFcnConstraints ();
192 if (constraintList_isEmpty(c
) )
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
))));
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
);