Skip to content
Snippets Groups Projects
  1. Dec 31, 1997
    • dtc's avatar
      When using the MP feature have internal-debug wrap the debug-loop in · cc0c3cba
      dtc authored
      with-scheduling, otherwise debugging can be rather problematic - could
      use some more thought.
      cc0c3cba
    • dtc's avatar
      Add the option of creating stack groups that are allocated fresh · e7093599
      dtc authored
      stacks rather than inheriting those of the current stack group. The
      alien stack, the eval stack, and the shallow bindings are allocated
      afresh for the new stack-group, but some work on the VOPs is needed to
      handle the control stack. Initial bindings for the following symbols
      are setup by default: * ** *** - + ++ +++ /// // /.
      
      Exploit this new option during the creation of new processes. The user
      visible change is that new processes now have a fresh set of bindings
      rather than inheriting those of the parent process.
      
      During the unwinding and rebinding of the binding stacks there is the
      possibility that *interrupts-enabled* will briefly set to true which
      may cause an unexpected interrupt. For now mask the interrupts during
      the binding stack switch; a better fix may be to implement these
      functions in assembly routines using pseudo-atomic to block
      interrupts.
      e7093599
  2. Dec 30, 1997
  3. Dec 29, 1997
  4. Dec 28, 1997
  5. Dec 27, 1997
    • dtc's avatar
      There were a the few calls to unix-select that limited the file · 19ce82a1
      dtc authored
      descriptor to an (unsigned-byte 32) and thus limited this code to file
      descriptors less than 32, this was probably done to limit consing.
      Replace these with unix-fast-select, allowing the use of file
      descriptors upto fd-setsize (doesn't cons). Tested with over 128 FDs
      running CL-HTTP on FreeBSD.
      19ce82a1
  6. Dec 18, 1997
  7. Dec 17, 1997
  8. Dec 16, 1997
  9. Dec 15, 1997
  10. Dec 13, 1997
  11. Dec 12, 1997
    • dtc's avatar
      Fix a type declaration typo. · a70b7bb4
      dtc authored
      Slightly faster version of %random-double-float for the x86 port.
      Don't push :random-mt19937 onto *features* here.
      a70b7bb4
  12. Dec 11, 1997
  13. Dec 07, 1997
  14. Dec 05, 1997
  15. Dec 04, 1997
  16. Dec 03, 1997
  17. Dec 01, 1997
  18. Nov 30, 1997
  19. Nov 29, 1997
  20. Nov 28, 1997
  21. Nov 25, 1997
    • dtc's avatar
      Re-write of the x86 port debug support. This should give a significant · fa77470b
      dtc authored
      improvement in reliability necessary for breakpoint and single
      stepping to have a chance, and has been tested in the experimental
      code and works on FreeBSD and Linux.
      
      The code object for a given return address in now located with the help
      of the GC support function component_ptr_from_pc which can reliably
      locate the code objects. This uses a forward search of the heap so is
      rather slow - some caching will be needed for better performance.
      
      The stack parsing has been re-written using a backtracking search to
      improve the chance of finding a valid frame path given that the
      control changes between C and Lisp conventions.  The x86-lra hack is
      no longer necessary (was unreliable anyway) allowing x86 code to be
      more compact. The return address is now handled as a SAP which is
      acceptable because the code doesn't move with CGC, and GENCGC ensures
      that code objects in the dynamic heap with return addresses on the
      stack are not moved. However there are known problems under GENCGC
      when return addresses are move off the stack during some breakpoint
      operations in which case the code object may move.
      fa77470b
  22. Nov 22, 1997
  23. Nov 21, 1997
    • dtc's avatar
      For the x86 port clear *pseudo-atomic-atomic* in case the core wasn't · eefb15e9
      dtc authored
      compiled with support.
      eefb15e9
    • dtc's avatar
      Have the functions for unbinding and rebinding the bind stack check · a405427a
      dtc authored
      that the symbol slot is actually a symbol as this slot may be zero if
      a bind or unbind is interrupted - have it ignore these for now so that
      it as least proceeds rather than giving a SIGSEGV fault.
      
      Re-write of make-stack-group and stack-group-resume taking care not to
      mess with unwind-protect during a stack group switch.
      
      No longer need to disable the GENCGC pointer filter when starting the
      SIGALRM yield interrupt because the object allocation should now be
      interrupt safe now.
      
      Have the SIGALRM handler return quickly if the interrupt nesting is
      too great.
      a405427a
  24. Nov 18, 1997
Loading