Source file src/cmd/compile/internal/base/flag.go

     1  // Copyright 2009 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 base
     6  
     7  import (
     8  	"cmd/internal/cov/covcmd"
     9  	"cmd/internal/telemetry/counter"
    10  	"encoding/json"
    11  	"flag"
    12  	"fmt"
    13  	"internal/buildcfg"
    14  	"internal/platform"
    15  	"log"
    16  	"os"
    17  	"reflect"
    18  	"runtime"
    19  	"strings"
    20  
    21  	"cmd/internal/obj"
    22  	"cmd/internal/objabi"
    23  	"cmd/internal/sys"
    24  )
    25  
    26  func usage() {
    27  	fmt.Fprintf(os.Stderr, "usage: compile [options] file.go...\n")
    28  	objabi.Flagprint(os.Stderr)
    29  	Exit(2)
    30  }
    31  
    32  // Flag holds the parsed command-line flags.
    33  // See ParseFlag for non-zero defaults.
    34  var Flag CmdFlags
    35  
    36  // A CountFlag is a counting integer flag.
    37  // It accepts -name=value to set the value directly,
    38  // but it also accepts -name with no =value to increment the count.
    39  type CountFlag int
    40  
    41  // CmdFlags defines the command-line flags (see var Flag).
    42  // Each struct field is a different flag, by default named for the lower-case of the field name.
    43  // If the flag name is a single letter, the default flag name is left upper-case.
    44  // If the flag name is "Lower" followed by a single letter, the default flag name is the lower-case of the last letter.
    45  //
    46  // If this default flag name can't be made right, the `flag` struct tag can be used to replace it,
    47  // but this should be done only in exceptional circumstances: it helps everyone if the flag name
    48  // is obvious from the field name when the flag is used elsewhere in the compiler sources.
    49  // The `flag:"-"` struct tag makes a field invisible to the flag logic and should also be used sparingly.
    50  //
    51  // Each field must have a `help` struct tag giving the flag help message.
    52  //
    53  // The allowed field types are bool, int, string, pointers to those (for values stored elsewhere),
    54  // CountFlag (for a counting flag), and func(string) (for a flag that uses special code for parsing).
    55  type CmdFlags struct {
    56  	// Single letters
    57  	B CountFlag    "help:\"disable bounds checking\""
    58  	C CountFlag    "help:\"disable printing of columns in error messages\""
    59  	D string       "help:\"set relative `path` for local imports\""
    60  	E CountFlag    "help:\"debug symbol export\""
    61  	I func(string) "help:\"add `directory` to import search path\""
    62  	K CountFlag    "help:\"debug missing line numbers\""
    63  	L CountFlag    "help:\"also show actual source file names in error messages for positions affected by //line directives\""
    64  	N CountFlag    "help:\"disable optimizations\""
    65  	S CountFlag    "help:\"print assembly listing\""
    66  	// V is added by objabi.AddVersionFlag
    67  	W CountFlag "help:\"debug parse tree after type checking\""
    68  
    69  	LowerC int        "help:\"concurrency during compilation (1 means no concurrency)\""
    70  	LowerD flag.Value "help:\"enable debugging settings; try -d help\""
    71  	LowerE CountFlag  "help:\"no limit on number of errors reported\""
    72  	LowerH CountFlag  "help:\"halt on error\""
    73  	LowerJ CountFlag  "help:\"debug runtime-initialized variables\""
    74  	LowerL CountFlag  "help:\"disable inlining\""
    75  	LowerM CountFlag  "help:\"print optimization decisions\""
    76  	LowerO string     "help:\"write output to `file`\""
    77  	LowerP *string    "help:\"set expected package import `path`\"" // &Ctxt.Pkgpath, set below
    78  	LowerR CountFlag  "help:\"debug generated wrappers\""
    79  	LowerT bool       "help:\"enable tracing for debugging the compiler\""
    80  	LowerW CountFlag  "help:\"debug type checking\""
    81  	LowerV *bool      "help:\"increase debug verbosity\""
    82  
    83  	// Special characters
    84  	Percent          CountFlag "flag:\"%\" help:\"debug non-static initializers\""
    85  	CompilingRuntime bool      "flag:\"+\" help:\"compiling runtime\""
    86  
    87  	// Longer names
    88  	AsmHdr             string       "help:\"write assembly header to `file`\""
    89  	ASan               bool         "help:\"build code compatible with C/C++ address sanitizer\""
    90  	Bench              string       "help:\"append benchmark times to `file`\""
    91  	BlockProfile       string       "help:\"write block profile to `file`\""
    92  	BuildID            string       "help:\"record `id` as the build id in the export metadata\""
    93  	CPUProfile         string       "help:\"write cpu profile to `file`\""
    94  	Complete           bool         "help:\"compiling complete package (no C or assembly)\""
    95  	ClobberDead        bool         "help:\"clobber dead stack slots (for debugging)\""
    96  	ClobberDeadReg     bool         "help:\"clobber dead registers (for debugging)\""
    97  	Dwarf              bool         "help:\"generate DWARF symbols\""
    98  	DwarfBASEntries    *bool        "help:\"use base address selection entries in DWARF\""                        // &Ctxt.UseBASEntries, set below
    99  	DwarfLocationLists *bool        "help:\"add location lists to DWARF in optimized mode\""                      // &Ctxt.Flag_locationlists, set below
   100  	Dynlink            *bool        "help:\"support references to Go symbols defined in other shared libraries\"" // &Ctxt.Flag_dynlink, set below
   101  	EmbedCfg           func(string) "help:\"read go:embed configuration from `file`\""
   102  	Env                func(string) "help:\"add `definition` of the form key=value to environment\""
   103  	GenDwarfInl        int          "help:\"generate DWARF inline info records\"" // 0=disabled, 1=funcs, 2=funcs+formals/locals
   104  	GoVersion          string       "help:\"required version of the runtime\""
   105  	ImportCfg          func(string) "help:\"read import configuration from `file`\""
   106  	InstallSuffix      string       "help:\"set pkg directory `suffix`\""
   107  	JSON               string       "help:\"version,file for JSON compiler/optimizer detail output\""
   108  	Lang               string       "help:\"Go language version source code expects\""
   109  	LinkObj            string       "help:\"write linker-specific object to `file`\""
   110  	LinkShared         *bool        "help:\"generate code that will be linked against Go shared libraries\"" // &Ctxt.Flag_linkshared, set below
   111  	Live               CountFlag    "help:\"debug liveness analysis\""
   112  	MSan               bool         "help:\"build code compatible with C/C++ memory sanitizer\""
   113  	MemProfile         string       "help:\"write memory profile to `file`\""
   114  	MemProfileRate     int          "help:\"set runtime.MemProfileRate to `rate`\""
   115  	MutexProfile       string       "help:\"write mutex profile to `file`\""
   116  	NoLocalImports     bool         "help:\"reject local (relative) imports\""
   117  	CoverageCfg        func(string) "help:\"read coverage configuration from `file`\""
   118  	Pack               bool         "help:\"write to file.a instead of file.o\""
   119  	Race               bool         "help:\"enable race detector\""
   120  	Shared             *bool        "help:\"generate code that can be linked into a shared library\"" // &Ctxt.Flag_shared, set below
   121  	SmallFrames        bool         "help:\"reduce the size limit for stack allocated objects\""      // small stacks, to diagnose GC latency; see golang.org/issue/27732
   122  	Spectre            string       "help:\"enable spectre mitigations in `list` (all, index, ret)\""
   123  	Std                bool         "help:\"compiling standard library\""
   124  	SymABIs            string       "help:\"read symbol ABIs from `file`\""
   125  	TraceProfile       string       "help:\"write an execution trace to `file`\""
   126  	TrimPath           string       "help:\"remove `prefix` from recorded source file paths\""
   127  	WB                 bool         "help:\"enable write barrier\"" // TODO: remove
   128  	PgoProfile         string       "help:\"read profile or pre-process profile from `file`\""
   129  	ErrorURL           bool         "help:\"print explanatory URL with error message if applicable\""
   130  
   131  	// Configuration derived from flags; not a flag itself.
   132  	Cfg struct {
   133  		Embed struct { // set by -embedcfg
   134  			Patterns map[string][]string
   135  			Files    map[string]string
   136  		}
   137  		ImportDirs   []string                 // appended to by -I
   138  		ImportMap    map[string]string        // set by -importcfg
   139  		PackageFile  map[string]string        // set by -importcfg; nil means not in use
   140  		CoverageInfo *covcmd.CoverFixupConfig // set by -coveragecfg
   141  		SpectreIndex bool                     // set by -spectre=index or -spectre=all
   142  		// Whether we are adding any sort of code instrumentation, such as
   143  		// when the race detector is enabled.
   144  		Instrumenting bool
   145  	}
   146  }
   147  
   148  func addEnv(s string) {
   149  	i := strings.Index(s, "=")
   150  	if i < 0 {
   151  		log.Fatal("-env argument must be of the form key=value")
   152  	}
   153  	os.Setenv(s[:i], s[i+1:])
   154  }
   155  
   156  // ParseFlags parses the command-line flags into Flag.
   157  func ParseFlags() {
   158  	Flag.I = addImportDir
   159  
   160  	Flag.LowerC = runtime.GOMAXPROCS(0)
   161  	Flag.LowerD = objabi.NewDebugFlag(&Debug, DebugSSA)
   162  	Flag.LowerP = &Ctxt.Pkgpath
   163  	Flag.LowerV = &Ctxt.Debugvlog
   164  
   165  	Flag.Dwarf = buildcfg.GOARCH != "wasm"
   166  	Flag.DwarfBASEntries = &Ctxt.UseBASEntries
   167  	Flag.DwarfLocationLists = &Ctxt.Flag_locationlists
   168  	*Flag.DwarfLocationLists = true
   169  	Flag.Dynlink = &Ctxt.Flag_dynlink
   170  	Flag.EmbedCfg = readEmbedCfg
   171  	Flag.Env = addEnv
   172  	Flag.GenDwarfInl = 2
   173  	Flag.ImportCfg = readImportCfg
   174  	Flag.CoverageCfg = readCoverageCfg
   175  	Flag.LinkShared = &Ctxt.Flag_linkshared
   176  	Flag.Shared = &Ctxt.Flag_shared
   177  	Flag.WB = true
   178  
   179  	Debug.ConcurrentOk = true
   180  	Debug.MaxShapeLen = 500
   181  	Debug.AlignHot = 1
   182  	Debug.InlFuncsWithClosures = 1
   183  	Debug.InlStaticInit = 1
   184  	Debug.PGOInline = 1
   185  	Debug.PGODevirtualize = 2
   186  	Debug.SyncFrames = -1            // disable sync markers by default
   187  	Debug.VariableMakeThreshold = 32 // 32 byte default for stack allocated make results
   188  	Debug.ZeroCopy = 1
   189  	Debug.RangeFuncCheck = 1
   190  	Debug.MergeLocals = 1
   191  
   192  	Debug.Checkptr = -1 // so we can tell whether it is set explicitly
   193  
   194  	Flag.Cfg.ImportMap = make(map[string]string)
   195  
   196  	objabi.AddVersionFlag() // -V
   197  	registerFlags()
   198  	objabi.Flagparse(usage)
   199  	counter.CountFlags("compile/flag:", *flag.CommandLine)
   200  
   201  	if gcd := os.Getenv("GOCOMPILEDEBUG"); gcd != "" {
   202  		// This will only override the flags set in gcd;
   203  		// any others set on the command line remain set.
   204  		Flag.LowerD.Set(gcd)
   205  	}
   206  
   207  	if Debug.Gossahash != "" {
   208  		hashDebug = NewHashDebug("gossahash", Debug.Gossahash, nil)
   209  	}
   210  	obj.SetFIPSDebugHash(Debug.FIPSHash)
   211  
   212  	// Compute whether we're compiling the runtime from the package path. Test
   213  	// code can also use the flag to set this explicitly.
   214  	if Flag.Std && objabi.LookupPkgSpecial(Ctxt.Pkgpath).Runtime {
   215  		Flag.CompilingRuntime = true
   216  	}
   217  
   218  	Ctxt.Std = Flag.Std
   219  
   220  	// Three inputs govern loop iteration variable rewriting, hash, experiment, flag.
   221  	// The loop variable rewriting is:
   222  	// IF non-empty hash, then hash determines behavior (function+line match) (*)
   223  	// ELSE IF experiment and flag==0, then experiment (set flag=1)
   224  	// ELSE flag (note that build sets flag per-package), with behaviors:
   225  	//  -1 => no change to behavior.
   226  	//   0 => no change to behavior (unless non-empty hash, see above)
   227  	//   1 => apply change to likely-iteration-variable-escaping loops
   228  	//   2 => apply change, log results
   229  	//   11 => apply change EVERYWHERE, do not log results (for debugging/benchmarking)
   230  	//   12 => apply change EVERYWHERE, log results (for debugging/benchmarking)
   231  	//
   232  	// The expected uses of the these inputs are, in believed most-likely to least likely:
   233  	//  GOEXPERIMENT=loopvar -- apply change to entire application
   234  	//  -gcflags=some_package=-d=loopvar=1 -- apply change to some_package (**)
   235  	//  -gcflags=some_package=-d=loopvar=2 -- apply change to some_package, log it
   236  	//  GOEXPERIMENT=loopvar -gcflags=some_package=-d=loopvar=-1 -- apply change to all but one package
   237  	//  GOCOMPILEDEBUG=loopvarhash=... -- search for failure cause
   238  	//
   239  	//  (*) For debugging purposes, providing loopvar flag >= 11 will expand the hash-eligible set of loops to all.
   240  	// (**) Loop semantics, changed or not, follow code from a package when it is inlined; that is, the behavior
   241  	//      of an application compiled with partially modified loop semantics does not depend on inlining.
   242  
   243  	if Debug.LoopVarHash != "" {
   244  		// This first little bit controls the inputs for debug-hash-matching.
   245  		mostInlineOnly := true
   246  		if strings.HasPrefix(Debug.LoopVarHash, "IL") {
   247  			// When hash-searching on a position that is an inline site, default is to use the
   248  			// most-inlined position only.  This makes the hash faster, plus there's no point
   249  			// reporting a problem with all the inlining; there's only one copy of the source.
   250  			// However, if for some reason you wanted it per-site, you can get this.  (The default
   251  			// hash-search behavior for compiler debugging is at an inline site.)
   252  			Debug.LoopVarHash = Debug.LoopVarHash[2:]
   253  			mostInlineOnly = false
   254  		}
   255  		// end of testing trickiness
   256  		LoopVarHash = NewHashDebug("loopvarhash", Debug.LoopVarHash, nil)
   257  		if Debug.LoopVar < 11 { // >= 11 means all loops are rewrite-eligible
   258  			Debug.LoopVar = 1 // 1 means those loops that syntactically escape their dcl vars are eligible.
   259  		}
   260  		LoopVarHash.SetInlineSuffixOnly(mostInlineOnly)
   261  	} else if buildcfg.Experiment.LoopVar && Debug.LoopVar == 0 {
   262  		Debug.LoopVar = 1
   263  	}
   264  
   265  	if Debug.Converthash != "" {
   266  		ConvertHash = NewHashDebug("converthash", Debug.Converthash, nil)
   267  	} else {
   268  		// quietly disable the convert hash changes
   269  		ConvertHash = NewHashDebug("converthash", "qn", nil)
   270  	}
   271  	if Debug.Fmahash != "" {
   272  		FmaHash = NewHashDebug("fmahash", Debug.Fmahash, nil)
   273  	}
   274  	if Debug.PGOHash != "" {
   275  		PGOHash = NewHashDebug("pgohash", Debug.PGOHash, nil)
   276  	}
   277  	if Debug.LiteralAllocHash != "" {
   278  		LiteralAllocHash = NewHashDebug("literalalloc", Debug.LiteralAllocHash, nil)
   279  	}
   280  
   281  	if Debug.MergeLocalsHash != "" {
   282  		MergeLocalsHash = NewHashDebug("mergelocals", Debug.MergeLocalsHash, nil)
   283  	}
   284  	if Debug.VariableMakeHash != "" {
   285  		VariableMakeHash = NewHashDebug("variablemake", Debug.VariableMakeHash, nil)
   286  	}
   287  
   288  	if Flag.MSan && !platform.MSanSupported(buildcfg.GOOS, buildcfg.GOARCH) {
   289  		log.Fatalf("%s/%s does not support -msan", buildcfg.GOOS, buildcfg.GOARCH)
   290  	}
   291  	if Flag.ASan && !platform.ASanSupported(buildcfg.GOOS, buildcfg.GOARCH) {
   292  		log.Fatalf("%s/%s does not support -asan", buildcfg.GOOS, buildcfg.GOARCH)
   293  	}
   294  	if Flag.Race && !platform.RaceDetectorSupported(buildcfg.GOOS, buildcfg.GOARCH) {
   295  		log.Fatalf("%s/%s does not support -race", buildcfg.GOOS, buildcfg.GOARCH)
   296  	}
   297  	if (*Flag.Shared || *Flag.Dynlink || *Flag.LinkShared) && !Ctxt.Arch.InFamily(sys.AMD64, sys.ARM, sys.ARM64, sys.I386, sys.Loong64, sys.MIPS64, sys.PPC64, sys.RISCV64, sys.S390X) {
   298  		log.Fatalf("%s/%s does not support -shared", buildcfg.GOOS, buildcfg.GOARCH)
   299  	}
   300  	parseSpectre(Flag.Spectre) // left as string for RecordFlags
   301  
   302  	Ctxt.Flag_shared = Ctxt.Flag_dynlink || Ctxt.Flag_shared
   303  	Ctxt.Flag_optimize = Flag.N == 0
   304  	Ctxt.Debugasm = int(Flag.S)
   305  	Ctxt.Flag_maymorestack = Debug.MayMoreStack
   306  	Ctxt.Flag_noRefName = Debug.NoRefName != 0
   307  
   308  	if flag.NArg() < 1 {
   309  		usage()
   310  	}
   311  
   312  	if Flag.GoVersion != "" && Flag.GoVersion != runtime.Version() {
   313  		fmt.Printf("compile: version %q does not match go tool version %q\n", runtime.Version(), Flag.GoVersion)
   314  		Exit(2)
   315  	}
   316  
   317  	if *Flag.LowerP == "" {
   318  		*Flag.LowerP = obj.UnlinkablePkg
   319  	}
   320  
   321  	if Flag.LowerO == "" {
   322  		p := flag.Arg(0)
   323  		if i := strings.LastIndex(p, "/"); i >= 0 {
   324  			p = p[i+1:]
   325  		}
   326  		if runtime.GOOS == "windows" {
   327  			if i := strings.LastIndex(p, `\`); i >= 0 {
   328  				p = p[i+1:]
   329  			}
   330  		}
   331  		if i := strings.LastIndex(p, "."); i >= 0 {
   332  			p = p[:i]
   333  		}
   334  		suffix := ".o"
   335  		if Flag.Pack {
   336  			suffix = ".a"
   337  		}
   338  		Flag.LowerO = p + suffix
   339  	}
   340  	switch {
   341  	case Flag.Race && Flag.MSan:
   342  		log.Fatal("cannot use both -race and -msan")
   343  	case Flag.Race && Flag.ASan:
   344  		log.Fatal("cannot use both -race and -asan")
   345  	case Flag.MSan && Flag.ASan:
   346  		log.Fatal("cannot use both -msan and -asan")
   347  	}
   348  	if Flag.Race || Flag.MSan || Flag.ASan {
   349  		// -race, -msan and -asan imply -d=checkptr for now.
   350  		if Debug.Checkptr == -1 { // if not set explicitly
   351  			Debug.Checkptr = 1
   352  		}
   353  	}
   354  
   355  	if Flag.LowerC < 1 {
   356  		log.Fatalf("-c must be at least 1, got %d", Flag.LowerC)
   357  	}
   358  	if !concurrentBackendAllowed() {
   359  		Flag.LowerC = 1
   360  	}
   361  
   362  	if Flag.CompilingRuntime {
   363  		// It is not possible to build the runtime with no optimizations,
   364  		// because the compiler cannot eliminate enough write barriers.
   365  		Flag.N = 0
   366  		Ctxt.Flag_optimize = true
   367  
   368  		// Runtime can't use -d=checkptr, at least not yet.
   369  		Debug.Checkptr = 0
   370  
   371  		// Fuzzing the runtime isn't interesting either.
   372  		Debug.Libfuzzer = 0
   373  	}
   374  
   375  	if Debug.Checkptr == -1 { // if not set explicitly
   376  		Debug.Checkptr = 0
   377  	}
   378  
   379  	// set via a -d flag
   380  	Ctxt.Debugpcln = Debug.PCTab
   381  
   382  	// https://golang.org/issue/67502
   383  	if buildcfg.GOOS == "plan9" && buildcfg.GOARCH == "386" {
   384  		Debug.AlignHot = 0
   385  	}
   386  }
   387  
   388  // registerFlags adds flag registrations for all the fields in Flag.
   389  // See the comment on type CmdFlags for the rules.
   390  func registerFlags() {
   391  	var (
   392  		boolType      = reflect.TypeFor[bool]()
   393  		intType       = reflect.TypeFor[int]()
   394  		stringType    = reflect.TypeFor[string]()
   395  		ptrBoolType   = reflect.TypeFor[*bool]()
   396  		ptrIntType    = reflect.TypeFor[*int]()
   397  		ptrStringType = reflect.TypeFor[*string]()
   398  		countType     = reflect.TypeFor[CountFlag]()
   399  		funcType      = reflect.TypeFor[func(string)]()
   400  	)
   401  
   402  	v := reflect.ValueOf(&Flag).Elem()
   403  	t := v.Type()
   404  	for i := 0; i < t.NumField(); i++ {
   405  		f := t.Field(i)
   406  		if f.Name == "Cfg" {
   407  			continue
   408  		}
   409  
   410  		var name string
   411  		if len(f.Name) == 1 {
   412  			name = f.Name
   413  		} else if len(f.Name) == 6 && f.Name[:5] == "Lower" && 'A' <= f.Name[5] && f.Name[5] <= 'Z' {
   414  			name = string(rune(f.Name[5] + 'a' - 'A'))
   415  		} else {
   416  			name = strings.ToLower(f.Name)
   417  		}
   418  		if tag := f.Tag.Get("flag"); tag != "" {
   419  			name = tag
   420  		}
   421  
   422  		help := f.Tag.Get("help")
   423  		if help == "" {
   424  			panic(fmt.Sprintf("base.Flag.%s is missing help text", f.Name))
   425  		}
   426  
   427  		if k := f.Type.Kind(); (k == reflect.Ptr || k == reflect.Func) && v.Field(i).IsNil() {
   428  			panic(fmt.Sprintf("base.Flag.%s is uninitialized %v", f.Name, f.Type))
   429  		}
   430  
   431  		switch f.Type {
   432  		case boolType:
   433  			p := v.Field(i).Addr().Interface().(*bool)
   434  			flag.BoolVar(p, name, *p, help)
   435  		case intType:
   436  			p := v.Field(i).Addr().Interface().(*int)
   437  			flag.IntVar(p, name, *p, help)
   438  		case stringType:
   439  			p := v.Field(i).Addr().Interface().(*string)
   440  			flag.StringVar(p, name, *p, help)
   441  		case ptrBoolType:
   442  			p := v.Field(i).Interface().(*bool)
   443  			flag.BoolVar(p, name, *p, help)
   444  		case ptrIntType:
   445  			p := v.Field(i).Interface().(*int)
   446  			flag.IntVar(p, name, *p, help)
   447  		case ptrStringType:
   448  			p := v.Field(i).Interface().(*string)
   449  			flag.StringVar(p, name, *p, help)
   450  		case countType:
   451  			p := (*int)(v.Field(i).Addr().Interface().(*CountFlag))
   452  			objabi.Flagcount(name, help, p)
   453  		case funcType:
   454  			f := v.Field(i).Interface().(func(string))
   455  			objabi.Flagfn1(name, help, f)
   456  		default:
   457  			if val, ok := v.Field(i).Interface().(flag.Value); ok {
   458  				flag.Var(val, name, help)
   459  			} else {
   460  				panic(fmt.Sprintf("base.Flag.%s has unexpected type %s", f.Name, f.Type))
   461  			}
   462  		}
   463  	}
   464  }
   465  
   466  // concurrentFlagOk reports whether the current compiler flags
   467  // are compatible with concurrent compilation.
   468  func concurrentFlagOk() bool {
   469  	// TODO(rsc): Many of these are fine. Remove them.
   470  	return Flag.Percent == 0 &&
   471  		Flag.E == 0 &&
   472  		Flag.K == 0 &&
   473  		Flag.L == 0 &&
   474  		Flag.LowerH == 0 &&
   475  		Flag.LowerJ == 0 &&
   476  		Flag.LowerM == 0 &&
   477  		Flag.LowerR == 0
   478  }
   479  
   480  func concurrentBackendAllowed() bool {
   481  	if !concurrentFlagOk() {
   482  		return false
   483  	}
   484  
   485  	// Debug.S by itself is ok, because all printing occurs
   486  	// while writing the object file, and that is non-concurrent.
   487  	// Adding Debug_vlog, however, causes Debug.S to also print
   488  	// while flushing the plist, which happens concurrently.
   489  	if Ctxt.Debugvlog || !Debug.ConcurrentOk || Flag.Live > 0 {
   490  		return false
   491  	}
   492  	// TODO: Test and delete this condition.
   493  	if buildcfg.Experiment.FieldTrack {
   494  		return false
   495  	}
   496  	// TODO: fix races and enable the following flags
   497  	if Ctxt.Flag_dynlink || Flag.Race {
   498  		return false
   499  	}
   500  	return true
   501  }
   502  
   503  func addImportDir(dir string) {
   504  	if dir != "" {
   505  		Flag.Cfg.ImportDirs = append(Flag.Cfg.ImportDirs, dir)
   506  	}
   507  }
   508  
   509  func readImportCfg(file string) {
   510  	if Flag.Cfg.ImportMap == nil {
   511  		Flag.Cfg.ImportMap = make(map[string]string)
   512  	}
   513  	Flag.Cfg.PackageFile = map[string]string{}
   514  	data, err := os.ReadFile(file)
   515  	if err != nil {
   516  		log.Fatalf("-importcfg: %v", err)
   517  	}
   518  
   519  	for lineNum, line := range strings.Split(string(data), "\n") {
   520  		lineNum++ // 1-based
   521  		line = strings.TrimSpace(line)
   522  		if line == "" || strings.HasPrefix(line, "#") {
   523  			continue
   524  		}
   525  
   526  		verb, args, found := strings.Cut(line, " ")
   527  		if found {
   528  			args = strings.TrimSpace(args)
   529  		}
   530  		before, after, hasEq := strings.Cut(args, "=")
   531  
   532  		switch verb {
   533  		default:
   534  			log.Fatalf("%s:%d: unknown directive %q", file, lineNum, verb)
   535  		case "importmap":
   536  			if !hasEq || before == "" || after == "" {
   537  				log.Fatalf(`%s:%d: invalid importmap: syntax is "importmap old=new"`, file, lineNum)
   538  			}
   539  			Flag.Cfg.ImportMap[before] = after
   540  		case "packagefile":
   541  			if !hasEq || before == "" || after == "" {
   542  				log.Fatalf(`%s:%d: invalid packagefile: syntax is "packagefile path=filename"`, file, lineNum)
   543  			}
   544  			Flag.Cfg.PackageFile[before] = after
   545  		}
   546  	}
   547  }
   548  
   549  func readCoverageCfg(file string) {
   550  	var cfg covcmd.CoverFixupConfig
   551  	data, err := os.ReadFile(file)
   552  	if err != nil {
   553  		log.Fatalf("-coveragecfg: %v", err)
   554  	}
   555  	if err := json.Unmarshal(data, &cfg); err != nil {
   556  		log.Fatalf("error reading -coveragecfg file %q: %v", file, err)
   557  	}
   558  	Flag.Cfg.CoverageInfo = &cfg
   559  }
   560  
   561  func readEmbedCfg(file string) {
   562  	data, err := os.ReadFile(file)
   563  	if err != nil {
   564  		log.Fatalf("-embedcfg: %v", err)
   565  	}
   566  	if err := json.Unmarshal(data, &Flag.Cfg.Embed); err != nil {
   567  		log.Fatalf("%s: %v", file, err)
   568  	}
   569  	if Flag.Cfg.Embed.Patterns == nil {
   570  		log.Fatalf("%s: invalid embedcfg: missing Patterns", file)
   571  	}
   572  	if Flag.Cfg.Embed.Files == nil {
   573  		log.Fatalf("%s: invalid embedcfg: missing Files", file)
   574  	}
   575  }
   576  
   577  // parseSpectre parses the spectre configuration from the string s.
   578  func parseSpectre(s string) {
   579  	for f := range strings.SplitSeq(s, ",") {
   580  		f = strings.TrimSpace(f)
   581  		switch f {
   582  		default:
   583  			log.Fatalf("unknown setting -spectre=%s", f)
   584  		case "":
   585  			// nothing
   586  		case "all":
   587  			Flag.Cfg.SpectreIndex = true
   588  			Ctxt.Retpoline = true
   589  		case "index":
   590  			Flag.Cfg.SpectreIndex = true
   591  		case "ret":
   592  			Ctxt.Retpoline = true
   593  		}
   594  	}
   595  
   596  	if Flag.Cfg.SpectreIndex {
   597  		switch buildcfg.GOARCH {
   598  		case "amd64":
   599  			// ok
   600  		default:
   601  			log.Fatalf("GOARCH=%s does not support -spectre=index", buildcfg.GOARCH)
   602  		}
   603  	}
   604  }
   605  

View as plain text