]> andersk Git - splint.git/blame - src/Headers/constraintList.h
Removed the unused data type environmentTable.
[splint.git] / src / Headers / constraintList.h
CommitLineData
4cccc6ad 1/*
2** Copyright (C) University of Virginia, Massachusetts Institue of Technology 1994-2000.
3** See ../LICENSE for license information.
4*/
5# ifndef constraintLIST_H
6# define constraintLIST_H
7
84c9ffbf 8typedef /*@only@*/ /*@notnull@*/ constraint o_constraint;
4cccc6ad 9
93307a76 10struct _constraintList
4cccc6ad 11{
12 int nelements;
13 int nspace;
14 /*@reldef@*/ /*@relnull@*/ o_constraint *elements;
93307a76 15} ;
16
17/*@constant null constraintList constraintList_undefined;@*/
84c9ffbf 18
19# define constraintList_undefined ((constraintList)NULL)
20
21extern /*@falsenull@*/ bool constraintList_isDefined (constraintList p_e) /*@*/ ;
22extern /*@unused@*/ /*@truenull@*/ bool constraintList_isUndefined (constraintList p_e) /*@*/ ;
23extern /*@truenull@*/ /*@unused@*/ bool constraintList_isError (constraintList p_e) /*@*/ ;
24
25# define constraintList_isDefined(e) ((e) != constraintList_undefined)
26# define constraintList_isUndefined(e) ((e) == constraintList_undefined)
27# define constraintList_isError(e) ((e) == constraintList_undefined)
28
29
4cccc6ad 30
31/*@iter constraintList_elements (sef constraintList x, yield exposed constraint el); @*/
32# define constraintList_elements(x, m_el) \
33 { int m_ind; constraint *m_elements = &((x)->elements[0]); \
34 for (m_ind = 0 ; m_ind < (x)->nelements; m_ind++) \
35 { constraint m_el = *(m_elements++);
36
37# define end_constraintList_elements }}
38
6e88de2d 39extern /*@only@*/ constraintList constraintList_makeNew(void) /*@*/;
40extern constraintList constraintList_add (/*@returned@*/ constraintList p_s, /*@only@*/ constraint p_el) /*@modifies p_s@*/ ;
4cccc6ad 41
6e88de2d 42extern constraintList constraintList_addList (/*@returned@*/ constraintList p_s, /*@only@*/constraintList new) /*@modifies p_s@*/ ;
361091cc 43
44
84c9ffbf 45extern constraintList constraintList_copy ( /*@observer@*/ constraintList p_s) /*@*/ ;
4cccc6ad 46
84c9ffbf 47//extern /*@only@*/ cstring constraintList_unparse ( /*@observer@*/ constraintList p_s) ;
4cccc6ad 48extern void constraintList_free (/*@only@*/ constraintList p_s) ;
49
361091cc 50
ef2aa32a 51
361091cc 52
84c9ffbf 53extern cstring constraintList_print ( /*@observer@*/ constraintList s) /*@*/;
754746a0 54
55extern cstring
84c9ffbf 56constraintList_printDetailed ( /*@observer@*/ constraintList s) /*@*/;
754746a0 57
58
84c9ffbf 59extern /*@only@*/ constraintList
60constraintList_logicalOr ( /*@observer@*/ constraintList l1, /*@observer@*/ constraintList l2);
754746a0 61
6e88de2d 62extern constraintList constraintList_preserveOrig (/*@returned@*/ constraintList c);
754746a0 63
4cccc6ad 64/*@constant int constraintListBASESIZE;@*/
754746a0 65
84c9ffbf 66# define constraintListBASESIZE SMALLBASESIZE
67
68
69extern /*@only@*/ constraintList constraintList_doSRefFixBaseParam (constraintList preconditions, exprNodeList arglist) /*@modifies preconditions@*/;
754746a0 70
6e88de2d 71extern constraintList constraintList_togglePost (/*@returned@*/ constraintList c) /*@modifies c@*/;
ef2aa32a 72
84c9ffbf 73extern /*@only@*/ constraintList constraintList_doSRefFixConstraintParam ( /*@only@*/ constraintList preconditions, exprNodeList arglist) /*@modifies preconditions@*/;
ef2aa32a 74
6e88de2d 75extern constraintList getPostConditions (exprNode fcn, exprNodeList arglist, exprNode fcnCall) /*@*/;
ef2aa32a 76
84c9ffbf 77/*@only@*/ constraintList constraintList_doFixResult ( /*@only@*/ constraintList postconditions, exprNode fcnCall) /*@modifies postconditions@*/;
103db890 78
6e88de2d 79constraintList constraintList_addGeneratingExpr (/*@returned@*/ constraintList c, exprNode e) /*@modifies c@*/;
4cccc6ad 80
81# else
82# error "Multiple include"
83# endif
84
85
86
87
This page took 0.200944 seconds and 5 git commands to generate.