[BACK]Return to eval.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / parse

Diff for /OpenXM_contrib2/asir2000/parse/eval.c between version 1.8 and 1.11

version 1.8, 2000/12/05 01:24:56 version 1.11, 2001/08/31 02:47:19
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/parse/eval.c,v 1.7 2000/09/22 06:36:43 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/parse/eval.c,v 1.10 2001/08/21 01:39:39 noro Exp $
 */  */
 #include <ctype.h>  #include <ctype.h>
 #include "ca.h"  #include "ca.h"
Line 65  int evalstatline;
Line 65  int evalstatline;
 int recv_intr;  int recv_intr;
   
 pointer bevalf(), evalmapf(), evall();  pointer bevalf(), evalmapf(), evall();
   pointer eval_rec_mapf(), beval_rec_mapf();
 Obj getopt_from_cpvs();  Obj getopt_from_cpvs();
   
 pointer eval(f)  pointer eval(f)
Line 99  FNODE f;
Line 100  FNODE f;
         if ( !f )          if ( !f )
                 return ( 0 );                  return ( 0 );
         switch ( f->id ) {          switch ( f->id ) {
                   case I_PAREN:
                           val = eval((FNODE)(FA0(f)));
                           break;
                 case I_BOP:                  case I_BOP:
                         a1 = eval((FNODE)FA1(f)); a2 = eval((FNODE)FA2(f));                          a1 = eval((FNODE)FA1(f)); a2 = eval((FNODE)FA2(f));
                         (*((ARF)FA0(f))->fp)(CO,a1,a2,&val);                          (*((ARF)FA0(f))->fp)(CO,a1,a2,&val);
                 break;                          break;
                 case I_COP:                  case I_COP:
                         a1 = eval((FNODE)FA1(f)); a2 = eval((FNODE)FA2(f));                          a1 = eval((FNODE)FA1(f)); a2 = eval((FNODE)FA2(f));
                         c = arf_comp(CO,a1,a2);                          c = arf_comp(CO,a1,a2);
Line 161  FNODE f;
Line 165  FNODE f;
                         break;                          break;
                 case I_MAP:                  case I_MAP:
                         val = evalmapf((FUNC)FA0(f),(FNODE)FA1(f)); break;                          val = evalmapf((FUNC)FA0(f),(FNODE)FA1(f)); break;
                   case I_RECMAP:
                           val = eval_rec_mapf((FUNC)FA0(f),(FNODE)FA1(f)); break;
                 case I_IFUNC:                  case I_IFUNC:
                         val = evalif((FNODE)FA0(f),(FNODE)FA1(f)); break;                          val = evalif((FNODE)FA0(f),(FNODE)FA1(f)); break;
 #if !defined(VISUAL)  #if !defined(VISUAL)
Line 439  FNODE opt;
Line 445  FNODE opt;
         LIST args;          LIST args;
         pointer val;          pointer val;
         int i,n,level;          int i,n,level;
         NODE tn,sn,opts;          NODE tn,sn,opts,opt1;
     VS pvs;      VS pvs;
         char errbuf[BUFSIZ];          char errbuf[BUFSIZ];
   
Line 474  FNODE opt;
Line 480  FNODE opt;
                         break;                          break;
                 case A_USR:                  case A_USR:
                         args = (LIST)eval(a);                          args = (LIST)eval(a);
                         if ( opt )                          if ( opt ) {
                                 opts = BDY((LIST)eval(opt));                                  opts = BDY((LIST)eval(opt));
                         else                                  /* opts = ["opt1",arg1],... */
                                   opt1 = BDY((LIST)BDY(opts));
                                   if ( !strcmp(BDY((STRING)BDY(opt1)),"option_list") ) {
                                           /*
                                            * the special option specification:
                                            *  option_list=[["o1","a1"],...]
                                            */
                                           asir_assert(BDY(NEXT(opt1)),O_LIST,"evalf");
                                           opts = BDY((LIST)BDY(NEXT(opt1)));
                                   }
                           } else
                                 opts = 0;                                  opts = 0;
                 pvs = f->f.usrf->pvs;                  pvs = f->f.usrf->pvs;
                 if ( PVSS ) {                  if ( PVSS ) {
Line 566  FNODE a;
Line 582  FNODE a;
         return val;          return val;
 }  }
   
   pointer eval_rec_mapf(f,a)
   FUNC f;
   FNODE a;
   {
           LIST args;
   
           args = (LIST)eval(a);
           return beval_rec_mapf(f,BDY(args));
   }
   
   pointer beval_rec_mapf(f,node)
   FUNC f;
   NODE node;
   {
           LIST args;
           NODE rest,t,n,r,r0;
           Obj head;
           VECT v,rv;
           MAT m,rm;
           LIST rl;
           int len,row,col,i,j;
           pointer val;
   
           head = (Obj)BDY(node); rest = NEXT(node);
           if ( !head ) {
                   val = bevalf(f,node);
                   return val;
           }
           switch ( OID(head) ) {
                   case O_VECT:
                           v = (VECT)head; len = v->len; MKVECT(rv,len);
                           for ( i = 0; i < len; i++ ) {
                                   MKNODE(t,BDY(v)[i],rest); BDY(rv)[i] = beval_rec_mapf(f,t);
                           }
                           val = (pointer)rv;
                           break;
                   case O_MAT:
                           m = (MAT)head; row = m->row; col = m->col; MKMAT(rm,row,col);
                           for ( i = 0; i < row; i++ )
                                   for ( j = 0; j < col; j++ ) {
                                           MKNODE(t,BDY(m)[i][j],rest);
                                           BDY(rm)[i][j] = beval_rec_mapf(f,t);
                                   }
                           val = (pointer)rm;
                           break;
                   case O_LIST:
                           n = BDY((LIST)head);
                           for ( r0 = r = 0; n; n = NEXT(n) ) {
                                   NEXTNODE(r0,r); MKNODE(t,BDY(n),rest);
                                   BDY(r) = beval_rec_mapf(f,t);
                           }
                           if ( r0 )
                                   NEXT(r) = 0;
                           MKLIST(rl,r0);
                           val = (pointer)rl;
                           break;
                   default:
                           val = bevalf(f,node);
                           break;
           }
           return val;
   }
   
 pointer bevalf(f,a)  pointer bevalf(f,a)
 FUNC f;  FUNC f;
 NODE a;  NODE a;
Line 798  char *key;
Line 877  char *key;
   
         opts = CPVS->opt;          opts = CPVS->opt;
         for ( ; opts; opts = NEXT(opts) ) {          for ( ; opts; opts = NEXT(opts) ) {
                   asir_assert(BDY(opts),O_LIST,"getopt_from_cvps");
                 opt = BDY((LIST)BDY(opts));                  opt = BDY((LIST)BDY(opts));
                 if ( !strcmp(key,BDY((STRING)BDY(opt))) )                  if ( !strcmp(key,BDY((STRING)BDY(opt))) )
                         return (Obj)BDY(NEXT(opt));                          return (Obj)BDY(NEXT(opt));

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.11

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