unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: zimoun <zimon.toutoune@gmail.com>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: Maxim Cournoyer <maxim.cournoyer@gmail.com>,
	guix-devel <guix-devel@gnu.org>
Subject: Re: Guile debugger workgroup?
Date: Mon, 28 Nov 2022 13:31:37 +0100	[thread overview]
Message-ID: <877czftg46.fsf@gmail.com> (raw)
In-Reply-To: <87lenve3t2.fsf@gnu.org>

Hi,

On Mon, 28 Nov 2022 at 12:06, Ludovic Courtès <ludo@gnu.org> wrote:

> Why doesn’t it work in ‘guix repl’?  Because auto-compilation is
> disabled:

Ah, thanks.  Well, maybe we could have an option to start “guix repl”
with debug mode available… even if it is really slow.


> I think we should identify scenarios where things don’t work as
> expected, and then turn them into bug reports, documentation issues, or
> any other concrete action we should take.

The example I provided is, IMHO, a good scenario for starting. :-)  For
instance, ,step by ,step works,

--8<---------------cut here---------------start------------->8---
$ guix shell guile -- guile -q
GNU Guile 3.0.8
Copyright (C) 1995-2021 Free Software Foundation, Inc.

Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
This program is free software, and you are welcome to redistribute it
under certain conditions; type `,show c' for details.

Enter `,help' for help.
scheme@(guile-user)> (load "/tmp/my-target.scm")
scheme@(guile-user)> ,break example
Trap 0: Breakpoint at #<procedure example (x)>.
scheme@(guile-user)> (example #t)
Trap 0: Breakpoint at #<procedure example (x)>
Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
scheme@(guile-user) [1]> ,bt
In /tmp/my-target.scm:
     17:0  0 (example #t)
scheme@(guile-user) [1]> ,s
Step into #<frame 7ff70be4ace0 example>
scheme@(guile-user) [1]> ,bt
In /tmp/my-target.scm:
    19:21  0 (example _)
scheme@(guile-user) [1]> ,s
Step into #<frame 7ff70be73360 example>
scheme@(guile-user) [1]> ,s
Step into #<frame 7ff70beef870 example>
scheme@(guile-user) [1]> ,s
Step into #<frame 7ff70bf15f20 example>
scheme@(guile-user) [1]> ,bt
In /tmp/my-target.scm:
    19:20  1 (example _)
      3:0  0 (mutate-once "something")
scheme@(guile-user) [1]> 
--8<---------------cut here---------------end--------------->8---

but then I do not know how many steps are required to reach the other
’mutate-twice’.

--8<---------------cut here---------------start------------->8---
Step into #<frame 7ff70bf15350 mutate-once>
Step into #<frame 7ff70dab0480 mutate-once>
4x Step into #<frame 7ff70cc70760 b>
5x Step into #<frame 7ff70cc198e0 catch>
4x Step into #<frame 7ff70cc70170 catch>
Step into #<frame 7ff70c378bf0 procedure?>
10x Step into #<frame 7ff70c3784b0 catch>
4x Step into #<frame 7ff70bb33af0 with-exception-handler>
Step into #<frame 7ff70ba1adf0 procedure?>
6x Step into #<frame 7ff70ba1a6b0 with-exception-handler>
3x Step into #<frame 7ff70c32d060 make-prompt-tag>
5x Step into #<frame 7ff70da0e910 with-exception-handler>
Step into #<frame 7ff70b9921d0>
…
--8<---------------cut here---------------end--------------->8---

And I do not know if ,break-at-source works correctly.

--8<---------------cut here---------------start------------->8---
$ cat -n /tmp/my-target.scm | grep 20
    20	         (my-target (mutate-twice my-target)))

$ guix shell guile -- guile -q
GNU Guile 3.0.8
Copyright (C) 1995-2021 Free Software Foundation, Inc.

Guile comes with ABSOLUTELY NO WARRANTY; for details type `,show w'.
This program is free software, and you are welcome to redistribute it
under certain conditions; type `,show c' for details.

Enter `,help' for help.
scheme@(guile-user)> (load "/tmp/my-target.scm")
scheme@(guile-user)> ,break example
Trap 0: Breakpoint at #<procedure example (x)>.
scheme@(guile-user)> (example #t)
Trap 0: Breakpoint at #<procedure example (x)>
Entering a new prompt.  Type `,bt' for a backtrace or `,q' to continue.
scheme@(guile-user) [1]> ,bt
In /tmp/my-target.scm:
     17:0  0 (example #t)
scheme@(guile-user) [1]> ,break-at-source "/tmp/my-target.scm" 20
Trap 1: Breakpoint at /tmp/my-target.scm:20.
scheme@(guile-user) [1]> ,bt
In /tmp/my-target.scm:
     17:0  0 (example #t)
scheme@(guile-user) [1]> ,next
Step into #<frame 7f8c260a9b00 example>
scheme@(guile-user) [1]> ,bt
In /tmp/my-target.scm:
    19:21  0 (example _)
scheme@(guile-user) [1]> ,locals
  No local variables.
scheme@(guile-user) [1]>
--8<---------------cut here---------------end--------------->8---


Cheers,
simon


  reply	other threads:[~2022-11-28 12:53 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20221027035100.28852-1-maxim.cournoyer@gmail.com>
     [not found] ` <20221027035100.28852-3-maxim.cournoyer@gmail.com>
     [not found]   ` <87leojon1z.fsf_-_@gnu.org>
     [not found]     ` <877d03xywl.fsf@gmail.com>
     [not found]       ` <87sfihfpng.fsf_-_@gnu.org>
     [not found]         ` <86zgcpju9p.fsf@gmail.com>
     [not found]           ` <87y1s82o23.fsf@gmail.com>
     [not found]             ` <87zgckwdtw.fsf@gmail.com>
     [not found]               ` <87sficqb71.fsf@gmail.com>
     [not found]                 ` <86fsebdpl9.fsf@gmail.com>
2022-11-25 15:23                   ` Guile debugger workgroup? (was: Coding style: similarly-named variables) Maxim Cournoyer
2022-11-26 11:22                     ` Guile debugger workgroup? Ludovic Courtès
2022-11-27  3:16                       ` Maxim Cournoyer
2022-11-28 10:53                         ` Ludovic Courtès
2022-11-28 13:41                           ` Attila Lendvai
2022-11-28 14:50                             ` Maxim Cournoyer
2022-11-29  8:46                             ` Ludovic Courtès
2022-11-30  3:44                               ` Attila Lendvai
2022-11-27 12:04                       ` zimoun
2022-11-28  0:27                         ` Maxim Cournoyer
2022-11-28 11:06                         ` Ludovic Courtès
2022-11-28 12:31                           ` zimoun [this message]
2022-11-27 20:46                       ` Attila Lendvai
2022-11-28  0:41                         ` David Pirotte
2022-11-28  0:45                           ` David Pirotte
2022-11-28  2:06                         ` Maxim Cournoyer
2022-11-28  7:22                           ` Joshua Branson
2022-11-28 11:09                         ` Ludovic Courtès
2022-11-28 14:12                           ` Attila Lendvai
2022-11-29  8:54                             ` Ludovic Courtès
2022-11-28 12:24                     ` Guile debugger workgroup? (was: Coding style: similarly-named variables) Csepp
2022-11-30  7:09                     ` Guile debugger workgroup? Jannneke Nieuwenhuizen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=877czftg46.fsf@gmail.com \
    --to=zimon.toutoune@gmail.com \
    --cc=guix-devel@gnu.org \
    --cc=ludo@gnu.org \
    --cc=maxim.cournoyer@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).