Skip to content

Commit cbabccf

Browse files
KristofferCtimholy
andauthored
RFC: refactor breakpoints (#259)
* refactor breakpoints and fix 265 Co-Authored-By: Tim Holy <[email protected]>
1 parent d5b1593 commit cbabccf

10 files changed

+448
-201
lines changed

docs/src/dev_reference.md

+5
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,10 @@ breakpoint
6363
enable
6464
disable
6565
remove
66+
toggle
6667
break_on
6768
break_off
69+
breakpoints
6870
JuliaInterpreter.dummy_breakpoint
6971
```
7072

@@ -77,6 +79,9 @@ JuliaInterpreter.FrameData
7779
JuliaInterpreter.FrameInstance
7880
JuliaInterpreter.BreakpointState
7981
JuliaInterpreter.BreakpointRef
82+
JuliaInterpreter.AbstractBreakpoint
83+
JuliaInterpreter.BreakpointSignature
84+
JuliaInterpreter.BreakpointFileLocation
8085
```
8186

8287
## Internal storage

docs/src/index.md

+5-8
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ julia> @interpret sum(list)
2929

3030
You can interrupt execution by setting breakpoints.
3131
You can set breakpoints via packages that explicitly target debugging,
32-
like [Juno](http://junolab.org/), [Debugger](https://github.com/JuliaDebug/Debugger.jl), and
32+
like [Juno](https://junolab.org/), [Debugger](https://github.com/JuliaDebug/Debugger.jl), and
3333
[Rebugger](https://github.com/timholy/Rebugger.jl).
3434
But all of these just leverage the core functionality defined in JuliaInterpreter,
3535
so here we'll illustrate it without using any of these other packages.
@@ -38,8 +38,7 @@ Let's set a conditional breakpoint, to be triggered any time one of the elements
3838
argument to `sum` is bigger than 4:
3939

4040
```jldoctest demo1; filter = r"in Base at .*$"
41-
julia> @breakpoint sum([1, 2]) any(x->x>4, a)
42-
breakpoint(sum(a::AbstractArray) in Base at reducedim.jl:648, line 648)
41+
julia> bp = @breakpoint sum([1, 2]) any(x->x>4, a);
4342
```
4443

4544
Note that in writing the condition, we used `a`, the name of the argument to the relevant
@@ -53,7 +52,7 @@ Now let's see what happens:
5352
julia> @interpret sum([1,2,3]) # no element bigger than 4, breakpoint should not trigger
5453
6
5554
56-
julia> frame, bp = @interpret sum([1,2,5]) # should trigger breakpoint
55+
julia> frame, bpref = @interpret sum([1,2,5]) # should trigger breakpoint
5756
(Frame for sum(a::AbstractArray) in Base at reducedim.jl:648
5857
c 1* 648 1 ─ nothing
5958
2 648 │ %2 = (Base.#sum#550)(Colon(), #self#, a)
@@ -63,18 +62,16 @@ a = [1, 2, 5], breakpoint(sum(a::AbstractArray) in Base at reducedim.jl:648, lin
6362

6463
`frame` is described in more detail on the next page; for now, suffice it to say
6564
that the `c` in the leftmost column indicates the presence of a conditional breakpoint
66-
upon entry to `sum`. `bp` is a reference to the breakpoint. You can manipulate these
67-
at the command line:
65+
upon entry to `sum`. `bpref` is a reference to the breakpoint of type [`BreakpointRef`](@ref).
66+
The breakpoint `bp` we created can be manipulated at the command line
6867

6968
```jldoctest demo1; filter = r"in Base at .*$"
7069
julia> disable(bp)
71-
false
7270
7371
julia> @interpret sum([1,2,5])
7472
8
7573
7674
julia> enable(bp)
77-
true
7875
7976
julia> @interpret sum([1,2,5])
8077
(Frame for sum(a::AbstractArray) in Base at reducedim.jl:648

src/JuliaInterpreter.jl

+8-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ using InteractiveUtils
1414
using CodeTracking
1515

1616
export @interpret, Compiled, Frame, root, leaf,
17-
BreakpointRef, breakpoint, @breakpoint, breakpoints, enable, disable, remove,
17+
BreakpointRef, breakpoint, @breakpoint, breakpoints, enable, disable, remove, toggle,
1818
debug_command, @bp, break_on, break_off
1919

2020
module CompiledCalls
@@ -39,6 +39,9 @@ include("commands.jl")
3939
include("breakpoints.jl")
4040

4141
function set_compiled_methods()
42+
###########
43+
# Methods #
44+
###########
4245
# Work around #28 by preventing interpretation of all Base methods that have a ccall to memcpy
4346
push!(compiled_methods, which(vcat, (Vector,)))
4447
push!(compiled_methods, first(methods(Base._getindex_ra)))
@@ -69,6 +72,7 @@ function set_compiled_methods()
6972
# These are currently extremely slow to interpret (https://github.com/JuliaDebug/JuliaInterpreter.jl/issues/193)
7073
push!(compiled_methods, which(subtypes, Tuple{Module, Type}))
7174
push!(compiled_methods, which(subtypes, Tuple{Type}))
75+
push!(compiled_methods, which(match, Tuple{Regex, String, Int, UInt32}))
7276

7377
# Anything that ccalls jl_typeinf_begin cannot currently be handled
7478
for finf in (Core.Compiler.typeinf_code, Core.Compiler.typeinf_ext, Core.Compiler.typeinf_type)
@@ -77,6 +81,9 @@ function set_compiled_methods()
7781
end
7882
end
7983

84+
###########
85+
# Modules #
86+
###########
8087
push!(compiled_modules, Base.Threads)
8188
end
8289

0 commit comments

Comments
 (0)