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

Sort method signatures before precompile to avoid order dependence. #30095

Merged
merged 1 commit into from
Nov 21, 2018

Conversation

c42f
Copy link
Member

@c42f c42f commented Nov 20, 2018

This should help in making ordering-dependent bugs such as #29923 (an
error in caching of inferred methods) deterministic, which will make
them much easier to find in the future.

Timing this just for good measure, it appears there's only ~5000 elements to be sorted, which costs a paltry ~ 1 ms.

[edit] I should mention that I tested this with the error in #29923, and it makes the compile completely reproducible.

This should help in making ordering-dependent bugs such as #29923 (an
error in caching of inferred methods) deterministic, which will make
them much easier to find in the future.
@c42f c42f requested a review from vtjnash November 20, 2018 08:19
@@ -364,7 +364,7 @@ void jl_print_gc_stats(JL_STREAM *s);
void jl_gc_reset_alloc_count(void);
int jl_assign_type_uid(void);
jl_value_t *jl_cache_type_(jl_datatype_t *type);
void jl_resort_type_cache(jl_svec_t *c);
void jl_sort_types(jl_value_t **types, size_t length);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm wondering whether the name I chose here is appropriate. I get the impression that this ordering is canonical in some sense, so jl_sort_types might be ok?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's not terribly canonical, mostly since it can't handle all types. It's just used to speed up a lookup. Probably ok to use here though, since the goal is just to make the order more likely to be predictable. However, fuzzing the order is apparently useful for finding bugs. Maybe we should add some kind of option to shuffle it.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also found union_sort_cmp, but that gives up when type parameters list is longer than length 3.

Regarding fuzzing, sounds like a reasonable idea though I think that could be a separate PR. Not because it's hard to shuffle, but because I don't want to spend the time testing a good workflow for that (ie, not in bootstrap!) right at the moment.

@c42f c42f mentioned this pull request Nov 20, 2018
@c42f c42f merged commit 464397e into master Nov 21, 2018
@c42f c42f deleted the cjf/stable-precompile-order branch November 21, 2018 05:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants