Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tracing #244

Merged
merged 51 commits into from
Oct 31, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
ab96784
Refactor tracing
MarcelGarus Oct 4, 2022
2bf4012
Display stack traces
MarcelGarus Oct 4, 2022
c7499ba
Make cloning to other heap cheaper
MarcelGarus Oct 4, 2022
475ec6d
Improve stack trace formatting
MarcelGarus Oct 4, 2022
9a25969
Trace needs
MarcelGarus Oct 4, 2022
8087055
Format stack traces spanning multiple fibers
MarcelGarus Oct 5, 2022
add41fc
Move tracer into its own component
MarcelGarus Oct 5, 2022
316fe76
Revert " Move tracer into its own component"
MarcelGarus Oct 5, 2022
61ab412
Add responsibility to VM
MarcelGarus Oct 7, 2022
a2553d8
Fix fault attribution
MarcelGarus Oct 7, 2022
80fde35
Adapt fuzzing to new tracing
MarcelGarus Oct 10, 2022
9de29ee
Update todos
MarcelGarus Oct 13, 2022
8bf3321
Print to stdout using channels
MarcelGarus Oct 13, 2022
1885315
Merge branch 'channels' into tracing
MarcelGarus Oct 13, 2022
7ddf44c
Fix ids
MarcelGarus Oct 13, 2022
6c07c6f
Update fuzzing to responsibilites
MarcelGarus Oct 17, 2022
80f7b7c
Fix responsibilities of curly closures
MarcelGarus Oct 17, 2022
42673b9
Fix language server
MarcelGarus Oct 17, 2022
1b25bbf
Fix some lints
MarcelGarus Oct 17, 2022
f2c848a
Remove logging all stack traces
MarcelGarus Oct 17, 2022
1b51a94
Remove let_else feature flag
MarcelGarus Oct 17, 2022
734154a
Merge branch 'channels' into tracing
MarcelGarus Oct 17, 2022
5686ac0
Fix Clippy lints
MarcelGarus Oct 17, 2022
bd04d47
Merge branch 'channels' into tracing
MarcelGarus Oct 23, 2022
8f2dfff
Merge branch 'main' into tracing
MarcelGarus Oct 29, 2022
925e679
Merge branch 'main' into tracing
MarcelGarus Oct 29, 2022
11669c1
Implement some suggestions
MarcelGarus Oct 29, 2022
1d83364
Merge branch 'tracing' of https://github.com/candy-lang/candy into tr…
MarcelGarus Oct 29, 2022
7ef6394
Apply suggestions from code review
MarcelGarus Oct 29, 2022
46f01ba
Update compiler/src/vm/fiber.rs
MarcelGarus Oct 29, 2022
16d9537
Update compiler/src/vm/fiber.rs
MarcelGarus Oct 29, 2022
a102000
Restructure tracing
MarcelGarus Oct 29, 2022
182e550
Merge branch 'tracing' of https://github.com/candy-lang/candy into tr…
MarcelGarus Oct 29, 2022
4544a72
Fix indentation
MarcelGarus Oct 29, 2022
919608d
Pad stack trace strings to width
MarcelGarus Oct 29, 2022
dfaaa03
Make UseProvider non-mut
MarcelGarus Oct 29, 2022
3295ce8
Add assert in complete_try
MarcelGarus Oct 29, 2022
9e61013
Restructure tracing (again)
MarcelGarus Oct 30, 2022
36bce9c
Improve tracing of finishing fibers
MarcelGarus Oct 30, 2022
6699e3b
Remove unused events
MarcelGarus Oct 30, 2022
ce36027
Fix clippy lints
MarcelGarus Oct 30, 2022
5f4b696
Update compiler/src/vm/tracer/mod.rs
MarcelGarus Oct 30, 2022
8a9b492
Update compiler/src/vm/tracer/mod.rs
MarcelGarus Oct 30, 2022
930b4d0
Update compiler/src/vm/tracer/full.rs
MarcelGarus Oct 30, 2022
939a5e8
Add Cargo workspace
MarcelGarus Oct 31, 2022
8584929
Move tracer methods
MarcelGarus Oct 31, 2022
2724256
Move tracer methods
MarcelGarus Oct 31, 2022
4644a95
Refactor tracer
MarcelGarus Oct 31, 2022
5ba00af
Format main
MarcelGarus Oct 31, 2022
35b5c3b
Update .gitignores and lock files
MarcelGarus Oct 31, 2022
09c9be4
Remove commented out code
MarcelGarus Oct 31, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ local/
# ANTLR
.antlr/

# Rust
target

# Perf
**/perf.data
**/perf.data.old

# Dart/Pub
**/doc/api/
.dart_tool/
Expand Down
Loading