1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
/*-----------------------------------------------------------------------
File : clb_dstacks.c
Author: Stephan Schulz
Contents
Stacks for (long) integers and pointers.
Copyright 1998, 1999 by the author.
This code is released under the GNU General Public Licence and
the GNU Lesser General Public License.
See the file COPYING in the main E directory for details..
Run "eprover -h" for contact information.
Changes
<1> Sun Jun 7 12:28:24 MET DST 1998
News
-----------------------------------------------------------------------*/
#include <clb_dstacks.h>
/*---------------------------------------------------------------------*/
/* Global Variables */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Forward Declarations */
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/* Internal Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: push()
//
// Implement push operation for DStacks. If the stack area needs to
// grow, Realloc is emulated in terms of
// SizeMalloc()/SizeFree(). This is because stacks are allocated and
// deallocated a lot, and usually in the same sizes, so it pays of
// to optimize this behaviour.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
static void push(DStack_p stack, double val)
{
double *tmp;
long old_size;
if(stack->current == stack->size)
{
/* Emulate Realloc-Functionality for use of SizeMalloc() */
old_size = stack->size;
stack->size = stack->size*2;
tmp = SizeMalloc(stack->size * sizeof(double));
memcpy(tmp, stack->stack, old_size*sizeof(double));
SizeFree(stack->stack, old_size * sizeof(double));
stack->stack = tmp;
}
stack->stack[stack->current] = val;
stack->current++;
}
/*---------------------------------------------------------------------*/
/* Exported Functions */
/*---------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
//
// Function: DStackAlloc()
//
// Allocate an empty stack.
//
// Global Variables: -
//
// Side Effects : Memory oprations
//
/----------------------------------------------------------------------*/
DStack_p DStackAlloc(void)
{
DStack_p handle;
handle = DStackCellAlloc();
handle->size = DSTACK_DEFAULT_SIZE;
handle->current = 0;
handle->stack = SizeMalloc(handle->size * sizeof(double));
return handle;
}
/*-----------------------------------------------------------------------
//
// Function: DStackFree()
//
// Free a stack.
//
// Global Variables: -
//
// Side Effects : Memory operations
//
/----------------------------------------------------------------------*/
void DStackFree(DStack_p junk)
{
assert(junk);
assert(junk->stack);
SizeFree(junk->stack, junk->size * sizeof(double));
DStackCellFree(junk);
}
/*-----------------------------------------------------------------------
//
// Function: DStackReset()
//
// Reset a DStack to empty state.
//
// Global Variables: -
//
// Side Effects : Changes stackpointer.
//
/----------------------------------------------------------------------*/
void DStackReset(DStack_p stack)
{
stack->current = 0;
}
/*-----------------------------------------------------------------------
//
// Function: DStackPush()
//
// Push a double onto the stack
//
// Global Variables: -
//
// Side Effects : By push()
//
/----------------------------------------------------------------------*/
void DStackPush(DStack_p stack, double val)
{
push(stack, val);
}
/*-----------------------------------------------------------------------
//
// Function: DStackPop()
//
// Implement pop operation for non-empty DStacks.
//
// Global Variables:
//
// Side Effects :
//
/----------------------------------------------------------------------*/
double DStackPop(DStack_p stack)
{
assert(stack->current);
stack->current--;
return stack->stack[stack->current];
}
/*-----------------------------------------------------------------------
//
// Function: DStackTop()
//
// Implement Top operation for non-empty DStacks.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
double DStackTop(DStack_p stack)
{
assert(stack->current);
return stack->stack[stack->current-1];
}
/*-----------------------------------------------------------------------
//
// Function: DStackBelowTop()
//
// Return second item on the stack (asserts that stack has >=2
// elements).
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
double DStackBelowTop(DStack_p stack)
{
assert(stack->current>=2);
return stack->stack[stack->current-2];
}
/*-----------------------------------------------------------------------
//
// Function: DStackElement()
//
// Return element at position pos.
//
// Global Variables: -
//
// Side Effects : -
//
/----------------------------------------------------------------------*/
double DStackElement(DStack_p stack, DStackPointer pos)
{
assert(pos<stack->current);
assert(pos>=0);
return stack->stack[pos];
}
/*---------------------------------------------------------------------*/
/* End of File */
/*---------------------------------------------------------------------*/
|