diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-03-03 04:37:42 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 13:37:42 +0100 |
commit | f561afae419212e6eeb33f37f834aa7e9d4b9d6f (patch) | |
tree | 4855556cbfe11d74af7edf0404c57c65a9fd08f1 /compiler | |
parent | 6391f6e861d4c1dc87a94861374973b809f0d09f (diff) | |
download | Nim-f561afae419212e6eeb33f37f834aa7e9d4b9d6f.tar.gz |
followup #17225: simplify code after removing gc2, generational (#17242)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/commands.nim | 11 | ||||
-rw-r--r-- | compiler/nim.nim | 2 | ||||
-rw-r--r-- | compiler/nimfix/nimfix.nim | 2 |
3 files changed, 7 insertions, 8 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim index c03e51220..7ee2c0459 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -11,7 +11,7 @@ # We do this here before the 'import' statement so 'defined' does not get -# confused with 'TGCMode.gcGenerational' etc. +# confused with 'TGCMode.gcMarkAndSweep' etc. template bootSwitch(name, expr, userString) = # Helper to build boot constants, for debugging you can 'echo' the else part. const name = if expr: " " & userString else: "" @@ -22,7 +22,6 @@ bootSwitch(usedDanger, defined(danger), "-d:danger") bootSwitch(useLinenoise, defined(nimUseLinenoise) or defined(useLinenoise), "-d:nimUseLinenoise") bootSwitch(usedBoehm, defined(boehmgc), "--gc:boehm") bootSwitch(usedMarkAndSweep, defined(gcmarkandsweep), "--gc:markAndSweep") -bootSwitch(usedGenerational, defined(gcgenerational), "--gc:generational") bootSwitch(usedGoGC, defined(gogc), "--gc:go") bootSwitch(usedNoGC, defined(nogc), "--gc:none") @@ -97,12 +96,13 @@ proc writeVersionInfo(conf: ConfigRef; pass: TCmdLinePass) = {msgStdout}) const gitHash {.strdefine.} = gorge("git log -n 1 --format=%H").strip + # xxx move this logic to std/private/gitutils when gitHash.len == 40: msgWriteln(conf, "git hash: " & gitHash, {msgStdout}) msgWriteln(conf, "active boot switches:" & usedRelease & usedDanger & usedTinyC & useLinenoise & usedNativeStacktrace & - usedFFI & usedBoehm & usedMarkAndSweep & usedGenerational & usedGoGC & usedNoGC, + usedFFI & usedBoehm & usedMarkAndSweep & usedGoGC & usedNoGC, {msgStdout}) msgQuit(0) @@ -247,13 +247,13 @@ proc testCompileOptionArg*(conf: ConfigRef; switch, arg: string, info: TLineInfo of "boehm": result = conf.selectedGC == gcBoehm of "refc": result = conf.selectedGC == gcRefc of "markandsweep": result = conf.selectedGC == gcMarkAndSweep - of "v2", "generational": warningOptionNoop(arg) of "destructors", "arc": result = conf.selectedGC == gcArc of "orc": result = conf.selectedGC == gcOrc of "hooks": result = conf.selectedGC == gcHooks of "go": result = conf.selectedGC == gcGo of "none": result = conf.selectedGC == gcNone of "stack", "regions": result = conf.selectedGC == gcRegions + of "v2", "generational": warningOptionNoop(arg) else: localError(conf, info, errNoneBoehmRefcExpectedButXFound % arg) of "opt": case arg.normalize @@ -560,8 +560,6 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo; incl conf.globalOptions, optTlsEmulation # Boehm GC doesn't scan the real TLS of "refc": conf.selectedGC = gcRefc - of "v2": - message(conf, info, warnDeprecated, "--gc:v2 is deprecated; using default gc") of "markandsweep": conf.selectedGC = gcMarkAndSweep defineSymbol(conf.symbols, "gcmarkandsweep") @@ -603,6 +601,7 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo; of "stack", "regions": conf.selectedGC = gcRegions defineSymbol(conf.symbols, "gcregions") + of "v2": warningOptionNoop(arg) else: localError(conf, info, errNoneBoehmRefcExpectedButXFound % arg) of "warnings", "w": if processOnOffSwitchOrList(conf, {optWarns}, arg, pass, info): listWarnings(conf) diff --git a/compiler/nim.nim b/compiler/nim.nim index 5ec891816..df06a83a9 100644 --- a/compiler/nim.nim +++ b/compiler/nim.nim @@ -116,7 +116,7 @@ proc handleCmdLine(cache: IdentCache; conf: ConfigRef) = when declared(GC_setMaxPause): GC_setMaxPause 2_000 -when compileOption("gc", "v2") or compileOption("gc", "refc"): +when compileOption("gc", "refc"): # the new correct mark&sweet collector is too slow :-/ GC_disableMarkAndSweep() diff --git a/compiler/nimfix/nimfix.nim b/compiler/nimfix/nimfix.nim index 4d93279c9..30c138f79 100644 --- a/compiler/nimfix/nimfix.nim +++ b/compiler/nimfix/nimfix.nim @@ -103,7 +103,7 @@ proc handleCmdLine(config: ConfigRef) = processCmdLine(passCmd2, "", config) mainCommand() -when compileOption("gc", "v2") or compileOption("gc", "refc"): +when compileOption("gc", "refc"): GC_disableMarkAndSweep() condsyms.initDefines() |