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

Save registers for conservative scanning #159

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
3 changes: 3 additions & 0 deletions julia/mmtk_julia_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <setjmp.h>
#include <stdint.h>
#include <pthread.h>
#include <ucontext.h>
#include "mmtkMutator.h"

typedef __SIZE_TYPE__ size_t;
Expand Down Expand Up @@ -438,6 +439,8 @@ typedef struct mmtk__jl_tls_states_t {
MMTkMutatorContext mmtk_mutator;
size_t malloc_sz_since_last_poll;

ucontext_t ctx_at_the_time_gc_started;

// JULIA_DEBUG_SLEEPWAKE(
// uint64_t uv_run_enter;
// uint64_t uv_run_leave;
Expand Down
4 changes: 2 additions & 2 deletions mmtk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ edition = "2018"
# Metadata for the Julia repository
[package.metadata.julia]
# Our CI matches the following line and extract mmtk/julia. If this line is updated, please check ci yaml files and make sure it works.
julia_repo = "https://github.com/mmtk/julia.git"
julia_version = "5c9b37044fd6e446141d29111fb6c894ba0a42ff"
julia_repo = "https://github.com/udesou/julia.git"
julia_version = "426d5bfc7f50e07a5ddf9828350d23b3a953d77a"

[lib]
crate-type = ["cdylib"]
Expand Down
Loading
Loading