/* ** Splint - annotation-assisted static program checker ** Copyright (C) 1994-2001 University of Virginia, ** Massachusetts Institute of Technology ** ** This program is free software; you can redistribute it and/or modify it ** under the terms of the GNU General Public License as published by the ** Free Software Foundation; either version 2 of the License, or (at your ** option) any later version. ** ** This program is distributed in the hope that it will be useful, but ** WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ** General Public License for more details. ** ** The GNU General Public License is available from http://www.gnu.org/ or ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, ** MA 02111-1307, USA. ** ** For information on lclint: lclint-request@cs.virginia.edu ** To report a bug: lclint-bug@cs.virginia.edu ** For more information: http://www.splint.org */ /* ** functionClauseList.c ** ** based on list_template.c ** ** where T has T_equal (or change this) and T_unparse */ # include "lclintMacros.nf" # include "basic.h" functionClauseList functionClauseList_new () { return functionClauseList_undefined; } static /*@notnull@*/ functionClauseList functionClauseList_newEmpty (void) { functionClauseList s = (functionClauseList) dmalloc (sizeof (*s)); s->nelements = 0; s->nspace = functionClauseListBASESIZE; s->elements = (functionClause *) dmalloc (sizeof (*s->elements) * functionClauseListBASESIZE); return (s); } static void functionClauseList_grow (/*@notnull@*/ functionClauseList s) { int i; functionClause *newelements; s->nspace += functionClauseListBASESIZE; newelements = (functionClause *) dmalloc (sizeof (*newelements) * (s->nelements + s->nspace)); if (newelements == (functionClause *) 0) { llfatalerror (cstring_makeLiteral ("functionClauseList_grow: out of memory!")); } for (i = 0; i < s->nelements; i++) { newelements[i] = s->elements[i]; } sfree (s->elements); s->elements = newelements; } functionClauseList functionClauseList_single (/*@keep@*/ functionClause el) { functionClauseList s = functionClauseList_new (); s = functionClauseList_add (s, el); return s; } functionClauseList functionClauseList_add (functionClauseList s, /*@keep@*/ functionClause el) { if (!functionClauseList_isDefined (s)) { s = functionClauseList_newEmpty (); } if (s->nspace <= 0) { functionClauseList_grow (s); } s->nspace--; /*@i32@*/ s->elements[s->nelements] = el; s->nelements++; /*@i32@*/ return s; } functionClauseList functionClauseList_prepend (functionClauseList s, /*@keep@*/ functionClause el) { int i; if (!functionClauseList_isDefined (s)) { /*@i32@*/ return functionClauseList_single (el); } if (s->nspace <= 0) { functionClauseList_grow (s); } s->nspace--; for (i = s->nelements; i > 0; i--) { s->elements[i] = s->elements [i - 1]; } /*@i32@*/ s->elements[0] = el; s->nelements++; /*@i32@*/ return s; } cstring functionClauseList_unparse (functionClauseList s) { return functionClauseList_unparseSep (s, cstring_makeLiteralTemp (" ")); } cstring functionClauseList_unparseSep (functionClauseList s, cstring sep) { cstring st = cstring_undefined; if (functionClauseList_isDefined (s)) { int i; for (i = 0; i < s->nelements; i++) { if (i == 0) { st = functionClause_unparse (s->elements[i]); } else st = message ("%q%s%q", st, sep, functionClause_unparse (s->elements[i])); } } return st; } void functionClauseList_free (functionClauseList s) { if (functionClauseList_isDefined (s)) { int i; for (i = 0; i < s->nelements; i++) { functionClause_free (s->elements[i]); } sfree (s->elements); sfree (s); } }