Skip to content
Snippets Groups Projects
Forked from cmucl / cmucl
Source project has a limited visibility.
  • rtoy's avatar
    7d7c3c3e
    Tracing with :encapsulate NIL works on Darwin now. There are some · 7d7c3c3e
    rtoy authored
    issues like why the mcontext slot is 0 in the sigcontext from a
    function end breakpoint.  This works around that problem for now.
    
    lisp/x86-arch.c:
    o Add documentation on how arch_do_displaced_inst works.
    o Darwin has the eflags register in the sigcontext so use that to
      enable and disable single-stepping using the eflags slot.  This is
      how Linux works too.  This change makes function start breakpoints
      work.
    
    code/debug-int.lisp:
    o In FIND-ESCAPED-FRAME, make sure the mcontext slot is not null (0)
      before we try to grab the cfp slot from it.  This works around an
      issue where the mcontext slot is 0 on Darwin.
    
    code/ntrace.lisp:
    o Make *TRACE-ENCAPSULATE-DEFAULT* be :default again.
    7d7c3c3e
    History
    Tracing with :encapsulate NIL works on Darwin now. There are some
    rtoy authored
    issues like why the mcontext slot is 0 in the sigcontext from a
    function end breakpoint.  This works around that problem for now.
    
    lisp/x86-arch.c:
    o Add documentation on how arch_do_displaced_inst works.
    o Darwin has the eflags register in the sigcontext so use that to
      enable and disable single-stepping using the eflags slot.  This is
      how Linux works too.  This change makes function start breakpoints
      work.
    
    code/debug-int.lisp:
    o In FIND-ESCAPED-FRAME, make sure the mcontext slot is not null (0)
      before we try to grab the cfp slot from it.  This works around an
      issue where the mcontext slot is 0 on Darwin.
    
    code/ntrace.lisp:
    o Make *TRACE-ENCAPSULATE-DEFAULT* be :default again.