-
Notifications
You must be signed in to change notification settings - Fork 18.4k
cmd/compile: avoid excessive libfuzzer instrumentation of int compares #53786
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: avoid excessive libfuzzer instrumentation of int compares #53786
Conversation
Do not intercept integer compares that are used to increment libFuzzer's 8-bit counters. This is unnecessary and has a negative impact on the fuzzing performance. This fixes golang#53760.
This PR (HEAD: 52f69fd) has been imported to Gerrit for code review. Please visit https://go-review.googlesource.com/c/go/+/416796 to see it. Tip: You can toggle comments from me using the |
Message from Keith Randall: Patch Set 1: Run-TryBot+1 Auto-Submit+1 Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Keith Randall: Patch Set 1: Code-Review+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Gopher Robot: Patch Set 1: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Gopher Robot: Patch Set 1: TryBot-Result-1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Keith Randall: Patch Set 1: -Run-TryBot Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Keith Randall: Patch Set 1: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Gopher Robot: Patch Set 1: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Message from Gopher Robot: Patch Set 1: TryBot-Result+1 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/416796. |
Do not intercept integer compares that are used to increment libFuzzer's 8-bit counters. This is unnecessary and has a negative impact on the fuzzing performance. This fixes #53760. Change-Id: Id22efac968b18014eedabb6f0762e1456897024e GitHub-Last-Rev: 52f69fd GitHub-Pull-Request: #53786 Reviewed-on: https://go-review.googlesource.com/c/go/+/416796 Run-TryBot: Keith Randall <[email protected]> Auto-Submit: Keith Randall <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Matthew Dempsky <[email protected]> Reviewed-by: Keith Randall <[email protected]> Reviewed-by: Keith Randall <[email protected]>
This PR is being closed because golang.org/cl/416796 has been merged. |
Do not intercept integer compares that are used to increment libFuzzer's
8-bit counters. This is unnecessary and has a negative impact on the
fuzzing performance. This fixes #53760.