dfa.nim 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504
  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. ## Data flow analysis for Nim.
  10. ## We transform the AST into a linear list of instructions first to
  11. ## make this easier to handle: There are only 3 different branching
  12. ## instructions: 'goto X' is an unconditional goto, 'fork X'
  13. ## is a conditional goto (either the next instruction or 'X' can be
  14. ## taken), 'loop X' is the only jump that jumps back.
  15. ##
  16. ## Exhaustive case statements are translated
  17. ## so that the last branch is transformed into an 'else' branch.
  18. ## ``return`` and ``break`` are all covered by 'goto'.
  19. ##
  20. ## The data structures and algorithms used here are inspired by
  21. ## "A Graph–Free Approach to Data–Flow Analysis" by Markus Mohnen.
  22. ## https://link.springer.com/content/pdf/10.1007/3-540-45937-5_6.pdf
  23. import ast, intsets, lineinfos, renderer, aliasanalysis
  24. import std/private/asciitables
  25. when defined(nimPreviewSlimSystem):
  26. import std/assertions
  27. type
  28. InstrKind* = enum
  29. goto, loop, fork, def, use
  30. Instr* = object
  31. case kind*: InstrKind
  32. of goto, fork, loop: dest*: int
  33. of def, use:
  34. n*: PNode # contains the def/use location.
  35. ControlFlowGraph* = seq[Instr]
  36. TPosition = distinct int
  37. TBlock = object
  38. case isTryBlock: bool
  39. of false:
  40. label: PSym
  41. breakFixups: seq[(TPosition, seq[PNode])] #Contains the gotos for the breaks along with their pending finales
  42. of true:
  43. finale: PNode
  44. raiseFixups: seq[TPosition] #Contains the gotos for the raises
  45. Con = object
  46. code: ControlFlowGraph
  47. inTryStmt, interestingInstructions: int
  48. blocks: seq[TBlock]
  49. owner: PSym
  50. root: PSym
  51. proc codeListing(c: ControlFlowGraph, start = 0; last = -1): string =
  52. # for debugging purposes
  53. # first iteration: compute all necessary labels:
  54. var jumpTargets = initIntSet()
  55. let last = if last < 0: c.len-1 else: min(last, c.len-1)
  56. for i in start..last:
  57. if c[i].kind in {goto, fork, loop}:
  58. jumpTargets.incl(i+c[i].dest)
  59. var i = start
  60. while i <= last:
  61. if i in jumpTargets: result.add("L" & $i & ":\n")
  62. result.add "\t"
  63. result.add ($i & " " & $c[i].kind)
  64. result.add "\t"
  65. case c[i].kind
  66. of def, use:
  67. result.add renderTree(c[i].n)
  68. result.add("\t#")
  69. result.add($c[i].n.info.line)
  70. result.add("\n")
  71. of goto, fork, loop:
  72. result.add "L"
  73. result.addInt c[i].dest+i
  74. inc i
  75. if i in jumpTargets: result.add("L" & $i & ": End\n")
  76. proc echoCfg*(c: ControlFlowGraph; start = 0; last = -1) {.deprecated.} =
  77. ## echos the ControlFlowGraph for debugging purposes.
  78. echo codeListing(c, start, last).alignTable
  79. proc forkI(c: var Con): TPosition =
  80. result = TPosition(c.code.len)
  81. c.code.add Instr(kind: fork, dest: 0)
  82. proc gotoI(c: var Con): TPosition =
  83. result = TPosition(c.code.len)
  84. c.code.add Instr(kind: goto, dest: 0)
  85. proc genLabel(c: Con): TPosition = TPosition(c.code.len)
  86. template checkedDistance(dist): int =
  87. doAssert low(int) div 2 + 1 < dist and dist < high(int) div 2
  88. dist
  89. proc jmpBack(c: var Con, p = TPosition(0)) =
  90. c.code.add Instr(kind: loop, dest: checkedDistance(p.int - c.code.len))
  91. proc patch(c: var Con, p: TPosition) =
  92. # patch with current index
  93. c.code[p.int].dest = checkedDistance(c.code.len - p.int)
  94. proc gen(c: var Con; n: PNode)
  95. proc popBlock(c: var Con; oldLen: int) =
  96. var exits: seq[TPosition]
  97. exits.add c.gotoI()
  98. for f in c.blocks[oldLen].breakFixups:
  99. c.patch(f[0])
  100. for finale in f[1]:
  101. c.gen(finale)
  102. exits.add c.gotoI()
  103. for e in exits:
  104. c.patch e
  105. c.blocks.setLen(oldLen)
  106. template withBlock(labl: PSym; body: untyped) =
  107. let oldLen = c.blocks.len
  108. c.blocks.add TBlock(isTryBlock: false, label: labl)
  109. body
  110. popBlock(c, oldLen)
  111. proc isTrue(n: PNode): bool =
  112. n.kind == nkSym and n.sym.kind == skEnumField and n.sym.position != 0 or
  113. n.kind == nkIntLit and n.intVal != 0
  114. template forkT(body) =
  115. let lab1 = c.forkI()
  116. body
  117. c.patch(lab1)
  118. proc genWhile(c: var Con; n: PNode) =
  119. # lab1:
  120. # cond, tmp
  121. # fork tmp, lab2
  122. # body
  123. # jmp lab1
  124. # lab2:
  125. let lab1 = c.genLabel
  126. withBlock(nil):
  127. if isTrue(n[0]):
  128. c.gen(n[1])
  129. c.jmpBack(lab1)
  130. else:
  131. c.gen(n[0])
  132. forkT:
  133. c.gen(n[1])
  134. c.jmpBack(lab1)
  135. proc genIf(c: var Con, n: PNode) =
  136. #[
  137. if cond:
  138. A
  139. elif condB:
  140. B
  141. elif condC:
  142. C
  143. else:
  144. D
  145. cond
  146. fork lab1
  147. A
  148. goto Lend
  149. lab1:
  150. condB
  151. fork lab2
  152. B
  153. goto Lend2
  154. lab2:
  155. condC
  156. fork L3
  157. C
  158. goto Lend3
  159. L3:
  160. D
  161. goto Lend3 # not eliminated to simplify the join generation
  162. Lend3:
  163. join F3
  164. Lend2:
  165. join F2
  166. Lend:
  167. join F1
  168. ]#
  169. var endings: seq[TPosition] = @[]
  170. let oldInteresting = c.interestingInstructions
  171. let oldLen = c.code.len
  172. for i in 0..<n.len:
  173. let it = n[i]
  174. c.gen(it[0])
  175. if it.len == 2:
  176. forkT:
  177. c.gen(it.lastSon)
  178. endings.add c.gotoI()
  179. if oldInteresting == c.interestingInstructions:
  180. setLen c.code, oldLen
  181. else:
  182. for i in countdown(endings.high, 0):
  183. c.patch(endings[i])
  184. proc genAndOr(c: var Con; n: PNode) =
  185. # asgn dest, a
  186. # fork lab1
  187. # asgn dest, b
  188. # lab1:
  189. # join F1
  190. c.gen(n[1])
  191. forkT:
  192. c.gen(n[2])
  193. proc genCase(c: var Con; n: PNode) =
  194. # if (!expr1) goto lab1;
  195. # thenPart
  196. # goto LEnd
  197. # lab1:
  198. # if (!expr2) goto lab2;
  199. # thenPart2
  200. # goto LEnd
  201. # lab2:
  202. # elsePart
  203. # Lend:
  204. let isExhaustive = skipTypes(n[0].typ,
  205. abstractVarRange-{tyTypeDesc}).kind notin {tyFloat..tyFloat128, tyString, tyCstring}
  206. var endings: seq[TPosition] = @[]
  207. c.gen(n[0])
  208. let oldInteresting = c.interestingInstructions
  209. let oldLen = c.code.len
  210. for i in 1..<n.len:
  211. let it = n[i]
  212. if it.len == 1 or (i == n.len-1 and isExhaustive):
  213. # treat the last branch as 'else' if this is an exhaustive case statement.
  214. c.gen(it.lastSon)
  215. else:
  216. forkT:
  217. c.gen(it.lastSon)
  218. endings.add c.gotoI()
  219. if oldInteresting == c.interestingInstructions:
  220. setLen c.code, oldLen
  221. else:
  222. for i in countdown(endings.high, 0):
  223. c.patch(endings[i])
  224. proc genBlock(c: var Con; n: PNode) =
  225. withBlock(n[0].sym):
  226. c.gen(n[1])
  227. proc genBreakOrRaiseAux(c: var Con, i: int, n: PNode) =
  228. let lab1 = c.gotoI()
  229. if c.blocks[i].isTryBlock:
  230. c.blocks[i].raiseFixups.add lab1
  231. else:
  232. var trailingFinales: seq[PNode]
  233. if c.inTryStmt > 0:
  234. # Ok, we are in a try, lets see which (if any) try's we break out from:
  235. for b in countdown(c.blocks.high, i):
  236. if c.blocks[b].isTryBlock:
  237. trailingFinales.add c.blocks[b].finale
  238. c.blocks[i].breakFixups.add (lab1, trailingFinales)
  239. proc genBreak(c: var Con; n: PNode) =
  240. inc c.interestingInstructions
  241. if n[0].kind == nkSym:
  242. for i in countdown(c.blocks.high, 0):
  243. if not c.blocks[i].isTryBlock and c.blocks[i].label == n[0].sym:
  244. genBreakOrRaiseAux(c, i, n)
  245. return
  246. #globalError(n.info, "VM problem: cannot find 'break' target")
  247. else:
  248. for i in countdown(c.blocks.high, 0):
  249. if not c.blocks[i].isTryBlock:
  250. genBreakOrRaiseAux(c, i, n)
  251. return
  252. proc genTry(c: var Con; n: PNode) =
  253. var endings: seq[TPosition] = @[]
  254. let oldLen = c.blocks.len
  255. c.blocks.add TBlock(isTryBlock: true, finale: if n[^1].kind == nkFinally: n[^1] else: newNode(nkEmpty))
  256. inc c.inTryStmt
  257. c.gen(n[0])
  258. dec c.inTryStmt
  259. for f in c.blocks[oldLen].raiseFixups:
  260. c.patch(f)
  261. c.blocks.setLen oldLen
  262. for i in 1..<n.len:
  263. let it = n[i]
  264. if it.kind != nkFinally:
  265. forkT:
  266. c.gen(it.lastSon)
  267. endings.add c.gotoI()
  268. for i in countdown(endings.high, 0):
  269. c.patch(endings[i])
  270. let fin = lastSon(n)
  271. if fin.kind == nkFinally:
  272. c.gen(fin[0])
  273. template genNoReturn(c: var Con) =
  274. # leave the graph
  275. c.code.add Instr(kind: goto, dest: high(int) - c.code.len)
  276. proc genRaise(c: var Con; n: PNode) =
  277. inc c.interestingInstructions
  278. gen(c, n[0])
  279. if c.inTryStmt > 0:
  280. for i in countdown(c.blocks.high, 0):
  281. if c.blocks[i].isTryBlock:
  282. genBreakOrRaiseAux(c, i, n)
  283. return
  284. assert false #Unreachable
  285. else:
  286. genNoReturn(c)
  287. proc genImplicitReturn(c: var Con) =
  288. if c.owner.kind in {skProc, skFunc, skMethod, skIterator, skConverter} and resultPos < c.owner.ast.len:
  289. gen(c, c.owner.ast[resultPos])
  290. proc genReturn(c: var Con; n: PNode) =
  291. inc c.interestingInstructions
  292. if n[0].kind != nkEmpty:
  293. gen(c, n[0])
  294. else:
  295. genImplicitReturn(c)
  296. genBreakOrRaiseAux(c, 0, n)
  297. const
  298. InterestingSyms = {skVar, skResult, skLet, skParam, skForVar, skTemp}
  299. proc skipTrivials(c: var Con, n: PNode): PNode =
  300. result = n
  301. while true:
  302. case result.kind
  303. of PathKinds0 - {nkBracketExpr}:
  304. result = result[0]
  305. of nkBracketExpr:
  306. gen(c, result[1])
  307. result = result[0]
  308. of PathKinds1:
  309. result = result[1]
  310. else: break
  311. proc genUse(c: var Con; orig: PNode) =
  312. let n = c.skipTrivials(orig)
  313. if n.kind == nkSym:
  314. if n.sym.kind in InterestingSyms and n.sym == c.root:
  315. c.code.add Instr(kind: use, n: orig)
  316. inc c.interestingInstructions
  317. else:
  318. gen(c, n)
  319. proc genDef(c: var Con; orig: PNode) =
  320. let n = c.skipTrivials(orig)
  321. if n.kind == nkSym and n.sym.kind in InterestingSyms:
  322. if n.sym == c.root:
  323. c.code.add Instr(kind: def, n: orig)
  324. inc c.interestingInstructions
  325. proc genCall(c: var Con; n: PNode) =
  326. gen(c, n[0])
  327. var t = n[0].typ
  328. if t != nil: t = t.skipTypes(abstractInst)
  329. for i in 1..<n.len:
  330. gen(c, n[i])
  331. if t != nil and i < t.len and isOutParam(t[i]):
  332. # Pass by 'out' is a 'must def'. Good enough for a move optimizer.
  333. genDef(c, n[i])
  334. # every call can potentially raise:
  335. if c.inTryStmt > 0 and canRaiseConservative(n[0]):
  336. inc c.interestingInstructions
  337. # we generate the instruction sequence:
  338. # fork lab1
  339. # goto exceptionHandler (except or finally)
  340. # lab1:
  341. # join F1
  342. forkT:
  343. for i in countdown(c.blocks.high, 0):
  344. if c.blocks[i].isTryBlock:
  345. genBreakOrRaiseAux(c, i, n)
  346. break
  347. proc genMagic(c: var Con; n: PNode; m: TMagic) =
  348. case m
  349. of mAnd, mOr: c.genAndOr(n)
  350. of mNew, mNewFinalize:
  351. genDef(c, n[1])
  352. for i in 2..<n.len: gen(c, n[i])
  353. else:
  354. genCall(c, n)
  355. proc genVarSection(c: var Con; n: PNode) =
  356. for a in n:
  357. if a.kind == nkCommentStmt:
  358. discard
  359. elif a.kind == nkVarTuple:
  360. gen(c, a.lastSon)
  361. for i in 0..<a.len-2: genDef(c, a[i])
  362. else:
  363. gen(c, a.lastSon)
  364. if a.lastSon.kind != nkEmpty:
  365. genDef(c, a[0])
  366. proc gen(c: var Con; n: PNode) =
  367. case n.kind
  368. of nkSym: genUse(c, n)
  369. of nkCallKinds:
  370. if n[0].kind == nkSym:
  371. let s = n[0].sym
  372. if s.magic != mNone:
  373. genMagic(c, n, s.magic)
  374. else:
  375. genCall(c, n)
  376. if sfNoReturn in n[0].sym.flags:
  377. genNoReturn(c)
  378. else:
  379. genCall(c, n)
  380. of nkCharLit..nkNilLit: discard
  381. of nkAsgn, nkFastAsgn, nkSinkAsgn:
  382. gen(c, n[1])
  383. if n[0].kind in PathKinds0:
  384. let a = c.skipTrivials(n[0])
  385. if a.kind in nkCallKinds:
  386. gen(c, a)
  387. # watch out: 'obj[i].f2 = value' sets 'f2' but
  388. # "uses" 'i'. But we are only talking about builtin array indexing so
  389. # it doesn't matter and 'x = 34' is NOT a usage of 'x'.
  390. genDef(c, n[0])
  391. of PathKinds0 - {nkObjDownConv, nkObjUpConv}:
  392. genUse(c, n)
  393. of nkIfStmt, nkIfExpr: genIf(c, n)
  394. of nkWhenStmt:
  395. # This is "when nimvm" node. Chose the first branch.
  396. gen(c, n[0][1])
  397. of nkCaseStmt: genCase(c, n)
  398. of nkWhileStmt: genWhile(c, n)
  399. of nkBlockExpr, nkBlockStmt: genBlock(c, n)
  400. of nkReturnStmt: genReturn(c, n)
  401. of nkRaiseStmt: genRaise(c, n)
  402. of nkBreakStmt: genBreak(c, n)
  403. of nkTryStmt, nkHiddenTryStmt: genTry(c, n)
  404. of nkStmtList, nkStmtListExpr, nkChckRangeF, nkChckRange64, nkChckRange,
  405. nkBracket, nkCurly, nkPar, nkTupleConstr, nkClosure, nkObjConstr, nkYieldStmt:
  406. for x in n: gen(c, x)
  407. of nkPragmaBlock: gen(c, n.lastSon)
  408. of nkDiscardStmt, nkObjDownConv, nkObjUpConv, nkStringToCString, nkCStringToString:
  409. gen(c, n[0])
  410. of nkConv, nkExprColonExpr, nkExprEqExpr, nkCast, PathKinds1:
  411. gen(c, n[1])
  412. of nkVarSection, nkLetSection: genVarSection(c, n)
  413. of nkDefer: doAssert false, "dfa construction pass requires the elimination of 'defer'"
  414. else: discard
  415. when false:
  416. proc optimizeJumps(c: var ControlFlowGraph) =
  417. for i in 0..<c.len:
  418. case c[i].kind
  419. of goto, fork:
  420. var pc = i + c[i].dest
  421. if pc < c.len and c[pc].kind == goto:
  422. while pc < c.len and c[pc].kind == goto:
  423. let newPc = pc + c[pc].dest
  424. if newPc > pc:
  425. pc = newPc
  426. else:
  427. break
  428. c[i].dest = pc - i
  429. of loop, def, use: discard
  430. proc constructCfg*(s: PSym; body: PNode; root: PSym): ControlFlowGraph =
  431. ## constructs a control flow graph for ``body``.
  432. var c = Con(code: @[], blocks: @[], owner: s, root: root)
  433. withBlock(s):
  434. gen(c, body)
  435. if root.kind == skResult:
  436. genImplicitReturn(c)
  437. when defined(gcArc) or defined(gcOrc) or defined(gcAtomicArc):
  438. result = c.code # will move
  439. else:
  440. shallowCopy(result, c.code)
  441. when false:
  442. optimizeJumps result