]> andersk Git - splint.git/blob - src/Headers/constraintList.h
Merged with Dave Evans's changes.
[splint.git] / src / Headers / constraintList.h
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
8 typedef /*@only@*/ /*@notnull@*/ constraint o_constraint;
9
10 struct _constraintList
11 {
12   int nelements;
13   int nspace;
14   /*@reldef@*/ /*@relnull@*/ o_constraint  *elements;
15 } ;
16
17 /*@constant null constraintList constraintList_undefined;@*/
18
19 # define constraintList_undefined ((constraintList)NULL)
20
21 extern /*@falsenull@*/ bool constraintList_isDefined (constraintList p_e) /*@*/ ;
22 extern /*@unused@*/ /*@truenull@*/ bool constraintList_isUndefined (constraintList p_e) /*@*/ ;
23 extern /*@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 extern /*@only@*/ constraintList constraintList_addListFree (/*@only@*/ constraintList, /*@only@*/ constraintList) ;
30 extern constraintList constraintList_preserveCallInfo (/*@returned@*/ constraintList p_c, exprNode p_fcn) ;
31
32 /*@iter constraintList_elements (sef constraintList x, yield exposed constraint el); @*/
33 # define constraintList_elements(x, m_el) \
34    { int m_ind; constraint *m_elements = &((x)->elements[0]); \
35      for (m_ind = 0 ; m_ind < (x)->nelements; m_ind++) \
36        { constraint m_el = *(m_elements++); 
37
38 # define end_constraintList_elements }}
39
40 extern /*@only@*/ constraintList constraintList_makeNew(void) /*@*/;
41 extern constraintList constraintList_add (/*@returned@*/ constraintList p_s, /*@only@*/ constraint p_el) /*@modifies p_s@*/ ;
42
43 extern /*@only@*/ constraintList constraintList_addList (/*@returned@*/ constraintList p_s, /*@observer@*/ constraintList new) /*@modifies p_s@*/  ;
44
45
46 extern constraintList constraintList_copy ( /*@observer@*/ constraintList p_s) /*@*/ ;
47
48 //extern /*@only@*/ cstring constraintList_unparse ( /*@observer@*/ constraintList p_s) ;
49 extern void constraintList_free (/*@only@*/ constraintList p_s) ;
50
51
52
53
54 extern cstring constraintList_print ( /*@observer@*/ constraintList s) /*@*/;
55
56 extern cstring
57 constraintList_printDetailed ( /*@observer@*/ constraintList s) /*@*/;
58
59
60 extern /*@only@*/ constraintList
61 constraintList_logicalOr ( /*@observer@*/ constraintList l1, /*@observer@*/  constraintList l2);
62
63 extern constraintList constraintList_preserveOrig (/*@returned@*/ constraintList c);
64
65 /*@constant int constraintListBASESIZE;@*/
66
67 # define constraintListBASESIZE SMALLBASESIZE
68
69
70 extern  /*@only@*/ constraintList constraintList_doSRefFixBaseParam ( /*@observer@*/ constraintList preconditions, /*@observer@*/ exprNodeList arglist) /*@modifies preconditions@*/;
71
72 extern constraintList constraintList_togglePost (/*@returned@*/ constraintList c) /*@modifies c@*/;
73
74 extern  /*@only@*/ constraintList constraintList_doSRefFixConstraintParam ( /*@only@*/ constraintList preconditions, /*@observer@*/ exprNodeList arglist) /*@modifies preconditions@*/;
75
76 extern constraintList getPostConditions (exprNode fcn, exprNodeList arglist, exprNode fcnCall) /*@*/;
77
78 /*@only@*/ constraintList constraintList_doFixResult ( /*@only@*/ constraintList postconditions, /*@observer@*/ exprNode fcnCall) /*@modifies postconditions@*/;
79
80 extern constraintList constraintList_addGeneratingExpr (/*@returned@*/ constraintList c, exprNode e) /*@modifies c@*/;
81 extern constraintList constraintList_makeFixedArrayConstraints (sRefSet p_s) ;
82 extern void constraintList_printErrorPostConditions (constraintList p_s, fileloc p_loc) ;
83 extern void constraintList_printError (constraintList p_s, fileloc p_loc) ;
84
85 # else
86 # error "Multiple include"
87 # endif
88
89
90
91
This page took 1.311733 seconds and 5 git commands to generate.