-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/compile: non-deterministic build, breaking toolstash -cmp #17288
Comments
@aclements, is this why your performance numbers were bouncing all over the other day? |
bisect identifies CL 29732 (f876fb9). /cc @cherrymui @dr2chase |
for c, used := range s.copies { |
@bradfitz, my problem looked like it had to do with spills, but it's possible. |
Do we make copies of copies? Is it possible that copy A is the only use of copy B, and depending on whether we visit A before B will influence whether we're able to eliminate B? |
I thought the order of iteration doesn't matter as it will delete all of them. Well, maybe it is, as deleting one copy may decrement Uses of another. |
FYI, running that loop until we reach a fixed point seems to solve the non-determinism. I can upload a CL for that if you're interested. |
Yes, I am doing this, too. Go ahead and send the CL. |
Currently at master you can't do:
because cmd/compile isn't producing deterministic output. This used to work.
It looks like instructions are now being ordered non-deterministically within a basic block. I'll begin a bisect to track down when this regressed.
/cc @randall77 @cherrymui
The text was updated successfully, but these errors were encountered: