-
Notifications
You must be signed in to change notification settings - Fork 152
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
Coarse-grained tracked structs #598
Comments
CC: @ibraheemdev |
Mentoring instructionsOk, I realized this is a bit more complicated than I thought. There are two parts required
swap the defaultThe decision about which fields are "id" fields is driven by this input to the macro-rules macro: which is provided here
it should be fairly straightforward to modify the latter file to flip the defaults. (Note that the next section will also likely change this interface slightly.) I'd probably also rename these from "id" fields to "untracked" fields. change how we track reads of
|
impl<C: Configuration> Jar for JarImpl<C> { | |
fn create_ingredients( | |
&self, | |
_aux: &dyn JarAux, | |
struct_index: crate::zalsa::IngredientIndex, | |
) -> Vec<Box<dyn Ingredient>> { | |
let struct_ingredient = <IngredientImpl<C>>::new(struct_index); | |
std::iter::once(Box::new(struct_ingredient) as _) | |
.chain((0..C::FIELD_DEBUG_NAMES.len()).map(|field_index| { | |
Box::new(<FieldIngredientImpl<C>>::new(struct_index, field_index)) as _ | |
})) | |
.collect() | |
} | |
} |
the field accessor for every field is the same:
salsa/components/salsa-macro-rules/src/setup_tracked_struct.rs
Lines 198 to 212 in c6c51a0
$( | |
$field_getter_vis fn $field_getter_id<$Db>(self, db: &$db_lt $Db) -> $crate::maybe_cloned_ty!($field_option, $db_lt, $field_ty) | |
where | |
// FIXME(rust-lang/rust#65991): The `db` argument *should* have the type `dyn Database` | |
$Db: ?Sized + $zalsa::Database, | |
{ | |
let db = db.as_dyn_database(); | |
let fields = $Configuration::ingredient(db).field(db, self, $field_index); | |
$crate::maybe_clone!( | |
$field_option, | |
$field_ty, | |
&fields.$field_index, | |
) | |
} | |
)* |
in particular it invokes the field
method from the tracked struct on line 205. That function is defined here:
Lines 516 to 524 in c6c51a0
/// Access to this value field. | |
/// Note that this function returns the entire tuple of value fields. | |
/// The caller is responible for selecting the appropriate element. | |
pub fn field<'db>( | |
&'db self, | |
db: &'db dyn crate::Database, | |
s: C::Struct<'db>, | |
field_index: usize, | |
) -> &'db C::Fields<'db> { |
It does a fair bit of work and in particular adds a read.
All of that work is unnecessary for id-fields. Just as with an interned struct, the idea is that if the id fields have changed, then you will have a new tracked struct instance from salsa's perspective, so they can be regarded as immutable. As a result, we just have to read from them. Compare to the fields
method from interned structs.
I think what I would do is to modify the setup_tracked_struct
macro so that when we generate the field getters, we generate the getters for id fields differently (they invoke a untracked_fields
method on the ingredient or something like that, and we rename the existing getter to tracked_fields
).
This will require changing the macro inputs. There are a few few ways to go about this. Perhaps the easiest is to add some kind of field_getter_method
argument that is either untracked_fields
or tracked_fields
depending and then modify this line
let fields = $Configuration::ingredient(db).field(db, self, $field_index); |
to read let fields = $Configuration::ingredient(db).$field_getter_method(db, self, $field_index);
.
Thanks for the writeup! I can work on this after #597 (if no one else has gotten to it first). |
Picking this up if you haven't @ibraheemdev |
@OLUWAMUYIWA Feel free! |
As described in this hackmd, we want to change how tracked struct dependencies work. The basic idea is to switch the default: instead of labeling some fields as
#[id]
and having the rest be independently tracked, we will have fields be#[id]
by default unless they are annotated with#[salsa::tracked]
. This is a fairly straightforward change that can be done in the proc-macro.Example
Before:
After:
The text was updated successfully, but these errors were encountered: