-
Notifications
You must be signed in to change notification settings - Fork 17.8k
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
internal/asan: add new package #64635
Conversation
The internal/asan package contains helper functions for manually instrumenting code for the address sanitizer. It reexports the asan routines in runtime uncoditionally, making the functions a no-op if the build flag "asan" is disabled. For [reserved]
This PR (HEAD: e292662) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/548695. Important tips:
|
e292662
to
7f7c9eb
Compare
This PR (HEAD: 7f7c9eb) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/548695. Important tips:
|
Message from Austin Clements: Patch Set 3: Code-Review+2 (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Cherry Mui: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Mauri de Souza Meneguzzo: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Cherry Mui: Patch Set 3: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Change-Id: Iea17ecb075e47cdc3b8defb3faa859284cc90ec3
Message from Mauri de Souza Meneguzzo: Patch Set 3: (2 comments) Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
This PR (HEAD: 607eae3) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/548695. Important tips:
|
Change-Id: I9e5527869bfcd29e7e14ae159e22b4bb3c88c5f9
This PR (HEAD: 57a4759) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/548695. Important tips:
|
This PR (HEAD: e658670) has been imported to Gerrit for code review. Please visit Gerrit at https://go-review.googlesource.com/c/go/+/548695. Important tips:
|
Message from Mauri de Souza Meneguzzo: Patch Set 4: Run-TryBot+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Cherry Mui: Patch Set 6: Code-Review+2 Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Cherry Mui: Patch Set 6: Commit-Queue+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Go LUCI: Patch Set 6: Dry run: CV is trying the patch. Bot data: {"action":"start","triggered_at":"2024-02-09T16:58:27Z","revision":"ff86db9bc7c85f1e95ac87f7b49300f9c3bc5470"} Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Cherry Mui: Patch Set 6: -Commit-Queue Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Go LUCI: Patch Set 6: This CL has passed the run Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Go LUCI: Patch Set 6: LUCI-TryBot-Result+1 Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
Message from Mauri de Souza Meneguzzo: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
The internal/asan package contains helper functions for manually instrumenting code for the address sanitizer. It reexports the asan routines in runtime unconditionally, making the functions a no-op if the build flag "asan" is not present. For #64611 Change-Id: Ie79e698aea7a6d969afd2a5f008c084c9545b1a5 GitHub-Last-Rev: e658670 GitHub-Pull-Request: #64635 Reviewed-on: https://go-review.googlesource.com/c/go/+/548695 Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Message from Cherry Mui: Patch Set 6: (1 comment) Please don’t reply on this GitHub thread. Visit golang.org/cl/548695. |
This PR is being closed because golang.org/cl/548695 has been merged. |
The internal/asan package contains helper functions for manually instrumenting code for the address sanitizer. It reexports the asan routines in runtime unconditionally, making the functions a no-op if the build flag "asan" is not present. For golang#64611 Change-Id: Ie79e698aea7a6d969afd2a5f008c084c9545b1a5 GitHub-Last-Rev: e658670 GitHub-Pull-Request: golang#64635 Reviewed-on: https://go-review.googlesource.com/c/go/+/548695 Reviewed-by: Austin Clements <austin@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
The internal/asan package contains helper functions for manually
instrumenting code for the address sanitizer. It reexports the asan
routines in runtime unconditionally, making the functions a no-op if the
build flag "asan" is not present.
For #64611