-
Notifications
You must be signed in to change notification settings - Fork 18k
cmd/compile: greedy basic block layout #66421
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
base: master
Are you sure you want to change the base?
Conversation
Implement Pettis&Hanse's greedy algorithm, i.e. bottom-up variant Fixes golang#66420
This PR (HEAD: be2f319) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/572975. Important tips:
|
Message from qiulaidongfeng: Patch Set 1: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 1: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-03-20T09:01:14Z","revision":"ad71ccb426408eaaebc224c5a761b5bbd6db532a"} Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from qiulaidongfeng: Patch Set 1: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 1: This CL has failed the run. Reason: Tryjob golang/try/gotip-linux-arm64 has failed with summary (view all results): FAILURE
Tests failed. See all test results. Error: Links:
Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 1: LUCI-TryBot-Result-1 Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Fannie Zhang: Patch Set 2: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Gopher Robot: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Gopher Robot: Patch Set 2: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Gopher Robot: Patch Set 2: TryBot-Result-1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Keith Randall: Patch Set 2: (17 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
This PR (HEAD: 1e61a84) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/572975. Important tips:
|
Message from Yi Yang: Patch Set 2: (16 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Keith Randall: Patch Set 3: (4 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
This PR (HEAD: 2611f3d) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/572975. Important tips:
|
Message from Yi Yang: Patch Set 3: (4 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Keith Randall: Patch Set 4: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
This PR (HEAD: 9fd9a54) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/572975. Important tips:
|
Message from Yi Yang: Patch Set 5: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
"before" precedence relation should be transitive, such that if a is before b, and b is before c, then a should before c
This PR (HEAD: 36f564c) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/572975. Important tips:
|
Message from Yi Yang: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Yi Yang: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Keith Randall: Patch Set 6: Commit-Queue+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 6: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-07-10T23:33:43Z","revision":"4516750c6584de89671c84d52511503c6b32e52c"} Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Keith Randall: Patch Set 6: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 6: This CL has failed the run. Reason: Tryjob golang/try/x_tools-gotip-linux-amd64 has failed with summary (view all results):
Build or test failure, click here for results. Additional links for debugging: Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 6: LUCI-TryBot-Result-1 Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Keith Randall: Patch Set 7: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 7: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-07-10T23:48:45Z","revision":"a627d8c87e286a50df43d51bfa163c0d7429d3df"} Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Keith Randall: Patch Set 7: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 7: This CL has failed the run. Reason: Tryjob golang/try/gotip-windows-amd64 has failed with summary (view all results):
Build or test failure, click here for results. Additional links for debugging: Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Message from Go LUCI: Patch Set 7: LUCI-TryBot-Result-1 Please don’t reply on this GitHub thread. Visit golang.org/cl/572975. |
Implement Pettis&Hanse's greedy algorithm, i.e. bottom-up variant
Fixes #66420