mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
internal/buildcfg: enable specializedmalloc experiment
Cq-Include-Trybots: luci.golang.try:gotip-linux-amd64_c2s16-perf_vs_parent,gotip-linux-amd64_c3h88-perf_vs_parent,gotip-linux-arm64_c4ah72-perf_vs_parent,gotip-linux-arm64_c4as16-perf_vs_parent Change-Id: I6a6a6964c4c596bbf4f072b5a44a34c3ce4f6541 Reviewed-on: https://go-review.googlesource.com/c/go/+/696536 Reviewed-by: Michael Matloob <matloob@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Knyszek <mknyszek@google.com>
This commit is contained in:
parent
630799c6c9
commit
a7917eed70
1 changed files with 5 additions and 4 deletions
|
|
@ -79,10 +79,11 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {
|
||||||
dwarf5Supported := (goos != "darwin" && goos != "ios" && goos != "aix")
|
dwarf5Supported := (goos != "darwin" && goos != "ios" && goos != "aix")
|
||||||
|
|
||||||
baseline := goexperiment.Flags{
|
baseline := goexperiment.Flags{
|
||||||
RegabiWrappers: regabiSupported,
|
RegabiWrappers: regabiSupported,
|
||||||
RegabiArgs: regabiSupported,
|
RegabiArgs: regabiSupported,
|
||||||
Dwarf5: dwarf5Supported,
|
Dwarf5: dwarf5Supported,
|
||||||
RandomizedHeapBase64: true,
|
RandomizedHeapBase64: true,
|
||||||
|
SizeSpecializedMalloc: true,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Start with the statically enabled set of experiments.
|
// Start with the statically enabled set of experiments.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue