]> andersk Git - splint.git/blame - src/Headers/constraintList.h
Fixed make file so that pristine gets rid of more generated files.
[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
2934b455 29extern /*@only@*/ constraintList constraintList_addListFree (/*@only@*/ constraintList, /*@only@*/ constraintList) ;
30extern constraintList constraintList_preserveCallInfo (/*@returned@*/ constraintList p_c, exprNode p_fcn) ;
4cccc6ad 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
6e88de2d 40extern /*@only@*/ constraintList constraintList_makeNew(void) /*@*/;
41extern constraintList constraintList_add (/*@returned@*/ constraintList p_s, /*@only@*/ constraint p_el) /*@modifies p_s@*/ ;
4cccc6ad 42
4ab867d6 43extern /*@only@*/ constraintList constraintList_addList (/*@returned@*/ constraintList p_s, /*@observer@*/ constraintList new) /*@modifies p_s@*/ ;
361091cc 44
45
84c9ffbf 46extern constraintList constraintList_copy ( /*@observer@*/ constraintList p_s) /*@*/ ;
4cccc6ad 47
84c9ffbf 48//extern /*@only@*/ cstring constraintList_unparse ( /*@observer@*/ constraintList p_s) ;
4cccc6ad 49extern void constraintList_free (/*@only@*/ constraintList p_s) ;
50
361091cc 51
ef2aa32a 52
361091cc 53
84c9ffbf 54extern cstring constraintList_print ( /*@observer@*/ constraintList s) /*@*/;
754746a0 55
56extern cstring
84c9ffbf 57constraintList_printDetailed ( /*@observer@*/ constraintList s) /*@*/;
754746a0 58
59
84c9ffbf 60extern /*@only@*/ constraintList
61constraintList_logicalOr ( /*@observer@*/ constraintList l1, /*@observer@*/ constraintList l2);
754746a0 62
6e88de2d 63extern constraintList constraintList_preserveOrig (/*@returned@*/ constraintList c);
754746a0 64
4cccc6ad 65/*@constant int constraintListBASESIZE;@*/
754746a0 66
84c9ffbf 67# define constraintListBASESIZE SMALLBASESIZE
68
69
bb25bea6 70extern /*@only@*/ constraintList constraintList_doSRefFixBaseParam ( /*@observer@*/ constraintList preconditions, /*@observer@*/ exprNodeList arglist) /*@modifies preconditions@*/;
754746a0 71
6e88de2d 72extern constraintList constraintList_togglePost (/*@returned@*/ constraintList c) /*@modifies c@*/;
ef2aa32a 73
bb25bea6 74extern /*@only@*/ constraintList constraintList_doSRefFixConstraintParam ( /*@only@*/ constraintList preconditions, /*@observer@*/ exprNodeList arglist) /*@modifies preconditions@*/;
ef2aa32a 75
6e88de2d 76extern constraintList getPostConditions (exprNode fcn, exprNodeList arglist, exprNode fcnCall) /*@*/;
ef2aa32a 77
bb25bea6 78/*@only@*/ constraintList constraintList_doFixResult ( /*@only@*/ constraintList postconditions, /*@observer@*/ exprNode fcnCall) /*@modifies postconditions@*/;
103db890 79
2934b455 80extern constraintList constraintList_addGeneratingExpr (/*@returned@*/ constraintList c, exprNode e) /*@modifies c@*/;
81extern constraintList constraintList_makeFixedArrayConstraints (sRefSet p_s) ;
82extern void constraintList_printErrorPostConditions (constraintList p_s, fileloc p_loc) ;
83extern void constraintList_printError (constraintList p_s, fileloc p_loc) ;
4cccc6ad 84
85# else
86# error "Multiple include"
87# endif
88
89
90
91
This page took 0.089861 seconds and 5 git commands to generate.