]> andersk Git - splint.git/blame - src/mtMergeClauseList.c
Merged code tree with Dave Evans's version. Many changes to numberous to list....
[splint.git] / src / mtMergeClauseList.c
CommitLineData
28bf4b0b 1/*
2** LCLint - annotation-assisted static program checker
3** Copyright (C) 1994-2001 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.
19**
20** For information on lclint: lclint-request@cs.virginia.edu
21** To report a bug: lclint-bug@cs.virginia.edu
22** For more information: http://lclint.cs.virginia.edu
23*/
24/*
25** mtMergeClauseList.c
26**
27** based on list_template.c
28**
29** where T has T_equal (or change this) and T_unparse
30*/
31
32# include "lclintMacros.nf"
33# include "basic.h"
34# include "mtgrammar.h"
35
36mtMergeClauseList
37mtMergeClauseList_new ()
38{
39 return mtMergeClauseList_undefined;
40}
41
42static /*@notnull@*/ mtMergeClauseList
43mtMergeClauseList_newEmpty (void)
44{
45 mtMergeClauseList s = (mtMergeClauseList) dmalloc (sizeof (*s));
46
47 s->nelements = 0;
48 s->nspace = mtMergeClauseListBASESIZE;
49 s->elements = (mtMergeClause *) dmalloc (sizeof (*s->elements) * mtMergeClauseListBASESIZE);
50
51 return (s);
52}
53
54static void
55mtMergeClauseList_grow (/*@notnull@*/ mtMergeClauseList s)
56{
57 int i;
58 mtMergeClause *newelements;
59
60 s->nspace += mtMergeClauseListBASESIZE;
61
62 newelements = (mtMergeClause *) dmalloc (sizeof (*newelements) * (s->nelements + s->nspace));
63
64 if (newelements == (mtMergeClause *) 0)
65 {
66 llfatalerror (cstring_makeLiteral ("mtMergeClauseList_grow: out of memory!"));
67 }
68
69 for (i = 0; i < s->nelements; i++)
70 {
71 newelements[i] = s->elements[i];
72 }
73
74 sfree (s->elements);
75 s->elements = newelements;
76}
77
78mtMergeClauseList mtMergeClauseList_single (/*@keep@*/ mtMergeClause el)
79{
80 mtMergeClauseList s = mtMergeClauseList_new ();
81 s = mtMergeClauseList_add (s, el);
82 return s;
83}
84
85mtMergeClauseList mtMergeClauseList_add (mtMergeClauseList s, /*@keep@*/ mtMergeClause el)
86{
87 if (!mtMergeClauseList_isDefined (s))
88 {
89 s = mtMergeClauseList_newEmpty ();
90 }
91
92 if (s->nspace <= 0)
93 {
94 mtMergeClauseList_grow (s);
95 }
96
97 s->nspace--;
98 /*@i32@*/ s->elements[s->nelements] = el;
99 s->nelements++;
100
101 /*@i32@*/ return s;
102}
103
104mtMergeClauseList mtMergeClauseList_prepend (mtMergeClauseList s, /*@keep@*/ mtMergeClause el)
105{
106 int i;
107
108 if (!mtMergeClauseList_isDefined (s))
109 {
110 /*@i32@*/ return mtMergeClauseList_single (el);
111 }
112
113 if (s->nspace <= 0)
114 {
115 mtMergeClauseList_grow (s);
116 }
117
118 s->nspace--;
119
120 for (i = s->nelements; i > 0; i--)
121 {
122 s->elements[i] = s->elements [i - 1];
123 }
124
125 /*@i32@*/ s->elements[0] = el;
126 s->nelements++;
127
128 /*@i32@*/ return s;
129}
130
131cstring
132mtMergeClauseList_unparse (mtMergeClauseList s)
133{
134 return mtMergeClauseList_unparseSep (s, cstring_makeLiteralTemp (" "));
135}
136
137cstring
138mtMergeClauseList_unparseSep (mtMergeClauseList s, cstring sep)
139{
140 cstring st = cstring_undefined;
141
142 if (mtMergeClauseList_isDefined (s))
143 {
144 int i;
145
146 for (i = 0; i < s->nelements; i++)
147 {
148 if (i == 0)
149 {
150 st = mtMergeClause_unparse (s->elements[i]);
151 }
152 else
153 st = message ("%q%s%q", st, sep, mtMergeClause_unparse (s->elements[i]));
154 }
155 }
156
157 return st;
158}
159
160void
161mtMergeClauseList_free (mtMergeClauseList s)
162{
163 if (mtMergeClauseList_isDefined (s))
164 {
165 int i;
166
167 for (i = 0; i < s->nelements; i++) {
168 mtMergeClause_free (s->elements[i]);
169 }
170
171 sfree (s->elements);
172 sfree (s);
173 }
174}
175
This page took 0.065832 seconds and 5 git commands to generate.