Julia can debug MLIR, kinda
Julia Programming Language
Julia can debug MLIR, kinda
JIT’d thunks are debuggable in gdb, at source level Break on a mangled thunk name and gdb stops inside the emitted MLIR, by file and line, with list and disassemble /s working: cd ~/Desktop/Projects/RepliBuild.jl gdb -batch -nx \ -ex 'set pagination off' -ex 'set confirm off' \ -ex 'handle SIGSEGV nostop noprint pass' \ -ex 'set breakpoint pending on' \ -ex 'break _ZNK5Base15get_aEv_thunk' \ -ex 'run' \ -ex 'info symbol $pc' \ -ex 'bt 5' \ -ex 'x/6i $pc' \ --args julia --p...
0 comments
No comments yet.