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

Diff for /OpenXM_contrib2/asir2000/engine/init.c between version 1.12 and 1.15

version 1.12, 2001/09/03 07:01:06 version 1.15, 2002/01/04 17:08:22
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/engine/init.c,v 1.11 2001/06/07 04:54:40 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/engine/init.c,v 1.14 2002/01/04 17:01:39 saito Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "version.h"  #include "version.h"
Line 83  USINT VOIDobj = &oVOID;
Line 83  USINT VOIDobj = &oVOID;
 int bigfloat;  int bigfloat;
 int nez = 1;  int nez = 1;
 int current_mod = 0;  int current_mod = 0;
   int Strassensize = 4;
   
 static int *lprime;  static int *lprime;
 int lprime_size;  int lprime_size;
Line 109  int paristack = 1<<16;
Line 110  int paristack = 1<<16;
 #if defined(INTERVAL)  #if defined(INTERVAL)
 int zerorewrite = 0;  int zerorewrite = 0;
 void (*addnumt[])() = { addq, addreal, addalg, ADDBF, additvp, additvd, 0, additvf, addcplx, addmi, addlm, addgf2n, addgfpn, addgfs, addgfsn };  void (*addnumt[])() = { addq, addreal, addalg, ADDBF, additvp, additvd, 0, additvf, addcplx, addmi, addlm, addgf2n, addgfpn, addgfs, addgfsn };
 void (*subnumt[])() = { subq, subreal, subalg, SUBBF, subitvp, subitvd, 0, subitvf, subcplx, submi, sublm, subgf2n, subgfpn, subgfs, subfspn };  void (*subnumt[])() = { subq, subreal, subalg, SUBBF, subitvp, subitvd, 0, subitvf, subcplx, submi, sublm, subgf2n, subgfpn, subgfs, subgfsn };
 void (*mulnumt[])() = { mulq, mulreal, mulalg, MULBF, mulitvp, mulitvd, 0, mulitvf, mulcplx, mulmi, mullm, mulgf2n, mulgfpn, mulgfs, mulgfsn };  void (*mulnumt[])() = { mulq, mulreal, mulalg, MULBF, mulitvp, mulitvd, 0, mulitvf, mulcplx, mulmi, mullm, mulgf2n, mulgfpn, mulgfs, mulgfsn };
 void (*divnumt[])() = { divq, divreal, divalg, DIVBF, divitvp, divitvd, 0, divitvf, divcplx, divmi, divlm, divgf2n, divgfpn, divgfs, divgfsn };  void (*divnumt[])() = { divq, divreal, divalg, DIVBF, divitvp, divitvd, 0, divitvf, divcplx, divmi, divlm, divgf2n, divgfpn, divgfs, divgfsn };
 void (*pwrnumt[])() = { pwrq, pwrreal, pwralg, PWRBF, pwritvp, pwritvd, 0, pwritvf, pwrcplx, pwrmi, pwrlm, pwrgf2n, pwrgfpn, pwrgfs, pwrgfsn };  void (*pwrnumt[])() = { pwrq, pwrreal, pwralg, PWRBF, pwritvp, pwritvd, 0, pwritvf, pwrcplx, pwrmi, pwrlm, pwrgf2n, pwrgfpn, pwrgfs, pwrgfsn };
Line 191  extern double gctime;
Line 192  extern double gctime;
 double suspend_start;  double suspend_start;
 double suspended_time=0;  double suspended_time=0;
   
 void get_eg(p)  void get_eg(struct oEGT *p)
 struct oEGT *p;  
 {  {
         p->exectime = get_clock() - gctime - suspended_time; p->gctime = gctime;          p->exectime = get_clock() - gctime - suspended_time; p->gctime = gctime;
 }  }
   
 void init_eg(eg)  void init_eg(struct oEGT *eg)
 struct oEGT *eg;  
 {  {
         bzero((char *)eg,sizeof(struct oEGT));          bzero((char *)eg,sizeof(struct oEGT));
 }  }
   
 void add_eg(base,start,end)  void add_eg(struct oEGT *base,struct oEGT *start,struct oEGT *end)
 struct oEGT *base,*start,*end;  
 {  {
         base->exectime += end->exectime - start->exectime;          base->exectime += end->exectime - start->exectime;
         base->gctime += end->gctime - start->gctime;          base->gctime += end->gctime - start->gctime;
 }  }
   
 void print_eg(item,eg)  void print_eg(char *item,struct oEGT *eg)
 char *item;  
 struct oEGT *eg;  
 {  {
         printf("%s=(%.4g,%.4g)",item,eg->exectime,eg->gctime);          printf("%s=(%.4g,%.4g)",item,eg->exectime,eg->gctime);
 }  }
   
 void print_split_eg(start,end)  void print_split_eg(struct oEGT *start,struct oEGT *end)
 struct oEGT *start,*end;  
 {  {
         struct oEGT base;          struct oEGT base;
   
Line 226  struct oEGT *start,*end;
Line 221  struct oEGT *start,*end;
         printf("(%.4g,%.4g)",base.exectime,base.gctime);          printf("(%.4g,%.4g)",base.exectime,base.gctime);
 }  }
   
 void print_split_e(start,end)  void print_split_e(struct oEGT *start,struct oEGT *end)
 struct oEGT *start,*end;  
 {  {
         struct oEGT base;          struct oEGT base;
   
Line 303  int get_lprime(index)
Line 297  int get_lprime(index)
         return lprime[index];          return lprime[index];
 }  }
   
 void create_new_lprimes(index)  void create_new_lprimes(int index)
 int index;  
 {  {
         int count,p,i,j,d;          int count,p,i,j,d;
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.15

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