semfields.nim 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. #
  2. #
  3. # The Nim Compiler
  4. # (c) Copyright 2015 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. ## This module does the semantic transformation of the fields* iterators.
  10. # included from semstmts.nim
  11. type
  12. TFieldInstCtx = object # either 'tup[i]' or 'field' is valid
  13. tupleType: PType # if != nil we're traversing a tuple
  14. tupleIndex: int
  15. field: PSym
  16. replaceByFieldName: bool
  17. c: PContext
  18. proc wrapNewScope(c: PContext, n: PNode): PNode {.inline.} =
  19. # use `if true` to not interfere with `break`
  20. # just opening scope via `openScope(c)` isn't enough,
  21. # a scope has to be opened in the codegen as well for reused
  22. # template instantiations
  23. let trueLit = newIntLit(c.graph, n.info, 1)
  24. trueLit.typ = getSysType(c.graph, n.info, tyBool)
  25. result = newTreeI(nkIfStmt, n.info, newTreeI(nkElifBranch, n.info, trueLit, n))
  26. proc instFieldLoopBody(c: TFieldInstCtx, n: PNode, forLoop: PNode): PNode =
  27. if c.field != nil and isEmptyType(c.field.typ):
  28. result = newNode(nkEmpty)
  29. return
  30. case n.kind
  31. of nkEmpty..pred(nkIdent), succ(nkSym)..nkNilLit: result = copyNode(n)
  32. of nkIdent, nkSym:
  33. result = n
  34. let ident = considerQuotedIdent(c.c, n)
  35. if c.replaceByFieldName:
  36. if ident.id == considerQuotedIdent(c.c, forLoop[0]).id:
  37. let fieldName = if c.tupleType.isNil: c.field.name.s
  38. elif c.tupleType.n.isNil: "Field" & $c.tupleIndex
  39. else: c.tupleType.n[c.tupleIndex].sym.name.s
  40. result = newStrNode(nkStrLit, fieldName)
  41. return
  42. # other fields:
  43. for i in ord(c.replaceByFieldName)..<forLoop.len-2:
  44. if ident.id == considerQuotedIdent(c.c, forLoop[i]).id:
  45. var call = forLoop[^2]
  46. var tupl = call[i+1-ord(c.replaceByFieldName)]
  47. if c.field.isNil:
  48. result = newNodeI(nkBracketExpr, n.info)
  49. result.add(tupl)
  50. result.add(newIntNode(nkIntLit, c.tupleIndex))
  51. else:
  52. result = newNodeI(nkDotExpr, n.info)
  53. result.add(tupl)
  54. result.add(newSymNode(c.field, n.info))
  55. break
  56. else:
  57. if n.kind == nkContinueStmt:
  58. localError(c.c.config, n.info,
  59. "'continue' not supported in a 'fields' loop")
  60. result = shallowCopy(n)
  61. for i in 0..<n.len:
  62. result[i] = instFieldLoopBody(c, n[i], forLoop)
  63. type
  64. TFieldsCtx = object
  65. c: PContext
  66. m: TMagic
  67. proc semForObjectFields(c: TFieldsCtx, typ, forLoop, father: PNode) =
  68. case typ.kind
  69. of nkSym:
  70. var fc: TFieldInstCtx # either 'tup[i]' or 'field' is valid
  71. fc.c = c.c
  72. fc.field = typ.sym
  73. fc.replaceByFieldName = c.m == mFieldPairs
  74. openScope(c.c)
  75. inc c.c.inUnrolledContext
  76. var body = instFieldLoopBody(fc, lastSon(forLoop), forLoop)
  77. # new scope for each field that codegen should know about:
  78. body = wrapNewScope(c.c, body)
  79. father.add(semStmt(c.c, body, {}))
  80. dec c.c.inUnrolledContext
  81. closeScope(c.c)
  82. of nkNilLit: discard
  83. of nkRecCase:
  84. let call = forLoop[^2]
  85. if call.len > 2:
  86. localError(c.c.config, forLoop.info,
  87. "parallel 'fields' iterator does not work for 'case' objects")
  88. return
  89. # iterate over the selector:
  90. semForObjectFields(c, typ[0], forLoop, father)
  91. # we need to generate a case statement:
  92. var caseStmt = newNodeI(nkCaseStmt, forLoop.info)
  93. # generate selector:
  94. var access = newNodeI(nkDotExpr, forLoop.info, 2)
  95. access[0] = call[1]
  96. access[1] = newSymNode(typ[0].sym, forLoop.info)
  97. caseStmt.add(semExprWithType(c.c, access))
  98. # copy the branches over, but replace the fields with the for loop body:
  99. for i in 1..<typ.len:
  100. var branch = copyTree(typ[i])
  101. branch[^1] = newNodeI(nkStmtList, forLoop.info)
  102. semForObjectFields(c, typ[i].lastSon, forLoop, branch[^1])
  103. caseStmt.add(branch)
  104. father.add(caseStmt)
  105. of nkRecList:
  106. for t in items(typ): semForObjectFields(c, t, forLoop, father)
  107. else:
  108. illFormedAstLocal(typ, c.c.config)
  109. proc semForFields(c: PContext, n: PNode, m: TMagic): PNode =
  110. # so that 'break' etc. work as expected, we produce
  111. # a 'while true: stmt; break' loop ...
  112. result = newNodeI(nkWhileStmt, n.info, 2)
  113. var trueSymbol = systemModuleSym(c.graph, getIdent(c.cache, "true"))
  114. if trueSymbol == nil:
  115. localError(c.config, n.info, "system needs: 'true'")
  116. trueSymbol = newSym(skUnknown, getIdent(c.cache, "true"), c.idgen, getCurrOwner(c), n.info)
  117. trueSymbol.typ = getSysType(c.graph, n.info, tyBool)
  118. result[0] = newSymNode(trueSymbol, n.info)
  119. var stmts = newNodeI(nkStmtList, n.info)
  120. result[1] = stmts
  121. var call = n[^2]
  122. if n.len-2 != call.len-1 + ord(m==mFieldPairs):
  123. localError(c.config, n.info, errWrongNumberOfVariables)
  124. return result
  125. const skippedTypesForFields = abstractVar - {tyTypeDesc} + tyUserTypeClasses
  126. var tupleTypeA = skipTypes(call[1].typ, skippedTypesForFields)
  127. if tupleTypeA.kind notin {tyTuple, tyObject}:
  128. localError(c.config, n.info, errGenerated, "no object or tuple type")
  129. return result
  130. for i in 1..<call.len:
  131. let calli = call[i]
  132. var tupleTypeB = skipTypes(calli.typ, skippedTypesForFields)
  133. if not sameType(tupleTypeA, tupleTypeB):
  134. typeMismatch(c.config, calli.info, tupleTypeA, tupleTypeB, calli)
  135. inc(c.p.nestedLoopCounter)
  136. let oldBreakInLoop = c.p.breakInLoop
  137. c.p.breakInLoop = true
  138. if tupleTypeA.kind == tyTuple:
  139. var loopBody = n[^1]
  140. for i in 0..<tupleTypeA.len:
  141. openScope(c)
  142. var fc: TFieldInstCtx
  143. fc.tupleType = tupleTypeA
  144. fc.tupleIndex = i
  145. fc.c = c
  146. fc.replaceByFieldName = m == mFieldPairs
  147. var body = instFieldLoopBody(fc, loopBody, n)
  148. # new scope for each field that codegen should know about:
  149. body = wrapNewScope(c, body)
  150. inc c.inUnrolledContext
  151. stmts.add(semStmt(c, body, {}))
  152. dec c.inUnrolledContext
  153. closeScope(c)
  154. else:
  155. var fc: TFieldsCtx
  156. fc.m = m
  157. fc.c = c
  158. var t = tupleTypeA
  159. while t.kind == tyObject:
  160. semForObjectFields(fc, t.n, n, stmts)
  161. if t[0] == nil: break
  162. t = skipTypes(t[0], skipPtrs)
  163. c.p.breakInLoop = oldBreakInLoop
  164. dec(c.p.nestedLoopCounter)
  165. # for TR macros this 'while true: ...; break' loop is pretty bad, so
  166. # we avoid it now if we can:
  167. if containsNode(stmts, {nkBreakStmt}):
  168. var b = newNodeI(nkBreakStmt, n.info)
  169. b.add(newNodeI(nkEmpty, n.info))
  170. stmts.add(b)
  171. else:
  172. result = stmts