diff options
author | Vincent Ambo <mail@tazj.in> | 2022-08-13T18·29+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2022-08-30T16·53+0000 |
commit | 57d0dbb1c62401559533ced7c1c686da5125df75 (patch) | |
tree | 1865da67e2e335b9e00c7a7a22a74571c0658291 /tvix/eval/Cargo.lock | |
parent | dd0d6249190db1ab09dfbe4debcf857f7781616b (diff) |
feat(tvix/eval): implement optional runtime tracing r/4533
This adds a `disassembler` feature to the crate configuration that traces the operations executed and the state of the stack at runtime. This can be enabled by compiling with `--feature disassembler`. This will also gain a more sensible layout of code slices eventually. Change-Id: I34c15e1cd346ecc4362b5afba6bf82dd49359d20 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6193 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
Diffstat (limited to 'tvix/eval/Cargo.lock')
-rw-r--r-- | tvix/eval/Cargo.lock | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tvix/eval/Cargo.lock b/tvix/eval/Cargo.lock index ecd0f05e409d..38fbb539309e 100644 --- a/tvix/eval/Cargo.lock +++ b/tvix/eval/Cargo.lock @@ -778,6 +778,15 @@ dependencies = [ ] [[package]] +name = "tabwriter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36205cfc997faadcc4b0b87aaef3fbedafe20d38d4959a7ca6ff803564051111" +dependencies = [ + "unicode-width", +] + +[[package]] name = "test-generator" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -844,6 +853,7 @@ dependencies = [ "rnix", "rustyline", "smol_str", + "tabwriter", "test-generator", ] |