Skip to content
Snippets Groups Projects
  1. Mar 17, 2005
    • rtoy's avatar
      Implement tracing for the known-return convention. This is basically · 46a81e81
      rtoy authored
      Helmut Eller's patch sent to cmucl-imp on 2005-03-08.  This basically
      means tracing recursive functions will show all recursions during the
      trace and not just the final call.
      
      code/debug-int.lisp:
      o Apply Helmut's patch.  Tweak it so when the known-return convention
        is being used, we tell MAKE-BOGUS-LRA that we're using the
        known-return so we can handle it properly.
      
      lisp/breakpoint.c:
      o Add an extra parameter to compute_offset so we know we're handling a
        function-end breakpoint or not.  Needed because reg_CODE isn't
        pointing to the bogus lra in this case, so the offsets are all
        wrong.  We compute the right offset for the known return and return
        the offset as negative so we can tell.
      o Adjust all callers of compute_offset.
      o Adjust handle_function_end_breakpoint to handle negative offsets
        from compute_offset so we can get the right code component for the
        bogus lra.
      46a81e81
  2. Feb 24, 2005
    • rtoy's avatar
      o Fix typo. · 522ebee0
      rtoy authored
      o When PPC_FUN_HACK is not defined, the raw_addr slot of an fdefn
        object should be on a word boundary, so change undefined_tramp and
        closure_tramp to be on such a boundary.  Previously, these had a
        lowtag of 1.  With this change, can we get rid of the other parts of
        a function definition that we don't use?
      522ebee0
  3. Feb 18, 2005
  4. Feb 09, 2005
  5. Feb 07, 2005
  6. Feb 06, 2005
    • rtoy's avatar
      Initial support for linkage-tables on PPC/Darwin. This is a · 6a4fd3c3
      rtoy authored
      relatively straightforward port of the sparc version of
      linkage-tables.  Some refinements are probably still needed, as well
      as some testing.
      
      Use boot-2005-02-ppc-linkage.lisp to bootstrap this change from the
      2005-02 snapshot.
      
      * code/ppc-vm.lisp
        o Add appropriate FOREIGN-SYMBOL-ADDRESS-AUX and FIND-FOREIGN-SYMBOL
          functions for linkage-table.
      
      * compiler/generic/new-genesis.lisp
        o Basically do the same as the sparc port for linkage-tables.
        o need to extern-alien-name on the cold linkages since they C names
          depend on the backend conventions.
      
      * compiler/ppc/alloc.lisp
        o Load "undefined_tramp" appropriately for linkage-tables.
      
      * compiler/ppc/c-call.lisp
        o Define new vops (FOREIGN-SYMBOL-CODE-ADDRESS,
          FOREIGN-SYMBOL-DATA-ADDRESS) for linkage-tables so we can access
          correctly.
      
      * compiler/ppc/cell.lisp
        o Load "closure_tramp" appropriately for linkage-tables
        o Load "undefined_tramp" appropriately for linkage-tables
      
      * compiler/ppc/parms.lisp
        o Put the foreign linkage space start at the end of the static space
          to make it easier to bootstrap.  (We need already mapped memory.)
          We can move this later.
        o Correct TARGET-FOREIGN-LINKAGE-ENTRY-SIZE.
        o Add new static-symbol *linkage-table-data*
        o While were at it, add SPARE-9 and SPARE-0 static symbols so we
          have 10 spares.
      
      * lisp/Config.ppc_darwin
        o Add -DLINKAGE_TABLE to CFLAGS/ASFLAGS if we have linkage-table
          support.
      
      * lisp/Darwin-os.c
        o Add os_dlsym to support linkage-tables.  (This nees a little
          refactoring because we just copied the #defines for dlopen modes.)
      
      * lisp/os-common.c
        o The checking of the linkage tables that is done for sparc almost
          works for ppc, but not quite.  Implement one for ppc.
      
      * lisp/ppc-arch.c
        o Add PPC version of arch_make_jump_entry, arch_make_linkage_entry,
          arch_linkage_entry.
      
      * lisp/ppc-assem.S
        o Add lazy_resolve_linkage to support linkage-tables.  This needs
          some more work.
        o Add undefined_foreign_symbol_trap.  This probably needs work, and
          definitely needs testing.
      
      * lisp/ppc-validate.h
        o Define the start of the linkage space and size.
      6a4fd3c3
    • cshapiro's avatar
      Retire i586_bzero() in favor of memset(). The i586_bzero() routine is · a52d33fa
      cshapiro authored
      demonstrably slower than extant compiler intrinsics or C runtime
      memset() implementations for blocks of memory greater than or equal to
      an x86 VM page.
      a52d33fa
  7. Feb 04, 2005
  8. Feb 03, 2005
    • rtoy's avatar
      Martin Rydstrom reports that CMUCL with the default heap size doesn't · d0c874d1
      rtoy authored
      work on Solaris 10. (Eventually, he gets a GC lossage).  But setting
      -dynamic-space-size 256 works fine.  The difference is that the
      default is 256 MB - 32 KB.
      
      So change the default to just 256 MB.  We don't understand why the old
      default causes funny things to happen on Solaris 10.
      d0c874d1
  9. Jan 13, 2005
  10. Dec 24, 2004
    • rtoy's avatar
      From Helmut Eller, cmucl-imp, 2004-10-05: · 627128ba
      rtoy authored
          on Linux/x86, the Lisp signal handler for SIGSEGV overwrites the
          beginning of the control stack.
      
          For SIGSEGV we use an extra signal stack and when the signal isn't
          handled by the GC or by the stack overflow handler we call eventually
          call_into_lisp.  call_into_lisp tests whether the current stack
          pointer points to the normal control stack.  But the test fails
          because we use the extra signal stack, so call_into_lisp just sets the
          stack pointer to the beginning of the normal control stack. This is
          not much fun for debugging because the backtrace is truncated and it's
          also no longer possible to throw to the top-level-catcher because its
          frame was overwritten.
      
          I tried to fix that with the patch below.  The idea is to switch back
          to the normal stack before calling the Lisp handler.  The patch may
          not be very elegant but it is at least short  :) .
      627128ba
  11. Oct 20, 2004
    • rtoy's avatar
      Move the static space location for ppc/darwin. For some reason, OS X · 0b95c95e
      rtoy authored
      10.3 was putting some malloc'ed areas in the old (bigger) static
      space, which causes cmucl not to run.  Moving the space to 0x10000000
      makes it no longer overlap.  I don't understand the reason for this.
      OS X 10.2 doesn't have this problem.
      
      Use boot-2004-10-1-ppc.lisp to cross-compile this change.
      0b95c95e
  12. Oct 19, 2004
  13. Oct 16, 2004
  14. Oct 15, 2004
    • cwang's avatar
      typo · d89e9cd4
      cwang authored
      d89e9cd4
  15. Sep 24, 2004
  16. Sep 21, 2004
  17. Sep 14, 2004
  18. Sep 11, 2004
    • rtoy's avatar
      Port of SBCL's float-accuracy compilation policy. Intended to make · 571091c7
      rtoy authored
      double-float-epsilon actually be epsilon on x86.  No effect on other
      ports.
      
      The default precision is now 53-bit (double-float) instead of 64-bit
      (80-bit floats).  However, to preserve C expectations, all calls to C
      have the precision set to 64-bit.  This slows down calls to C, but we
      try to make syscalls and such fast by not changing precision for the
      call.
      
      By default ext:float-accuracy is 3.
      
      Use boot7.lisp to bootstrap.
      571091c7
  19. Aug 17, 2004
  20. Aug 06, 2004
  21. Aug 04, 2004
  22. Aug 02, 2004
  23. Jul 30, 2004
  24. Jul 29, 2004
  25. Jul 27, 2004
  26. Jul 25, 2004
  27. Jul 24, 2004
Loading