123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- #
- #
- # The Nim Compiler
- # (c) Copyright 2015 Andreas Rumpf
- #
- # See the file "copying.txt", included in this
- # distribution, for details about the copyright.
- #
- # implements the command dispatcher and several commands
- when not defined(nimcore):
- {.error: "nimcore MUST be defined for Nim's core tooling".}
- import
- llstream, strutils, os, ast, lexer, syntaxes, options, msgs,
- condsyms, times,
- sem, idents, passes, extccomp,
- cgen, json, nversion,
- platform, nimconf, passaux, depends, vm,
- modules,
- modulegraphs, tables, rod, lineinfos, pathutils, vmprofiler
- when not defined(leanCompiler):
- import jsgen, docgen, docgen2
- proc semanticPasses(g: ModuleGraph) =
- registerPass g, verbosePass
- registerPass g, semPass
- proc writeDepsFile(g: ModuleGraph) =
- let fname = g.config.nimcacheDir / RelativeFile(g.config.projectName & ".deps")
- let f = open(fname.string, fmWrite)
- for m in g.modules:
- if m != nil:
- f.writeLine(toFullPath(g.config, m.position.FileIndex))
- for k in g.inclToMod.keys:
- if g.getModule(k).isNil: # don't repeat includes which are also modules
- f.writeLine(toFullPath(g.config, k))
- f.close()
- proc commandGenDepend(graph: ModuleGraph) =
- semanticPasses(graph)
- registerPass(graph, gendependPass)
- compileProject(graph)
- let project = graph.config.projectFull
- writeDepsFile(graph)
- generateDot(graph, project)
- execExternalProgram(graph.config, "dot -Tpng -o" &
- changeFileExt(project, "png").string &
- ' ' & changeFileExt(project, "dot").string)
- proc commandCheck(graph: ModuleGraph) =
- graph.config.setErrorMaxHighMaybe
- defineSymbol(graph.config.symbols, "nimcheck")
- semanticPasses(graph) # use an empty backend for semantic checking only
- compileProject(graph)
- when not defined(leanCompiler):
- proc commandDoc2(graph: ModuleGraph; json: bool) =
- handleDocOutputOptions graph.config
- graph.config.setErrorMaxHighMaybe
- semanticPasses(graph)
- if json: registerPass(graph, docgen2JsonPass)
- else: registerPass(graph, docgen2Pass)
- compileProject(graph)
- finishDoc2Pass(graph.config.projectName)
- proc commandCompileToC(graph: ModuleGraph) =
- let conf = graph.config
- setOutFile(conf)
- extccomp.initVars(conf)
- semanticPasses(graph)
- registerPass(graph, cgenPass)
- if {optRun, optForceFullMake} * conf.globalOptions == {optRun} or isDefined(conf, "nimBetterRun"):
- let proj = changeFileExt(conf.projectFull, "")
- if not changeDetectedViaJsonBuildInstructions(conf, proj):
- # nothing changed
- graph.config.notes = graph.config.mainPackageNotes
- return
- if not extccomp.ccHasSaneOverflow(conf):
- conf.symbols.defineSymbol("nimEmulateOverflowChecks")
- compileProject(graph)
- if graph.config.errorCounter > 0:
- return # issue #9933
- cgenWriteModules(graph.backend, conf)
- if conf.cmd != cmdRun:
- extccomp.callCCompiler(conf)
- # for now we do not support writing out a .json file with the build instructions when HCR is on
- if not conf.hcrOn:
- extccomp.writeJsonBuildInstructions(conf)
- if optGenScript in graph.config.globalOptions:
- writeDepsFile(graph)
- proc commandJsonScript(graph: ModuleGraph) =
- let proj = changeFileExt(graph.config.projectFull, "")
- extccomp.runJsonBuildInstructions(graph.config, proj)
- proc commandCompileToJS(graph: ModuleGraph) =
- when defined(leanCompiler):
- globalError(graph.config, unknownLineInfo, "compiler wasn't built with JS code generator")
- else:
- let conf = graph.config
- conf.exc = excCpp
- if conf.outFile.isEmpty:
- conf.outFile = RelativeFile(conf.projectName & ".js")
- #incl(gGlobalOptions, optSafeCode)
- setTarget(graph.config.target, osJS, cpuJS)
- #initDefines()
- defineSymbol(graph.config.symbols, "ecmascript") # For backward compatibility
- semanticPasses(graph)
- registerPass(graph, JSgenPass)
- compileProject(graph)
- if optGenScript in graph.config.globalOptions:
- writeDepsFile(graph)
- proc interactivePasses(graph: ModuleGraph) =
- initDefines(graph.config.symbols)
- defineSymbol(graph.config.symbols, "nimscript")
- # note: seems redundant with -d:nimHasLibFFI
- when hasFFI: defineSymbol(graph.config.symbols, "nimffi")
- registerPass(graph, verbosePass)
- registerPass(graph, semPass)
- registerPass(graph, evalPass)
- proc commandInteractive(graph: ModuleGraph) =
- graph.config.setErrorMaxHighMaybe
- interactivePasses(graph)
- compileSystemModule(graph)
- if graph.config.commandArgs.len > 0:
- discard graph.compileModule(fileInfoIdx(graph.config, graph.config.projectFull), {})
- else:
- var m = graph.makeStdinModule()
- incl(m.flags, sfMainModule)
- var idgen = IdGenerator(module: m.itemId.module, item: m.itemId.item)
- processModule(graph, m, idgen, llStreamOpenStdIn())
- proc commandScan(cache: IdentCache, config: ConfigRef) =
- var f = addFileExt(AbsoluteFile mainCommandArg(config), NimExt)
- var stream = llStreamOpen(f, fmRead)
- if stream != nil:
- var
- L: Lexer
- tok: Token
- initToken(tok)
- openLexer(L, f, stream, cache, config)
- while true:
- rawGetTok(L, tok)
- printTok(config, tok)
- if tok.tokType == tkEof: break
- closeLexer(L)
- else:
- rawMessage(config, errGenerated, "cannot open file: " & f.string)
- const
- PrintRopeCacheStats = false
- proc mainCommand*(graph: ModuleGraph) =
- let conf = graph.config
- let cache = graph.cache
- setupModuleCache(graph)
- # In "nim serve" scenario, each command must reset the registered passes
- clearPasses(graph)
- conf.lastCmdTime = epochTime()
- conf.searchPaths.add(conf.libpath)
- proc customizeForBackend(backend: TBackend) =
- ## Sets backend specific options but don't compile to backend yet in
- ## case command doesn't require it. This must be called by all commands.
- if conf.backend == backendInvalid:
- # only set if wasn't already set, to allow override via `nim c -b:cpp`
- conf.backend = backend
- defineSymbol(graph.config.symbols, $conf.backend)
- case conf.backend
- of backendC:
- if conf.exc == excNone: conf.exc = excSetjmp
- of backendCpp:
- if conf.exc == excNone: conf.exc = excCpp
- of backendObjc: discard
- of backendJs:
- if conf.hcrOn:
- # XXX: At the moment, system.nim cannot be compiled in JS mode
- # with "-d:useNimRtl". The HCR option has been processed earlier
- # and it has added this define implictly, so we must undo that here.
- # A better solution might be to fix system.nim
- undefSymbol(conf.symbols, "useNimRtl")
- of backendInvalid: doAssert false
- if conf.selectedGC in {gcArc, gcOrc} and conf.backend != backendCpp:
- conf.exc = excGoto
- var commandAlreadyProcessed = false
- proc compileToBackend(backend: TBackend, cmd = cmdCompileToBackend) =
- commandAlreadyProcessed = true
- conf.cmd = cmd
- customizeForBackend(backend)
- case conf.backend
- of backendC: commandCompileToC(graph)
- of backendCpp: commandCompileToC(graph)
- of backendObjc: commandCompileToC(graph)
- of backendJs: commandCompileToJS(graph)
- of backendInvalid: doAssert false
- template docLikeCmd(body) =
- when defined(leanCompiler):
- quit "compiler wasn't built with documentation generator"
- else:
- wantMainModule(conf)
- conf.cmd = cmdDoc
- loadConfigs(DocConfig, cache, conf, graph.idgen)
- defineSymbol(conf.symbols, "nimdoc")
- body
- block: ## command prepass
- var docLikeCmd2 = false # includes what calls `docLikeCmd` + some more
- case conf.command.normalize
- of "r": conf.globalOptions.incl {optRun, optUseNimcache}
- of "doc0", "doc2", "doc", "rst2html", "rst2tex", "jsondoc0", "jsondoc2",
- "jsondoc", "ctags", "buildindex": docLikeCmd2 = true
- else: discard
- if conf.outDir.isEmpty:
- # doc like commands can generate a lot of files (especially with --project)
- # so by default should not end up in $PWD nor in $projectPath.
- conf.outDir = block:
- var ret = if optUseNimcache in conf.globalOptions: getNimcacheDir(conf)
- else: conf.projectPath
- doAssert ret.string.isAbsolute # `AbsoluteDir` is not a real guarantee
- if docLikeCmd2: ret = ret / htmldocsDir
- ret
- ## process all backend commands
- case conf.command.normalize
- of "c", "cc", "compile", "compiletoc": compileToBackend(backendC) # compile means compileToC currently
- of "cpp", "compiletocpp": compileToBackend(backendCpp)
- of "objc", "compiletooc": compileToBackend(backendObjc)
- of "js", "compiletojs": compileToBackend(backendJs)
- of "r": compileToBackend(backendC) # different from `"run"`!
- of "run":
- when hasTinyCBackend:
- extccomp.setCC(conf, "tcc", unknownLineInfo)
- if conf.backend notin {backendC, backendInvalid}:
- rawMessage(conf, errGenerated, "'run' requires c backend, got: '$1'" % $conf.backend)
- compileToBackend(backendC, cmd = cmdRun)
- else:
- rawMessage(conf, errGenerated, "'run' command not available; rebuild with -d:tinyc")
- else: customizeForBackend(backendC) # fallback for other commands
- ## process all other commands
- case conf.command.normalize # synchronize with `cmdUsingHtmlDocs`
- of "doc0": docLikeCmd commandDoc(cache, conf)
- of "doc2", "doc":
- docLikeCmd():
- conf.setNoteDefaults(warnLockLevel, false) # issue #13218
- conf.setNoteDefaults(warnRedefinitionOfLabel, false) # issue #13218
- # because currently generates lots of false positives due to conflation
- # of labels links in doc comments, e.g. for random.rand:
- # ## * `rand proc<#rand,Rand,Natural>`_ that returns an integer
- # ## * `rand proc<#rand,Rand,range[]>`_ that returns a float
- commandDoc2(graph, false)
- if optGenIndex in conf.globalOptions and optWholeProject in conf.globalOptions:
- commandBuildIndex(conf, $conf.outDir)
- of "rst2html":
- conf.setNoteDefaults(warnRedefinitionOfLabel, false) # similar to issue #13218
- when defined(leanCompiler):
- quit "compiler wasn't built with documentation generator"
- else:
- conf.cmd = cmdRst2html
- loadConfigs(DocConfig, cache, conf, graph.idgen)
- commandRst2Html(cache, conf)
- of "rst2tex":
- when defined(leanCompiler):
- quit "compiler wasn't built with documentation generator"
- else:
- conf.cmd = cmdRst2tex
- loadConfigs(DocTexConfig, cache, conf, graph.idgen)
- commandRst2TeX(cache, conf)
- of "jsondoc0": docLikeCmd commandJson(cache, conf)
- of "jsondoc2", "jsondoc": docLikeCmd commandDoc2(graph, true)
- of "ctags": docLikeCmd commandTags(cache, conf)
- of "buildindex": docLikeCmd commandBuildIndex(conf, $conf.projectFull, conf.outFile)
- of "gendepend":
- conf.cmd = cmdGenDepend
- commandGenDepend(graph)
- of "dump":
- conf.cmd = cmdDump
- if getConfigVar(conf, "dump.format") == "json":
- wantMainModule(conf)
- var definedSymbols = newJArray()
- for s in definedSymbolNames(conf.symbols): definedSymbols.elems.add(%s)
- var libpaths = newJArray()
- var lazyPaths = newJArray()
- for dir in conf.searchPaths: libpaths.elems.add(%dir.string)
- for dir in conf.lazyPaths: lazyPaths.elems.add(%dir.string)
- var hints = newJObject() # consider factoring with `listHints`
- for a in hintMin..hintMax:
- hints[$a] = %(a in conf.notes)
- var warnings = newJObject()
- for a in warnMin..warnMax:
- warnings[$a] = %(a in conf.notes)
- var dumpdata = %[
- (key: "version", val: %VersionAsString),
- (key: "nimExe", val: %(getAppFilename())),
- (key: "prefixdir", val: %conf.getPrefixDir().string),
- (key: "libpath", val: %conf.libpath.string),
- (key: "project_path", val: %conf.projectFull.string),
- (key: "defined_symbols", val: definedSymbols),
- (key: "lib_paths", val: %libpaths),
- (key: "lazyPaths", val: %lazyPaths),
- (key: "outdir", val: %conf.outDir.string),
- (key: "out", val: %conf.outFile.string),
- (key: "nimcache", val: %getNimcacheDir(conf).string),
- (key: "hints", val: hints),
- (key: "warnings", val: warnings),
- ]
- msgWriteln(conf, $dumpdata, {msgStdout, msgSkipHook})
- else:
- msgWriteln(conf, "-- list of currently defined symbols --",
- {msgStdout, msgSkipHook})
- for s in definedSymbolNames(conf.symbols): msgWriteln(conf, s, {msgStdout, msgSkipHook})
- msgWriteln(conf, "-- end of list --", {msgStdout, msgSkipHook})
- for it in conf.searchPaths: msgWriteln(conf, it.string)
- of "check":
- conf.cmd = cmdCheck
- commandCheck(graph)
- of "parse":
- conf.cmd = cmdParse
- wantMainModule(conf)
- discard parseFile(conf.projectMainIdx, cache, conf)
- of "scan":
- conf.cmd = cmdScan
- wantMainModule(conf)
- commandScan(cache, conf)
- msgWriteln(conf, "Beware: Indentation tokens depend on the parser's state!")
- of "secret":
- conf.cmd = cmdInteractive
- commandInteractive(graph)
- of "e":
- if conf.projectIsCmd or conf.projectIsStdin: discard
- elif not fileExists(conf.projectFull):
- rawMessage(conf, errGenerated, "NimScript file does not exist: " & conf.projectFull.string)
- elif not conf.projectFull.string.endsWith(".nims"):
- rawMessage(conf, errGenerated, "not a NimScript file: " & conf.projectFull.string)
- # main NimScript logic handled in `loadConfigs`.
- of "nop", "help":
- # prevent the "success" message:
- conf.cmd = cmdDump
- of "jsonscript":
- conf.cmd = cmdJsonScript
- setOutFile(graph.config)
- commandJsonScript(graph)
- elif commandAlreadyProcessed: discard # already handled
- else:
- rawMessage(conf, errGenerated, "invalid command: " & conf.command)
- if conf.errorCounter == 0 and
- conf.cmd notin {cmdInterpret, cmdRun, cmdDump}:
- let mem =
- when declared(system.getMaxMem): formatSize(getMaxMem()) & " peakmem"
- else: formatSize(getTotalMem()) & " totmem"
- let loc = $conf.linesCompiled
- let build = if isDefined(conf, "danger"): "Dangerous Release"
- elif isDefined(conf, "release"): "Release"
- else: "Debug"
- let sec = formatFloat(epochTime() - conf.lastCmdTime, ffDecimal, 3)
- let project = if optListFullPaths in conf.globalOptions: $conf.projectFull else: $conf.projectName
- var output: string
- if optCompileOnly in conf.globalOptions and conf.cmd != cmdJsonScript:
- output = $conf.jsonBuildFile
- elif conf.outFile.isEmpty and conf.cmd notin {cmdJsonScript, cmdCompileToBackend, cmdDoc}:
- # for some cmd we expect a valid absOutFile
- output = "unknownOutput"
- else:
- output = $conf.absOutFile
- if optListFullPaths notin conf.globalOptions: output = output.AbsoluteFile.extractFilename
- if optProfileVM in conf.globalOptions:
- echo conf.dump(conf.vmProfileData)
- rawMessage(conf, hintSuccessX, [
- "loc", loc,
- "sec", sec,
- "mem", mem,
- "build", build,
- "project", project,
- "output", output,
- ])
- when PrintRopeCacheStats:
- echo "rope cache stats: "
- echo " tries : ", gCacheTries
- echo " misses: ", gCacheMisses
- echo " int tries: ", gCacheIntTries
- echo " efficiency: ", formatFloat(1-(gCacheMisses.float/gCacheTries.float),
- ffDecimal, 3)
|