]> andersk Git - splint.git/blame - src/Headers/constraintList.h
Fixes after removing -unrecogcomments flag for make splintme.
[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
28bf4b0b 10struct s_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
0e41eb0e 21extern /*@falsewhennull@*/ bool constraintList_isDefined (constraintList p_e) /*@*/ ;
22extern /*@unused@*/ /*@nullwhentrue@*/ bool constraintList_isUndefined (constraintList p_e) /*@*/ ;
23extern /*@nullwhentrue@*/ /*@unused@*/ bool constraintList_isError (constraintList p_e) /*@*/ ;
84c9ffbf 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
a779b61e 29extern bool constraintList_isEmpty (/*@sef@*/ constraintList p_e) /*@*/;
30
bb7c2085 31# define constraintList_isEmpty(e) ((constraintList_isUndefined((e)) ) ||(( (e)->nelements == 0) ) )
a779b61e 32
3814599d 33extern constraintList constraintList_single (/*@only@*/ constraint) ;
34
35extern constraintList constraintList_addListFree (/*@returned@*/ constraintList, /*@only@*/ constraintList) ;
28bf4b0b 36extern constraintList constraintList_preserveCallInfo (/*@returned@*/ constraintList p_c, /*@observer@*/ /*@dependent@*/ exprNode p_fcn) ;
4cccc6ad 37
38/*@iter constraintList_elements (sef constraintList x, yield exposed constraint el); @*/
39# define constraintList_elements(x, m_el) \
60eced23 40 { if (constraintList_isDefined (x)) { int m_ind; constraint *m_elements = &((x)->elements[0]); \
4cccc6ad 41 for (m_ind = 0 ; m_ind < (x)->nelements; m_ind++) \
42 { constraint m_el = *(m_elements++);
43
60eced23 44# define end_constraintList_elements }}}
4cccc6ad 45
6e88de2d 46extern /*@only@*/ constraintList constraintList_makeNew(void) /*@*/;
47extern constraintList constraintList_add (/*@returned@*/ constraintList p_s, /*@only@*/ constraint p_el) /*@modifies p_s@*/ ;
4cccc6ad 48
779066e2 49 extern /*@only@*/ constraintList constraintList_addList (/*@only@*/ /*@returned@*/ constraintList p_s, /*@observer@*/ /*@temp@*/ constraintList p_newList) /*@modifies p_s@*/ ;
361091cc 50
51
28bf4b0b 52extern constraintList constraintList_copy ( /*@observer@*/ /*@temp@*/ constraintList p_s) /*@*/ ;
4cccc6ad 53
4cccc6ad 54
920a3797 55extern void constraintList_free (/*@only@*/ constraintList p_s) ;
361091cc 56
ef2aa32a 57
2a6e9c30 58extern /*@only@*/ cstring constraintList_unparse (/*@observer@*/ constraintList p_s) /*@*/;
361091cc 59
2a6e9c30 60extern cstring constraintList_unparseDetailed (/*@observer@*/ constraintList p_s) /*@*/;
754746a0 61
84c9ffbf 62extern /*@only@*/ constraintList
28bf4b0b 63constraintList_logicalOr ( /*@observer@*/ constraintList p_l1, /*@observer@*/ constraintList p_l2);
754746a0 64
28bf4b0b 65extern constraintList constraintList_preserveOrig (/*@returned@*/ constraintList p_c);
754746a0 66
4cccc6ad 67/*@constant int constraintListBASESIZE;@*/
754746a0 68
84c9ffbf 69# define constraintListBASESIZE SMALLBASESIZE
70
28bf4b0b 71extern /*@only@*/ constraintList constraintList_doSRefFixBaseParam ( constraintList p_preconditions, /*@temp@*/ /*@observer@*/ exprNodeList p_arglist) /*@modifies p_preconditions@*/;
754746a0 72
28bf4b0b 73extern constraintList constraintList_togglePost (/*@returned@*/ constraintList p_c) /*@modifies p_c@*/;
ef2aa32a 74
28bf4b0b 75extern /*@only@*/ constraintList constraintList_doSRefFixConstraintParam ( /*@only@*/ constraintList p_preconditions, /*@observer@*/ /*@temp@*/ exprNodeList p_arglist) /*@modifies p_preconditions@*/;
ef2aa32a 76
28bf4b0b 77extern constraintList exprNode_getPostConditions (/*@dependent@*/ /*@observer@*/ exprNode p_fcn, exprNodeList p_arglist, /*@dependent@*/ /*@observer@*/ exprNode p_fcnCall) /*@*/;
ef2aa32a 78
28bf4b0b 79/*@only@*/ constraintList constraintList_doFixResult ( /*@only@*/ constraintList p_postconditions, /*@observer@*/ /*@dependent@*/ exprNode p_fcnCall) /*@modifies p_postconditions@*/;
103db890 80
28bf4b0b 81extern constraintList constraintList_addGeneratingExpr (/*@returned@*/ constraintList p_c, /*@dependent@*/ /*@observer@*/ exprNode p_e) /*@modifies p_c@*/;
920a3797 82extern /*@only@*/ constraintList constraintList_makeFixedArrayConstraints ( /*@observer@*/ sRefSet p_s) ;
2934b455 83extern void constraintList_printErrorPostConditions (constraintList p_s, fileloc p_loc) ;
28bf4b0b 84extern void constraintList_printError (constraintList p_s, /*@observer@*/ fileloc p_loc) ;
4cccc6ad 85
517a2db3 86extern constraintList constraintList_sort (/*@returned@*/ constraintList p_ret) /*@modifies p_ret@*/ ;
6970c11b 87
28bf4b0b 88void constraintList_dump (/*@observer@*/ constraintList p_c, FILE * p_f);
920a3797 89
28bf4b0b 90/*@only@*/ constraintList constraintList_undump (FILE * p_f);
7edb30e6 91/*@only@*/ constraintList constraintList_removeSurpressed (/*@only@*/ constraintList p_s);
920a3797 92
86d93ed3 93/*drl 1/6/2001: I didn't think these functions were solid enough to include in the stable release of splint.*/
94/*drl added 12/30/01 */
95/* / *@only@* / constraintList constraintList_doSRefFixStructConstraint(constraintList p_invars, sRef p_s, ctype p_ct ); */
96
4cccc6ad 97# else
98# error "Multiple include"
99# endif
100
101
102
103
This page took 0.10601 seconds and 5 git commands to generate.