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 ** quantifierNodeList.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 quantifierNodeListBASESIZE;@*/
36 # define quantifierNodeListBASESIZE SMALLBASESIZE
38 /*@only@*/ quantifierNodeList
39 quantifierNodeList_new (void)
41 quantifierNodeList s
= (quantifierNodeList
) dmalloc (sizeof (*s
));
44 s
->nspace
= quantifierNodeListBASESIZE
;
45 s
->elements
= (quantifierNode
*)
46 dmalloc (sizeof (*s
->elements
) * quantifierNodeListBASESIZE
);
52 quantifierNodeList_grow (quantifierNodeList s
)
55 quantifierNode
*newelements
;
57 s
->nspace
+= quantifierNodeListBASESIZE
;
59 newelements
= (quantifierNode
*) dmalloc (sizeof (*newelements
)
60 * (s
->nelements
+ s
->nspace
));
62 for (i
= 0; i
< s
->nelements
; i
++)
64 newelements
[i
] = s
->elements
[i
];
68 s
->elements
= newelements
;
72 quantifierNodeList_add (quantifierNodeList s
, quantifierNode el
)
75 quantifierNodeList_grow (s
);
78 s
->elements
[s
->nelements
] = el
;
84 /*@only@*/ quantifierNodeList
85 quantifierNodeList_copy (quantifierNodeList s
)
87 quantifierNodeList r
= quantifierNodeList_new ();
89 quantifierNodeList_elements (s
, x
)
91 r
= quantifierNodeList_add (r
, quantifierNode_copy (x
));
92 } end_quantifierNodeList_elements
;
98 quantifierNodeList_unparse (quantifierNodeList s
)
100 cstring st
= cstring_undefined
;
102 quantifierNodeList_elements (s
, current
)
104 st
= message ("%q%s %q",
105 st
, ltoken_getRawString (current
->quant
),
106 varNodeList_unparse (current
->vars
));
107 } end_quantifierNodeList_elements
;
114 quantifierNodeList_free (quantifierNodeList s
)
117 for (i
= 0; i
< s
->nelements
; i
++)
119 quantifierNode_free (s
->elements
[i
]);
125 # endif /* DEADCODE */