Source file src/internal/buildcfg/exp.go

     1  // Copyright 2021 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package buildcfg
     6  
     7  import (
     8  	"fmt"
     9  	"reflect"
    10  	"strings"
    11  
    12  	"internal/goexperiment"
    13  )
    14  
    15  // ExperimentFlags represents a set of GOEXPERIMENT flags relative to a baseline
    16  // (platform-default) experiment configuration.
    17  type ExperimentFlags struct {
    18  	goexperiment.Flags
    19  	baseline goexperiment.Flags
    20  }
    21  
    22  // Experiment contains the toolchain experiments enabled for the
    23  // current build.
    24  //
    25  // (This is not necessarily the set of experiments the compiler itself
    26  // was built with.)
    27  //
    28  // experimentBaseline specifies the experiment flags that are enabled by
    29  // default in the current toolchain. This is, in effect, the "control"
    30  // configuration and any variation from this is an experiment.
    31  var Experiment ExperimentFlags = func() ExperimentFlags {
    32  	flags, err := ParseGOEXPERIMENT(GOOS, GOARCH, envOr("GOEXPERIMENT", defaultGOEXPERIMENT))
    33  	if err != nil {
    34  		Error = err
    35  		return ExperimentFlags{}
    36  	}
    37  	return *flags
    38  }()
    39  
    40  // DefaultGOEXPERIMENT is the embedded default GOEXPERIMENT string.
    41  // It is not guaranteed to be canonical.
    42  const DefaultGOEXPERIMENT = defaultGOEXPERIMENT
    43  
    44  // FramePointerEnabled enables the use of platform conventions for
    45  // saving frame pointers.
    46  //
    47  // This used to be an experiment, but now it's always enabled on
    48  // platforms that support it.
    49  //
    50  // Note: must agree with runtime.framepointer_enabled.
    51  var FramePointerEnabled = GOARCH == "amd64" || GOARCH == "arm64"
    52  
    53  // ParseGOEXPERIMENT parses a (GOOS, GOARCH, GOEXPERIMENT)
    54  // configuration tuple and returns the enabled and baseline experiment
    55  // flag sets.
    56  //
    57  // TODO(mdempsky): Move to internal/goexperiment.
    58  func ParseGOEXPERIMENT(goos, goarch, goexp string) (*ExperimentFlags, error) {
    59  	// regabiSupported is set to true on platforms where register ABI is
    60  	// supported and enabled by default.
    61  	// regabiAlwaysOn is set to true on platforms where register ABI is
    62  	// always on.
    63  	var regabiSupported, regabiAlwaysOn bool
    64  	switch goarch {
    65  	case "amd64", "arm64", "loong64", "ppc64le", "ppc64", "riscv64":
    66  		regabiAlwaysOn = true
    67  		regabiSupported = true
    68  	}
    69  
    70  	var haveXchg8 bool
    71  	switch goarch {
    72  	case "386", "amd64", "arm", "arm64", "ppc64le", "ppc64":
    73  		haveXchg8 = true
    74  	}
    75  
    76  	baseline := goexperiment.Flags{
    77  		RegabiWrappers:   regabiSupported,
    78  		RegabiArgs:       regabiSupported,
    79  		CoverageRedesign: true,
    80  		AliasTypeParams:  true,
    81  		SwissMap:         true,
    82  		SpinbitMutex:     haveXchg8,
    83  		SyncHashTrieMap:  true,
    84  	}
    85  
    86  	// Start with the statically enabled set of experiments.
    87  	flags := &ExperimentFlags{
    88  		Flags:    baseline,
    89  		baseline: baseline,
    90  	}
    91  
    92  	// Pick up any changes to the baseline configuration from the
    93  	// GOEXPERIMENT environment. This can be set at make.bash time
    94  	// and overridden at build time.
    95  	if goexp != "" {
    96  		// Create a map of known experiment names.
    97  		names := make(map[string]func(bool))
    98  		rv := reflect.ValueOf(&flags.Flags).Elem()
    99  		rt := rv.Type()
   100  		for i := 0; i < rt.NumField(); i++ {
   101  			field := rv.Field(i)
   102  			names[strings.ToLower(rt.Field(i).Name)] = field.SetBool
   103  		}
   104  
   105  		// "regabi" is an alias for all working regabi
   106  		// subexperiments, and not an experiment itself. Doing
   107  		// this as an alias make both "regabi" and "noregabi"
   108  		// do the right thing.
   109  		names["regabi"] = func(v bool) {
   110  			flags.RegabiWrappers = v
   111  			flags.RegabiArgs = v
   112  		}
   113  
   114  		// Parse names.
   115  		for _, f := range strings.Split(goexp, ",") {
   116  			if f == "" {
   117  				continue
   118  			}
   119  			if f == "none" {
   120  				// GOEXPERIMENT=none disables all experiment flags.
   121  				// This is used by cmd/dist, which doesn't know how
   122  				// to build with any experiment flags.
   123  				flags.Flags = goexperiment.Flags{}
   124  				continue
   125  			}
   126  			val := true
   127  			if strings.HasPrefix(f, "no") {
   128  				f, val = f[2:], false
   129  			}
   130  			set, ok := names[f]
   131  			if !ok {
   132  				return nil, fmt.Errorf("unknown GOEXPERIMENT %s", f)
   133  			}
   134  			set(val)
   135  		}
   136  	}
   137  
   138  	if regabiAlwaysOn {
   139  		flags.RegabiWrappers = true
   140  		flags.RegabiArgs = true
   141  	}
   142  	// regabi is only supported on amd64, arm64, loong64, riscv64, ppc64 and ppc64le.
   143  	if !regabiSupported {
   144  		flags.RegabiWrappers = false
   145  		flags.RegabiArgs = false
   146  	}
   147  	// Check regabi dependencies.
   148  	if flags.RegabiArgs && !flags.RegabiWrappers {
   149  		return nil, fmt.Errorf("GOEXPERIMENT regabiargs requires regabiwrappers")
   150  	}
   151  	return flags, nil
   152  }
   153  
   154  // String returns the canonical GOEXPERIMENT string to enable this experiment
   155  // configuration. (Experiments in the same state as in the baseline are elided.)
   156  func (exp *ExperimentFlags) String() string {
   157  	return strings.Join(expList(&exp.Flags, &exp.baseline, false), ",")
   158  }
   159  
   160  // expList returns the list of lower-cased experiment names for
   161  // experiments that differ from base. base may be nil to indicate no
   162  // experiments. If all is true, then include all experiment flags,
   163  // regardless of base.
   164  func expList(exp, base *goexperiment.Flags, all bool) []string {
   165  	var list []string
   166  	rv := reflect.ValueOf(exp).Elem()
   167  	var rBase reflect.Value
   168  	if base != nil {
   169  		rBase = reflect.ValueOf(base).Elem()
   170  	}
   171  	rt := rv.Type()
   172  	for i := 0; i < rt.NumField(); i++ {
   173  		name := strings.ToLower(rt.Field(i).Name)
   174  		val := rv.Field(i).Bool()
   175  		baseVal := false
   176  		if base != nil {
   177  			baseVal = rBase.Field(i).Bool()
   178  		}
   179  		if all || val != baseVal {
   180  			if val {
   181  				list = append(list, name)
   182  			} else {
   183  				list = append(list, "no"+name)
   184  			}
   185  		}
   186  	}
   187  	return list
   188  }
   189  
   190  // Enabled returns a list of enabled experiments, as
   191  // lower-cased experiment names.
   192  func (exp *ExperimentFlags) Enabled() []string {
   193  	return expList(&exp.Flags, nil, false)
   194  }
   195  
   196  // All returns a list of all experiment settings.
   197  // Disabled experiments appear in the list prefixed by "no".
   198  func (exp *ExperimentFlags) All() []string {
   199  	return expList(&exp.Flags, nil, true)
   200  }
   201  

View as plain text