1
2
3
4
5
6
7 package base
8
9
10 var Debug DebugFlags
11
12
13
14
15
16
17
18 type DebugFlags struct {
19 AlignHot int `help:"enable hot block alignment (currently requires -pgo)" concurrent:"ok"`
20 Append int `help:"print information about append compilation"`
21 Checkptr int `help:"instrument unsafe pointer conversions\n0: instrumentation disabled\n1: conversions involving unsafe.Pointer are instrumented\n2: conversions to unsafe.Pointer force heap allocation" concurrent:"ok"`
22 Closure int `help:"print information about closure compilation"`
23 Defer int `help:"print information about defer compilation"`
24 DisableNil int `help:"disable nil checks" concurrent:"ok"`
25 DumpInlFuncProps string `help:"dump function properties from inl heuristics to specified file"`
26 DumpInlCallSiteScores int `help:"dump scored callsites during inlining"`
27 InlScoreAdj string `help:"set inliner score adjustments (ex: -d=inlscoreadj=panicPathAdj:10/passConstToNestedIfAdj:-90)"`
28 InlBudgetSlack int `help:"amount to expand the initial inline budget when new inliner enabled. Defaults to 80 if option not set." concurrent:"ok"`
29 DumpPtrs int `help:"show Node pointers values in dump output"`
30 DwarfInl int `help:"print information about DWARF inlined function creation"`
31 EscapeMutationsCalls int `help:"print extra escape analysis diagnostics about mutations and calls" concurrent:"ok"`
32 Export int `help:"print export data"`
33 FIPSHash string `help:"hash value for FIPS debugging" concurrent:"ok"`
34 Fmahash string `help:"hash value for use in debugging platform-dependent multiply-add use" concurrent:"ok"`
35 GCAdjust int `help:"log adjustments to GOGC" concurrent:"ok"`
36 GCCheck int `help:"check heap/gc use by compiler" concurrent:"ok"`
37 GCProg int `help:"print dump of GC programs"`
38 Gossahash string `help:"hash value for use in debugging the compiler"`
39 InlFuncsWithClosures int `help:"allow functions with closures to be inlined" concurrent:"ok"`
40 InlStaticInit int `help:"allow static initialization of inlined calls" concurrent:"ok"`
41 Libfuzzer int `help:"enable coverage instrumentation for libfuzzer"`
42 LoopVar int `help:"shared (0, default), 1 (private loop variables), 2, private + log"`
43 LoopVarHash string `help:"for debugging changes in loop behavior. Overrides experiment and loopvar flag."`
44 LocationLists int `help:"print information about DWARF location list creation"`
45 MaxShapeLen int `help:"hash shape names longer than this threshold (default 500)" concurrent:"ok"`
46 MergeLocals int `help:"merge together non-interfering local stack slots" concurrent:"ok"`
47 MergeLocalsDumpFunc string `help:"dump specified func in merge locals"`
48 MergeLocalsHash string `help:"hash value for debugging stack slot merging of local variables" concurrent:"ok"`
49 MergeLocalsTrace int `help:"trace debug output for locals merging"`
50 MergeLocalsHTrace int `help:"hash-selected trace debug output for locals merging"`
51 Nil int `help:"print information about nil checks"`
52 NoDeadLocals int `help:"disable deadlocals pass" concurrent:"ok"`
53 NoOpenDefer int `help:"disable open-coded defers" concurrent:"ok"`
54 NoRefName int `help:"do not include referenced symbol names in object file" concurrent:"ok"`
55 PCTab string `help:"print named pc-value table\nOne of: pctospadj, pctofile, pctoline, pctoinline, pctopcdata"`
56 Panic int `help:"show all compiler panics"`
57 Reshape int `help:"print information about expression reshaping"`
58 Shapify int `help:"print information about shaping recursive types"`
59 Slice int `help:"print information about slice compilation"`
60 SoftFloat int `help:"force compiler to emit soft-float code" concurrent:"ok"`
61 StaticCopy int `help:"print information about missed static copies" concurrent:"ok"`
62 SyncFrames int `help:"how many writer stack frames to include at sync points in unified export data"`
63 TailCall int `help:"print information about tail calls"`
64 TypeAssert int `help:"print information about type assertion inlining"`
65 WB int `help:"print information about write barriers"`
66 ABIWrap int `help:"print information about ABI wrapper generation"`
67 MayMoreStack string `help:"call named function before all stack growth checks" concurrent:"ok"`
68 PGODebug int `help:"debug profile-guided optimizations"`
69 PGOHash string `help:"hash value for debugging profile-guided optimizations" concurrent:"ok"`
70 PGOInline int `help:"enable profile-guided inlining" concurrent:"ok"`
71 PGOInlineCDFThreshold string `help:"cumulative threshold percentage for determining call sites as hot candidates for inlining" concurrent:"ok"`
72 PGOInlineBudget int `help:"inline budget for hot functions" concurrent:"ok"`
73 PGODevirtualize int `help:"enable profile-guided devirtualization; 0 to disable, 1 to enable interface devirtualization, 2 to enable function devirtualization" concurrent:"ok"`
74 RangeFuncCheck int `help:"insert code to check behavior of range iterator functions" concurrent:"ok"`
75 WrapGlobalMapDbg int `help:"debug trace output for global map init wrapping"`
76 WrapGlobalMapCtl int `help:"global map init wrap control (0 => default, 1 => off, 2 => stress mode, no size cutoff)"`
77 ZeroCopy int `help:"enable zero-copy string->[]byte conversions" concurrent:"ok"`
78
79 ConcurrentOk bool
80 }
81
82
83
84
85 var DebugSSA func(phase, flag string, val int, valString string) string
86
View as plain text