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

Diff for /OpenXM_contrib2/asir2000/builtin/print.c between version 1.5 and 1.14

version 1.5, 2001/08/21 01:39:38 version 1.14, 2001/10/09 01:36:07
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/builtin/print.c,v 1.4 2001/08/06 01:48:32 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/print.c,v 1.13 2001/09/05 09:01:27 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
   
 void Pprint();  void Pprint();
 void Pquotetolist();  void Pquotetolist();
   void Peval_variables_in_quote();
   void Pset_print_function();
   
 struct ftab print_tab[] = {  struct ftab print_tab[] = {
         {"print",Pprint,-2},          {"print",Pprint,-2},
         {"quotetolist",Pquotetolist,1},          {"quotetolist",Pquotetolist,1},
           {"eval_variables_in_quote",Peval_variables_in_quote,1},
           {"set_print_function",Pset_print_function,-1},
         {0,0,0},          {0,0,0},
 };  };
   
 void Pprint(arg,rp)  void Pprint(NODE arg,pointer *rp)
 NODE arg;  
 pointer *rp;  
 {  {
         printexpr(CO,ARG0(arg));          printexpr(CO,ARG0(arg));
         if ( argc(arg) == 2 )          if ( argc(arg) == 2 )
Line 79  pointer *rp;
Line 81  pointer *rp;
         *rp = 0;          *rp = 0;
 }  }
   
 void fnodetotree();  void Pquotetolist(NODE arg,LIST *rp)
   
 void Pquotetolist(arg,rp)  
 NODE arg;  
 Obj *rp;  
 {  {
         asir_assert(ARG0(arg),O_QUOTE,"quotetolist");          asir_assert(ARG0(arg),O_QUOTE,"quotetolist");
         fnodetotree((FNODE)BDY((QUOTE)(ARG0(arg))),rp);          fnodetotree((FNODE)BDY((QUOTE)(ARG0(arg))),rp);
 }  }
   
 void fnodetotree(f,rp)  void Peval_variables_in_quote(NODE arg,QUOTE *rp)
 FNODE f;  
 Obj *rp;  
 {  {
         Obj a1,a2;          FNODE fn;
   
           asir_assert(ARG0(arg),O_QUOTE,"eval_variables_in_quote");
           fn = eval_pvar_in_fnode((FNODE)BDY((QUOTE)(ARG0(arg))));
           MKQUOTE(*rp,fn);
   }
   
   /* fnode -> [tag,name,arg0,arg1,...] */
   
   void fnodetotree(FNODE f,LIST *rp)
   {
           LIST a1,a2,a3;
         NODE n,t,t0;          NODE n,t,t0;
         STRING head;          STRING head,op,str;
         LIST r,arg;  
         char *opname;          char *opname;
   
         if ( !f ) {          if ( !f ) {
                 *rp = 0;                  MKSTR(head,"internal");
                   n = mknode(2,head,0);
                   MKLIST(*rp,n);
                 return;                  return;
         }          }
         switch ( f->id ) {          switch ( f->id ) {
                 case I_BOP: case I_COP: I_LOP:                  /* unary operators */
                         /* arg list */                  case I_NOT: case I_PAREN: case I_MINUS:
                         fnodetotree((FNODE)FA1(f),&a1);                          MKSTR(head,"u_op");
                         fnodetotree((FNODE)FA2(f),&a2);                          switch ( f->id ) {
                         n = mknode(2,a1,a2); MKLIST(arg,n);                                  case I_NOT:
                                           MKSTR(op,"!");
                                           break;
                                   case I_PAREN:
                                           MKSTR(op,"()");
                                           break;
                                   case I_MINUS:
                                           MKSTR(op,"-");
                                           break;
                           }
                           fnodetotree((FNODE)FA0(f),&a1);
                           n = mknode(3,head,op,a1);
                           MKLIST(*rp,n);
                           break;
   
                   /* binary operators */
                   case I_BOP: case I_COP: case I_LOP: case I_AND: case I_OR:
                         /* head */                          /* head */
                           MKSTR(head,"b_op");
   
                           /* arg list */
                         switch ( f->id ) {                          switch ( f->id ) {
                                   case I_AND: case I_OR:
                                           fnodetotree((FNODE)FA0(f),&a1);
                                           fnodetotree((FNODE)FA1(f),&a2);
                                           break;
                                   default:
                                           fnodetotree((FNODE)FA1(f),&a1);
                                           fnodetotree((FNODE)FA2(f),&a2);
                                           break;
                           }
   
                           /* op */
                           switch ( f->id ) {
                                 case I_BOP:                                  case I_BOP:
                                         MKSTR(head,((ARF)FA0(f))->name); break;                                          MKSTR(op,((ARF)FA0(f))->name); break;
   
                                 case I_COP:                                  case I_COP:
                                         switch( (cid)FA0(f) ) {                                          switch( (cid)FA0(f) ) {
                                                 case C_EQ: opname = "=="; break;                                                  case C_EQ: opname = "=="; break;
Line 123  Obj *rp;
Line 162  Obj *rp;
                                                 case C_GE: opname = ">="; break;                                                  case C_GE: opname = ">="; break;
                                                 case C_LE: opname = "<="; break;                                                  case C_LE: opname = "<="; break;
                                         }                                          }
                                         MKSTR(head,opname); break;                                          MKSTR(op,opname); break;
   
                                 case I_LOP:                                  case I_LOP:
                                         switch( (lid)FA0(f) ) {                                          switch( (lid)FA0(f) ) {
                                                 case L_EQ: opname = "@=="; break;                                                  case L_EQ: opname = "@=="; break;
Line 134  Obj *rp;
Line 174  Obj *rp;
                                                 case L_LE: opname = "@<="; break;                                                  case L_LE: opname = "@<="; break;
                                                 case L_AND: opname = "@&&"; break;                                                  case L_AND: opname = "@&&"; break;
                                                 case L_OR: opname = "@||"; break;                                                  case L_OR: opname = "@||"; break;
                                                 case L_NOT: opname = "@!"; break;  
                                                   case L_NOT: opname = "@!";
                                                           /* XXX : L_NOT is a unary operator */
                                                           MKSTR(head,"u_op");
                                                           MKSTR(op,opname);
                                                           n = mknode(3,head,op,a1);
                                                           MKLIST(*rp,n);
                                                           return;
                                         }                                          }
                                         MKSTR(head,opname); break;                                          MKSTR(op,opname); break;
   
                                   case I_AND:
                                           MKSTR(op,"&&"); break;
   
                                   case I_OR:
                                           MKSTR(op,"||"); break;
                         }                          }
                         n = mknode(2,head,arg);                          n = mknode(4,head,op,a1,a2);
                         MKLIST(r,n);                          MKLIST(*rp,n);
                         *rp = (Obj)r;  
                         break;                          break;
                 case I_AND:  
                         fnodetotree((FNODE)FA0(f),&a1);                  /* ternary operators */
                         fnodetotree((FNODE)FA1(f),&a2);  
                         n = mknode(2,a1,a2); MKLIST(arg,n);  
                         MKSTR(head,"&&");  
                         n = mknode(2,head,arg);  
                         MKLIST(r,n);  
                         *rp = (Obj)r;  
                         break;  
                 case I_OR:  
                         fnodetotree((FNODE)FA0(f),&a1);  
                         fnodetotree((FNODE)FA1(f),&a2);  
                         n = mknode(2,a1,a2); MKLIST(arg,n);  
                         MKSTR(head,"||");  
                         n = mknode(2,head,arg);  
                         MKLIST(r,n);  
                         *rp = (Obj)r;  
                         break;  
                 case I_NOT:  
                         fnodetotree((FNODE)FA0(f),&a1);  
                         n = mknode(1,a1); MKLIST(arg,n);  
                         MKSTR(head,"!");  
                         n = mknode(2,head,arg);  
                         MKLIST(r,n);  
                         *rp = (Obj)r;  
                         break;  
                 case I_CE:                  case I_CE:
                           MKSTR(head,"t_op");
                           MKSTR(op,"?:");
                         fnodetotree((FNODE)FA0(f),&a1);                          fnodetotree((FNODE)FA0(f),&a1);
                         fnodetotree((FNODE)FA1(f),&a2);                          fnodetotree((FNODE)FA1(f),&a2);
                         n = mknode(2,a1,a2); MKLIST(arg,n);                          fnodetotree((FNODE)FA2(f),&a3);
                         MKSTR(head,"?:");                          n = mknode(5,head,op,a1,a2,a3);
                         n = mknode(2,head,arg);                          MKLIST(*rp,n);
                         MKLIST(r,n);  
                         *rp = (Obj)r;  
                         break;                          break;
                 case I_EV: case I_LIST:  
                   /* lists */
                   case I_LIST:
                         n = (NODE)FA0(f);                          n = (NODE)FA0(f);
                         for ( t0 = 0; n; n = NEXT(n) ) {                          for ( t0 = 0; n; n = NEXT(n) ) {
                                 NEXTNODE(t0,t);                                  NEXTNODE(t0,t);
                                 fnodetotree(BDY(n),&BDY(t));                                  fnodetotree((FNODE)BDY(n),&a1);
                                   BDY(t) = (pointer)a1;
                         }                          }
                         if ( t0 )                          if ( t0 )
                                 NEXT(t) = 0;                                  NEXT(t) = 0;
                         MKLIST(arg,t0);                          MKSTR(head,"list");
                           MKNODE(n,head,t0);
                           MKLIST(*rp,n);
                           break;
   
                   /* function */
                   case I_FUNC: case I_CAR: case I_CDR: case I_EV:
                           MKSTR(head,"function");
                         switch ( f->id ) {                          switch ( f->id ) {
                                 case I_LIST:                                  case I_FUNC:
                                         *rp = (Obj)arg; break;                                          MKSTR(op,((FUNC)FA0(f))->name);
                                           fnodetotree((FNODE)FA1(f),&a1);
                                           break;
                                   case I_CAR:
                                           MKSTR(op,"car");
                                           fnodetotree((FNODE)FA0(f),&a1);
                                           break;
                                   case I_CDR:
                                           MKSTR(op,"cdr");
                                           fnodetotree((FNODE)FA0(f),&a1);
                                           break;
                                 case I_EV:                                  case I_EV:
                                         MKSTR(head,"exponent_vector");                                          /* exponent vector; should be treated as function call */
                                         n = mknode(2,head,arg);                                          MKSTR(op,"exponent_vector");
                                         MKLIST(r,n);                                          fnodetotree(mkfnode(1,I_LIST,FA0(f)),&a1);
                                         *rp = (Obj)r;  
                                         break;                                          break;
                         }                          }
                           t0 = NEXT(BDY(a1)); /* XXX : skip the headers */
                           MKNODE(t,op,t0);
                           MKNODE(n,head,t);
                           MKLIST(*rp,n);
                         break;                          break;
                 case I_FUNC:  
                         fnodetotree((FNODE)FA1(f),&arg);                  case I_STR:
                         MKSTR(head,((FUNC)FA0(f))->name);                          MKSTR(head,"internal");
                         n = mknode(2,head,arg);                          MKSTR(str,FA0(f));
                         MKLIST(r,n);                          n = mknode(2,head,str);
                         *rp = (Obj)r;                          MKLIST(*rp,n);
                         break;                          break;
                 case I_CAR:  
                         fnodetotree((FNODE)FA0(f),&arg);                  case I_FORMULA:
                         MKSTR(head,"car");                          MKSTR(head,"internal");
                         n = mknode(2,head,arg);                          n = mknode(2,head,FA0(f));
                         MKLIST(r,n);                          MKLIST(*rp,n);
                         *rp = (Obj)r;  
                         break;                          break;
                 case I_CDR:  
                         fnodetotree((FNODE)FA0(f),&arg);                  case I_PVAR:
                         MKSTR(head,"cdr");                          if ( FA1(f) )
                         n = mknode(2,head,arg);                                  error("fnodetotree : not implemented yet");
                         MKLIST(r,n);                          MKSTR(head,"variable");
                         *rp = (Obj)r;                          GETPVNAME(FA0(f),opname);
                           MKSTR(op,opname);
                           n = mknode(2,head,op);
                           MKLIST(*rp,n);
                         break;                          break;
                 case I_PAREN:  
                         fnodetotree((FNODE)FA0(f),&arg);                  default:
                         MKSTR(head,"()");                          error("fnodetotree : not implemented yet");
                         n = mknode(2,head,arg);          }
                         MKLIST(r,n);  }
                         *rp = (Obj)r;  
   FNODE eval_pvar_in_fnode(FNODE f)
   {
           FNODE a1,a2,a3;
           pointer r;
           NODE n,t,t0;
           QUOTE q;
   
           if ( !f )
                   return 0;
   
           switch ( f->id ) {
                   /* unary operators */
                   case I_NOT: case I_PAREN: case I_MINUS:
                           a1 = eval_pvar_in_fnode((FNODE)FA0(f));
                           return mkfnode(1,f->id,a1);
   
                   /* binary operators */
                   case I_AND: case I_OR:
                           a1 = eval_pvar_in_fnode((FNODE)FA0(f));
                           a2 = eval_pvar_in_fnode((FNODE)FA1(f));
                           return mkfnode(3,f->id,a1,a2);
   
                   case I_BOP: case I_COP: case I_LOP:
                           a1 = eval_pvar_in_fnode((FNODE)FA1(f));
                           a2 = eval_pvar_in_fnode((FNODE)FA2(f));
                           return mkfnode(4,f->id,FA0(f),a1,a2);
   
                   /* ternary operators */
                   case I_CE:
                           a1 = eval_pvar_in_fnode((FNODE)FA0(f));
                           a2 = eval_pvar_in_fnode((FNODE)FA1(f));
                           a3 = eval_pvar_in_fnode((FNODE)FA2(f));
                           return mkfnode(5,f->id,a1,a2,a3);
   
                   /* lists */
                   case I_LIST:
                           n = (NODE)FA0(f);
                           for ( t0 = 0; n; n = NEXT(n) ) {
                                   NEXTNODE(t0,t);
                                   BDY(t) = (pointer)eval_pvar_in_fnode(BDY(n));
                           }
                           if ( t0 )
                                   NEXT(t) = 0;
                           return mkfnode(1,f->id,t0);
   
                   /* function */
                   case I_FUNC:
                           a1 = eval_pvar_in_fnode((FNODE)FA1(f));
                           return mkfnode(2,f->id,FA0(f),a1);
                         break;                          break;
                 case I_FORMULA:                  case I_CAR: case I_CDR:
                         *rp = (Obj)FA0(f);                          a1 = eval_pvar_in_fnode((FNODE)FA0(f));
                           return mkfnode(1,f->id,a1);
                   case I_EV:
                           /* exponent vector */
                           a1 = eval_pvar_in_fnode(mkfnode(1,I_LIST,FA0(f)));
                           return mkfnode(1,f->id,a1);
   
                   case I_STR: case I_FORMULA:
                           return f;
   
                   case I_PVAR: case I_INDEX:
                   case I_POSTSELF: case I_PRESELF:
                           r = eval(f);
                           objtoquote(r,&q);
                           return BDY(q);
   
                   default:
                           error("eval_pvar_in_fnode : not implemented yet");
                           /* NOTREACHED */
                           return 0;
           }
   }
   
   FNODE subst_in_fnode(FNODE f,V v,FNODE g)
   {
           FNODE a1,a2,a3;
           DCP dc;
           V vf;
           NODE n,t,t0;
           Obj obj;
   
           if ( !f )
                   return 0;
   
           switch ( f->id ) {
                   /* unary operators */
                   case I_NOT: case I_PAREN: case I_MINUS:
                           a1 = subst_in_fnode((FNODE)FA0(f),v,g);
                           return mkfnode(1,f->id,a1);
   
                   /* binary operators */
                   case I_AND: case I_OR:
                           a1 = subst_in_fnode((FNODE)FA0(f),v,g);
                           a2 = subst_in_fnode((FNODE)FA1(f),v,g);
                           return mkfnode(3,f->id,a1,a2);
   
                   case I_BOP: case I_COP: case I_LOP:
                           a1 = subst_in_fnode((FNODE)FA1(f),v,g);
                           a2 = subst_in_fnode((FNODE)FA2(f),v,g);
                           return mkfnode(4,f->id,FA0(f),a1,a2);
   
                   /* ternary operators */
                   case I_CE:
                           a1 = subst_in_fnode((FNODE)FA0(f),v,g);
                           a2 = subst_in_fnode((FNODE)FA1(f),v,g);
                           a3 = subst_in_fnode((FNODE)FA2(f),v,g);
                           return mkfnode(5,f->id,a1,a2,a3);
   
                   /* lists */
                   case I_LIST:
                           n = (NODE)FA0(f);
                           for ( t0 = 0; n; n = NEXT(n) ) {
                                   NEXTNODE(t0,t);
                                   BDY(t) = (pointer)subst_in_fnode(BDY(n),v,g);
                           }
                           if ( t0 )
                                   NEXT(t) = 0;
                           return mkfnode(1,f->id,t0);
   
                   /* function */
                   case I_FUNC:
                           a1 = subst_in_fnode((FNODE)FA1(f),v,g);
                           return mkfnode(2,f->id,FA0(f),a1);
                         break;                          break;
                   case I_CAR: case I_CDR:
                           a1 = subst_in_fnode((FNODE)FA0(f),v,g);
                           return mkfnode(1,f->id,a1);
                   case I_EV:
                           /* exponent vector */
                           a1 = subst_in_fnode(mkfnode(1,I_LIST,FA0(f)),v,g);
                           return mkfnode(1,f->id,a1);
   
                   case I_STR:
                           return f;
   
                   case I_FORMULA:
                           obj = (Obj)FA0(f);
                           if ( !obj )
                                   return f;
   
                           switch ( OID(obj) ) {
                                   case O_N:
                                           return f;
                                   case O_P:
                                           vf = VR((P)obj);
                                           dc = DC((P)obj);
                                           if ( vf != v )
                                                   return f;
                                           else if ( UNIQ(DEG(dc)) && UNIQ((Q)COEF(dc)) )
                                                   return g;
                                           else break;
                                   default:
                                           break;
                           }
   
                 default:                  default:
                         error("fnodetotree : not implemented yet");                          error("subst_in_fnode : not implemented yet");
                           /* NOTREACHED */
                           return 0;
         }          }
   }
   
   /* not completed yet */
   
   #if 0
   char *get_attribute(char *key,LIST attr)
   {}
   
   void treetofnode(Obj obj,FNODE *f)
   {
           NODE n;
           LIST attr;
           char *prop;
   
           if ( obj || OID(obj) != O_LIST ) {
                   /* internal object */
                   *f = mkfnode(1,I_FORMULA,obj);
           } else {
                   /* [attr(list),name(string),args(node)] */
                   n = BDY((LIST)obj);
                   attr = (LIST)BDY(n); n = NEXT(n);
                   prop = get_attribute("asir",attr);
                   if ( !strcmp(prop,"u_op") ) {
                   } else if ( !strcmp(prop,"b_op") ) {
                   } else if ( !strcmp(prop,"t_op") ) {
                   } else if ( !strcmp(prop,"function") ) {
                   }
                           /* default will be set to P_FUNC */
           }
   }
   #endif
   
   FUNC user_print_function;
   
   void Pset_print_function(NODE arg,pointer *rp)
   {
           if ( !arg )
                   user_print_function = 0;
           else {
                   gen_searchf(BDY((STRING)ARG0(arg)),&user_print_function);
           }
           *rp = 0;
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.14

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