]> andersk Git - splint.git/blame - src/stateValue.c
Fixed line numbering when multi-line macro parameters are used.
[splint.git] / src / stateValue.c
CommitLineData
28bf4b0b 1/*
11db3170 2** Splint - annotation-assisted static program checker
77d37419 3** Copyright (C) 1994-2002 University of Virginia,
28bf4b0b 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**
155af98d 20** For information on splint: info@splint.org
21** To report a bug: splint-bug@splint.org
11db3170 22** For more information: http://www.splint.org
28bf4b0b 23*/
24/*
25** stateValue.c
26*/
27
1b8ae690 28# include "splintMacros.nf"
28bf4b0b 29# include "llbasic.h"
30
31extern
2c88d156 32/*@notnull@*/ stateValue stateValue_create (int value, stateInfo info) {
28bf4b0b 33 stateValue sv = (stateValue) dmalloc (sizeof (*sv));
34
35 sv->value = value;
36 sv->info = info;
2c88d156 37 sv->implicit = FALSE;
38 return sv;
39}
40
41extern
42/*@notnull@*/ stateValue stateValue_createImplicit (int value, stateInfo info) {
43 stateValue sv = (stateValue) dmalloc (sizeof (*sv));
28bf4b0b 44
2c88d156 45 sv->value = value;
46 sv->info = info;
47 sv->implicit = TRUE;
28bf4b0b 48 return sv;
49}
50
51stateValue stateValue_copy (stateValue s) {
52 stateValue res;
53 llassert (stateValue_isDefined (s));
54 res = stateValue_create (s->value, stateInfo_copy (s->info));
2c88d156 55 res->implicit = s->implicit;
28bf4b0b 56 return res;
57}
58
59bool stateValue_sameValue (stateValue s1, stateValue s2)
60{
61 if (stateValue_isDefined (s1) && stateValue_isDefined (s2))
62 {
63 return s1->value == s2->value;
64 }
65 else
66 {
67 return !stateValue_isDefined (s1) && !stateValue_isDefined (s2);
68 }
69}
70
71extern
72cstring stateValue_unparse (stateValue s) {
73 if (stateValue_isDefined (s))
74 {
75 return (message ("%d:%q", s->value, stateInfo_unparse (s->info)));
76 }
77 else
78 {
79 return (cstring_makeLiteral ("<stateValue_undefined>"));
80 }
81}
82
83void stateValue_updateValue (stateValue s, int value, stateInfo info)
84{
85 llassert (stateValue_isDefined (s));
86 s->value = value;
87
88 if (stateInfo_isDefined (info)) {
89 stateInfo_free (s->info);
90 s->info = info;
91 }
92
93 DPRINTF (("update state value: %s", stateValue_unparse (s)));
94}
95
96void stateValue_updateValueLoc (stateValue s, int value, fileloc loc)
97{
98 llassert (stateValue_isDefined (s));
99
100 DPRINTF (("Update state: %s -> %d at %s", stateValue_unparse (s), value,
101 fileloc_unparse (loc)));
102
103 s->value = value;
104
105 if (fileloc_isDefined (loc)) {
106 s->info = stateInfo_updateLoc (s->info, loc);
107 }
108}
109
110void stateValue_update (stateValue res, stateValue val)
111{
112 llassert (stateValue_isDefined (res));
abd7f895 113 llassert (stateValue_isDefined (val));
114
28bf4b0b 115 res->value = val->value;
116 res->info = stateInfo_update (res->info, val->info);
abd7f895 117
28bf4b0b 118 DPRINTF (("update state: %s", stateValue_unparse (res)));
119}
120
121void stateValue_show (stateValue s, metaStateInfo msinfo)
122{
123 if (stateValue_isDefined (s))
124 {
125 stateInfo info = stateValue_getInfo (s);
126
127 if (stateInfo_isDefined (info))
128 {
129 if (fileloc_isDefined (info->loc))
130 {
131 llgenindentmsg (message
2c88d156 132 ("State becomes %q",
133 stateValue_unparseValue (s, msinfo)),
28bf4b0b 134 info->loc);
135 }
136 }
137 }
138}
139
2c88d156 140/*@only@*/ cstring stateValue_unparseValue (stateValue s, metaStateInfo msinfo)
28bf4b0b 141{
2c88d156 142 if (stateValue_isImplicit (s))
143 {
144 return message ("implicitly %s",
145 metaStateInfo_unparseValue (msinfo,
146 stateValue_getValue (s)));
147 }
148 else
149 {
150 return cstring_copy (metaStateInfo_unparseValue (msinfo,
151 stateValue_getValue (s)));
152 }
28bf4b0b 153}
154
155int stateValue_getValue (stateValue s)
156{
ccf0a4a8 157 if (!stateValue_isDefined (s))
158 {
159 llassert (stateValue_isDefined (s));
160 return stateValue_error;
161 }
162
28bf4b0b 163 return s->value;
164}
165
2c88d156 166bool stateValue_isImplicit (stateValue s)
167{
168 llassert (stateValue_isDefined (s));
169 return s->implicit;
170}
171
28bf4b0b 172stateInfo stateValue_getInfo (stateValue s)
173{
174 llassert (stateValue_isDefined (s));
175 return s->info;
176}
177
178bool stateValue_hasLoc (stateValue s)
179{
180 return (fileloc_isDefined (stateValue_getLoc (s)));
181}
This page took 0.38786 seconds and 5 git commands to generate.