Moved Method Stack constants to config.h from global.h

date	99.06.30.19.56.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 19:24:51 +00:00
parent 063f7212f1
commit 195ed7af4d

View File

@ -124,6 +124,17 @@
#define INITIAL_NAME_BUF_SIZE 32
#define AML_EXPR_MAX_NEST 100 /* Max stack depth parsing expressions */
/*
* Method Stack, containing locals and args
* per level, 0-7 are Local# and 8-14 are Arg#
*/
#define MTH_LOCAL_BASE 0
#define MTH_NUM_LOCALS 8
#define MTH_ARG_BASE (MTH_LOCAL_BASE + MTH_NUM_LOCALS)
#define MTH_NUM_ARGS 7
#define MTH_ENTRY_SIZE (MTH_NUM_LOCALS + MTH_NUM_ARGS)
/*
* NameSpace Table size