cvsuser     02/11/22 05:48:47

  Modified:    jit/alpha jit_emit.h
               jit/arm  jit_emit.h
               jit/ppc  jit_emit.h
               jit/sun4 jit_emit.h
  Log:
  Added 'interpreter' to Parrot_jit_emit_mov_[mr|rm]*
  
  Revision  Changes    Path
  1.16      +9 -5      parrot/jit/alpha/jit_emit.h
  
  Index: jit_emit.h
  ===================================================================
  RCS file: /cvs/public/parrot/jit/alpha/jit_emit.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -w -r1.15 -r1.16
  --- jit_emit.h        22 Nov 2002 12:50:14 -0000      1.15
  +++ jit_emit.h        22 Nov 2002 13:48:39 -0000      1.16
  @@ -3,7 +3,7 @@
    *
    * ALPHA
    *
  - * $Id: jit_emit.h,v 1.15 2002/11/22 12:50:14 leo Exp $
  + * $Id: jit_emit.h,v 1.16 2002/11/22 13:48:39 grunblatt Exp $
    */
   
   /*  Register usage:
  @@ -475,27 +475,31 @@
   
   /* move reg to mem (i.e. intreg) */
   void
  -Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
       jit_emit_mov_mr_i(jit_info->native_ptr, mem, reg);
   }
   
   /* move mem (i.e. intreg) to reg */
   void
  -Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
       jit_emit_mov_rm_i(jit_info->native_ptr, reg, mem);
   }
   
   /* move reg to mem (i.e. numreg) */
   void
  -Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
   }
   
   /* move mem (i.e. numreg) to reg */
   void
  -Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
   }
   
  
  
  
  1.15      +9 -5      parrot/jit/arm/jit_emit.h
  
  Index: jit_emit.h
  ===================================================================
  RCS file: /cvs/public/parrot/jit/arm/jit_emit.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -w -r1.14 -r1.15
  --- jit_emit.h        22 Nov 2002 12:50:15 -0000      1.14
  +++ jit_emit.h        22 Nov 2002 13:48:40 -0000      1.15
  @@ -3,7 +3,7 @@
    *
    * ARM (I think this is all ARM2 or later, although it is APCS-32)
    *
  - * $Id: jit_emit.h,v 1.14 2002/11/22 12:50:15 leo Exp $
  + * $Id: jit_emit.h,v 1.15 2002/11/22 13:48:40 grunblatt Exp $
    */
   
   #ifdef ARM
  @@ -961,25 +961,29 @@
   
   /* move reg to mem (i.e. intreg) */
   void
  -Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
   }
   
   /* move mem (i.e. intreg) to reg */
   void
  -Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
   }
   
   /* move reg to mem (i.e. numreg) */
   void
  -Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
   }
   
   /* move mem (i.e. numreg) to reg */
   void
  -Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
   }
   
  
  
  
  1.18      +9 -5      parrot/jit/ppc/jit_emit.h
  
  Index: jit_emit.h
  ===================================================================
  RCS file: /cvs/public/parrot/jit/ppc/jit_emit.h,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -w -r1.17 -r1.18
  --- jit_emit.h        22 Nov 2002 12:50:18 -0000      1.17
  +++ jit_emit.h        22 Nov 2002 13:48:44 -0000      1.18
  @@ -3,7 +3,7 @@
    *
    * PPC
    *
  - * $Id: jit_emit.h,v 1.17 2002/11/22 12:50:18 leo Exp $
  + * $Id: jit_emit.h,v 1.18 2002/11/22 13:48:44 grunblatt Exp $
    */
   
   #include <unistd.h>
  @@ -645,28 +645,32 @@
   
   /* move reg to mem (i.e. intreg) */
   void
  -Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
       jit_emit_mov_mr_i(jit_info->native_ptr, mem, reg);
   }
   
   /* move mem (i.e. intreg) to reg */
   void
  -Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info, 
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
       jit_emit_mov_rm_i(jit_info->native_ptr, reg, mem);
   }
   
   /* move reg to mem (i.e. numreg) */
   void
  -Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info, 
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
       jit_emit_mov_mr_n(jit_info->native_ptr, mem, reg);
   }
   
   /* move mem (i.e. numreg) to reg */
   void
  -Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info, 
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
       jit_emit_mov_rm_n(jit_info->native_ptr, reg, mem);
   }
  
  
  
  1.16      +9 -5      parrot/jit/sun4/jit_emit.h
  
  Index: jit_emit.h
  ===================================================================
  RCS file: /cvs/public/parrot/jit/sun4/jit_emit.h,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -w -r1.15 -r1.16
  --- jit_emit.h        22 Nov 2002 12:50:24 -0000      1.15
  +++ jit_emit.h        22 Nov 2002 13:48:47 -0000      1.16
  @@ -3,7 +3,7 @@
   **
   ** SPARC
   **
  -** $Id: jit_emit.h,v 1.15 2002/11/22 12:50:24 leo Exp $
  +** $Id: jit_emit.h,v 1.16 2002/11/22 13:48:47 grunblatt Exp $
   **/
   
   /*
  @@ -574,25 +574,29 @@
   
   /* move reg to mem (i.e. intreg) */
   void
  -Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
   }
   
   /* move mem (i.e. intreg) to reg */
   void
  -Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
   }
   
   /* move reg to mem (i.e. numreg) */
   void
  -Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info, char *mem, int reg)
  +Parrot_jit_emit_mov_mr_n(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, char *mem, int reg)
   {
   }
   
   /* move mem (i.e. numreg) to reg */
   void
  -Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info, int reg, char *mem)
  +Parrot_jit_emit_mov_rm_n(Parrot_jit_info_t *jit_info,
  +    struct Parrot_Interp * interpreter, int reg, char *mem)
   {
   }
   
  
  
  


Reply via email to