[BACK]Return to stackm.h CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / Kan

Diff for /OpenXM/src/kan96xx/Kan/stackm.h between version 1.1.1.1 and 1.9

version 1.1.1.1, 1999/10/08 02:12:01 version 1.9, 2005/06/09 04:47:16
Line 1 
Line 1 
   /* $OpenXM: OpenXM/src/kan96xx/Kan/stackm.h,v 1.8 2004/09/20 02:11:22 takayama Exp $ */
 #define LOAD_SM1_PATH "/usr/local/lib/sm1/"  #define LOAD_SM1_PATH "/usr/local/lib/sm1/"
 /* Do not forget to put / at the tail.  /* Do not forget to put / at the tail.
    "/usr/local/lib/sm1" does not work.     "/usr/local/lib/sm1" does not work.
Line 34 
Line 35 
 #define SrationalFunction 16  #define SrationalFunction 16
 #define Sclass          17   /* class, for extension */  #define Sclass          17   /* class, for extension */
 #define Sdouble         18  #define Sdouble         18
   #define SbyteArray      19
   
 #define TYPES            19   /* number of data types. */  #define TYPES            20   /* number of data types. */
 /* NOTE! If you change the above, you need to change mklookup.c too. */  /* NOTE! If you change the above, you need to change mklookup.c too. */
 /* Change also dr.sm1 : datatype constants. */  /* Change also dr.sm1 : datatype constants. */
   
Line 61  union cell {
Line 63  union cell {
   struct coeff *universalNumber;    struct coeff *universalNumber;
   void *voidp;    void *voidp;
   double *dbl;    double *dbl;
     unsigned char *bytes;
 };  };
   
 struct object{  struct object{
   int tag;                /* class identifier */    int tag;                /* class identifier */
   union cell lc;          /* left cell */    union cell lc;          /* left cell */
   union cell rc;          /* right cell */    union cell rc;          /* right cell */
     struct object *attr;    /* Attribute list */
 };  };
   
 struct dictionary {  struct dictionary {
Line 97  struct tokens{
Line 101  struct tokens{
   char *token;    char *token;
   int kind;    int kind;
   struct object object;    struct object object;
     int tflag;
 };  };
   
 /* used in kind of tokens */  /* used in kind of tokens */
Line 105  struct tokens{
Line 110  struct tokens{
 #define EXECUTABLE_STRING 4 /* strings enclosed by {} */  #define EXECUTABLE_STRING 4 /* strings enclosed by {} */
 #define EXECUTABLE_ARRAY  8  #define EXECUTABLE_ARRAY  8
   
   /* Used in tflag of tokens, bit wise */
   #define NO_DELAY  0x2
   
   
 /********** macros to use Sarray **********************/  /********** macros to use Sarray **********************/
Line 129  if ((ob).tag != Sarray) {fprintf(stderr,"Warning: PUTO
Line 136  if ((ob).tag != Sarray) {fprintf(stderr,"Warning: PUTO
 #define isNullList(list) ((struct object *)NULL == list)  #define isNullList(list) ((struct object *)NULL == list)
 #define NULLLIST (struct object *)NULL  #define NULLLIST (struct object *)NULL
   
 /* for dictionary */  /* For dictionary, flag bit */
 #define SET_ATTR_FOR_ALL_WORDS 0x10  #define SET_ATTR_FOR_ALL_WORDS 0x10
   #define OR_ATTR_FOR_ALL_WORDS  0x20
 #define PROTECT 0x1  #define PROTECT 0x1
 #define ABSOLUTE_PROTECT 0x2  #define ABSOLUTE_PROTECT 0x2
   #define ATTR_INFIX       0x4
   #define ATTR_EXPORT      0x8
   
   /* For status, flag bit */
   #define STATUS_EOF   -1
   #define STATUS_BREAK 0x1
   #define STATUS_INFIX 0x2
   #define DO_QUOTE     0x10
   
 typedef enum {CCPUSH,CCPOP,CCRESTORE} actionOfContextControl;  typedef enum {CCPUSH,CCPOP,CCRESTORE} actionOfContextControl;
   

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.9

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>