Skip to content

Commit 4af8ad2

Browse files
mknyszekgopherbot
authored andcommitted
internal/buildcfg: disable sizespecializedmalloc by default
We're finding some regressions in overall icache footprint at scale and we should figure out how to deal with those before rolling this out to everybody. Change-Id: I98e792db31712bf64575d76dfeafedb48898f76a Reviewed-on: https://go-review.googlesource.com/c/go/+/738780 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@google.com> Auto-Submit: Michael Knyszek <mknyszek@google.com>
1 parent b291c3c commit 4af8ad2

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

src/internal/buildcfg/exp.go

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,11 @@ func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {
8181
dwarf5Supported := (goos != "darwin" && goos != "ios" && goos != "aix")
8282

8383
baseline := goexperiment.Flags{
84-
RegabiWrappers: regabiSupported,
85-
RegabiArgs: regabiSupported,
86-
Dwarf5: dwarf5Supported,
87-
RandomizedHeapBase64: true,
88-
SizeSpecializedMalloc: true,
89-
GreenTeaGC: true,
84+
RegabiWrappers: regabiSupported,
85+
RegabiArgs: regabiSupported,
86+
Dwarf5: dwarf5Supported,
87+
RandomizedHeapBase64: true,
88+
GreenTeaGC: true,
9089
}
9190
flags := &ExperimentFlags{
9291
Flags: baseline,

0 commit comments

Comments
 (0)