2007-06-28 10:47:08 -07:00
|
|
|
/*
|
|
|
|
* Stack.h
|
|
|
|
*
|
|
|
|
* Interface to the stack system
|
|
|
|
*/
|
|
|
|
#ifndef _stack_h
|
|
|
|
#define _stack_h
|
|
|
|
|
2006-08-25 13:38:27 -07:00
|
|
|
//String support
|
|
|
|
//-----------------------------
|
|
|
|
#define MAXSTRLEN 255 //Max len of a single string
|
|
|
|
#define MAXSTACKLEN 6000
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
/* Initialise the stack */
|
|
|
|
extern BOOL stackInitialise(void);
|
|
|
|
|
|
|
|
/* Shutdown the stack */
|
|
|
|
extern void stackShutDown(void);
|
|
|
|
|
|
|
|
/* Push a value onto the stack */
|
|
|
|
extern BOOL stackPush(INTERP_VAL *psVal);
|
|
|
|
|
|
|
|
/* Pop a value off the stack */
|
|
|
|
extern BOOL stackPop(INTERP_VAL *psVal);
|
|
|
|
|
2006-12-26 08:39:07 -08:00
|
|
|
/* Return pointer to the top value without poping it */
|
|
|
|
extern BOOL stackPeekTop(INTERP_VAL **ppsVal);
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
/* Pop a value off the stack, checking that the type matches what is passed in */
|
|
|
|
extern BOOL stackPopType(INTERP_VAL *psVal);
|
|
|
|
|
|
|
|
/* Look at a value on the stack without removing it.
|
|
|
|
* index is how far down the stack to look.
|
|
|
|
* Index 0 is the top entry on the stack.
|
|
|
|
*/
|
|
|
|
extern BOOL stackPeek(INTERP_VAL *psVal, UDWORD index);
|
|
|
|
|
|
|
|
/* Print the top value on the stack */
|
|
|
|
extern void stackPrintTop(void);
|
|
|
|
|
|
|
|
/* Check if the stack is empty */
|
|
|
|
extern BOOL stackEmpty(void);
|
|
|
|
|
|
|
|
/* Do binary operations on the top of the stack
|
|
|
|
* This effectively pops two values and pushes the result
|
|
|
|
*/
|
|
|
|
extern BOOL stackBinaryOp(OPCODE opcode);
|
|
|
|
|
|
|
|
/* Perform a unary operation on the top of the stack
|
|
|
|
* This effectively pops a value and pushes the result
|
|
|
|
*/
|
|
|
|
extern BOOL stackUnaryOp(OPCODE opcode);
|
|
|
|
|
2006-11-16 06:30:29 -08:00
|
|
|
/* casts top of the stack to some other data type */
|
|
|
|
extern BOOL castTop(INTERP_TYPE neededType);
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
/* Reset the stack to an empty state */
|
|
|
|
extern void stackReset(void);
|
|
|
|
|
2006-08-19 06:26:11 -07:00
|
|
|
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
#endif
|