modulegraphs.nim 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. #
  2. #
  3. # The Nim Compiler
  4. # (c) Copyright 2017 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. ## This module implements the module graph data structure. The module graph
  10. ## represents a complete Nim project. Single modules can either be kept in RAM
  11. ## or stored in a rod-file.
  12. import std/[intsets, tables, hashes, strtabs]
  13. import ../dist/checksums/src/checksums/md5
  14. import ast, astalgo, options, lineinfos,idents, btrees, ropes, msgs, pathutils, packages
  15. import ic / [packed_ast, ic]
  16. when defined(nimPreviewSlimSystem):
  17. import std/assertions
  18. type
  19. SigHash* = distinct MD5Digest
  20. LazySym* = object
  21. id*: FullId
  22. sym*: PSym
  23. Iface* = object ## data we don't want to store directly in the
  24. ## ast.PSym type for s.kind == skModule
  25. module*: PSym ## module this "Iface" belongs to
  26. converters*: seq[LazySym]
  27. patterns*: seq[LazySym]
  28. pureEnums*: seq[LazySym]
  29. interf: TStrTable
  30. interfHidden: TStrTable
  31. uniqueName*: Rope
  32. Operators* = object
  33. opNot*, opContains*, opLe*, opLt*, opAnd*, opOr*, opIsNil*, opEq*: PSym
  34. opAdd*, opSub*, opMul*, opDiv*, opLen*: PSym
  35. FullId* = object
  36. module*: int
  37. packed*: PackedItemId
  38. LazyType* = object
  39. id*: FullId
  40. typ*: PType
  41. LazyInstantiation* = object
  42. module*: int
  43. sym*: FullId
  44. concreteTypes*: seq[FullId]
  45. inst*: PInstantiation
  46. SymInfoPair* = object
  47. sym*: PSym
  48. info*: TLineInfo
  49. isDecl*: bool
  50. PipelinePass* = enum
  51. NonePass
  52. SemPass
  53. JSgenPass
  54. CgenPass
  55. EvalPass
  56. InterpreterPass
  57. GenDependPass
  58. Docgen2TexPass
  59. Docgen2JsonPass
  60. Docgen2Pass
  61. ModuleGraph* {.acyclic.} = ref object
  62. ifaces*: seq[Iface] ## indexed by int32 fileIdx
  63. packed*: PackedModuleGraph
  64. encoders*: seq[PackedEncoder]
  65. typeInstCache*: Table[ItemId, seq[LazyType]] # A symbol's ItemId.
  66. procInstCache*: Table[ItemId, seq[LazyInstantiation]] # A symbol's ItemId.
  67. attachedOps*: array[TTypeAttachedOp, Table[ItemId, LazySym]] # Type ID, destructors, etc.
  68. methodsPerType*: Table[ItemId, seq[(int, LazySym)]] # Type ID, attached methods
  69. memberProcsPerType*: Table[ItemId, seq[PSym]] # Type ID, attached member procs (only c++, virtual and ctor so far)
  70. enumToStringProcs*: Table[ItemId, LazySym]
  71. emittedTypeInfo*: Table[string, FileIndex]
  72. startupPackedConfig*: PackedConfig
  73. packageSyms*: TStrTable
  74. deps*: IntSet # the dependency graph or potentially its transitive closure.
  75. importDeps*: Table[FileIndex, seq[FileIndex]] # explicit import module dependencies
  76. suggestMode*: bool # whether we are in nimsuggest mode or not.
  77. invalidTransitiveClosure: bool
  78. inclToMod*: Table[FileIndex, FileIndex] # mapping of include file to the
  79. # first module that included it
  80. importStack*: seq[FileIndex] # The current import stack. Used for detecting recursive
  81. # module dependencies.
  82. backend*: RootRef # minor hack so that a backend can extend this easily
  83. config*: ConfigRef
  84. cache*: IdentCache
  85. vm*: RootRef # unfortunately the 'vm' state is shared project-wise, this will
  86. # be clarified in later compiler implementations.
  87. doStopCompile*: proc(): bool {.closure.}
  88. usageSym*: PSym # for nimsuggest
  89. owners*: seq[PSym]
  90. suggestSymbols*: Table[FileIndex, seq[SymInfoPair]]
  91. suggestErrors*: Table[FileIndex, seq[Suggest]]
  92. methods*: seq[tuple[methods: seq[PSym], dispatcher: PSym]] # needs serialization!
  93. systemModule*: PSym
  94. sysTypes*: array[TTypeKind, PType]
  95. compilerprocs*: TStrTable
  96. exposed*: TStrTable
  97. packageTypes*: TStrTable
  98. emptyNode*: PNode
  99. canonTypes*: Table[SigHash, PType]
  100. symBodyHashes*: Table[int, SigHash] # symId to digest mapping
  101. importModuleCallback*: proc (graph: ModuleGraph; m: PSym, fileIdx: FileIndex): PSym {.nimcall.}
  102. includeFileCallback*: proc (graph: ModuleGraph; m: PSym, fileIdx: FileIndex): PNode {.nimcall.}
  103. cacheSeqs*: Table[string, PNode] # state that is shared to support the 'macrocache' API; IC: implemented
  104. cacheCounters*: Table[string, BiggestInt] # IC: implemented
  105. cacheTables*: Table[string, BTree[string, PNode]] # IC: implemented
  106. passes*: seq[TPass]
  107. pipelinePass*: PipelinePass
  108. onDefinition*: proc (graph: ModuleGraph; s: PSym; info: TLineInfo) {.nimcall.}
  109. onDefinitionResolveForward*: proc (graph: ModuleGraph; s: PSym; info: TLineInfo) {.nimcall.}
  110. onUsage*: proc (graph: ModuleGraph; s: PSym; info: TLineInfo) {.nimcall.}
  111. globalDestructors*: seq[PNode]
  112. strongSemCheck*: proc (graph: ModuleGraph; owner: PSym; body: PNode) {.nimcall.}
  113. compatibleProps*: proc (graph: ModuleGraph; formal, actual: PType): bool {.nimcall.}
  114. idgen*: IdGenerator
  115. operators*: Operators
  116. cachedFiles*: StringTableRef
  117. TPassContext* = object of RootObj # the pass's context
  118. idgen*: IdGenerator
  119. PPassContext* = ref TPassContext
  120. TPassOpen* = proc (graph: ModuleGraph; module: PSym; idgen: IdGenerator): PPassContext {.nimcall.}
  121. TPassClose* = proc (graph: ModuleGraph; p: PPassContext, n: PNode): PNode {.nimcall.}
  122. TPassProcess* = proc (p: PPassContext, topLevelStmt: PNode): PNode {.nimcall.}
  123. TPass* = tuple[open: TPassOpen,
  124. process: TPassProcess,
  125. close: TPassClose,
  126. isFrontend: bool]
  127. proc resetForBackend*(g: ModuleGraph) =
  128. initStrTable(g.compilerprocs)
  129. g.typeInstCache.clear()
  130. g.procInstCache.clear()
  131. for a in mitems(g.attachedOps):
  132. a.clear()
  133. g.methodsPerType.clear()
  134. g.enumToStringProcs.clear()
  135. const
  136. cb64 = [
  137. "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N",
  138. "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z",
  139. "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n",
  140. "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z",
  141. "0", "1", "2", "3", "4", "5", "6", "7", "8", "9a",
  142. "9b", "9c"]
  143. proc toBase64a(s: cstring, len: int): string =
  144. ## encodes `s` into base64 representation.
  145. result = newStringOfCap(((len + 2) div 3) * 4)
  146. result.add "__"
  147. var i = 0
  148. while i < len - 2:
  149. let a = ord(s[i])
  150. let b = ord(s[i+1])
  151. let c = ord(s[i+2])
  152. result.add cb64[a shr 2]
  153. result.add cb64[((a and 3) shl 4) or ((b and 0xF0) shr 4)]
  154. result.add cb64[((b and 0x0F) shl 2) or ((c and 0xC0) shr 6)]
  155. result.add cb64[c and 0x3F]
  156. inc(i, 3)
  157. if i < len-1:
  158. let a = ord(s[i])
  159. let b = ord(s[i+1])
  160. result.add cb64[a shr 2]
  161. result.add cb64[((a and 3) shl 4) or ((b and 0xF0) shr 4)]
  162. result.add cb64[((b and 0x0F) shl 2)]
  163. elif i < len:
  164. let a = ord(s[i])
  165. result.add cb64[a shr 2]
  166. result.add cb64[(a and 3) shl 4]
  167. template interfSelect(iface: Iface, importHidden: bool): TStrTable =
  168. var ret = iface.interf.addr # without intermediate ptr, it creates a copy and compiler becomes 15x slower!
  169. if importHidden: ret = iface.interfHidden.addr
  170. ret[]
  171. template semtab(g: ModuleGraph, m: PSym): TStrTable =
  172. g.ifaces[m.position].interf
  173. template semtabAll*(g: ModuleGraph, m: PSym): TStrTable =
  174. g.ifaces[m.position].interfHidden
  175. proc initStrTables*(g: ModuleGraph, m: PSym) =
  176. initStrTable(semtab(g, m))
  177. initStrTable(semtabAll(g, m))
  178. proc strTableAdds*(g: ModuleGraph, m: PSym, s: PSym) =
  179. strTableAdd(semtab(g, m), s)
  180. strTableAdd(semtabAll(g, m), s)
  181. proc isCachedModule(g: ModuleGraph; module: int): bool {.inline.} =
  182. result = module < g.packed.len and g.packed[module].status == loaded
  183. proc isCachedModule(g: ModuleGraph; m: PSym): bool {.inline.} =
  184. isCachedModule(g, m.position)
  185. proc simulateCachedModule*(g: ModuleGraph; moduleSym: PSym; m: PackedModule) =
  186. when false:
  187. echo "simulating ", moduleSym.name.s, " ", moduleSym.position
  188. simulateLoadedModule(g.packed, g.config, g.cache, moduleSym, m)
  189. proc initEncoder*(g: ModuleGraph; module: PSym) =
  190. let id = module.position
  191. if id >= g.encoders.len:
  192. setLen g.encoders, id+1
  193. ic.initEncoder(g.encoders[id],
  194. g.packed[id].fromDisk, module, g.config, g.startupPackedConfig)
  195. type
  196. ModuleIter* = object
  197. fromRod: bool
  198. modIndex: int
  199. ti: TIdentIter
  200. rodIt: RodIter
  201. importHidden: bool
  202. proc initModuleIter*(mi: var ModuleIter; g: ModuleGraph; m: PSym; name: PIdent): PSym =
  203. assert m.kind == skModule
  204. mi.modIndex = m.position
  205. mi.fromRod = isCachedModule(g, mi.modIndex)
  206. mi.importHidden = optImportHidden in m.options
  207. if mi.fromRod:
  208. result = initRodIter(mi.rodIt, g.config, g.cache, g.packed, FileIndex mi.modIndex, name, mi.importHidden)
  209. else:
  210. result = initIdentIter(mi.ti, g.ifaces[mi.modIndex].interfSelect(mi.importHidden), name)
  211. proc nextModuleIter*(mi: var ModuleIter; g: ModuleGraph): PSym =
  212. if mi.fromRod:
  213. result = nextRodIter(mi.rodIt, g.packed)
  214. else:
  215. result = nextIdentIter(mi.ti, g.ifaces[mi.modIndex].interfSelect(mi.importHidden))
  216. iterator allSyms*(g: ModuleGraph; m: PSym): PSym =
  217. let importHidden = optImportHidden in m.options
  218. if isCachedModule(g, m):
  219. var rodIt: RodIter = default(RodIter)
  220. var r = initRodIterAllSyms(rodIt, g.config, g.cache, g.packed, FileIndex m.position, importHidden)
  221. while r != nil:
  222. yield r
  223. r = nextRodIter(rodIt, g.packed)
  224. else:
  225. for s in g.ifaces[m.position].interfSelect(importHidden).data:
  226. if s != nil:
  227. yield s
  228. proc someSym*(g: ModuleGraph; m: PSym; name: PIdent): PSym =
  229. let importHidden = optImportHidden in m.options
  230. if isCachedModule(g, m):
  231. result = interfaceSymbol(g.config, g.cache, g.packed, FileIndex(m.position), name, importHidden)
  232. else:
  233. result = strTableGet(g.ifaces[m.position].interfSelect(importHidden), name)
  234. proc systemModuleSym*(g: ModuleGraph; name: PIdent): PSym =
  235. result = someSym(g, g.systemModule, name)
  236. iterator systemModuleSyms*(g: ModuleGraph; name: PIdent): PSym =
  237. var mi: ModuleIter = default(ModuleIter)
  238. var r = initModuleIter(mi, g, g.systemModule, name)
  239. while r != nil:
  240. yield r
  241. r = nextModuleIter(mi, g)
  242. proc resolveType(g: ModuleGraph; t: var LazyType): PType =
  243. result = t.typ
  244. if result == nil and isCachedModule(g, t.id.module):
  245. result = loadTypeFromId(g.config, g.cache, g.packed, t.id.module, t.id.packed)
  246. t.typ = result
  247. assert result != nil
  248. proc resolveSym(g: ModuleGraph; t: var LazySym): PSym =
  249. result = t.sym
  250. if result == nil and isCachedModule(g, t.id.module):
  251. result = loadSymFromId(g.config, g.cache, g.packed, t.id.module, t.id.packed)
  252. t.sym = result
  253. assert result != nil
  254. proc resolveInst(g: ModuleGraph; t: var LazyInstantiation): PInstantiation =
  255. result = t.inst
  256. if result == nil and isCachedModule(g, t.module):
  257. result = PInstantiation(sym: loadSymFromId(g.config, g.cache, g.packed, t.sym.module, t.sym.packed))
  258. result.concreteTypes = newSeq[PType](t.concreteTypes.len)
  259. for i in 0..high(result.concreteTypes):
  260. result.concreteTypes[i] = loadTypeFromId(g.config, g.cache, g.packed,
  261. t.concreteTypes[i].module, t.concreteTypes[i].packed)
  262. t.inst = result
  263. assert result != nil
  264. proc resolveAttachedOp(g: ModuleGraph; t: var LazySym): PSym =
  265. result = t.sym
  266. if result == nil:
  267. result = loadSymFromId(g.config, g.cache, g.packed, t.id.module, t.id.packed)
  268. t.sym = result
  269. assert result != nil
  270. iterator typeInstCacheItems*(g: ModuleGraph; s: PSym): PType =
  271. if g.typeInstCache.contains(s.itemId):
  272. let x = addr(g.typeInstCache[s.itemId])
  273. for t in mitems(x[]):
  274. yield resolveType(g, t)
  275. iterator procInstCacheItems*(g: ModuleGraph; s: PSym): PInstantiation =
  276. if g.procInstCache.contains(s.itemId):
  277. let x = addr(g.procInstCache[s.itemId])
  278. for t in mitems(x[]):
  279. yield resolveInst(g, t)
  280. proc getAttachedOp*(g: ModuleGraph; t: PType; op: TTypeAttachedOp): PSym =
  281. ## returns the requested attached operation for type `t`. Can return nil
  282. ## if no such operation exists.
  283. if g.attachedOps[op].contains(t.itemId):
  284. result = resolveAttachedOp(g, g.attachedOps[op][t.itemId])
  285. else:
  286. result = nil
  287. proc setAttachedOp*(g: ModuleGraph; module: int; t: PType; op: TTypeAttachedOp; value: PSym) =
  288. ## we also need to record this to the packed module.
  289. g.attachedOps[op][t.itemId] = LazySym(sym: value)
  290. proc setAttachedOpPartial*(g: ModuleGraph; module: int; t: PType; op: TTypeAttachedOp; value: PSym) =
  291. ## we also need to record this to the packed module.
  292. g.attachedOps[op][t.itemId] = LazySym(sym: value)
  293. proc completePartialOp*(g: ModuleGraph; module: int; t: PType; op: TTypeAttachedOp; value: PSym) =
  294. if g.config.symbolFiles != disabledSf:
  295. assert module < g.encoders.len
  296. assert isActive(g.encoders[module])
  297. toPackedGeneratedProcDef(value, g.encoders[module], g.packed[module].fromDisk)
  298. #storeAttachedProcDef(t, op, value, g.encoders[module], g.packed[module].fromDisk)
  299. proc getToStringProc*(g: ModuleGraph; t: PType): PSym =
  300. result = resolveSym(g, g.enumToStringProcs[t.itemId])
  301. assert result != nil
  302. proc setToStringProc*(g: ModuleGraph; t: PType; value: PSym) =
  303. g.enumToStringProcs[t.itemId] = LazySym(sym: value)
  304. iterator methodsForGeneric*(g: ModuleGraph; t: PType): (int, PSym) =
  305. if g.methodsPerType.contains(t.itemId):
  306. for it in mitems g.methodsPerType[t.itemId]:
  307. yield (it[0], resolveSym(g, it[1]))
  308. proc addMethodToGeneric*(g: ModuleGraph; module: int; t: PType; col: int; m: PSym) =
  309. g.methodsPerType.mgetOrPut(t.itemId, @[]).add (col, LazySym(sym: m))
  310. proc hasDisabledAsgn*(g: ModuleGraph; t: PType): bool =
  311. let op = getAttachedOp(g, t, attachedAsgn)
  312. result = op != nil and sfError in op.flags
  313. proc copyTypeProps*(g: ModuleGraph; module: int; dest, src: PType) =
  314. for k in low(TTypeAttachedOp)..high(TTypeAttachedOp):
  315. let op = getAttachedOp(g, src, k)
  316. if op != nil:
  317. setAttachedOp(g, module, dest, k, op)
  318. proc loadCompilerProc*(g: ModuleGraph; name: string): PSym =
  319. if g.config.symbolFiles == disabledSf: return nil
  320. # slow, linear search, but the results are cached:
  321. for module in 0..high(g.packed):
  322. #if isCachedModule(g, module):
  323. let x = searchForCompilerproc(g.packed[module], name)
  324. if x >= 0:
  325. result = loadSymFromId(g.config, g.cache, g.packed, module, toPackedItemId(x))
  326. if result != nil:
  327. strTableAdd(g.compilerprocs, result)
  328. return result
  329. proc loadPackedSym*(g: ModuleGraph; s: var LazySym) =
  330. if s.sym == nil:
  331. s.sym = loadSymFromId(g.config, g.cache, g.packed, s.id.module, s.id.packed)
  332. proc `$`*(u: SigHash): string =
  333. toBase64a(cast[cstring](unsafeAddr u), sizeof(u))
  334. proc `==`*(a, b: SigHash): bool =
  335. result = equalMem(unsafeAddr a, unsafeAddr b, sizeof(a))
  336. proc hash*(u: SigHash): Hash =
  337. result = 0
  338. for x in 0..3:
  339. result = (result shl 8) or u.MD5Digest[x].int
  340. proc hash*(x: FileIndex): Hash {.borrow.}
  341. template getPContext(): untyped =
  342. when c is PContext: c
  343. else: c.c
  344. when defined(nimsuggest):
  345. template onUse*(info: TLineInfo; s: PSym) = discard
  346. template onDefResolveForward*(info: TLineInfo; s: PSym) = discard
  347. else:
  348. template onUse*(info: TLineInfo; s: PSym) = discard
  349. template onDef*(info: TLineInfo; s: PSym) = discard
  350. template onDefResolveForward*(info: TLineInfo; s: PSym) = discard
  351. proc stopCompile*(g: ModuleGraph): bool {.inline.} =
  352. result = g.doStopCompile != nil and g.doStopCompile()
  353. proc createMagic*(g: ModuleGraph; idgen: IdGenerator; name: string, m: TMagic): PSym =
  354. result = newSym(skProc, getIdent(g.cache, name), idgen, nil, unknownLineInfo, {})
  355. result.magic = m
  356. result.flags = {sfNeverRaises}
  357. proc createMagic(g: ModuleGraph; name: string, m: TMagic): PSym =
  358. result = createMagic(g, g.idgen, name, m)
  359. proc registerModule*(g: ModuleGraph; m: PSym) =
  360. assert m != nil
  361. assert m.kind == skModule
  362. if m.position >= g.ifaces.len:
  363. setLen(g.ifaces, m.position + 1)
  364. if m.position >= g.packed.len:
  365. setLen(g.packed, m.position + 1)
  366. g.ifaces[m.position] = Iface(module: m, converters: @[], patterns: @[],
  367. uniqueName: rope(uniqueModuleName(g.config, FileIndex(m.position))))
  368. initStrTables(g, m)
  369. proc registerModuleById*(g: ModuleGraph; m: FileIndex) =
  370. registerModule(g, g.packed[int m].module)
  371. proc initOperators*(g: ModuleGraph): Operators =
  372. # These are safe for IC.
  373. # Public because it's used by DrNim.
  374. result.opLe = createMagic(g, "<=", mLeI)
  375. result.opLt = createMagic(g, "<", mLtI)
  376. result.opAnd = createMagic(g, "and", mAnd)
  377. result.opOr = createMagic(g, "or", mOr)
  378. result.opIsNil = createMagic(g, "isnil", mIsNil)
  379. result.opEq = createMagic(g, "==", mEqI)
  380. result.opAdd = createMagic(g, "+", mAddI)
  381. result.opSub = createMagic(g, "-", mSubI)
  382. result.opMul = createMagic(g, "*", mMulI)
  383. result.opDiv = createMagic(g, "div", mDivI)
  384. result.opLen = createMagic(g, "len", mLengthSeq)
  385. result.opNot = createMagic(g, "not", mNot)
  386. result.opContains = createMagic(g, "contains", mInSet)
  387. proc initModuleGraphFields(result: ModuleGraph) =
  388. # A module ID of -1 means that the symbol is not attached to a module at all,
  389. # but to the module graph:
  390. result.idgen = IdGenerator(module: -1'i32, symId: 0'i32, typeId: 0'i32)
  391. initStrTable(result.packageSyms)
  392. result.deps = initIntSet()
  393. result.importDeps = initTable[FileIndex, seq[FileIndex]]()
  394. result.ifaces = @[]
  395. result.importStack = @[]
  396. result.inclToMod = initTable[FileIndex, FileIndex]()
  397. result.owners = @[]
  398. result.suggestSymbols = initTable[FileIndex, seq[SymInfoPair]]()
  399. result.suggestErrors = initTable[FileIndex, seq[Suggest]]()
  400. result.methods = @[]
  401. initStrTable(result.compilerprocs)
  402. initStrTable(result.exposed)
  403. initStrTable(result.packageTypes)
  404. result.emptyNode = newNode(nkEmpty)
  405. result.cacheSeqs = initTable[string, PNode]()
  406. result.cacheCounters = initTable[string, BiggestInt]()
  407. result.cacheTables = initTable[string, BTree[string, PNode]]()
  408. result.canonTypes = initTable[SigHash, PType]()
  409. result.symBodyHashes = initTable[int, SigHash]()
  410. result.operators = initOperators(result)
  411. result.emittedTypeInfo = initTable[string, FileIndex]()
  412. result.cachedFiles = newStringTable()
  413. proc newModuleGraph*(cache: IdentCache; config: ConfigRef): ModuleGraph =
  414. result = ModuleGraph()
  415. result.config = config
  416. result.cache = cache
  417. initModuleGraphFields(result)
  418. proc resetAllModules*(g: ModuleGraph) =
  419. initStrTable(g.packageSyms)
  420. g.deps = initIntSet()
  421. g.ifaces = @[]
  422. g.importStack = @[]
  423. g.inclToMod = initTable[FileIndex, FileIndex]()
  424. g.usageSym = nil
  425. g.owners = @[]
  426. g.methods = @[]
  427. initStrTable(g.compilerprocs)
  428. initStrTable(g.exposed)
  429. initModuleGraphFields(g)
  430. proc getModule*(g: ModuleGraph; fileIdx: FileIndex): PSym =
  431. if fileIdx.int32 >= 0:
  432. if isCachedModule(g, fileIdx.int32):
  433. result = g.packed[fileIdx.int32].module
  434. elif fileIdx.int32 < g.ifaces.len:
  435. result = g.ifaces[fileIdx.int32].module
  436. proc moduleOpenForCodegen*(g: ModuleGraph; m: FileIndex): bool {.inline.} =
  437. if g.config.symbolFiles == disabledSf:
  438. result = true
  439. else:
  440. result = g.packed[m.int32].status notin {undefined, stored, loaded}
  441. proc rememberEmittedTypeInfo*(g: ModuleGraph; m: FileIndex; ti: string) =
  442. #assert(not isCachedModule(g, m.int32))
  443. if g.config.symbolFiles != disabledSf:
  444. #assert g.encoders[m.int32].isActive
  445. assert g.packed[m.int32].status != stored
  446. g.packed[m.int32].fromDisk.emittedTypeInfo.add ti
  447. #echo "added typeinfo ", m.int32, " ", ti, " suspicious ", not g.encoders[m.int32].isActive
  448. proc rememberFlag*(g: ModuleGraph; m: PSym; flag: ModuleBackendFlag) =
  449. if g.config.symbolFiles != disabledSf:
  450. #assert g.encoders[m.int32].isActive
  451. assert g.packed[m.position].status != stored
  452. g.packed[m.position].fromDisk.backendFlags.incl flag
  453. proc closeRodFile*(g: ModuleGraph; m: PSym) =
  454. if g.config.symbolFiles in {readOnlySf, v2Sf}:
  455. # For stress testing we seek to reload the symbols from memory. This
  456. # way much of the logic is tested but the test is reproducible as it does
  457. # not depend on the hard disk contents!
  458. let mint = m.position
  459. saveRodFile(toRodFile(g.config, AbsoluteFile toFullPath(g.config, FileIndex(mint))),
  460. g.encoders[mint], g.packed[mint].fromDisk)
  461. g.packed[mint].status = stored
  462. elif g.config.symbolFiles == stressTest:
  463. # debug code, but maybe a good idea for production? Could reduce the compiler's
  464. # memory consumption considerably at the cost of more loads from disk.
  465. let mint = m.position
  466. simulateCachedModule(g, m, g.packed[mint].fromDisk)
  467. g.packed[mint].status = loaded
  468. proc dependsOn(a, b: int): int {.inline.} = (a shl 15) + b
  469. proc addDep*(g: ModuleGraph; m: PSym, dep: FileIndex) =
  470. assert m.position == m.info.fileIndex.int32
  471. if g.suggestMode:
  472. g.deps.incl m.position.dependsOn(dep.int)
  473. # we compute the transitive closure later when querying the graph lazily.
  474. # this improves efficiency quite a lot:
  475. #invalidTransitiveClosure = true
  476. proc addIncludeDep*(g: ModuleGraph; module, includeFile: FileIndex) =
  477. discard hasKeyOrPut(g.inclToMod, includeFile, module)
  478. proc parentModule*(g: ModuleGraph; fileIdx: FileIndex): FileIndex =
  479. ## returns 'fileIdx' if the file belonging to this index is
  480. ## directly used as a module or else the module that first
  481. ## references this include file.
  482. if fileIdx.int32 >= 0 and fileIdx.int32 < g.ifaces.len and g.ifaces[fileIdx.int32].module != nil:
  483. result = fileIdx
  484. else:
  485. result = g.inclToMod.getOrDefault(fileIdx)
  486. proc transitiveClosure(g: var IntSet; n: int) =
  487. # warshall's algorithm
  488. for k in 0..<n:
  489. for i in 0..<n:
  490. for j in 0..<n:
  491. if i != j and not g.contains(i.dependsOn(j)):
  492. if g.contains(i.dependsOn(k)) and g.contains(k.dependsOn(j)):
  493. g.incl i.dependsOn(j)
  494. proc markDirty*(g: ModuleGraph; fileIdx: FileIndex) =
  495. let m = g.getModule fileIdx
  496. if m != nil:
  497. g.suggestSymbols.del(fileIdx)
  498. g.suggestErrors.del(fileIdx)
  499. incl m.flags, sfDirty
  500. proc unmarkAllDirty*(g: ModuleGraph) =
  501. for i in 0i32..<g.ifaces.len.int32:
  502. let m = g.ifaces[i].module
  503. if m != nil:
  504. m.flags.excl sfDirty
  505. proc isDirty*(g: ModuleGraph; m: PSym): bool =
  506. result = g.suggestMode and sfDirty in m.flags
  507. proc markClientsDirty*(g: ModuleGraph; fileIdx: FileIndex) =
  508. # we need to mark its dependent modules D as dirty right away because after
  509. # nimsuggest is done with this module, the module's dirty flag will be
  510. # cleared but D still needs to be remembered as 'dirty'.
  511. if g.invalidTransitiveClosure:
  512. g.invalidTransitiveClosure = false
  513. transitiveClosure(g.deps, g.ifaces.len)
  514. # every module that *depends* on this file is also dirty:
  515. for i in 0i32..<g.ifaces.len.int32:
  516. if g.deps.contains(i.dependsOn(fileIdx.int)):
  517. g.markDirty(FileIndex(i))
  518. proc needsCompilation*(g: ModuleGraph): bool =
  519. # every module that *depends* on this file is also dirty:
  520. for i in 0i32..<g.ifaces.len.int32:
  521. let m = g.ifaces[i].module
  522. if m != nil:
  523. if sfDirty in m.flags:
  524. return true
  525. proc needsCompilation*(g: ModuleGraph, fileIdx: FileIndex): bool =
  526. let module = g.getModule(fileIdx)
  527. if module != nil and g.isDirty(module):
  528. return true
  529. for i in 0i32..<g.ifaces.len.int32:
  530. let m = g.ifaces[i].module
  531. if m != nil and g.isDirty(m) and g.deps.contains(fileIdx.int32.dependsOn(i)):
  532. return true
  533. proc getBody*(g: ModuleGraph; s: PSym): PNode {.inline.} =
  534. result = s.ast[bodyPos]
  535. if result == nil and g.config.symbolFiles in {readOnlySf, v2Sf, stressTest}:
  536. result = loadProcBody(g.config, g.cache, g.packed, s)
  537. s.ast[bodyPos] = result
  538. assert result != nil
  539. proc moduleFromRodFile*(g: ModuleGraph; fileIdx: FileIndex;
  540. cachedModules: var seq[FileIndex]): PSym =
  541. ## Returns 'nil' if the module needs to be recompiled.
  542. if g.config.symbolFiles in {readOnlySf, v2Sf, stressTest}:
  543. result = moduleFromRodFile(g.packed, g.config, g.cache, fileIdx, cachedModules)
  544. proc configComplete*(g: ModuleGraph) =
  545. rememberStartupConfig(g.startupPackedConfig, g.config)
  546. from std/strutils import repeat, `%`
  547. proc onProcessing*(graph: ModuleGraph, fileIdx: FileIndex, moduleStatus: string, fromModule: PSym, ) =
  548. let conf = graph.config
  549. let isNimscript = conf.isDefined("nimscript")
  550. if (not isNimscript) or hintProcessing in conf.cmdlineNotes:
  551. let path = toFilenameOption(conf, fileIdx, conf.filenameOption)
  552. let indent = ">".repeat(graph.importStack.len)
  553. let fromModule2 = if fromModule != nil: $fromModule.name.s else: "(toplevel)"
  554. let mode = if isNimscript: "(nims) " else: ""
  555. rawMessage(conf, hintProcessing, "$#$# $#: $#: $#" % [mode, indent, fromModule2, moduleStatus, path])
  556. proc getPackage*(graph: ModuleGraph; fileIdx: FileIndex): PSym =
  557. ## Returns a package symbol for yet to be defined module for fileIdx.
  558. ## The package symbol is added to the graph if it doesn't exist.
  559. let pkgSym = getPackage(graph.config, graph.cache, fileIdx)
  560. # check if the package is already in the graph
  561. result = graph.packageSyms.strTableGet(pkgSym.name)
  562. if result == nil:
  563. # the package isn't in the graph, so create and add it
  564. result = pkgSym
  565. graph.packageSyms.strTableAdd(pkgSym)
  566. func belongsToStdlib*(graph: ModuleGraph, sym: PSym): bool =
  567. ## Check if symbol belongs to the 'stdlib' package.
  568. sym.getPackageSymbol.getPackageId == graph.systemModule.getPackageId
  569. proc `==`*(a, b: SymInfoPair): bool =
  570. result = a.sym == b.sym and a.info.exactEquals(b.info)
  571. proc fileSymbols*(graph: ModuleGraph, fileIdx: FileIndex): seq[SymInfoPair] =
  572. result = graph.suggestSymbols.getOrDefault(fileIdx, @[])
  573. iterator suggestSymbolsIter*(g: ModuleGraph): SymInfoPair =
  574. for xs in g.suggestSymbols.values:
  575. for x in xs:
  576. yield x
  577. iterator suggestErrorsIter*(g: ModuleGraph): Suggest =
  578. for xs in g.suggestErrors.values:
  579. for x in xs:
  580. yield x