Skip to content

Instantly share code, notes, and snippets.

@pfitzseb
Created December 17, 2018 15:10
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save pfitzseb/240744ce79a9d7561c1277de7dbfa43e to your computer and use it in GitHub Desktop.
Save pfitzseb/240744ce79a9d7561c1277de7dbfa43e to your computer and use it in GitHub Desktop.
TraceCalls.jl with Cassette
module TraceCalls
using Cassette
mutable struct Trace
level::Int
cutoff::Int
end
Cassette.@context TraceCtx
function Cassette.prehook(ctx::TraceCtx, args...)
ctx.metadata.level += 1
end
function Cassette.posthook(ctx::TraceCtx, out, f, args...)
ctx.metadata.level -= 1
if ctx.metadata.level < ctx.metadata.cutoff
print(" "^ctx.metadata.level)
print(something(f, ""))
print(something(args, "()"))
print(" -> ")
println(something(out, ""))
end
return nothing
end
trace(f, level) = Cassette.overdub(TraceCtx(metadata=Trace(0, level)), f)
macro trace(ex)
:(trace(() -> $(esc(ex)), 2))
end
macro trace(level, ex)
:(trace(() -> $(esc(ex)), $(esc(level))))
end
end
f(x) = x + sin(x) + cos(x)
TraceCalls.@trace 2 f(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment