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
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 fcnNodeListBASESIZE;@*/
36 # define fcnNodeListBASESIZE SMALLBASESIZE
39 fcnNodeList_new (void)
41 return fcnNodeList_undefined
;
44 static /*@notnull@*/ /*@only@*/ fcnNodeList
45 fcnNodeList_newEmpty (void)
47 fcnNodeList s
= (fcnNodeList
) dmalloc (sizeof (*s
));
50 s
->nspace
= fcnNodeListBASESIZE
;
51 s
->elements
= (fcnNode
*) dmalloc (sizeof (*s
->elements
) * fcnNodeListBASESIZE
);
57 fcnNodeList_grow (/*@notnull@*/ fcnNodeList s
)
62 s
->nspace
+= fcnNodeListBASESIZE
;
63 newelements
= (fcnNode
*) dmalloc (sizeof (*newelements
)
64 * (s
->nelements
+ s
->nspace
));
66 if (newelements
== (fcnNode
*) 0)
68 llfatalerror (cstring_makeLiteral ("fcnNodeList_grow: out of memory!"));
71 for (i
= 0; i
< s
->nelements
; i
++)
73 newelements
[i
] = s
->elements
[i
];
77 s
->elements
= newelements
;
81 fcnNodeList_add (fcnNodeList s
, fcnNode el
)
83 if (fcnNodeList_isUndefined (s
))
85 s
= fcnNodeList_newEmpty ();
92 s
->elements
[s
->nelements
] = el
;
100 fcnNodeList_unparse (fcnNodeList s
)
103 cstring st
= cstring_undefined
;
105 if (fcnNodeList_isDefined (s
))
107 for (i
= 0; i
< s
->nelements
; i
++)
109 st
= message ("%q%q\n", st
, fcnNode_unparse (s
->elements
[i
]));
115 # endif /* DEADCODE */
118 fcnNodeList_free (/*@null@*/ /*@only@*/ fcnNodeList s
)
123 for (i
= 0; i
< s
->nelements
; i
++)
125 fcnNode_free (s
->elements
[i
]);