/[cvs]/stack/stack.c
ViewVC logotype

Diff of /stack/stack.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.71 by masse, Mon Feb 11 22:07:47 2002 UTC revision 1.76 by masse, Wed Feb 13 00:47:36 2002 UTC
# Line 9  Line 9 
9  /* strcmp, strcpy, strlen, strcat, strdup */  /* strcmp, strcpy, strlen, strcat, strdup */
10  #include <string.h>  #include <string.h>
11    
12  #define HASHTBLSIZE 65536  #define HASHTBLSIZE 2048
13    
14  /* First, define some types. */  /* First, define some types. */
15    
# Line 155  symbol **hash(hashtbl in_hashtbl, const Line 155  symbol **hash(hashtbl in_hashtbl, const
155    }    }
156  }  }
157    
 /* Generic push function. */  
 void push(stackitem** stack_head, stackitem* in_item)  
 {  
   in_item->next= *stack_head;  
   *stack_head= in_item;  
 }  
   
158  /* Push a value onto the stack */  /* Push a value onto the stack */
159  void push_val(stackitem **stack_head, value *val)  void push_val(environment *env, value *val)
160  {  {
161    stackitem *new_item= malloc(sizeof(stackitem));    stackitem *new_item= malloc(sizeof(stackitem));
162    new_item->item= val;    new_item->item= val;
163    val->refcount++;    val->refcount++;
164    push(stack_head, new_item);    new_item->next= env->head;
165      env->head= new_item;
166  }  }
167    
168  /* Push an integer onto the stack. */  /* Push an integer onto the stack. */
169  void push_int(stackitem **stack_head, int in_val)  void push_int(environment *env, int in_val)
170  {  {
171    value *new_value= malloc(sizeof(value));    value *new_value= malloc(sizeof(value));
   stackitem *new_item= malloc(sizeof(stackitem));  
   new_item->item= new_value;  
172        
173    new_value->content.val= in_val;    new_value->content.val= in_val;
174    new_value->type= integer;    new_value->type= integer;
175    new_value->refcount=1;    new_value->refcount=1;
176    
177    push(stack_head, new_item);    push_val(env, new_value);
178  }  }
179    
180  /* Copy a string onto the stack. */  /* Copy a string onto the stack. */
181  void push_cstring(stackitem **stack_head, const char *in_string)  void push_cstring(environment *env, const char *in_string)
182  {  {
183    value *new_value= malloc(sizeof(value));    value *new_value= malloc(sizeof(value));
   stackitem *new_item= malloc(sizeof(stackitem));  
   new_item->item=new_value;  
184    
185    new_value->content.ptr= malloc(strlen(in_string)+1);    new_value->content.ptr= malloc(strlen(in_string)+1);
186    strcpy(new_value->content.ptr, in_string);    strcpy(new_value->content.ptr, in_string);
187    new_value->type= string;    new_value->type= string;
188    new_value->refcount=1;    new_value->refcount=1;
189    
190    push(stack_head, new_item);    push_val(env, new_value);
191  }  }
192    
193  /* Mangle a symbol name to a valid C identifier name */  /* Mangle a symbol name to a valid C identifier name */
# Line 246  extern void mangle(environment *env){ Line 236  extern void mangle(environment *env){
236    new_value->type= string;    new_value->type= string;
237    new_value->refcount=1;    new_value->refcount=1;
238    
239    push_val(&(env->head), new_value);    push_val(env, new_value);
240  }  }
241    
242  /* Push a symbol onto the stack. */  /* Push a symbol onto the stack. */
243  void push_sym(environment *env, const char *in_string)  void push_sym(environment *env, const char *in_string)
244  {  {
   stackitem *new_item;          /* The new stack item */  
   /* ...which will contain... */  
245    value *new_value;             /* A new symbol value */    value *new_value;             /* A new symbol value */
246    /* ...which might point to... */    /* ...which might point to... */
247    symbol **new_symbol;          /* (if needed) A new actual symbol */    symbol **new_symbol;          /* (if needed) A new actual symbol */
# Line 266  void push_sym(environment *env, const ch Line 254  void push_sym(environment *env, const ch
254    const char *dlerr;            /* Dynamic linker error */    const char *dlerr;            /* Dynamic linker error */
255    char *mangled;                /* Mangled function name */    char *mangled;                /* Mangled function name */
256    
   /* Create a new stack item containing a new value */  
   new_item= malloc(sizeof(stackitem));  
257    new_value= malloc(sizeof(value));    new_value= malloc(sizeof(value));
   new_item->item=new_value;  
258    
259    /* The new value is a symbol */    /* The new value is a symbol */
260    new_value->type= symb;    new_value->type= symb;
# Line 313  void push_sym(environment *env, const ch Line 298  void push_sym(environment *env, const ch
298        new_fvalue->refcount= 1;        new_fvalue->refcount= 1;
299      }      }
300    }    }
301    push(&(env->head), new_item);    push_val(env, new_value);
302  }  }
303    
304  /* Print newline. */  /* Print newline. */
# Line 477  extern void rcl(environment *env) Line 462  extern void rcl(environment *env)
462    }    }
463    toss(env);            /* toss the symbol */    toss(env);            /* toss the symbol */
464    if(env->err) return;    if(env->err) return;
465    push_val(&(env->head), val); /* Return its bound value */    push_val(env, val); /* Return its bound value */
466  }  }
467    
468  /* If the top element is a symbol, determine if it's bound to a  /* If the top element is a symbol, determine if it's bound to a
# Line 522  extern void eval(environment *env) Line 507  extern void eval(environment *env)
507      if(env->err) return;      if(env->err) return;
508      iterator= (stackitem*)temp_val->content.ptr;      iterator= (stackitem*)temp_val->content.ptr;
509      while(iterator!=NULL) {      while(iterator!=NULL) {
510        push_val(&(env->head), iterator->item);        push_val(env, iterator->item);
511        if(env->head->item->type==symb        if(env->head->item->type==symb
512          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
513          toss(env);          toss(env);
# Line 546  extern void eval(environment *env) Line 531  extern void eval(environment *env)
531    
532  /* Reverse (flip) a list */  /* Reverse (flip) a list */
533  extern void rev(environment *env){  extern void rev(environment *env){
534    stackitem *old_head, *new_head, *item;    stackitem *item, *temp, *prev= NULL;
535    
536    if((env->head)==NULL) {    if((env->head)==NULL) {
537      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 560  extern void rev(environment *env){ Line 545  extern void rev(environment *env){
545      return;      return;
546    }    }
547    
548    old_head=(stackitem *)(env->head->item->content.ptr);    item= (stackitem *)(env->head->item->content.ptr);
549    new_head=NULL;    while(item->next!=NULL){
550    while(old_head != NULL){      temp= item->next;
551      item=old_head;      item->next= prev;
552      old_head=old_head->next;      prev= item;
553      item->next=new_head;      item= temp;
     new_head=item;  
554    }    }
555    env->head->item->content.ptr=new_head;    item->next= prev;
556    
557      env->head->item->content.ptr=item;
558  }  }
559    
560  /* Make a list. */  /* Make a list. */
561  extern void pack(environment *env)  extern void pack(environment *env)
562  {  {
   void* delimiter;  
563    stackitem *iterator, *temp;    stackitem *iterator, *temp;
564    value *pack;    value *pack;
565    
   delimiter= env->head->item->content.ptr; /* Get delimiter */  
   toss(env);  
   
566    iterator= env->head;    iterator= env->head;
567    
568    if(iterator==NULL || iterator->item->content.ptr==delimiter) {    if(iterator==NULL
569         || (iterator->item->type==symb
570         && ((symbol*)(iterator->item->content.ptr))->id[0]=='[')) {
571      temp= NULL;      temp= NULL;
572      toss(env);      toss(env);
573    } else {    } else {
574      /* Search for first delimiter */      /* Search for first delimiter */
575      while(iterator->next!=NULL      while(iterator->next!=NULL
576            && iterator->next->item->content.ptr!=delimiter)            && (iterator->next->item->type!=symb
577              || ((symbol*)(iterator->next->item->content.ptr))->id[0]!='['))
578        iterator= iterator->next;        iterator= iterator->next;
579            
580      /* Extract list */      /* Extract list */
# Line 607  extern void pack(environment *env) Line 592  extern void pack(environment *env)
592    pack->content.ptr= temp;    pack->content.ptr= temp;
593    pack->refcount= 1;    pack->refcount= 1;
594    
595    temp= malloc(sizeof(stackitem));    push_val(env, pack);
   temp->item= pack;  
   
   push(&(env->head), temp);  
596    rev(env);    rev(env);
597  }  }
598    
# Line 670  extern void eq(environment *env) Line 652  extern void eq(environment *env)
652    result= (left==right);    result= (left==right);
653        
654    toss(env); toss(env);    toss(env); toss(env);
655    push_int(&(env->head), result);    push_int(env, result);
656  }  }
657    
658  /* Negates the top element on the stack. */  /* Negates the top element on the stack. */
# Line 692  extern void not(environment *env) Line 674  extern void not(environment *env)
674    
675    val= env->head->item->content.val;    val= env->head->item->content.val;
676    toss(env);    toss(env);
677    push_int(&(env->head), !val);    push_int(env, !val);
678  }  }
679    
680  /* Compares the two top elements on the stack and return 0 if they're the  /* Compares the two top elements on the stack and return 0 if they're the
# Line 798  extern void forget(environment *env) Line 780  extern void forget(environment *env)
780    
781  /* Returns the current error number to the stack */  /* Returns the current error number to the stack */
782  extern void errn(environment *env){  extern void errn(environment *env){
783    push_int(&(env->head), env->err);    push_int(env, env->err);
784  }  }
785    
786  extern void read(environment*);  extern void read(environment*);
# Line 853  extern void sx_2b(environment *env) { Line 835  extern void sx_2b(environment *env) {
835      strcpy(new_string, b_val->content.ptr);      strcpy(new_string, b_val->content.ptr);
836      strcat(new_string, a_val->content.ptr);      strcat(new_string, a_val->content.ptr);
837      free_val(a_val); free_val(b_val);      free_val(a_val); free_val(b_val);
838      push_cstring(&(env->head), new_string);      push_cstring(env, new_string);
839      free(new_string);      free(new_string);
840      return;      return;
841    }    }
# Line 873  extern void sx_2b(environment *env) { Line 855  extern void sx_2b(environment *env) {
855      b=env->head->item->content.val;      b=env->head->item->content.val;
856      toss(env);      toss(env);
857      if(env->err) return;      if(env->err) return;
858      push_int(&(env->head), a+b);      push_int(env, a+b);
859    }    }
860  }  }
861    
# Line 902  extern void sx_2d(environment *env) { Line 884  extern void sx_2d(environment *env) {
884      b=env->head->item->content.val;      b=env->head->item->content.val;
885      toss(env);      toss(env);
886      if(env->err) return;      if(env->err) return;
887      push_int(&(env->head), b-a);      push_int(env, b-a);
888    }    }
889  }  }
890    
# Line 931  extern void sx_3e(environment *env) { Line 913  extern void sx_3e(environment *env) {
913      b=env->head->item->content.val;      b=env->head->item->content.val;
914      toss(env);      toss(env);
915      if(env->err) return;      if(env->err) return;
916      push_int(&(env->head), b>a);      push_int(env, b>a);
917    }    }
918  }  }
919    
# Line 987  extern void dup(environment *env) { Line 969  extern void dup(environment *env) {
969      env->err=1;      env->err=1;
970      return;      return;
971    }    }
972    push_val(&(env->head), copy_val(env->head->item));    push_val(env, copy_val(env->head->item));
973  }  }
974    
975  /* "if", If-Then */  /* "if", If-Then */
# Line 1078  extern void sx_7768696c65(environment *e Line 1060  extern void sx_7768696c65(environment *e
1060    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1061    
1062    do {    do {
1063      push_val(&(env->head), test);      push_val(env, test);
1064      eval(env);      eval(env);
1065            
1066      if(env->head->item->type != integer) {      if(env->head->item->type != integer) {
# Line 1091  extern void sx_7768696c65(environment *e Line 1073  extern void sx_7768696c65(environment *e
1073      toss(env); if(env->err) return;      toss(env); if(env->err) return;
1074            
1075      if(truth) {      if(truth) {
1076        push_val(&(env->head), loop);        push_val(env, loop);
1077        eval(env);        eval(env);
1078      } else {      } else {
1079        toss(env);        toss(env);
# Line 1132  extern void sx_666f72(environment *env) Line 1114  extern void sx_666f72(environment *env)
1114    iterator= foo->content.ptr;    iterator= foo->content.ptr;
1115    
1116    while(iterator!=NULL) {    while(iterator!=NULL) {
1117      push_val(&(env->head), iterator->item);      push_val(env, iterator->item);
1118      push_val(&(env->head), loop);      push_val(env, loop);
1119      eval(env); if(env->err) return;      eval(env); if(env->err) return;
1120      iterator= iterator->next;      iterator= iterator->next;
1121    }    }
# Line 1145  extern void sx_666f72(environment *env) Line 1127  extern void sx_666f72(environment *env)
1127  /* 'to' */  /* 'to' */
1128  extern void to(environment *env) {  extern void to(environment *env) {
1129    int i, start, ending;    int i, start, ending;
1130      stackitem *temp_head;
1131      value *temp_val;
1132        
1133    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
1134      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 1164  extern void to(environment *env) { Line 1148  extern void to(environment *env) {
1148    start= env->head->item->content.val;    start= env->head->item->content.val;
1149    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1150    
1151    push_sym(env, "[");    temp_head= env->head;
1152      env->head= NULL;
1153    
1154    if(ending>=start) {    if(ending>=start) {
1155      for(i= start; i<=ending; i++)      for(i= ending; i>=start; i--)
1156        push_int(&(env->head), i);        push_int(env, i);
1157    } else {    } else {
1158      for(i= start; i>=ending; i--)      for(i= ending; i<=start; i++)
1159        push_int(&(env->head), i);        push_int(env, i);
1160    }    }
1161    
1162    push_sym(env, "[");    temp_val= malloc(sizeof(value));
1163    pack(env); if(env->err) return;    temp_val->content.ptr= env->head;
1164      temp_val->refcount= 1;
1165      temp_val->type= list;
1166      env->head= temp_head;
1167      push_val(env, temp_val);
1168  }  }
1169    
1170  /* Read a string */  /* Read a string */
# Line 1183  extern void readline(environment *env) { Line 1172  extern void readline(environment *env) {
1172    char in_string[101];    char in_string[101];
1173    
1174    fgets(in_string, 100, stdin);    fgets(in_string, 100, stdin);
1175    push_cstring(&(env->head), in_string);    push_cstring(env, in_string);
1176  }  }
1177    
1178  /* Read a value and place on stack */  /* Read a value and place on stack */
# Line 1216  extern void read(environment *env) { Line 1205  extern void read(environment *env) {
1205    if(sscanf(env->in_string, blankform, rest)) {    if(sscanf(env->in_string, blankform, rest)) {
1206      ;      ;
1207    } else if(sscanf(env->in_string, intform, &itemp, rest) > 0) {    } else if(sscanf(env->in_string, intform, &itemp, rest) > 0) {
1208      push_int(&(env->head), itemp);      push_int(env, itemp);
1209    } else if(sscanf(env->in_string, strform, match, rest) > 0) {    } else if(sscanf(env->in_string, strform, match, rest) > 0) {
1210      push_cstring(&(env->head), match);      push_cstring(env, match);
1211    } else if(sscanf(env->in_string, symbform, match, rest) > 0) {    } else if(sscanf(env->in_string, symbform, match, rest) > 0) {
1212      push_sym(env, match);      push_sym(env, match);
1213    } else if(sscanf(env->in_string, ebrackform, rest) > 0) {    } else if(sscanf(env->in_string, ebrackform, rest) > 0) {
     push_sym(env, "[");  
1214      pack(env); if(env->err) return;      pack(env); if(env->err) return;
1215      if(depth!=0) depth--;      if(depth!=0) depth--;
1216    } else if(sscanf(env->in_string, semicform, rest) > 0) {    } else if(sscanf(env->in_string, semicform, rest) > 0) {

Legend:
Removed from v.1.71  
changed lines
  Added in v.1.76

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26