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

Diff for /OpenXM_contrib2/asir2000/gc/mach_dep.c between version 1.1 and 1.3

version 1.1, 1999/12/03 07:39:09 version 1.3, 2000/12/01 09:26:11
Line 62  asm static void PushMacRegisters()
Line 62  asm static void PushMacRegisters()
   
 #endif /* __MWERKS__ */  #endif /* __MWERKS__ */
   
   # if defined(SPARC) || defined(IA64)
       /* Value returned from register flushing routine; either sp (SPARC) */
       /* or ar.bsp (IA64)                                                 */
       word GC_save_regs_ret_val;
   # endif
   
 /* Routine to mark from registers that are preserved by the C compiler. */  /* Routine to mark from registers that are preserved by the C compiler. */
 /* This must be ported to every new architecture.  There is a generic   */  /* This must be ported to every new architecture.  There is a generic   */
 /* version at the end, that is likely, but not guaranteed to work       */  /* version at the end, that is likely, but not guaranteed to work       */
Line 74  void GC_push_regs()
Line 80  void GC_push_regs()
 #       ifdef RT  #       ifdef RT
           register long TMP_SP; /* must be bound to r11 */            register long TMP_SP; /* must be bound to r11 */
 #       endif  #       endif
   
   #       if defined(MIPS) && defined(LINUX)
             /* I'm not sure whether this has actually been tested. */
   #         define call_push(x)     asm("move $4," x ";"); asm("jal GC_push_one")
             call_push("$2");
             call_push("$3");
             call_push("$16");
             call_push("$17");
             call_push("$18");
             call_push("$19");
             call_push("$20");
             call_push("$21");
             call_push("$22");
             call_push("$23");
             call_push("$30");
   #         undef call_push
   #       endif   /* MIPS && LINUX */
   
 #       ifdef VAX  #       ifdef VAX
           /* VAX - generic code below does not work under 4.2 */            /* VAX - generic code below does not work under 4.2 */
           /* r1 through r5 are caller save, and therefore     */            /* r1 through r5 are caller save, and therefore     */
Line 193  void GC_push_regs()
Line 217  void GC_push_regs()
 #       endif   /* __MWERKS__ */  #       endif   /* __MWERKS__ */
 #   endif       /* MACOS */  #   endif       /* MACOS */
   
 #       if defined(I386) &&!defined(OS2) &&!defined(SVR4) &&!defined(MSWIN32) \  #       if defined(I386) &&!defined(OS2) &&!defined(SVR4) \
           && (defined(__MINGW32__) || !defined(MSWIN32)) \
         && !defined(SCO) && !defined(SCO_ELF) \          && !defined(SCO) && !defined(SCO_ELF) \
         && !(defined(LINUX)       && defined(__ELF__)) \          && !(defined(LINUX)       && defined(__ELF__)) \
         && !(defined(__FreeBSD__) && defined(__ELF__)) \          && !(defined(FREEBSD) && defined(__ELF__)) \
         && !defined(DOS4GW)          && !defined(DOS4GW)
         /* I386 code, generic code does not appear to work */          /* I386 code, generic code does not appear to work */
         /* It does appear to work under OS2, and asms dont */          /* It does appear to work under OS2, and asms dont */
Line 211  void GC_push_regs()
Line 236  void GC_push_regs()
 #       endif  #       endif
   
 #       if ( defined(I386) && defined(LINUX) && defined(__ELF__) ) \  #       if ( defined(I386) && defined(LINUX) && defined(__ELF__) ) \
         || ( defined(I386) && defined(__FreeBSD__) && defined(__ELF__) )          || ( defined(I386) && defined(FREEBSD) && defined(__ELF__) )
   
         /* This is modified for Linux with ELF (Note: _ELF_ only) */          /* This is modified for Linux with ELF (Note: _ELF_ only) */
         /* This section handles FreeBSD with ELF. */          /* This section handles FreeBSD with ELF. */
           asm("pushl %eax");  asm("call GC_push_one"); asm("addl $4,%esp");          /* Eax is caller-save and dead here.  Other caller-save         */
           asm("pushl %ecx");  asm("call GC_push_one"); asm("addl $4,%esp");          /* registers could also be skipped.  We assume there are no     */
           asm("pushl %edx");  asm("call GC_push_one"); asm("addl $4,%esp");          /* pointers in MMX registers, etc.                              */
           asm("pushl %ebp");  asm("call GC_push_one"); asm("addl $4,%esp");          /* We combine instructions in a single asm to prevent gcc from  */
           asm("pushl %esi");  asm("call GC_push_one"); asm("addl $4,%esp");          /* inserting code in the middle.                                */
           asm("pushl %edi");  asm("call GC_push_one"); asm("addl $4,%esp");            asm("pushl %ecx; call GC_push_one; addl $4,%esp");
           asm("pushl %ebx");  asm("call GC_push_one"); asm("addl $4,%esp");            asm("pushl %edx; call GC_push_one; addl $4,%esp");
             asm("pushl %ebp; call GC_push_one; addl $4,%esp");
             asm("pushl %esi; call GC_push_one; addl $4,%esp");
             asm("pushl %edi; call GC_push_one; addl $4,%esp");
             asm("pushl %ebx; call GC_push_one; addl $4,%esp");
 #       endif  #       endif
   
 #       if defined(I386) && defined(MSWIN32) && !defined(USE_GENERIC)  #       if defined(I386) && defined(MSWIN32) && !defined(__MINGW32__) \
              && !defined(USE_GENERIC)
         /* I386 code, Microsoft variant         */          /* I386 code, Microsoft variant         */
           __asm  push eax            __asm  push eax
           __asm  call GC_push_one            __asm  call GC_push_one
Line 268  void GC_push_regs()
Line 298  void GC_push_regs()
           asm ("movd r7, tos"); asm ("bsr ?_GC_push_one"); asm ("adjspb $-4");            asm ("movd r7, tos"); asm ("bsr ?_GC_push_one"); asm ("adjspb $-4");
 #       endif  #       endif
   
 #       ifdef SPARC  #       if defined(SPARC)
           {            {
               word GC_save_regs_in_stack();                word GC_save_regs_in_stack();
   
               /* generic code will not work */                GC_save_regs_ret_val = GC_save_regs_in_stack();
               (void)GC_save_regs_in_stack();  
           }            }
 #       endif  #       endif
   
Line 333  void GC_push_regs()
Line 362  void GC_push_regs()
 #        endif /* !__GNUC__ */  #        endif /* !__GNUC__ */
 #       endif /* M68K/SYSV */  #       endif /* M68K/SYSV */
   
   #     if defined(PJ)
           {
               register int * sp asm ("optop");
               extern int *__libc_stack_end;
   
               GC_push_all_stack (sp, __libc_stack_end);
           }
   #     endif
   
       /* other machines... */        /* other machines... */
 #       if !(defined M68K) && !(defined VAX) && !(defined RT)  #       if !(defined M68K) && !(defined VAX) && !(defined RT)
 #       if !(defined SPARC) && !(defined I386) && !(defined NS32K)  #       if !(defined SPARC) && !(defined I386) && !(defined NS32K)
 #       if !defined(POWERPC) && !defined(UTS4)  #       if !defined(POWERPC) && !defined(UTS4)
   #       if !defined(PJ) && !(defined(MIPS) && defined(LINUX))
             --> bad news <--              --> bad news <--
   #       endif
 #       endif  #       endif
 #       endif  #       endif
 #       endif  #       endif
Line 363  ptr_t cold_gc_frame;
Line 402  ptr_t cold_gc_frame;
                 for (; (char *)i < lim; i++) {                  for (; (char *)i < lim; i++) {
                     *i = 0;                      *i = 0;
                 }                  }
 #           if defined(POWERPC) || defined(MSWIN32) || defined(UTS4)  #           if defined(POWERPC) || defined(MSWIN32) || defined(UTS4) || defined(LINUX)
                 (void) setjmp(regs);                  (void) setjmp(regs);
 #           else  #           else
                 (void) _setjmp(regs);                  (void) _setjmp(regs);
 #           endif  #           endif
   #           if defined(SPARC) || defined(IA64)
                 /* On a register window machine, we need to save register */
                 /* contents on the stack for this to work.  The setjmp    */
                 /* is probably not needed on SPARC, since pointers are    */
                 /* only stored in windowed or scratch registers.  It is   */
                 /* needed on IA64, since some non-windowed registers are  */
                 /* preserved.                                             */
                 {
                   word GC_save_regs_in_stack();
   
                   GC_save_regs_ret_val = GC_save_regs_in_stack();
                 }
   #           endif
             GC_push_current_stack(cold_gc_frame);              GC_push_current_stack(cold_gc_frame);
         }          }
 }  }
Line 398  ptr_t cold_gc_frame;
Line 450  ptr_t cold_gc_frame;
 #   endif  #   endif
 # endif  # endif
   
   /* On IA64, we also need to flush register windows.  But they end       */
   /* up on the other side of the stack segment.                           */
   /* Returns the backing store pointer for the register stack.            */
   # ifdef IA64
           asm("        .text");
           asm("        .psr abi64");
           asm("        .psr lsb");
           asm("        .lsb");
           asm("");
           asm("        .text");
           asm("        .align 16");
           asm("        .global GC_save_regs_in_stack");
           asm("        .proc GC_save_regs_in_stack");
           asm("GC_save_regs_in_stack:");
           asm("        .body");
           asm("        flushrs");
           asm("        ;;");
           asm("        mov r8=ar.bsp");
           asm("        br.ret.sptk.few rp");
           asm("        .endp GC_save_regs_in_stack");
   # endif
   
 /* GC_clear_stack_inner(arg, limit) clears stack area up to limit and   */  /* GC_clear_stack_inner(arg, limit) clears stack area up to limit and   */
 /* returns arg.  Stack clearing is crucial on SPARC, so we supply       */  /* returns arg.  Stack clearing is crucial on SPARC, so we supply       */

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

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