]> andersk Git - splint.git/blame - src/stateValue.c
Fixed all /*@i...@*/ tags (except 1).
[splint.git] / src / stateValue.c
CommitLineData
28bf4b0b 1/*
11db3170 2** Splint - annotation-assisted static program checker
c59f5181 3** Copyright (C) 1994-2003 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"
b73d1009 29# include "basic.h"
28bf4b0b 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;
16c024b5 104 s->info = stateInfo_updateLoc (s->info, SA_CHANGED, loc);
28bf4b0b 105}
106
107void stateValue_update (stateValue res, stateValue val)
108{
109 llassert (stateValue_isDefined (res));
abd7f895 110 llassert (stateValue_isDefined (val));
111
28bf4b0b 112 res->value = val->value;
113 res->info = stateInfo_update (res->info, val->info);
abd7f895 114
28bf4b0b 115 DPRINTF (("update state: %s", stateValue_unparse (res)));
116}
117
118void stateValue_show (stateValue s, metaStateInfo msinfo)
119{
120 if (stateValue_isDefined (s))
121 {
122 stateInfo info = stateValue_getInfo (s);
123
124 if (stateInfo_isDefined (info))
125 {
126 if (fileloc_isDefined (info->loc))
127 {
128 llgenindentmsg (message
2c88d156 129 ("State becomes %q",
130 stateValue_unparseValue (s, msinfo)),
28bf4b0b 131 info->loc);
132 }
133 }
134 }
135}
136
2c88d156 137/*@only@*/ cstring stateValue_unparseValue (stateValue s, metaStateInfo msinfo)
28bf4b0b 138{
2c88d156 139 if (stateValue_isImplicit (s))
140 {
141 return message ("implicitly %s",
142 metaStateInfo_unparseValue (msinfo,
143 stateValue_getValue (s)));
144 }
145 else
146 {
147 return cstring_copy (metaStateInfo_unparseValue (msinfo,
148 stateValue_getValue (s)));
149 }
28bf4b0b 150}
151
152int stateValue_getValue (stateValue s)
153{
ccf0a4a8 154 if (!stateValue_isDefined (s))
155 {
156 llassert (stateValue_isDefined (s));
157 return stateValue_error;
158 }
159
28bf4b0b 160 return s->value;
161}
162
2c88d156 163bool stateValue_isImplicit (stateValue s)
164{
165 llassert (stateValue_isDefined (s));
166 return s->implicit;
167}
168
28bf4b0b 169stateInfo stateValue_getInfo (stateValue s)
170{
171 llassert (stateValue_isDefined (s));
172 return s->info;
173}
174
175bool stateValue_hasLoc (stateValue s)
176{
177 return (fileloc_isDefined (stateValue_getLoc (s)));
178}
This page took 0.08884 seconds and 5 git commands to generate.