vmgen.nim 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415
  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 implements the code generator for the VM.
  10. # Important things to remember:
  11. # - The VM does not distinguish between definitions ('var x = y') and
  12. # assignments ('x = y'). For simple data types that fit into a register
  13. # this doesn't matter. However it matters for strings and other complex
  14. # types that use the 'node' field; the reason is that slots are
  15. # re-used in a register based VM. Example:
  16. # ```nim
  17. # let s = a & b # no matter what, create fresh node
  18. # s = a & b # no matter what, keep the node
  19. # ```
  20. # Also *stores* into non-temporary memory need to perform deep copies:
  21. # a.b = x.y
  22. # We used to generate opcAsgn for the *load* of 'x.y' but this is clearly
  23. # wrong! We need to produce opcAsgn (the copy) for the *store*. This also
  24. # solves the opcLdConst vs opcAsgnConst issue. Of course whether we need
  25. # this copy depends on the involved types.
  26. import std/[tables, intsets, strutils]
  27. when defined(nimPreviewSlimSystem):
  28. import std/assertions
  29. import
  30. ast, types, msgs, renderer, vmdef, trees,
  31. magicsys, options, lowerings, lineinfos, transf, astmsgs
  32. from modulegraphs import getBody
  33. when defined(nimCompilerStacktraceHints):
  34. import std/stackframes
  35. const
  36. debugEchoCode* = defined(nimVMDebug)
  37. when debugEchoCode:
  38. import std/private/asciitables
  39. when hasFFI:
  40. import evalffi
  41. type
  42. TGenFlag = enum
  43. gfNode # Affects how variables are loaded - always loads as rkNode
  44. gfNodeAddr # Affects how variables are loaded - always loads as rkNodeAddr
  45. gfIsParam # do not deepcopy parameters, they are immutable
  46. TGenFlags = set[TGenFlag]
  47. proc debugInfo(c: PCtx; info: TLineInfo): string =
  48. result = toFileLineCol(c.config, info)
  49. proc codeListing(c: PCtx, result: var string, start=0; last = -1) =
  50. ## for debugging purposes
  51. # first iteration: compute all necessary labels:
  52. var jumpTargets = initIntSet()
  53. let last = if last < 0: c.code.len-1 else: min(last, c.code.len-1)
  54. for i in start..last:
  55. let x = c.code[i]
  56. if x.opcode in relativeJumps:
  57. jumpTargets.incl(i+x.regBx-wordExcess)
  58. template toStr(opc: TOpcode): string = ($opc).substr(3)
  59. result.add "code listing:\n"
  60. var i = start
  61. while i <= last:
  62. if i in jumpTargets: result.addf("L$1:\n", i)
  63. let x = c.code[i]
  64. result.add($i)
  65. let opc = opcode(x)
  66. if opc in {opcIndCall, opcIndCallAsgn}:
  67. result.addf("\t$#\tr$#, r$#, nargs:$#", opc.toStr, x.regA,
  68. x.regB, x.regC)
  69. elif opc in {opcConv, opcCast}:
  70. let y = c.code[i+1]
  71. let z = c.code[i+2]
  72. result.addf("\t$#\tr$#, r$#, $#, $#", opc.toStr, x.regA, x.regB,
  73. c.types[y.regBx-wordExcess].typeToString,
  74. c.types[z.regBx-wordExcess].typeToString)
  75. inc i, 2
  76. elif opc < firstABxInstr:
  77. result.addf("\t$#\tr$#, r$#, r$#", opc.toStr, x.regA,
  78. x.regB, x.regC)
  79. elif opc in relativeJumps + {opcTry}:
  80. result.addf("\t$#\tr$#, L$#", opc.toStr, x.regA,
  81. i+x.regBx-wordExcess)
  82. elif opc in {opcExcept}:
  83. let idx = x.regBx-wordExcess
  84. result.addf("\t$#\t$#, $#", opc.toStr, x.regA, $idx)
  85. elif opc in {opcLdConst, opcAsgnConst}:
  86. let idx = x.regBx-wordExcess
  87. result.addf("\t$#\tr$#, $# ($#)", opc.toStr, x.regA,
  88. c.constants[idx].renderTree, $idx)
  89. else:
  90. result.addf("\t$#\tr$#, $#", opc.toStr, x.regA, x.regBx-wordExcess)
  91. result.add("\t# ")
  92. result.add(debugInfo(c, c.debug[i]))
  93. result.add("\n")
  94. inc i
  95. when debugEchoCode:
  96. result = result.alignTable
  97. proc echoCode*(c: PCtx; start=0; last = -1) {.deprecated.} =
  98. var buf = ""
  99. codeListing(c, buf, start, last)
  100. echo buf
  101. proc gABC(ctx: PCtx; n: PNode; opc: TOpcode;
  102. a: TRegister = 0, b: TRegister = 0, c: TRegister = 0) =
  103. ## Takes the registers `b` and `c`, applies the operation `opc` to them, and
  104. ## stores the result into register `a`
  105. ## The node is needed for debug information
  106. assert opc.ord < 255
  107. let ins = (opc.TInstrType or (a.TInstrType shl regAShift) or
  108. (b.TInstrType shl regBShift) or
  109. (c.TInstrType shl regCShift)).TInstr
  110. when false:
  111. if ctx.code.len == 43:
  112. writeStackTrace()
  113. echo "generating ", opc
  114. ctx.code.add(ins)
  115. ctx.debug.add(n.info)
  116. proc gABI(c: PCtx; n: PNode; opc: TOpcode; a, b: TRegister; imm: BiggestInt) =
  117. # Takes the `b` register and the immediate `imm`, applies the operation `opc`,
  118. # and stores the output value into `a`.
  119. # `imm` is signed and must be within [-128, 127]
  120. if imm >= -128 and imm <= 127:
  121. let ins = (opc.TInstrType or (a.TInstrType shl regAShift) or
  122. (b.TInstrType shl regBShift) or
  123. (imm+byteExcess).TInstrType shl regCShift).TInstr
  124. c.code.add(ins)
  125. c.debug.add(n.info)
  126. else:
  127. localError(c.config, n.info,
  128. "VM: immediate value does not fit into an int8")
  129. proc gABx(c: PCtx; n: PNode; opc: TOpcode; a: TRegister = 0; bx: int) =
  130. # Applies `opc` to `bx` and stores it into register `a`
  131. # `bx` must be signed and in the range [regBxMin, regBxMax]
  132. when false:
  133. if c.code.len == 43:
  134. writeStackTrace()
  135. echo "generating ", opc
  136. if bx >= regBxMin-1 and bx <= regBxMax:
  137. let ins = (opc.TInstrType or a.TInstrType shl regAShift or
  138. (bx+wordExcess).TInstrType shl regBxShift).TInstr
  139. c.code.add(ins)
  140. c.debug.add(n.info)
  141. else:
  142. localError(c.config, n.info,
  143. "VM: immediate value does not fit into regBx")
  144. proc xjmp(c: PCtx; n: PNode; opc: TOpcode; a: TRegister = 0): TPosition =
  145. #assert opc in {opcJmp, opcFJmp, opcTJmp}
  146. result = TPosition(c.code.len)
  147. gABx(c, n, opc, a, 0)
  148. proc genLabel(c: PCtx): TPosition =
  149. result = TPosition(c.code.len)
  150. #c.jumpTargets.incl(c.code.len)
  151. proc jmpBack(c: PCtx, n: PNode, p = TPosition(0)) =
  152. let dist = p.int - c.code.len
  153. internalAssert(c.config, regBxMin < dist and dist < regBxMax)
  154. gABx(c, n, opcJmpBack, 0, dist)
  155. proc patch(c: PCtx, p: TPosition) =
  156. # patch with current index
  157. let p = p.int
  158. let diff = c.code.len - p
  159. #c.jumpTargets.incl(c.code.len)
  160. internalAssert(c.config, regBxMin < diff and diff < regBxMax)
  161. let oldInstr = c.code[p]
  162. # opcode and regA stay the same:
  163. c.code[p] = ((oldInstr.TInstrType and regBxMask).TInstrType or
  164. TInstrType(diff+wordExcess) shl regBxShift).TInstr
  165. proc getSlotKind(t: PType): TSlotKind =
  166. case t.skipTypes(abstractRange-{tyTypeDesc}).kind
  167. of tyBool, tyChar, tyEnum, tyOrdinal, tyInt..tyInt64, tyUInt..tyUInt64:
  168. slotTempInt
  169. of tyString, tyCstring:
  170. slotTempStr
  171. of tyFloat..tyFloat128:
  172. slotTempFloat
  173. else:
  174. slotTempComplex
  175. const
  176. HighRegisterPressure = 40
  177. proc bestEffort(c: PCtx): TLineInfo =
  178. if c.prc != nil and c.prc.sym != nil:
  179. c.prc.sym.info
  180. else:
  181. c.module.info
  182. proc getFreeRegister(cc: PCtx; k: TSlotKind; start: int): TRegister =
  183. let c = cc.prc
  184. # we prefer the same slot kind here for efficiency. Unfortunately for
  185. # discardable return types we may not know the desired type. This can happen
  186. # for e.g. mNAdd[Multiple]:
  187. for i in start..c.regInfo.len-1:
  188. if c.regInfo[i].kind == k and not c.regInfo[i].inUse:
  189. c.regInfo[i].inUse = true
  190. return TRegister(i)
  191. # if register pressure is high, we re-use more aggressively:
  192. if c.regInfo.len >= high(TRegister):
  193. for i in start..c.regInfo.len-1:
  194. if not c.regInfo[i].inUse:
  195. c.regInfo[i] = (inUse: true, kind: k)
  196. return TRegister(i)
  197. if c.regInfo.len >= high(TRegister):
  198. globalError(cc.config, cc.bestEffort, "VM problem: too many registers required")
  199. result = TRegister(max(c.regInfo.len, start))
  200. c.regInfo.setLen int(result)+1
  201. c.regInfo[result] = (inUse: true, kind: k)
  202. proc getTemp(cc: PCtx; tt: PType): TRegister =
  203. let typ = tt.skipTypesOrNil({tyStatic})
  204. # we prefer the same slot kind here for efficiency. Unfortunately for
  205. # discardable return types we may not know the desired type. This can happen
  206. # for e.g. mNAdd[Multiple]:
  207. let k = if typ.isNil: slotTempComplex else: typ.getSlotKind
  208. result = getFreeRegister(cc, k, start = 0)
  209. when false:
  210. # enable this to find "register" leaks:
  211. if result == 4:
  212. echo "begin ---------------"
  213. writeStackTrace()
  214. echo "end ----------------"
  215. proc freeTemp(c: PCtx; r: TRegister) =
  216. let c = c.prc
  217. if c.regInfo[r].kind in {slotSomeTemp..slotTempComplex}:
  218. # this seems to cause https://github.com/nim-lang/Nim/issues/10647
  219. c.regInfo[r].inUse = false
  220. proc getTempRange(cc: PCtx; n: int; kind: TSlotKind): TRegister =
  221. # if register pressure is high, we re-use more aggressively:
  222. let c = cc.prc
  223. # we could also customize via the following (with proper caching in ConfigRef):
  224. # let highRegisterPressure = cc.config.getConfigVar("vm.highRegisterPressure", "40").parseInt
  225. if c.regInfo.len >= HighRegisterPressure or c.regInfo.len+n >= high(TRegister):
  226. for i in 0..c.regInfo.len-n:
  227. if not c.regInfo[i].inUse:
  228. block search:
  229. for j in i+1..i+n-1:
  230. if c.regInfo[j].inUse: break search
  231. result = TRegister(i)
  232. for k in result..result+n-1: c.regInfo[k] = (inUse: true, kind: kind)
  233. return
  234. if c.regInfo.len+n >= high(TRegister):
  235. globalError(cc.config, cc.bestEffort, "VM problem: too many registers required")
  236. result = TRegister(c.regInfo.len)
  237. setLen c.regInfo, c.regInfo.len+n
  238. for k in result..result+n-1: c.regInfo[k] = (inUse: true, kind: kind)
  239. proc freeTempRange(c: PCtx; start: TRegister, n: int) =
  240. for i in start..start+n-1: c.freeTemp(TRegister(i))
  241. template withTemp(tmp, typ, body: untyped) {.dirty.} =
  242. var tmp = getTemp(c, typ)
  243. body
  244. c.freeTemp(tmp)
  245. proc popBlock(c: PCtx; oldLen: int) =
  246. for f in c.prc.blocks[oldLen].fixups:
  247. c.patch(f)
  248. c.prc.blocks.setLen(oldLen)
  249. template withBlock(labl: PSym; body: untyped) {.dirty.} =
  250. var oldLen {.gensym.} = c.prc.blocks.len
  251. c.prc.blocks.add TBlock(label: labl, fixups: @[])
  252. body
  253. popBlock(c, oldLen)
  254. proc gen(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags = {})
  255. proc gen(c: PCtx; n: PNode; dest: TRegister; flags: TGenFlags = {}) =
  256. var d: TDest = dest
  257. gen(c, n, d, flags)
  258. #internalAssert c.config, d == dest # issue #7407
  259. proc gen(c: PCtx; n: PNode; flags: TGenFlags = {}) =
  260. var tmp: TDest = -1
  261. gen(c, n, tmp, flags)
  262. if tmp >= 0:
  263. freeTemp(c, tmp)
  264. #if n.typ.isEmptyType: internalAssert tmp < 0
  265. proc genx(c: PCtx; n: PNode; flags: TGenFlags = {}): TRegister =
  266. var tmp: TDest = -1
  267. gen(c, n, tmp, flags)
  268. #internalAssert c.config, tmp >= 0 # 'nim check' does not like this internalAssert.
  269. if tmp >= 0:
  270. result = TRegister(tmp)
  271. else:
  272. result = 0
  273. proc clearDest(c: PCtx; n: PNode; dest: var TDest) {.inline.} =
  274. # stmt is different from 'void' in meta programming contexts.
  275. # So we only set dest to -1 if 'void':
  276. if dest >= 0 and (n.typ.isNil or n.typ.kind == tyVoid):
  277. c.freeTemp(dest)
  278. dest = -1
  279. proc isNotOpr(n: PNode): bool =
  280. n.kind in nkCallKinds and n[0].kind == nkSym and
  281. n[0].sym.magic == mNot
  282. proc genWhile(c: PCtx; n: PNode) =
  283. # lab1:
  284. # cond, tmp
  285. # fjmp tmp, lab2
  286. # body
  287. # jmp lab1
  288. # lab2:
  289. let lab1 = c.genLabel
  290. withBlock(nil):
  291. if isTrue(n[0]):
  292. c.gen(n[1])
  293. c.jmpBack(n, lab1)
  294. elif isNotOpr(n[0]):
  295. var tmp = c.genx(n[0][1])
  296. let lab2 = c.xjmp(n, opcTJmp, tmp)
  297. c.freeTemp(tmp)
  298. c.gen(n[1])
  299. c.jmpBack(n, lab1)
  300. c.patch(lab2)
  301. else:
  302. var tmp = c.genx(n[0])
  303. let lab2 = c.xjmp(n, opcFJmp, tmp)
  304. c.freeTemp(tmp)
  305. c.gen(n[1])
  306. c.jmpBack(n, lab1)
  307. c.patch(lab2)
  308. proc genBlock(c: PCtx; n: PNode; dest: var TDest) =
  309. let oldRegisterCount = c.prc.regInfo.len
  310. withBlock(n[0].sym):
  311. c.gen(n[1], dest)
  312. for i in oldRegisterCount..<c.prc.regInfo.len:
  313. #if c.prc.regInfo[i].kind in {slotFixedVar, slotFixedLet}:
  314. if i != dest:
  315. when not defined(release):
  316. if c.prc.regInfo[i].inUse and c.prc.regInfo[i].kind in {slotTempUnknown,
  317. slotTempInt,
  318. slotTempFloat,
  319. slotTempStr,
  320. slotTempComplex}:
  321. raiseAssert "leaking temporary " & $i & " " & $c.prc.regInfo[i].kind
  322. c.prc.regInfo[i] = (inUse: false, kind: slotEmpty)
  323. c.clearDest(n, dest)
  324. proc genBreak(c: PCtx; n: PNode) =
  325. let lab1 = c.xjmp(n, opcJmp)
  326. if n[0].kind == nkSym:
  327. #echo cast[int](n[0].sym)
  328. for i in countdown(c.prc.blocks.len-1, 0):
  329. if c.prc.blocks[i].label == n[0].sym:
  330. c.prc.blocks[i].fixups.add lab1
  331. return
  332. globalError(c.config, n.info, "VM problem: cannot find 'break' target")
  333. else:
  334. c.prc.blocks[c.prc.blocks.high].fixups.add lab1
  335. proc genIf(c: PCtx, n: PNode; dest: var TDest) =
  336. # if (!expr1) goto lab1;
  337. # thenPart
  338. # goto LEnd
  339. # lab1:
  340. # if (!expr2) goto lab2;
  341. # thenPart2
  342. # goto LEnd
  343. # lab2:
  344. # elsePart
  345. # Lend:
  346. if dest < 0 and not isEmptyType(n.typ): dest = getTemp(c, n.typ)
  347. var endings: seq[TPosition] = @[]
  348. for i in 0..<n.len:
  349. var it = n[i]
  350. if it.len == 2:
  351. withTemp(tmp, it[0].typ):
  352. var elsePos: TPosition
  353. if isNotOpr(it[0]):
  354. c.gen(it[0][1], tmp)
  355. elsePos = c.xjmp(it[0][1], opcTJmp, tmp) # if true
  356. else:
  357. c.gen(it[0], tmp)
  358. elsePos = c.xjmp(it[0], opcFJmp, tmp) # if false
  359. c.clearDest(n, dest)
  360. if isEmptyType(it[1].typ): # maybe noreturn call, don't touch `dest`
  361. c.gen(it[1])
  362. else:
  363. c.gen(it[1], dest) # then part
  364. if i < n.len-1:
  365. endings.add(c.xjmp(it[1], opcJmp, 0))
  366. c.patch(elsePos)
  367. else:
  368. c.clearDest(n, dest)
  369. if isEmptyType(it[0].typ): # maybe noreturn call, don't touch `dest`
  370. c.gen(it[0])
  371. else:
  372. c.gen(it[0], dest)
  373. for endPos in endings: c.patch(endPos)
  374. c.clearDest(n, dest)
  375. proc isTemp(c: PCtx; dest: TDest): bool =
  376. result = dest >= 0 and c.prc.regInfo[dest].kind >= slotTempUnknown
  377. proc genAndOr(c: PCtx; n: PNode; opc: TOpcode; dest: var TDest) =
  378. # asgn dest, a
  379. # tjmp|fjmp lab1
  380. # asgn dest, b
  381. # lab1:
  382. let copyBack = dest < 0 or not isTemp(c, dest)
  383. let tmp = if copyBack:
  384. getTemp(c, n.typ)
  385. else:
  386. TRegister dest
  387. c.gen(n[1], tmp)
  388. let lab1 = c.xjmp(n, opc, tmp)
  389. c.gen(n[2], tmp)
  390. c.patch(lab1)
  391. if dest < 0:
  392. dest = tmp
  393. elif copyBack:
  394. c.gABC(n, opcAsgnInt, dest, tmp)
  395. freeTemp(c, tmp)
  396. proc rawGenLiteral(c: PCtx; n: PNode): int =
  397. result = c.constants.len
  398. #assert(n.kind != nkCall)
  399. n.flags.incl nfAllConst
  400. n.flags.excl nfIsRef
  401. c.constants.add n
  402. internalAssert c.config, result < regBxMax
  403. proc sameConstant*(a, b: PNode): bool =
  404. result = false
  405. if a == b:
  406. result = true
  407. elif a != nil and b != nil and a.kind == b.kind:
  408. case a.kind
  409. of nkSym: result = a.sym == b.sym
  410. of nkIdent: result = a.ident.id == b.ident.id
  411. of nkCharLit..nkUInt64Lit: result = a.intVal == b.intVal
  412. of nkFloatLit..nkFloat64Lit:
  413. result = cast[uint64](a.floatVal) == cast[uint64](b.floatVal)
  414. # refs bug #16469
  415. # if we wanted to only distinguish 0.0 vs -0.0:
  416. # if a.floatVal == 0.0: result = cast[uint64](a.floatVal) == cast[uint64](b.floatVal)
  417. # else: result = a.floatVal == b.floatVal
  418. of nkStrLit..nkTripleStrLit: result = a.strVal == b.strVal
  419. of nkType, nkNilLit: result = a.typ == b.typ
  420. of nkEmpty: result = true
  421. else:
  422. if a.len == b.len:
  423. for i in 0..<a.len:
  424. if not sameConstant(a[i], b[i]): return
  425. result = true
  426. proc genLiteral(c: PCtx; n: PNode): int =
  427. # types do not matter here:
  428. for i in 0..<c.constants.len:
  429. if sameConstant(c.constants[i], n): return i
  430. result = rawGenLiteral(c, n)
  431. proc unused(c: PCtx; n: PNode; x: TDest) {.inline.} =
  432. if x >= 0:
  433. #debug(n)
  434. globalError(c.config, n.info, "not unused")
  435. proc genCase(c: PCtx; n: PNode; dest: var TDest) =
  436. # if (!expr1) goto lab1;
  437. # thenPart
  438. # goto LEnd
  439. # lab1:
  440. # if (!expr2) goto lab2;
  441. # thenPart2
  442. # goto LEnd
  443. # lab2:
  444. # elsePart
  445. # Lend:
  446. if not isEmptyType(n.typ):
  447. if dest < 0: dest = getTemp(c, n.typ)
  448. else:
  449. unused(c, n, dest)
  450. var endings: seq[TPosition] = @[]
  451. withTemp(tmp, n[0].typ):
  452. c.gen(n[0], tmp)
  453. # branch tmp, codeIdx
  454. # fjmp elseLabel
  455. for i in 1..<n.len:
  456. let it = n[i]
  457. if it.len == 1:
  458. # else stmt:
  459. let body = it[0]
  460. if body.kind != nkNilLit or body.typ != nil:
  461. # an nkNilLit with nil for typ implies there is no else branch, this
  462. # avoids unused related errors as we've already consumed the dest
  463. if isEmptyType(body.typ): # maybe noreturn call, don't touch `dest`
  464. c.gen(body)
  465. else:
  466. c.gen(body, dest)
  467. else:
  468. let b = rawGenLiteral(c, it)
  469. c.gABx(it, opcBranch, tmp, b)
  470. let body = it.lastSon
  471. let elsePos = c.xjmp(body, opcFJmp, tmp)
  472. if isEmptyType(body.typ): # maybe noreturn call, don't touch `dest`
  473. c.gen(body)
  474. else:
  475. c.gen(body, dest)
  476. if i < n.len-1:
  477. endings.add(c.xjmp(body, opcJmp, 0))
  478. c.patch(elsePos)
  479. c.clearDest(n, dest)
  480. for endPos in endings: c.patch(endPos)
  481. proc genType(c: PCtx; typ: PType): int =
  482. for i, t in c.types:
  483. if sameType(t, typ): return i
  484. result = c.types.len
  485. c.types.add(typ)
  486. internalAssert(c.config, result <= regBxMax)
  487. proc genTry(c: PCtx; n: PNode; dest: var TDest) =
  488. if dest < 0 and not isEmptyType(n.typ): dest = getTemp(c, n.typ)
  489. var endings: seq[TPosition] = @[]
  490. let ehPos = c.xjmp(n, opcTry, 0)
  491. if isEmptyType(n[0].typ): # maybe noreturn call, don't touch `dest`
  492. c.gen(n[0])
  493. else:
  494. c.gen(n[0], dest)
  495. c.clearDest(n, dest)
  496. # Add a jump past the exception handling code
  497. let jumpToFinally = c.xjmp(n, opcJmp, 0)
  498. # This signals where the body ends and where the exception handling begins
  499. c.patch(ehPos)
  500. for i in 1..<n.len:
  501. let it = n[i]
  502. if it.kind != nkFinally:
  503. # first opcExcept contains the end label of the 'except' block:
  504. let endExcept = c.xjmp(it, opcExcept, 0)
  505. for j in 0..<it.len - 1:
  506. assert(it[j].kind == nkType)
  507. let typ = it[j].typ.skipTypes(abstractPtrs-{tyTypeDesc})
  508. c.gABx(it, opcExcept, 0, c.genType(typ))
  509. if it.len == 1:
  510. # general except section:
  511. c.gABx(it, opcExcept, 0, 0)
  512. let body = it.lastSon
  513. if isEmptyType(body.typ): # maybe noreturn call, don't touch `dest`
  514. c.gen(body)
  515. else:
  516. c.gen(body, dest)
  517. c.clearDest(n, dest)
  518. if i < n.len:
  519. endings.add(c.xjmp(it, opcJmp, 0))
  520. c.patch(endExcept)
  521. let fin = lastSon(n)
  522. # we always generate an 'opcFinally' as that pops the safepoint
  523. # from the stack if no exception is raised in the body.
  524. c.patch(jumpToFinally)
  525. c.gABx(fin, opcFinally, 0, 0)
  526. for endPos in endings: c.patch(endPos)
  527. if fin.kind == nkFinally:
  528. c.gen(fin[0])
  529. c.clearDest(n, dest)
  530. c.gABx(fin, opcFinallyEnd, 0, 0)
  531. proc genRaise(c: PCtx; n: PNode) =
  532. let dest = genx(c, n[0])
  533. c.gABC(n, opcRaise, dest)
  534. c.freeTemp(dest)
  535. proc genReturn(c: PCtx; n: PNode) =
  536. if n[0].kind != nkEmpty:
  537. gen(c, n[0])
  538. c.gABC(n, opcRet)
  539. proc genLit(c: PCtx; n: PNode; dest: var TDest) =
  540. # opcLdConst is now always valid. We produce the necessary copy in the
  541. # assignments now:
  542. #var opc = opcLdConst
  543. if dest < 0: dest = c.getTemp(n.typ)
  544. #elif c.prc.regInfo[dest].kind == slotFixedVar: opc = opcAsgnConst
  545. let lit = genLiteral(c, n)
  546. c.gABx(n, opcLdConst, dest, lit)
  547. proc genCall(c: PCtx; n: PNode; dest: var TDest) =
  548. # it can happen that due to inlining we have a 'n' that should be
  549. # treated as a constant (see issue #537).
  550. #if n.typ != nil and n.typ.sym != nil and n.typ.sym.magic == mPNimrodNode:
  551. # genLit(c, n, dest)
  552. # return
  553. # bug #10901: do not produce code for wrong call expressions:
  554. if n.len == 0 or n[0].typ.isNil: return
  555. if dest < 0 and not isEmptyType(n.typ): dest = getTemp(c, n.typ)
  556. let x = c.getTempRange(n.len, slotTempUnknown)
  557. # varargs need 'opcSetType' for the FFI support:
  558. let fntyp = skipTypes(n[0].typ, abstractInst)
  559. for i in 0..<n.len:
  560. var r: TRegister = x+i
  561. c.gen(n[i], r, {gfIsParam})
  562. if i >= fntyp.signatureLen:
  563. internalAssert c.config, tfVarargs in fntyp.flags
  564. c.gABx(n, opcSetType, r, c.genType(n[i].typ))
  565. if dest < 0:
  566. c.gABC(n, opcIndCall, 0, x, n.len)
  567. else:
  568. c.gABC(n, opcIndCallAsgn, dest, x, n.len)
  569. c.freeTempRange(x, n.len)
  570. template isGlobal(s: PSym): bool = sfGlobal in s.flags and s.kind != skForVar
  571. proc isGlobal(n: PNode): bool = n.kind == nkSym and isGlobal(n.sym)
  572. proc needsAsgnPatch(n: PNode): bool =
  573. n.kind in {nkBracketExpr, nkDotExpr, nkCheckedFieldExpr,
  574. nkDerefExpr, nkHiddenDeref} or (n.kind == nkSym and n.sym.isGlobal)
  575. proc genField(c: PCtx; n: PNode): TRegister =
  576. if n.kind != nkSym or n.sym.kind != skField:
  577. globalError(c.config, n.info, "no field symbol")
  578. let s = n.sym
  579. if s.position > high(typeof(result)):
  580. globalError(c.config, n.info,
  581. "too large offset! cannot generate code for: " & s.name.s)
  582. result = s.position
  583. proc genIndex(c: PCtx; n: PNode; arr: PType): TRegister =
  584. if arr.skipTypes(abstractInst).kind == tyArray and (let x = firstOrd(c.config, arr);
  585. x != Zero):
  586. let tmp = c.genx(n)
  587. # freeing the temporary here means we can produce: regA = regA - Imm
  588. c.freeTemp(tmp)
  589. result = c.getTemp(n.typ)
  590. c.gABI(n, opcSubImmInt, result, tmp, toInt(x))
  591. else:
  592. result = c.genx(n)
  593. proc genCheckedObjAccessAux(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags)
  594. proc genAsgnPatch(c: PCtx; le: PNode, value: TRegister) =
  595. case le.kind
  596. of nkBracketExpr:
  597. let
  598. dest = c.genx(le[0], {gfNode})
  599. idx = c.genIndex(le[1], le[0].typ)
  600. collTyp = le[0].typ.skipTypes(abstractVarRange-{tyTypeDesc})
  601. case collTyp.kind
  602. of tyString, tyCstring:
  603. c.gABC(le, opcWrStrIdx, dest, idx, value)
  604. of tyTuple:
  605. c.gABC(le, opcWrObj, dest, int le[1].intVal, value)
  606. else:
  607. c.gABC(le, opcWrArr, dest, idx, value)
  608. c.freeTemp(dest)
  609. c.freeTemp(idx)
  610. of nkCheckedFieldExpr:
  611. var objR: TDest = -1
  612. genCheckedObjAccessAux(c, le, objR, {gfNode})
  613. let idx = genField(c, le[0][1])
  614. c.gABC(le[0], opcWrObj, objR, idx, value)
  615. c.freeTemp(objR)
  616. of nkDotExpr:
  617. let dest = c.genx(le[0], {gfNode})
  618. let idx = genField(c, le[1])
  619. c.gABC(le, opcWrObj, dest, idx, value)
  620. c.freeTemp(dest)
  621. of nkDerefExpr, nkHiddenDeref:
  622. let dest = c.genx(le[0], {gfNode})
  623. c.gABC(le, opcWrDeref, dest, 0, value)
  624. c.freeTemp(dest)
  625. of nkSym:
  626. if le.sym.isGlobal:
  627. let dest = c.genx(le, {gfNodeAddr})
  628. c.gABC(le, opcWrDeref, dest, 0, value)
  629. c.freeTemp(dest)
  630. else:
  631. discard
  632. proc genNew(c: PCtx; n: PNode) =
  633. let dest = if needsAsgnPatch(n[1]): c.getTemp(n[1].typ)
  634. else: c.genx(n[1])
  635. # we use the ref's base type here as the VM conflates 'ref object'
  636. # and 'object' since internally we already have a pointer.
  637. c.gABx(n, opcNew, dest,
  638. c.genType(n[1].typ.skipTypes(abstractVar-{tyTypeDesc})[0]))
  639. c.genAsgnPatch(n[1], dest)
  640. c.freeTemp(dest)
  641. proc genNewSeq(c: PCtx; n: PNode) =
  642. let t = n[1].typ
  643. let dest = if needsAsgnPatch(n[1]): c.getTemp(t)
  644. else: c.genx(n[1])
  645. let tmp = c.genx(n[2])
  646. c.gABx(n, opcNewSeq, dest, c.genType(t.skipTypes(
  647. abstractVar-{tyTypeDesc})))
  648. c.gABx(n, opcNewSeq, tmp, 0)
  649. c.freeTemp(tmp)
  650. c.genAsgnPatch(n[1], dest)
  651. c.freeTemp(dest)
  652. proc genNewSeqOfCap(c: PCtx; n: PNode; dest: var TDest) =
  653. let t = n.typ
  654. if dest < 0:
  655. dest = c.getTemp(n.typ)
  656. let tmp = c.getTemp(n[1].typ)
  657. c.gABx(n, opcLdNull, dest, c.genType(t))
  658. c.gABx(n, opcLdImmInt, tmp, 0)
  659. c.gABx(n, opcNewSeq, dest, c.genType(t.skipTypes(
  660. abstractVar-{tyTypeDesc})))
  661. c.gABx(n, opcNewSeq, tmp, 0)
  662. c.freeTemp(tmp)
  663. proc genUnaryABC(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  664. let tmp = c.genx(n[1])
  665. if dest < 0: dest = c.getTemp(n.typ)
  666. c.gABC(n, opc, dest, tmp)
  667. c.freeTemp(tmp)
  668. proc genUnaryABI(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode; imm: BiggestInt=0) =
  669. let tmp = c.genx(n[1])
  670. if dest < 0: dest = c.getTemp(n.typ)
  671. c.gABI(n, opc, dest, tmp, imm)
  672. c.freeTemp(tmp)
  673. proc genBinaryABC(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  674. let
  675. tmp = c.genx(n[1])
  676. tmp2 = c.genx(n[2])
  677. if dest < 0: dest = c.getTemp(n.typ)
  678. c.gABC(n, opc, dest, tmp, tmp2)
  679. c.freeTemp(tmp)
  680. c.freeTemp(tmp2)
  681. proc genBinaryABCD(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  682. let
  683. tmp = c.genx(n[1])
  684. tmp2 = c.genx(n[2])
  685. tmp3 = c.genx(n[3])
  686. if dest < 0: dest = c.getTemp(n.typ)
  687. c.gABC(n, opc, dest, tmp, tmp2)
  688. c.gABC(n, opc, tmp3)
  689. c.freeTemp(tmp)
  690. c.freeTemp(tmp2)
  691. c.freeTemp(tmp3)
  692. template sizeOfLikeMsg(name): string =
  693. "'$1' requires '.importc' types to be '.completeStruct'" % [name]
  694. proc genNarrow(c: PCtx; n: PNode; dest: TDest) =
  695. let t = skipTypes(n.typ, abstractVar-{tyTypeDesc})
  696. # uint is uint64 in the VM, we we only need to mask the result for
  697. # other unsigned types:
  698. let size = getSize(c.config, t)
  699. if t.kind in {tyUInt8..tyUInt32} or (t.kind == tyUInt and size < 8):
  700. c.gABC(n, opcNarrowU, dest, TRegister(size*8))
  701. elif t.kind in {tyInt8..tyInt32} or (t.kind == tyInt and size < 8):
  702. c.gABC(n, opcNarrowS, dest, TRegister(size*8))
  703. proc genNarrowU(c: PCtx; n: PNode; dest: TDest) =
  704. let t = skipTypes(n.typ, abstractVar-{tyTypeDesc})
  705. # uint is uint64 in the VM, we we only need to mask the result for
  706. # other unsigned types:
  707. let size = getSize(c.config, t)
  708. if t.kind in {tyUInt8..tyUInt32, tyInt8..tyInt32} or
  709. (t.kind in {tyUInt, tyInt} and size < 8):
  710. c.gABC(n, opcNarrowU, dest, TRegister(size*8))
  711. proc genBinaryABCnarrow(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  712. genBinaryABC(c, n, dest, opc)
  713. genNarrow(c, n, dest)
  714. proc genBinaryABCnarrowU(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  715. genBinaryABC(c, n, dest, opc)
  716. genNarrowU(c, n, dest)
  717. proc genSetType(c: PCtx; n: PNode; dest: TRegister) =
  718. let t = skipTypes(n.typ, abstractInst-{tyTypeDesc})
  719. if t.kind == tySet:
  720. c.gABx(n, opcSetType, dest, c.genType(t))
  721. proc genBinarySet(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  722. let
  723. tmp = c.genx(n[1])
  724. tmp2 = c.genx(n[2])
  725. if dest < 0: dest = c.getTemp(n.typ)
  726. c.genSetType(n[1], tmp)
  727. c.genSetType(n[2], tmp2)
  728. c.gABC(n, opc, dest, tmp, tmp2)
  729. c.freeTemp(tmp)
  730. c.freeTemp(tmp2)
  731. proc genBinaryStmt(c: PCtx; n: PNode; opc: TOpcode) =
  732. let
  733. dest = c.genx(n[1])
  734. tmp = c.genx(n[2])
  735. c.gABC(n, opc, dest, tmp, 0)
  736. c.freeTemp(tmp)
  737. c.freeTemp(dest)
  738. proc genBinaryStmtVar(c: PCtx; n: PNode; opc: TOpcode) =
  739. var x = n[1]
  740. if x.kind in {nkAddr, nkHiddenAddr}: x = x[0]
  741. let
  742. dest = c.genx(x)
  743. tmp = c.genx(n[2])
  744. c.gABC(n, opc, dest, tmp, 0)
  745. #c.genAsgnPatch(n[1], dest)
  746. c.freeTemp(tmp)
  747. c.freeTemp(dest)
  748. proc genUnaryStmt(c: PCtx; n: PNode; opc: TOpcode) =
  749. let tmp = c.genx(n[1])
  750. c.gABC(n, opc, tmp, 0, 0)
  751. c.freeTemp(tmp)
  752. proc genVarargsABC(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  753. if dest < 0: dest = getTemp(c, n.typ)
  754. var x = c.getTempRange(n.len-1, slotTempStr)
  755. for i in 1..<n.len:
  756. var r: TRegister = x+i-1
  757. c.gen(n[i], r)
  758. c.gABC(n, opc, dest, x, n.len-1)
  759. c.freeTempRange(x, n.len-1)
  760. proc isInt8Lit(n: PNode): bool =
  761. if n.kind in {nkCharLit..nkUInt64Lit}:
  762. result = n.intVal >= low(int8) and n.intVal <= high(int8)
  763. else:
  764. result = false
  765. proc isInt16Lit(n: PNode): bool =
  766. if n.kind in {nkCharLit..nkUInt64Lit}:
  767. result = n.intVal >= low(int16) and n.intVal <= high(int16)
  768. else:
  769. result = false
  770. proc genAddSubInt(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode) =
  771. if n[2].isInt8Lit:
  772. let tmp = c.genx(n[1])
  773. if dest < 0: dest = c.getTemp(n.typ)
  774. c.gABI(n, succ(opc), dest, tmp, n[2].intVal)
  775. c.freeTemp(tmp)
  776. else:
  777. genBinaryABC(c, n, dest, opc)
  778. c.genNarrow(n, dest)
  779. proc genConv(c: PCtx; n, arg: PNode; dest: var TDest; opc=opcConv) =
  780. let t2 = n.typ.skipTypes({tyDistinct})
  781. let targ2 = arg.typ.skipTypes({tyDistinct})
  782. proc implicitConv(): bool =
  783. if sameBackendType(t2, targ2): return true
  784. # xxx consider whether to use t2 and targ2 here
  785. if n.typ.kind == arg.typ.kind and arg.typ.kind == tyProc:
  786. # don't do anything for lambda lifting conversions:
  787. result = true
  788. else:
  789. result = false
  790. if implicitConv():
  791. gen(c, arg, dest)
  792. return
  793. let tmp = c.genx(arg)
  794. if dest < 0: dest = c.getTemp(n.typ)
  795. c.gABC(n, opc, dest, tmp)
  796. c.gABx(n, opc, 0, genType(c, n.typ.skipTypes({tyStatic})))
  797. c.gABx(n, opc, 0, genType(c, arg.typ.skipTypes({tyStatic})))
  798. c.freeTemp(tmp)
  799. proc genCard(c: PCtx; n: PNode; dest: var TDest) =
  800. let tmp = c.genx(n[1])
  801. if dest < 0: dest = c.getTemp(n.typ)
  802. c.genSetType(n[1], tmp)
  803. c.gABC(n, opcCard, dest, tmp)
  804. c.freeTemp(tmp)
  805. proc genCastIntFloat(c: PCtx; n: PNode; dest: var TDest) =
  806. const allowedIntegers = {tyInt..tyInt64, tyUInt..tyUInt64, tyChar, tyEnum, tyBool}
  807. var signedIntegers = {tyInt..tyInt64}
  808. var unsignedIntegers = {tyUInt..tyUInt64, tyChar, tyEnum, tyBool}
  809. let src = n[1].typ.skipTypes(abstractRange)#.kind
  810. let dst = n[0].typ.skipTypes(abstractRange)#.kind
  811. let srcSize = getSize(c.config, src)
  812. let dstSize = getSize(c.config, dst)
  813. const unsupportedCastDifferentSize =
  814. "VM does not support 'cast' from $1 with size $2 to $3 with size $4 due to different sizes"
  815. if src.kind in allowedIntegers and dst.kind in allowedIntegers:
  816. let tmp = c.genx(n[1])
  817. if dest < 0: dest = c.getTemp(n[0].typ)
  818. c.gABC(n, opcAsgnInt, dest, tmp)
  819. if dstSize != sizeof(BiggestInt): # don't do anything on biggest int types
  820. if dst.kind in signedIntegers: # we need to do sign extensions
  821. if dstSize <= srcSize:
  822. # Sign extension can be omitted when the size increases.
  823. c.gABC(n, opcSignExtend, dest, TRegister(dstSize*8))
  824. elif dst.kind in unsignedIntegers:
  825. if src.kind in signedIntegers or dstSize < srcSize:
  826. # Cast from signed to unsigned always needs narrowing. Cast
  827. # from unsigned to unsigned only needs narrowing when target
  828. # is smaller than source.
  829. c.gABC(n, opcNarrowU, dest, TRegister(dstSize*8))
  830. c.freeTemp(tmp)
  831. elif src.kind in allowedIntegers and
  832. dst.kind in {tyFloat, tyFloat32, tyFloat64}:
  833. if srcSize != dstSize:
  834. globalError(c.config, n.info, unsupportedCastDifferentSize %
  835. [$src.kind, $srcSize, $dst.kind, $dstSize])
  836. let tmp = c.genx(n[1])
  837. if dest < 0: dest = c.getTemp(n[0].typ)
  838. if dst.kind == tyFloat32:
  839. c.gABC(n, opcCastIntToFloat32, dest, tmp)
  840. else:
  841. c.gABC(n, opcCastIntToFloat64, dest, tmp)
  842. c.freeTemp(tmp)
  843. elif src.kind in {tyFloat, tyFloat32, tyFloat64} and
  844. dst.kind in allowedIntegers:
  845. if srcSize != dstSize:
  846. globalError(c.config, n.info, unsupportedCastDifferentSize %
  847. [$src.kind, $srcSize, $dst.kind, $dstSize])
  848. let tmp = c.genx(n[1])
  849. if dest < 0: dest = c.getTemp(n[0].typ)
  850. if src.kind == tyFloat32:
  851. c.gABC(n, opcCastFloatToInt32, dest, tmp)
  852. if dst.kind in unsignedIntegers:
  853. # integers are sign extended by default.
  854. # since there is no opcCastFloatToUInt32, narrowing should do the trick.
  855. c.gABC(n, opcNarrowU, dest, TRegister(32))
  856. else:
  857. c.gABC(n, opcCastFloatToInt64, dest, tmp)
  858. # narrowing for 64 bits not needed (no extended sign bits available).
  859. c.freeTemp(tmp)
  860. elif src.kind in PtrLikeKinds + {tyRef} and dst.kind == tyInt:
  861. let tmp = c.genx(n[1])
  862. if dest < 0: dest = c.getTemp(n[0].typ)
  863. var imm: BiggestInt = if src.kind in PtrLikeKinds: 1 else: 2
  864. c.gABI(n, opcCastPtrToInt, dest, tmp, imm)
  865. c.freeTemp(tmp)
  866. elif src.kind in PtrLikeKinds + {tyInt} and dst.kind in PtrLikeKinds:
  867. let tmp = c.genx(n[1])
  868. if dest < 0: dest = c.getTemp(n[0].typ)
  869. c.gABx(n, opcSetType, dest, c.genType(dst))
  870. c.gABC(n, opcCastIntToPtr, dest, tmp)
  871. c.freeTemp(tmp)
  872. elif src.kind == tyNil and dst.kind in NilableTypes:
  873. # supports casting nil literals to NilableTypes in VM
  874. # see #16024
  875. if dest < 0: dest = c.getTemp(n[0].typ)
  876. genLit(c, n[1], dest)
  877. else:
  878. # todo: support cast from tyInt to tyRef
  879. globalError(c.config, n.info, "VM does not support 'cast' from " & $src.kind & " to " & $dst.kind)
  880. proc genVoidABC(c: PCtx, n: PNode, dest: TDest, opcode: TOpcode) =
  881. unused(c, n, dest)
  882. var
  883. tmp1 = c.genx(n[1])
  884. tmp2 = c.genx(n[2])
  885. tmp3 = c.genx(n[3])
  886. c.gABC(n, opcode, tmp1, tmp2, tmp3)
  887. c.freeTemp(tmp1)
  888. c.freeTemp(tmp2)
  889. c.freeTemp(tmp3)
  890. proc genBindSym(c: PCtx; n: PNode; dest: var TDest) =
  891. # nah, cannot use c.config.features because sempass context
  892. # can have local experimental switch
  893. # if dynamicBindSym notin c.config.features:
  894. if n.len == 2: # hmm, reliable?
  895. # bindSym with static input
  896. if n[1].kind in {nkClosedSymChoice, nkOpenSymChoice, nkSym}:
  897. let idx = c.genLiteral(n[1])
  898. if dest < 0: dest = c.getTemp(n.typ)
  899. c.gABx(n, opcNBindSym, dest, idx)
  900. else:
  901. localError(c.config, n.info, "invalid bindSym usage")
  902. else:
  903. # experimental bindSym
  904. if dest < 0: dest = c.getTemp(n.typ)
  905. let x = c.getTempRange(n.len, slotTempUnknown)
  906. # callee symbol
  907. var tmp0 = TDest(x)
  908. c.genLit(n[0], tmp0)
  909. # original parameters
  910. for i in 1..<n.len-2:
  911. var r = TRegister(x+i)
  912. c.gen(n[i], r)
  913. # info node
  914. var tmp1 = TDest(x+n.len-2)
  915. c.genLit(n[^2], tmp1)
  916. # payload idx
  917. var tmp2 = TDest(x+n.len-1)
  918. c.genLit(n[^1], tmp2)
  919. c.gABC(n, opcNDynBindSym, dest, x, n.len)
  920. c.freeTempRange(x, n.len)
  921. proc fitsRegister*(t: PType): bool =
  922. assert t != nil
  923. t.skipTypes(abstractInst + {tyStatic} - {tyTypeDesc}).kind in {
  924. tyRange, tyEnum, tyBool, tyInt..tyUInt64, tyChar}
  925. proc ldNullOpcode(t: PType): TOpcode =
  926. assert t != nil
  927. if fitsRegister(t): opcLdNullReg else: opcLdNull
  928. proc whichAsgnOpc(n: PNode; requiresCopy = true): TOpcode =
  929. case n.typ.skipTypes(abstractRange+{tyOwned}-{tyTypeDesc}).kind
  930. of tyBool, tyChar, tyEnum, tyOrdinal, tyInt..tyInt64, tyUInt..tyUInt64:
  931. opcAsgnInt
  932. of tyFloat..tyFloat128:
  933. opcAsgnFloat
  934. of tyRef, tyNil, tyVar, tyLent, tyPtr:
  935. opcAsgnRef
  936. else:
  937. (if requiresCopy: opcAsgnComplex else: opcFastAsgnComplex)
  938. proc genMagic(c: PCtx; n: PNode; dest: var TDest; m: TMagic) =
  939. case m
  940. of mAnd: c.genAndOr(n, opcFJmp, dest)
  941. of mOr: c.genAndOr(n, opcTJmp, dest)
  942. of mPred, mSubI:
  943. c.genAddSubInt(n, dest, opcSubInt)
  944. of mSucc, mAddI:
  945. c.genAddSubInt(n, dest, opcAddInt)
  946. of mInc, mDec:
  947. unused(c, n, dest)
  948. let isUnsigned = n[1].typ.skipTypes(abstractVarRange).kind in {tyUInt..tyUInt64}
  949. let opc = if not isUnsigned:
  950. if m == mInc: opcAddInt else: opcSubInt
  951. else:
  952. if m == mInc: opcAddu else: opcSubu
  953. let d = c.genx(n[1])
  954. if n[2].isInt8Lit and not isUnsigned:
  955. c.gABI(n, succ(opc), d, d, n[2].intVal)
  956. else:
  957. let tmp = c.genx(n[2])
  958. c.gABC(n, opc, d, d, tmp)
  959. c.freeTemp(tmp)
  960. c.genNarrow(n[1], d)
  961. c.genAsgnPatch(n[1], d)
  962. c.freeTemp(d)
  963. of mOrd, mChr, mArrToSeq, mUnown: c.gen(n[1], dest)
  964. of generatedMagics:
  965. genCall(c, n, dest)
  966. of mNew, mNewFinalize:
  967. unused(c, n, dest)
  968. c.genNew(n)
  969. of mNewSeq:
  970. unused(c, n, dest)
  971. c.genNewSeq(n)
  972. of mNewSeqOfCap: c.genNewSeqOfCap(n, dest)
  973. of mNewString:
  974. genUnaryABC(c, n, dest, opcNewStr)
  975. # XXX buggy
  976. of mNewStringOfCap:
  977. # we ignore the 'cap' argument and translate it as 'newString(0)'.
  978. # eval n[1] for possible side effects:
  979. c.freeTemp(c.genx(n[1]))
  980. var tmp = c.getTemp(n[1].typ)
  981. c.gABx(n, opcLdImmInt, tmp, 0)
  982. if dest < 0: dest = c.getTemp(n.typ)
  983. c.gABC(n, opcNewStr, dest, tmp)
  984. c.freeTemp(tmp)
  985. # XXX buggy
  986. of mLengthOpenArray, mLengthArray, mLengthSeq:
  987. genUnaryABI(c, n, dest, opcLenSeq)
  988. of mLengthStr:
  989. case n[1].typ.skipTypes(abstractVarRange).kind
  990. of tyString: genUnaryABI(c, n, dest, opcLenStr)
  991. of tyCstring: genUnaryABI(c, n, dest, opcLenCstring)
  992. else: raiseAssert $n[1].typ.kind
  993. of mSlice:
  994. var
  995. d = c.genx(n[1])
  996. left = c.genIndex(n[2], n[1].typ)
  997. right = c.genIndex(n[3], n[1].typ)
  998. if dest < 0: dest = c.getTemp(n.typ)
  999. c.gABC(n, opcNodeToReg, dest, d)
  1000. c.gABC(n, opcSlice, dest, left, right)
  1001. c.freeTemp(left)
  1002. c.freeTemp(right)
  1003. c.freeTemp(d)
  1004. of mIncl, mExcl:
  1005. unused(c, n, dest)
  1006. var d = c.genx(n[1])
  1007. var tmp = c.genx(n[2])
  1008. c.genSetType(n[1], d)
  1009. c.gABC(n, if m == mIncl: opcIncl else: opcExcl, d, tmp)
  1010. c.freeTemp(d)
  1011. c.freeTemp(tmp)
  1012. of mCard: genCard(c, n, dest)
  1013. of mMulI: genBinaryABCnarrow(c, n, dest, opcMulInt)
  1014. of mDivI: genBinaryABCnarrow(c, n, dest, opcDivInt)
  1015. of mModI: genBinaryABCnarrow(c, n, dest, opcModInt)
  1016. of mAddF64: genBinaryABC(c, n, dest, opcAddFloat)
  1017. of mSubF64: genBinaryABC(c, n, dest, opcSubFloat)
  1018. of mMulF64: genBinaryABC(c, n, dest, opcMulFloat)
  1019. of mDivF64: genBinaryABC(c, n, dest, opcDivFloat)
  1020. of mShrI:
  1021. # modified: genBinaryABC(c, n, dest, opcShrInt)
  1022. # narrowU is applied to the left operandthe idea here is to narrow the left operand
  1023. let tmp = c.genx(n[1])
  1024. c.genNarrowU(n, tmp)
  1025. let tmp2 = c.genx(n[2])
  1026. if dest < 0: dest = c.getTemp(n.typ)
  1027. c.gABC(n, opcShrInt, dest, tmp, tmp2)
  1028. c.freeTemp(tmp)
  1029. c.freeTemp(tmp2)
  1030. of mShlI:
  1031. genBinaryABC(c, n, dest, opcShlInt)
  1032. # genNarrowU modified
  1033. let t = skipTypes(n.typ, abstractVar-{tyTypeDesc})
  1034. let size = getSize(c.config, t)
  1035. if t.kind in {tyUInt8..tyUInt32} or (t.kind == tyUInt and size < 8):
  1036. c.gABC(n, opcNarrowU, dest, TRegister(size*8))
  1037. elif t.kind in {tyInt8..tyInt32} or (t.kind == tyInt and size < 8):
  1038. c.gABC(n, opcSignExtend, dest, TRegister(size*8))
  1039. of mAshrI: genBinaryABC(c, n, dest, opcAshrInt)
  1040. of mBitandI: genBinaryABC(c, n, dest, opcBitandInt)
  1041. of mBitorI: genBinaryABC(c, n, dest, opcBitorInt)
  1042. of mBitxorI: genBinaryABC(c, n, dest, opcBitxorInt)
  1043. of mAddU: genBinaryABCnarrowU(c, n, dest, opcAddu)
  1044. of mSubU: genBinaryABCnarrowU(c, n, dest, opcSubu)
  1045. of mMulU: genBinaryABCnarrowU(c, n, dest, opcMulu)
  1046. of mDivU: genBinaryABCnarrowU(c, n, dest, opcDivu)
  1047. of mModU: genBinaryABCnarrowU(c, n, dest, opcModu)
  1048. of mEqI, mEqB, mEqEnum, mEqCh:
  1049. genBinaryABC(c, n, dest, opcEqInt)
  1050. of mLeI, mLeEnum, mLeCh, mLeB:
  1051. genBinaryABC(c, n, dest, opcLeInt)
  1052. of mLtI, mLtEnum, mLtCh, mLtB:
  1053. genBinaryABC(c, n, dest, opcLtInt)
  1054. of mEqF64: genBinaryABC(c, n, dest, opcEqFloat)
  1055. of mLeF64: genBinaryABC(c, n, dest, opcLeFloat)
  1056. of mLtF64: genBinaryABC(c, n, dest, opcLtFloat)
  1057. of mLePtr, mLeU: genBinaryABC(c, n, dest, opcLeu)
  1058. of mLtPtr, mLtU: genBinaryABC(c, n, dest, opcLtu)
  1059. of mEqProc, mEqRef:
  1060. genBinaryABC(c, n, dest, opcEqRef)
  1061. of mXor: genBinaryABC(c, n, dest, opcXor)
  1062. of mNot: genUnaryABC(c, n, dest, opcNot)
  1063. of mUnaryMinusI, mUnaryMinusI64:
  1064. genUnaryABC(c, n, dest, opcUnaryMinusInt)
  1065. genNarrow(c, n, dest)
  1066. of mUnaryMinusF64: genUnaryABC(c, n, dest, opcUnaryMinusFloat)
  1067. of mUnaryPlusI, mUnaryPlusF64: gen(c, n[1], dest)
  1068. of mBitnotI:
  1069. genUnaryABC(c, n, dest, opcBitnotInt)
  1070. #genNarrowU modified, do not narrow signed types
  1071. let t = skipTypes(n.typ, abstractVar-{tyTypeDesc})
  1072. let size = getSize(c.config, t)
  1073. if t.kind in {tyUInt8..tyUInt32} or (t.kind == tyUInt and size < 8):
  1074. c.gABC(n, opcNarrowU, dest, TRegister(size*8))
  1075. of mCharToStr, mBoolToStr, mCStrToStr, mStrToStr, mEnumToStr:
  1076. genConv(c, n, n[1], dest)
  1077. of mEqStr: genBinaryABC(c, n, dest, opcEqStr)
  1078. of mEqCString: genBinaryABC(c, n, dest, opcEqCString)
  1079. of mLeStr: genBinaryABC(c, n, dest, opcLeStr)
  1080. of mLtStr: genBinaryABC(c, n, dest, opcLtStr)
  1081. of mEqSet: genBinarySet(c, n, dest, opcEqSet)
  1082. of mLeSet: genBinarySet(c, n, dest, opcLeSet)
  1083. of mLtSet: genBinarySet(c, n, dest, opcLtSet)
  1084. of mMulSet: genBinarySet(c, n, dest, opcMulSet)
  1085. of mPlusSet: genBinarySet(c, n, dest, opcPlusSet)
  1086. of mMinusSet: genBinarySet(c, n, dest, opcMinusSet)
  1087. of mConStrStr: genVarargsABC(c, n, dest, opcConcatStr)
  1088. of mInSet: genBinarySet(c, n, dest, opcContainsSet)
  1089. of mRepr: genUnaryABC(c, n, dest, opcRepr)
  1090. of mExit:
  1091. unused(c, n, dest)
  1092. var tmp = c.genx(n[1])
  1093. c.gABC(n, opcQuit, tmp)
  1094. c.freeTemp(tmp)
  1095. of mSetLengthStr, mSetLengthSeq:
  1096. unused(c, n, dest)
  1097. var d = c.genx(n[1])
  1098. var tmp = c.genx(n[2])
  1099. c.gABC(n, if m == mSetLengthStr: opcSetLenStr else: opcSetLenSeq, d, tmp)
  1100. c.genAsgnPatch(n[1], d)
  1101. c.freeTemp(tmp)
  1102. c.freeTemp(d)
  1103. of mSwap:
  1104. unused(c, n, dest)
  1105. c.gen(lowerSwap(c.graph, n, c.idgen, if c.prc == nil or c.prc.sym == nil: c.module else: c.prc.sym))
  1106. of mIsNil: genUnaryABC(c, n, dest, opcIsNil)
  1107. of mParseBiggestFloat:
  1108. if dest < 0: dest = c.getTemp(n.typ)
  1109. var d2: TRegister
  1110. # skip 'nkHiddenAddr':
  1111. let d2AsNode = n[2][0]
  1112. if needsAsgnPatch(d2AsNode):
  1113. d2 = c.getTemp(getSysType(c.graph, n.info, tyFloat))
  1114. else:
  1115. d2 = c.genx(d2AsNode)
  1116. var
  1117. tmp1 = c.genx(n[1])
  1118. c.gABC(n, opcParseFloat, dest, tmp1, d2)
  1119. c.freeTemp(tmp1)
  1120. c.genAsgnPatch(d2AsNode, d2)
  1121. c.freeTemp(d2)
  1122. of mReset:
  1123. unused(c, n, dest)
  1124. var d = c.genx(n[1])
  1125. # XXX use ldNullOpcode() here?
  1126. c.gABx(n, opcLdNull, d, c.genType(n[1].typ))
  1127. c.gABC(n, opcNodeToReg, d, d)
  1128. c.genAsgnPatch(n[1], d)
  1129. of mDefault, mZeroDefault:
  1130. if dest < 0: dest = c.getTemp(n.typ)
  1131. c.gABx(n, ldNullOpcode(n.typ), dest, c.genType(n.typ))
  1132. of mOf, mIs:
  1133. if dest < 0: dest = c.getTemp(n.typ)
  1134. var tmp = c.genx(n[1])
  1135. var idx = c.getTemp(getSysType(c.graph, n.info, tyInt))
  1136. var typ = n[2].typ
  1137. if m == mOf: typ = typ.skipTypes(abstractPtrs)
  1138. c.gABx(n, opcLdImmInt, idx, c.genType(typ))
  1139. c.gABC(n, if m == mOf: opcOf else: opcIs, dest, tmp, idx)
  1140. c.freeTemp(tmp)
  1141. c.freeTemp(idx)
  1142. of mHigh:
  1143. if dest < 0: dest = c.getTemp(n.typ)
  1144. let tmp = c.genx(n[1])
  1145. case n[1].typ.skipTypes(abstractVar-{tyTypeDesc}).kind:
  1146. of tyString: c.gABI(n, opcLenStr, dest, tmp, 1)
  1147. of tyCstring: c.gABI(n, opcLenCstring, dest, tmp, 1)
  1148. else: c.gABI(n, opcLenSeq, dest, tmp, 1)
  1149. c.freeTemp(tmp)
  1150. of mEcho:
  1151. unused(c, n, dest)
  1152. let n = n[1].skipConv
  1153. if n.kind == nkBracket:
  1154. # can happen for nim check, see bug #9609
  1155. let x = c.getTempRange(n.len, slotTempUnknown)
  1156. for i in 0..<n.len:
  1157. var r: TRegister = x+i
  1158. c.gen(n[i], r)
  1159. c.gABC(n, opcEcho, x, n.len)
  1160. c.freeTempRange(x, n.len)
  1161. of mAppendStrCh:
  1162. unused(c, n, dest)
  1163. genBinaryStmtVar(c, n, opcAddStrCh)
  1164. of mAppendStrStr:
  1165. unused(c, n, dest)
  1166. genBinaryStmtVar(c, n, opcAddStrStr)
  1167. of mAppendSeqElem:
  1168. unused(c, n, dest)
  1169. genBinaryStmtVar(c, n, opcAddSeqElem)
  1170. of mParseExprToAst:
  1171. genBinaryABC(c, n, dest, opcParseExprToAst)
  1172. of mParseStmtToAst:
  1173. genBinaryABC(c, n, dest, opcParseStmtToAst)
  1174. of mTypeTrait:
  1175. let tmp = c.genx(n[1])
  1176. if dest < 0: dest = c.getTemp(n.typ)
  1177. c.gABx(n, opcSetType, tmp, c.genType(n[1].typ))
  1178. c.gABC(n, opcTypeTrait, dest, tmp)
  1179. c.freeTemp(tmp)
  1180. of mSlurp: genUnaryABC(c, n, dest, opcSlurp)
  1181. of mStaticExec: genBinaryABCD(c, n, dest, opcGorge)
  1182. of mNLen: genUnaryABI(c, n, dest, opcLenSeq, nimNodeFlag)
  1183. of mGetImpl: genUnaryABC(c, n, dest, opcGetImpl)
  1184. of mGetImplTransf: genUnaryABC(c, n, dest, opcGetImplTransf)
  1185. of mSymOwner: genUnaryABC(c, n, dest, opcSymOwner)
  1186. of mSymIsInstantiationOf: genBinaryABC(c, n, dest, opcSymIsInstantiationOf)
  1187. of mNChild: genBinaryABC(c, n, dest, opcNChild)
  1188. of mNSetChild: genVoidABC(c, n, dest, opcNSetChild)
  1189. of mNDel: genVoidABC(c, n, dest, opcNDel)
  1190. of mNAdd: genBinaryABC(c, n, dest, opcNAdd)
  1191. of mNAddMultiple: genBinaryABC(c, n, dest, opcNAddMultiple)
  1192. of mNKind: genUnaryABC(c, n, dest, opcNKind)
  1193. of mNSymKind: genUnaryABC(c, n, dest, opcNSymKind)
  1194. of mNccValue: genUnaryABC(c, n, dest, opcNccValue)
  1195. of mNccInc: genBinaryABC(c, n, dest, opcNccInc)
  1196. of mNcsAdd: genBinaryABC(c, n, dest, opcNcsAdd)
  1197. of mNcsIncl: genBinaryABC(c, n, dest, opcNcsIncl)
  1198. of mNcsLen: genUnaryABC(c, n, dest, opcNcsLen)
  1199. of mNcsAt: genBinaryABC(c, n, dest, opcNcsAt)
  1200. of mNctPut: genVoidABC(c, n, dest, opcNctPut)
  1201. of mNctLen: genUnaryABC(c, n, dest, opcNctLen)
  1202. of mNctGet: genBinaryABC(c, n, dest, opcNctGet)
  1203. of mNctHasNext: genBinaryABC(c, n, dest, opcNctHasNext)
  1204. of mNctNext: genBinaryABC(c, n, dest, opcNctNext)
  1205. of mNIntVal: genUnaryABC(c, n, dest, opcNIntVal)
  1206. of mNFloatVal: genUnaryABC(c, n, dest, opcNFloatVal)
  1207. of mNGetType:
  1208. let tmp = c.genx(n[1])
  1209. if dest < 0: dest = c.getTemp(n.typ)
  1210. let rc = case n[0].sym.name.s:
  1211. of "getType": 0
  1212. of "typeKind": 1
  1213. of "getTypeInst": 2
  1214. else: 3 # "getTypeImpl"
  1215. c.gABC(n, opcNGetType, dest, tmp, rc)
  1216. c.freeTemp(tmp)
  1217. #genUnaryABC(c, n, dest, opcNGetType)
  1218. of mNSizeOf:
  1219. let imm = case n[0].sym.name.s:
  1220. of "getSize": 0
  1221. of "getAlign": 1
  1222. else: 2 # "getOffset"
  1223. c.genUnaryABI(n, dest, opcNGetSize, imm)
  1224. of mNStrVal: genUnaryABC(c, n, dest, opcNStrVal)
  1225. of mNSigHash: genUnaryABC(c, n , dest, opcNSigHash)
  1226. of mNSetIntVal:
  1227. unused(c, n, dest)
  1228. genBinaryStmt(c, n, opcNSetIntVal)
  1229. of mNSetFloatVal:
  1230. unused(c, n, dest)
  1231. genBinaryStmt(c, n, opcNSetFloatVal)
  1232. of mNSetStrVal:
  1233. unused(c, n, dest)
  1234. genBinaryStmt(c, n, opcNSetStrVal)
  1235. of mNNewNimNode: genBinaryABC(c, n, dest, opcNNewNimNode)
  1236. of mNCopyNimNode: genUnaryABC(c, n, dest, opcNCopyNimNode)
  1237. of mNCopyNimTree: genUnaryABC(c, n, dest, opcNCopyNimTree)
  1238. of mNBindSym: genBindSym(c, n, dest)
  1239. of mStrToIdent: genUnaryABC(c, n, dest, opcStrToIdent)
  1240. of mEqIdent: genBinaryABC(c, n, dest, opcEqIdent)
  1241. of mEqNimrodNode: genBinaryABC(c, n, dest, opcEqNimNode)
  1242. of mSameNodeType: genBinaryABC(c, n, dest, opcSameNodeType)
  1243. of mNLineInfo:
  1244. case n[0].sym.name.s
  1245. of "getFile": genUnaryABI(c, n, dest, opcNGetLineInfo, 0)
  1246. of "getLine": genUnaryABI(c, n, dest, opcNGetLineInfo, 1)
  1247. of "getColumn": genUnaryABI(c, n, dest, opcNGetLineInfo, 2)
  1248. of "copyLineInfo":
  1249. internalAssert c.config, n.len == 3
  1250. unused(c, n, dest)
  1251. genBinaryStmt(c, n, opcNCopyLineInfo)
  1252. of "setLine":
  1253. internalAssert c.config, n.len == 3
  1254. unused(c, n, dest)
  1255. genBinaryStmt(c, n, opcNSetLineInfoLine)
  1256. of "setColumn":
  1257. internalAssert c.config, n.len == 3
  1258. unused(c, n, dest)
  1259. genBinaryStmt(c, n, opcNSetLineInfoColumn)
  1260. of "setFile":
  1261. internalAssert c.config, n.len == 3
  1262. unused(c, n, dest)
  1263. genBinaryStmt(c, n, opcNSetLineInfoFile)
  1264. else: internalAssert c.config, false
  1265. of mNHint:
  1266. unused(c, n, dest)
  1267. genBinaryStmt(c, n, opcNHint)
  1268. of mNWarning:
  1269. unused(c, n, dest)
  1270. genBinaryStmt(c, n, opcNWarning)
  1271. of mNError:
  1272. if n.len <= 1:
  1273. # query error condition:
  1274. c.gABC(n, opcQueryErrorFlag, dest)
  1275. else:
  1276. # setter
  1277. unused(c, n, dest)
  1278. genBinaryStmt(c, n, opcNError)
  1279. of mNCallSite:
  1280. if dest < 0: dest = c.getTemp(n.typ)
  1281. c.gABC(n, opcCallSite, dest)
  1282. of mNGenSym: genBinaryABC(c, n, dest, opcGenSym)
  1283. of mMinI, mMaxI, mAbsI, mDotDot:
  1284. c.genCall(n, dest)
  1285. of mExpandToAst:
  1286. if n.len != 2:
  1287. globalError(c.config, n.info, "expandToAst requires 1 argument")
  1288. let arg = n[1]
  1289. if arg.kind in nkCallKinds:
  1290. #if arg[0].kind != nkSym or arg[0].sym.kind notin {skTemplate, skMacro}:
  1291. # "ExpandToAst: expanded symbol is no macro or template"
  1292. if dest < 0: dest = c.getTemp(n.typ)
  1293. c.genCall(arg, dest)
  1294. # do not call clearDest(n, dest) here as getAst has a meta-type as such
  1295. # produces a value
  1296. else:
  1297. globalError(c.config, n.info, "expandToAst requires a call expression")
  1298. of mSizeOf:
  1299. globalError(c.config, n.info, sizeOfLikeMsg("sizeof"))
  1300. of mAlignOf:
  1301. globalError(c.config, n.info, sizeOfLikeMsg("alignof"))
  1302. of mOffsetOf:
  1303. globalError(c.config, n.info, sizeOfLikeMsg("offsetof"))
  1304. of mRunnableExamples:
  1305. discard "just ignore any call to runnableExamples"
  1306. of mDestroy, mTrace: discard "ignore calls to the default destructor"
  1307. of mEnsureMove:
  1308. gen(c, n[1], dest)
  1309. of mMove:
  1310. let arg = n[1]
  1311. let a = c.genx(arg)
  1312. if dest < 0: dest = c.getTemp(arg.typ)
  1313. gABC(c, arg, whichAsgnOpc(arg, requiresCopy=false), dest, a)
  1314. # XXX use ldNullOpcode() here?
  1315. # Don't zero out the arg for now #17199
  1316. # c.gABx(n, opcLdNull, a, c.genType(arg.typ))
  1317. # c.gABx(n, opcNodeToReg, a, a)
  1318. # c.genAsgnPatch(arg, a)
  1319. c.freeTemp(a)
  1320. of mDup:
  1321. let arg = n[1]
  1322. let a = c.genx(arg)
  1323. if dest < 0: dest = c.getTemp(arg.typ)
  1324. gABC(c, arg, whichAsgnOpc(arg, requiresCopy=false), dest, a)
  1325. c.freeTemp(a)
  1326. of mNodeId:
  1327. c.genUnaryABC(n, dest, opcNodeId)
  1328. else:
  1329. # mGCref, mGCunref,
  1330. globalError(c.config, n.info, "cannot generate code for: " & $m)
  1331. proc unneededIndirection(n: PNode): bool =
  1332. n.typ.skipTypes(abstractInstOwned-{tyTypeDesc}).kind == tyRef
  1333. proc canElimAddr(n: PNode; idgen: IdGenerator): PNode =
  1334. result = nil
  1335. case n[0].kind
  1336. of nkObjUpConv, nkObjDownConv, nkChckRange, nkChckRangeF, nkChckRange64:
  1337. var m = n[0][0]
  1338. if m.kind in {nkDerefExpr, nkHiddenDeref}:
  1339. # addr ( nkConv ( deref ( x ) ) ) --> nkConv(x)
  1340. result = copyNode(n[0])
  1341. result.add m[0]
  1342. if n.typ.skipTypes(abstractVar).kind != tyOpenArray:
  1343. result.typ = n.typ
  1344. elif n.typ.skipTypes(abstractInst).kind in {tyVar}:
  1345. result.typ = toVar(result.typ, n.typ.skipTypes(abstractInst).kind, idgen)
  1346. of nkHiddenStdConv, nkHiddenSubConv, nkConv:
  1347. var m = n[0][1]
  1348. if m.kind in {nkDerefExpr, nkHiddenDeref}:
  1349. # addr ( nkConv ( deref ( x ) ) ) --> nkConv(x)
  1350. result = copyNode(n[0])
  1351. result.add n[0][0]
  1352. result.add m[0]
  1353. if n.typ.skipTypes(abstractVar).kind != tyOpenArray:
  1354. result.typ = n.typ
  1355. elif n.typ.skipTypes(abstractInst).kind in {tyVar}:
  1356. result.typ = toVar(result.typ, n.typ.skipTypes(abstractInst).kind, idgen)
  1357. else:
  1358. if n[0].kind in {nkDerefExpr, nkHiddenDeref}:
  1359. # addr ( deref ( x )) --> x
  1360. result = n[0][0]
  1361. proc genAddr(c: PCtx, n: PNode, dest: var TDest, flags: TGenFlags) =
  1362. if (let m = canElimAddr(n, c.idgen); m != nil):
  1363. gen(c, m, dest, flags)
  1364. return
  1365. let newflags = flags-{gfNode}+{gfNodeAddr}
  1366. if isGlobal(n[0]) or n[0].kind in {nkDotExpr, nkCheckedFieldExpr, nkBracketExpr}:
  1367. # checking for this pattern: addr(obj.field) / addr(array[i])
  1368. gen(c, n[0], dest, newflags)
  1369. else:
  1370. let tmp = c.genx(n[0], newflags)
  1371. if dest < 0: dest = c.getTemp(n.typ)
  1372. if c.prc.regInfo[tmp].kind >= slotTempUnknown:
  1373. gABC(c, n, opcAddrNode, dest, tmp)
  1374. # hack ahead; in order to fix bug #1781 we mark the temporary as
  1375. # permanent, so that it's not used for anything else:
  1376. c.prc.regInfo[tmp].kind = slotTempPerm
  1377. # XXX this is still a hack
  1378. #message(c.congig, n.info, warnUser, "suspicious opcode used")
  1379. else:
  1380. gABC(c, n, opcAddrReg, dest, tmp)
  1381. c.freeTemp(tmp)
  1382. proc genDeref(c: PCtx, n: PNode, dest: var TDest, flags: TGenFlags) =
  1383. if unneededIndirection(n[0]):
  1384. gen(c, n[0], dest, flags)
  1385. if {gfNodeAddr, gfNode} * flags == {} and fitsRegister(n.typ):
  1386. c.gABC(n, opcNodeToReg, dest, dest)
  1387. else:
  1388. let tmp = c.genx(n[0], flags)
  1389. if dest < 0: dest = c.getTemp(n.typ)
  1390. gABC(c, n, opcLdDeref, dest, tmp)
  1391. assert n.typ != nil
  1392. if {gfNodeAddr, gfNode} * flags == {} and fitsRegister(n.typ):
  1393. c.gABC(n, opcNodeToReg, dest, dest)
  1394. c.freeTemp(tmp)
  1395. proc genAsgn(c: PCtx; dest: TDest; ri: PNode; requiresCopy: bool) =
  1396. let tmp = c.genx(ri)
  1397. assert dest >= 0
  1398. gABC(c, ri, whichAsgnOpc(ri, requiresCopy), dest, tmp)
  1399. c.freeTemp(tmp)
  1400. proc setSlot(c: PCtx; v: PSym) =
  1401. # XXX generate type initialization here?
  1402. if v.position == 0:
  1403. v.position = getFreeRegister(c, if v.kind == skLet: slotFixedLet else: slotFixedVar, start = 1)
  1404. proc cannotEval(c: PCtx; n: PNode) {.noinline.} =
  1405. globalError(c.config, n.info, "cannot evaluate at compile time: " &
  1406. n.renderTree)
  1407. proc isOwnedBy(a, b: PSym): bool =
  1408. result = false
  1409. var a = a.owner
  1410. while a != nil and a.kind != skModule:
  1411. if a == b: return true
  1412. a = a.owner
  1413. proc getOwner(c: PCtx): PSym =
  1414. result = c.prc.sym
  1415. if result.isNil: result = c.module
  1416. proc importcCondVar*(s: PSym): bool {.inline.} =
  1417. # see also importcCond
  1418. if sfImportc in s.flags:
  1419. result = s.kind in {skVar, skLet, skConst}
  1420. else:
  1421. result = false
  1422. proc checkCanEval(c: PCtx; n: PNode) =
  1423. # we need to ensure that we don't evaluate 'x' here:
  1424. # proc foo() = var x ...
  1425. let s = n.sym
  1426. if {sfCompileTime, sfGlobal} <= s.flags: return
  1427. if compiletimeFFI in c.config.features and s.importcCondVar: return
  1428. if s.kind in {skVar, skTemp, skLet, skParam, skResult} and
  1429. not s.isOwnedBy(c.prc.sym) and s.owner != c.module and c.mode != emRepl:
  1430. # little hack ahead for bug #12612: assume gensym'ed variables
  1431. # are in the right scope:
  1432. if sfGenSym in s.flags and c.prc.sym == nil: discard
  1433. elif s.kind == skParam and s.typ.kind == tyTypeDesc: discard
  1434. else: cannotEval(c, n)
  1435. elif s.kind in {skProc, skFunc, skConverter, skMethod,
  1436. skIterator} and sfForward in s.flags:
  1437. cannotEval(c, n)
  1438. template needsAdditionalCopy(n): untyped =
  1439. not c.isTemp(dest) and not fitsRegister(n.typ)
  1440. proc genAdditionalCopy(c: PCtx; n: PNode; opc: TOpcode;
  1441. dest, idx, value: TRegister) =
  1442. var cc = c.getTemp(n.typ)
  1443. c.gABC(n, whichAsgnOpc(n), cc, value)
  1444. c.gABC(n, opc, dest, idx, cc)
  1445. c.freeTemp(cc)
  1446. proc preventFalseAlias(c: PCtx; n: PNode; opc: TOpcode;
  1447. dest, idx, value: TRegister) =
  1448. # opcLdObj et al really means "load address". We sometimes have to create a
  1449. # copy in order to not introduce false aliasing:
  1450. # mylocal = a.b # needs a copy of the data!
  1451. assert n.typ != nil
  1452. if needsAdditionalCopy(n):
  1453. genAdditionalCopy(c, n, opc, dest, idx, value)
  1454. else:
  1455. c.gABC(n, opc, dest, idx, value)
  1456. proc genAsgn(c: PCtx; le, ri: PNode; requiresCopy: bool) =
  1457. case le.kind
  1458. of nkBracketExpr:
  1459. let
  1460. dest = c.genx(le[0], {gfNode})
  1461. idx = c.genIndex(le[1], le[0].typ)
  1462. tmp = c.genx(ri)
  1463. collTyp = le[0].typ.skipTypes(abstractVarRange-{tyTypeDesc})
  1464. case collTyp.kind
  1465. of tyString, tyCstring:
  1466. c.preventFalseAlias(le, opcWrStrIdx, dest, idx, tmp)
  1467. of tyTuple:
  1468. c.preventFalseAlias(le, opcWrObj, dest, int le[1].intVal, tmp)
  1469. else:
  1470. c.preventFalseAlias(le, opcWrArr, dest, idx, tmp)
  1471. c.freeTemp(tmp)
  1472. c.freeTemp(idx)
  1473. c.freeTemp(dest)
  1474. of nkCheckedFieldExpr:
  1475. var objR: TDest = -1
  1476. genCheckedObjAccessAux(c, le, objR, {gfNode})
  1477. let idx = genField(c, le[0][1])
  1478. let tmp = c.genx(ri)
  1479. c.preventFalseAlias(le[0], opcWrObj, objR, idx, tmp)
  1480. c.freeTemp(tmp)
  1481. # c.freeTemp(idx) # BUGFIX, see nkDotExpr
  1482. c.freeTemp(objR)
  1483. of nkDotExpr:
  1484. let dest = c.genx(le[0], {gfNode})
  1485. let idx = genField(c, le[1])
  1486. let tmp = c.genx(ri)
  1487. c.preventFalseAlias(le, opcWrObj, dest, idx, tmp)
  1488. # c.freeTemp(idx) # BUGFIX: idx is an immediate (field position), not a register
  1489. c.freeTemp(tmp)
  1490. c.freeTemp(dest)
  1491. of nkDerefExpr, nkHiddenDeref:
  1492. let dest = c.genx(le[0], {gfNode})
  1493. let tmp = c.genx(ri)
  1494. c.preventFalseAlias(le, opcWrDeref, dest, 0, tmp)
  1495. c.freeTemp(dest)
  1496. c.freeTemp(tmp)
  1497. of nkSym:
  1498. let s = le.sym
  1499. checkCanEval(c, le)
  1500. if s.isGlobal:
  1501. withTemp(tmp, le.typ):
  1502. c.gen(le, tmp, {gfNodeAddr})
  1503. let val = c.genx(ri)
  1504. c.preventFalseAlias(le, opcWrDeref, tmp, 0, val)
  1505. c.freeTemp(val)
  1506. else:
  1507. if s.kind == skForVar: c.setSlot s
  1508. internalAssert c.config, s.position > 0 or (s.position == 0 and
  1509. s.kind in {skParam, skResult})
  1510. var dest: TRegister = s.position + ord(s.kind == skParam)
  1511. assert le.typ != nil
  1512. if needsAdditionalCopy(le) and s.kind in {skResult, skVar, skParam}:
  1513. var cc = c.getTemp(le.typ)
  1514. gen(c, ri, cc)
  1515. c.gABC(le, whichAsgnOpc(le), dest, cc)
  1516. c.freeTemp(cc)
  1517. else:
  1518. gen(c, ri, dest)
  1519. else:
  1520. let dest = c.genx(le, {gfNodeAddr})
  1521. genAsgn(c, dest, ri, requiresCopy)
  1522. c.freeTemp(dest)
  1523. proc genTypeLit(c: PCtx; t: PType; dest: var TDest) =
  1524. var n = newNode(nkType)
  1525. n.typ = t
  1526. genLit(c, n, dest)
  1527. proc isEmptyBody(n: PNode): bool =
  1528. case n.kind
  1529. of nkStmtList:
  1530. for i in 0..<n.len:
  1531. if not isEmptyBody(n[i]): return false
  1532. result = true
  1533. else:
  1534. result = n.kind in {nkCommentStmt, nkEmpty}
  1535. proc importcCond*(c: PCtx; s: PSym): bool {.inline.} =
  1536. ## return true to importc `s`, false to execute its body instead (refs #8405)
  1537. result = false
  1538. if sfImportc in s.flags:
  1539. if s.kind in routineKinds:
  1540. return isEmptyBody(getBody(c.graph, s))
  1541. proc importcSym(c: PCtx; info: TLineInfo; s: PSym) =
  1542. when hasFFI:
  1543. if compiletimeFFI in c.config.features:
  1544. c.globals.add(importcSymbol(c.config, s))
  1545. s.position = c.globals.len
  1546. else:
  1547. localError(c.config, info,
  1548. "VM is not allowed to 'importc' without --experimental:compiletimeFFI")
  1549. else:
  1550. localError(c.config, info,
  1551. "cannot 'importc' variable at compile time; " & s.name.s)
  1552. proc getNullValue*(typ: PType, info: TLineInfo; conf: ConfigRef): PNode
  1553. proc genGlobalInit(c: PCtx; n: PNode; s: PSym) =
  1554. c.globals.add(getNullValue(s.typ, n.info, c.config))
  1555. s.position = c.globals.len
  1556. # This is rather hard to support, due to the laziness of the VM code
  1557. # generator. See tests/compile/tmacro2 for why this is necessary:
  1558. # var decls{.compileTime.}: seq[NimNode] = @[]
  1559. let dest = c.getTemp(s.typ)
  1560. c.gABx(n, opcLdGlobal, dest, s.position)
  1561. if s.astdef != nil:
  1562. let tmp = c.genx(s.astdef)
  1563. c.genAdditionalCopy(n, opcWrDeref, dest, 0, tmp)
  1564. c.freeTemp(dest)
  1565. c.freeTemp(tmp)
  1566. proc genRdVar(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags) =
  1567. # gfNodeAddr and gfNode are mutually exclusive
  1568. assert card(flags * {gfNodeAddr, gfNode}) < 2
  1569. let s = n.sym
  1570. if s.isGlobal:
  1571. let isImportcVar = importcCondVar(s)
  1572. if sfCompileTime in s.flags or c.mode == emRepl or isImportcVar:
  1573. discard
  1574. elif s.position == 0:
  1575. cannotEval(c, n)
  1576. if s.position == 0:
  1577. if importcCond(c, s) or isImportcVar: c.importcSym(n.info, s)
  1578. else: genGlobalInit(c, n, s)
  1579. if dest < 0: dest = c.getTemp(n.typ)
  1580. assert s.typ != nil
  1581. if gfNodeAddr in flags:
  1582. if isImportcVar:
  1583. c.gABx(n, opcLdGlobalAddrDerefFFI, dest, s.position)
  1584. else:
  1585. c.gABx(n, opcLdGlobalAddr, dest, s.position)
  1586. elif isImportcVar:
  1587. c.gABx(n, opcLdGlobalDerefFFI, dest, s.position)
  1588. elif fitsRegister(s.typ) and gfNode notin flags:
  1589. var cc = c.getTemp(n.typ)
  1590. c.gABx(n, opcLdGlobal, cc, s.position)
  1591. c.gABC(n, opcNodeToReg, dest, cc)
  1592. c.freeTemp(cc)
  1593. else:
  1594. c.gABx(n, opcLdGlobal, dest, s.position)
  1595. else:
  1596. if s.kind == skForVar and c.mode == emRepl: c.setSlot(s)
  1597. if s.position > 0 or (s.position == 0 and
  1598. s.kind in {skParam, skResult}):
  1599. if dest < 0:
  1600. dest = s.position + ord(s.kind == skParam)
  1601. internalAssert(c.config, c.prc.regInfo[dest].kind < slotSomeTemp)
  1602. else:
  1603. # we need to generate an assignment:
  1604. let requiresCopy = c.prc.regInfo[dest].kind >= slotSomeTemp and
  1605. gfIsParam notin flags
  1606. genAsgn(c, dest, n, requiresCopy)
  1607. else:
  1608. # see tests/t99bott for an example that triggers it:
  1609. cannotEval(c, n)
  1610. template needsRegLoad(): untyped =
  1611. {gfNode, gfNodeAddr} * flags == {} and
  1612. fitsRegister(n.typ.skipTypes({tyVar, tyLent, tyStatic}))
  1613. proc genArrAccessOpcode(c: PCtx; n: PNode; dest: var TDest; opc: TOpcode;
  1614. flags: TGenFlags) =
  1615. let a = c.genx(n[0], flags)
  1616. let b = c.genIndex(n[1], n[0].typ)
  1617. if dest < 0: dest = c.getTemp(n.typ)
  1618. if opc in {opcLdArrAddr, opcLdStrIdxAddr} and gfNodeAddr in flags:
  1619. c.gABC(n, opc, dest, a, b)
  1620. elif needsRegLoad():
  1621. var cc = c.getTemp(n.typ)
  1622. c.gABC(n, opc, cc, a, b)
  1623. c.gABC(n, opcNodeToReg, dest, cc)
  1624. c.freeTemp(cc)
  1625. else:
  1626. #message(c.config, n.info, warnUser, "argh")
  1627. #echo "FLAGS ", flags, " ", fitsRegister(n.typ), " ", typeToString(n.typ)
  1628. c.gABC(n, opc, dest, a, b)
  1629. c.freeTemp(a)
  1630. c.freeTemp(b)
  1631. proc genObjAccessAux(c: PCtx; n: PNode; a, b: int, dest: var TDest; flags: TGenFlags) =
  1632. if dest < 0: dest = c.getTemp(n.typ)
  1633. if {gfNodeAddr} * flags != {}:
  1634. c.gABC(n, opcLdObjAddr, dest, a, b)
  1635. elif needsRegLoad():
  1636. var cc = c.getTemp(n.typ)
  1637. c.gABC(n, opcLdObj, cc, a, b)
  1638. c.gABC(n, opcNodeToReg, dest, cc)
  1639. c.freeTemp(cc)
  1640. else:
  1641. c.gABC(n, opcLdObj, dest, a, b)
  1642. c.freeTemp(a)
  1643. proc genObjAccess(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags) =
  1644. genObjAccessAux(c, n, c.genx(n[0], flags), genField(c, n[1]), dest, flags)
  1645. proc genCheckedObjAccessAux(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags) =
  1646. internalAssert c.config, n.kind == nkCheckedFieldExpr
  1647. # nkDotExpr to access the requested field
  1648. let accessExpr = n[0]
  1649. # nkCall to check if the discriminant is valid
  1650. var checkExpr = n[1]
  1651. let negCheck = checkExpr[0].sym.magic == mNot
  1652. if negCheck:
  1653. checkExpr = checkExpr[^1]
  1654. # Discriminant symbol
  1655. let disc = checkExpr[2]
  1656. internalAssert c.config, disc.sym.kind == skField
  1657. # Load the object in `dest`
  1658. c.gen(accessExpr[0], dest, flags)
  1659. # Load the discriminant
  1660. var discVal = c.getTemp(disc.typ)
  1661. c.gABC(n, opcLdObj, discVal, dest, genField(c, disc))
  1662. # Check if its value is contained in the supplied set
  1663. let setLit = c.genx(checkExpr[1])
  1664. var rs = c.getTemp(getSysType(c.graph, n.info, tyBool))
  1665. c.gABC(n, opcContainsSet, rs, setLit, discVal)
  1666. c.freeTemp(setLit)
  1667. # If the check fails let the user know
  1668. let lab1 = c.xjmp(n, if negCheck: opcFJmp else: opcTJmp, rs)
  1669. c.freeTemp(rs)
  1670. let strType = getSysType(c.graph, n.info, tyString)
  1671. var msgReg: TDest = c.getTemp(strType)
  1672. let fieldName = $accessExpr[1]
  1673. let msg = genFieldDefect(c.config, fieldName, disc.sym)
  1674. let strLit = newStrNode(msg, accessExpr[1].info)
  1675. strLit.typ = strType
  1676. c.genLit(strLit, msgReg)
  1677. c.gABC(n, opcInvalidField, msgReg, discVal)
  1678. c.freeTemp(discVal)
  1679. c.freeTemp(msgReg)
  1680. c.patch(lab1)
  1681. proc genCheckedObjAccess(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags) =
  1682. var objR: TDest = -1
  1683. genCheckedObjAccessAux(c, n, objR, flags)
  1684. let accessExpr = n[0]
  1685. # Field symbol
  1686. var field = accessExpr[1]
  1687. internalAssert c.config, field.sym.kind == skField
  1688. # Load the content now
  1689. if dest < 0: dest = c.getTemp(n.typ)
  1690. let fieldPos = genField(c, field)
  1691. if {gfNodeAddr} * flags != {}:
  1692. c.gABC(n, opcLdObjAddr, dest, objR, fieldPos)
  1693. elif needsRegLoad():
  1694. var cc = c.getTemp(accessExpr.typ)
  1695. c.gABC(n, opcLdObj, cc, objR, fieldPos)
  1696. c.gABC(n, opcNodeToReg, dest, cc)
  1697. c.freeTemp(cc)
  1698. else:
  1699. c.gABC(n, opcLdObj, dest, objR, fieldPos)
  1700. c.freeTemp(objR)
  1701. proc genArrAccess(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags) =
  1702. let arrayType = n[0].typ.skipTypes(abstractVarRange-{tyTypeDesc}).kind
  1703. case arrayType
  1704. of tyString, tyCstring:
  1705. let opc = if gfNodeAddr in flags: opcLdStrIdxAddr else: opcLdStrIdx
  1706. genArrAccessOpcode(c, n, dest, opc, flags)
  1707. of tyTuple:
  1708. c.genObjAccessAux(n, c.genx(n[0], flags), int n[1].intVal, dest, flags)
  1709. of tyTypeDesc:
  1710. c.genTypeLit(n.typ, dest)
  1711. else:
  1712. let opc = if gfNodeAddr in flags: opcLdArrAddr else: opcLdArr
  1713. genArrAccessOpcode(c, n, dest, opc, flags)
  1714. proc getNullValueAux(t: PType; obj: PNode, result: PNode; conf: ConfigRef; currPosition: var int) =
  1715. if t != nil and t.baseClass != nil:
  1716. let b = skipTypes(t.baseClass, skipPtrs)
  1717. getNullValueAux(b, b.n, result, conf, currPosition)
  1718. case obj.kind
  1719. of nkRecList:
  1720. for i in 0..<obj.len: getNullValueAux(nil, obj[i], result, conf, currPosition)
  1721. of nkRecCase:
  1722. getNullValueAux(nil, obj[0], result, conf, currPosition)
  1723. for i in 1..<obj.len:
  1724. getNullValueAux(nil, lastSon(obj[i]), result, conf, currPosition)
  1725. of nkSym:
  1726. let field = newNodeI(nkExprColonExpr, result.info)
  1727. field.add(obj)
  1728. let value = getNullValue(obj.sym.typ, result.info, conf)
  1729. value.flags.incl nfSkipFieldChecking
  1730. field.add(value)
  1731. result.add field
  1732. doAssert obj.sym.position == currPosition
  1733. inc currPosition
  1734. else: globalError(conf, result.info, "cannot create null element for: " & $obj)
  1735. proc getNullValue(typ: PType, info: TLineInfo; conf: ConfigRef): PNode =
  1736. var t = skipTypes(typ, abstractRange+{tyStatic, tyOwned}-{tyTypeDesc})
  1737. case t.kind
  1738. of tyBool, tyEnum, tyChar, tyInt..tyInt64:
  1739. result = newNodeIT(nkIntLit, info, t)
  1740. of tyUInt..tyUInt64:
  1741. result = newNodeIT(nkUIntLit, info, t)
  1742. of tyFloat..tyFloat128:
  1743. result = newNodeIT(nkFloatLit, info, t)
  1744. of tyString:
  1745. result = newNodeIT(nkStrLit, info, t)
  1746. result.strVal = ""
  1747. of tyCstring, tyVar, tyLent, tyPointer, tyPtr, tyUntyped,
  1748. tyTyped, tyTypeDesc, tyRef, tyNil:
  1749. result = newNodeIT(nkNilLit, info, t)
  1750. of tyProc:
  1751. if t.callConv != ccClosure:
  1752. result = newNodeIT(nkNilLit, info, t)
  1753. else:
  1754. result = newNodeIT(nkTupleConstr, info, t)
  1755. result.add(newNodeIT(nkNilLit, info, t))
  1756. result.add(newNodeIT(nkNilLit, info, t))
  1757. of tyObject:
  1758. result = newNodeIT(nkObjConstr, info, t)
  1759. result.add(newNodeIT(nkEmpty, info, t))
  1760. # initialize inherited fields, and all in the correct order:
  1761. var currPosition = 0
  1762. getNullValueAux(t, t.n, result, conf, currPosition)
  1763. of tyArray:
  1764. result = newNodeIT(nkBracket, info, t)
  1765. for i in 0..<toInt(lengthOrd(conf, t)):
  1766. result.add getNullValue(elemType(t), info, conf)
  1767. of tyTuple:
  1768. result = newNodeIT(nkTupleConstr, info, t)
  1769. for a in t.kids:
  1770. result.add getNullValue(a, info, conf)
  1771. of tySet:
  1772. result = newNodeIT(nkCurly, info, t)
  1773. of tySequence, tyOpenArray:
  1774. result = newNodeIT(nkBracket, info, t)
  1775. else:
  1776. globalError(conf, info, "cannot create null element for: " & $t.kind)
  1777. result = newNodeI(nkEmpty, info)
  1778. proc genVarSection(c: PCtx; n: PNode) =
  1779. for a in n:
  1780. if a.kind == nkCommentStmt: continue
  1781. #assert(a[0].kind == nkSym) can happen for transformed vars
  1782. if a.kind == nkVarTuple:
  1783. for i in 0..<a.len-2:
  1784. if a[i].kind == nkSym:
  1785. if not a[i].sym.isGlobal: setSlot(c, a[i].sym)
  1786. checkCanEval(c, a[i])
  1787. c.gen(lowerTupleUnpacking(c.graph, a, c.idgen, c.getOwner))
  1788. elif a[0].kind == nkSym:
  1789. let s = a[0].sym
  1790. checkCanEval(c, a[0])
  1791. if s.isGlobal:
  1792. let runtimeAccessToCompileTime = c.mode == emRepl and
  1793. sfCompileTime in s.flags and s.position > 0
  1794. if s.position == 0:
  1795. if importcCond(c, s): c.importcSym(a.info, s)
  1796. else:
  1797. let sa = getNullValue(s.typ, a.info, c.config)
  1798. #if s.ast.isNil: getNullValue(s.typ, a.info)
  1799. #else: s.ast
  1800. assert sa.kind != nkCall
  1801. c.globals.add(sa)
  1802. s.position = c.globals.len
  1803. if runtimeAccessToCompileTime:
  1804. discard
  1805. elif a[2].kind != nkEmpty:
  1806. let tmp = c.genx(a[0], {gfNodeAddr})
  1807. let val = c.genx(a[2])
  1808. c.genAdditionalCopy(a[2], opcWrDeref, tmp, 0, val)
  1809. c.freeTemp(val)
  1810. c.freeTemp(tmp)
  1811. elif not importcCondVar(s) and not (s.typ.kind == tyProc and s.typ.callConv == ccClosure) and
  1812. sfPure notin s.flags: # fixes #10938
  1813. # there is a pre-existing issue with closure types in VM
  1814. # if `(var s: proc () = default(proc ()); doAssert s == nil)` works for you;
  1815. # you might remove the second condition.
  1816. # the problem is that closure types are tuples in VM, but the types of its children
  1817. # shouldn't have the same type as closure types.
  1818. let tmp = c.genx(a[0], {gfNodeAddr})
  1819. let sa = getNullValue(s.typ, a.info, c.config)
  1820. let val = c.genx(sa)
  1821. c.genAdditionalCopy(sa, opcWrDeref, tmp, 0, val)
  1822. c.freeTemp(val)
  1823. c.freeTemp(tmp)
  1824. else:
  1825. setSlot(c, s)
  1826. if a[2].kind == nkEmpty:
  1827. c.gABx(a, ldNullOpcode(s.typ), s.position, c.genType(s.typ))
  1828. else:
  1829. assert s.typ != nil
  1830. if not fitsRegister(s.typ):
  1831. c.gABx(a, ldNullOpcode(s.typ), s.position, c.genType(s.typ))
  1832. let le = a[0]
  1833. assert le.typ != nil
  1834. if not fitsRegister(le.typ) and s.kind in {skResult, skVar, skParam}:
  1835. var cc = c.getTemp(le.typ)
  1836. gen(c, a[2], cc)
  1837. c.gABC(le, whichAsgnOpc(le), s.position.TRegister, cc)
  1838. c.freeTemp(cc)
  1839. else:
  1840. gen(c, a[2], s.position.TRegister)
  1841. else:
  1842. # assign to a[0]; happens for closures
  1843. if a[2].kind == nkEmpty:
  1844. let tmp = genx(c, a[0])
  1845. c.gABx(a, ldNullOpcode(a[0].typ), tmp, c.genType(a[0].typ))
  1846. c.freeTemp(tmp)
  1847. else:
  1848. genAsgn(c, a[0], a[2], true)
  1849. proc genArrayConstr(c: PCtx, n: PNode, dest: var TDest) =
  1850. if dest < 0: dest = c.getTemp(n.typ)
  1851. c.gABx(n, opcLdNull, dest, c.genType(n.typ))
  1852. let intType = getSysType(c.graph, n.info, tyInt)
  1853. let seqType = n.typ.skipTypes(abstractVar-{tyTypeDesc})
  1854. if seqType.kind == tySequence:
  1855. var tmp = c.getTemp(intType)
  1856. c.gABx(n, opcLdImmInt, tmp, n.len)
  1857. c.gABx(n, opcNewSeq, dest, c.genType(seqType))
  1858. c.gABx(n, opcNewSeq, tmp, 0)
  1859. c.freeTemp(tmp)
  1860. if n.len > 0:
  1861. var tmp = getTemp(c, intType)
  1862. c.gABx(n, opcLdNullReg, tmp, c.genType(intType))
  1863. for x in n:
  1864. let a = c.genx(x)
  1865. c.preventFalseAlias(n, opcWrArr, dest, tmp, a)
  1866. c.gABI(n, opcAddImmInt, tmp, tmp, 1)
  1867. c.freeTemp(a)
  1868. c.freeTemp(tmp)
  1869. proc genSetConstr(c: PCtx, n: PNode, dest: var TDest) =
  1870. if dest < 0: dest = c.getTemp(n.typ)
  1871. c.gABx(n, opcLdNull, dest, c.genType(n.typ))
  1872. for x in n:
  1873. if x.kind == nkRange:
  1874. let a = c.genx(x[0])
  1875. let b = c.genx(x[1])
  1876. c.gABC(n, opcInclRange, dest, a, b)
  1877. c.freeTemp(b)
  1878. c.freeTemp(a)
  1879. else:
  1880. let a = c.genx(x)
  1881. c.gABC(n, opcIncl, dest, a)
  1882. c.freeTemp(a)
  1883. proc genObjConstr(c: PCtx, n: PNode, dest: var TDest) =
  1884. if tfUnion in n.typ.flags: # bug #22708 # bug #13481
  1885. globalError(c.config, n.info, "object with '{.union.}' pragmas is not supported by VM")
  1886. if dest < 0: dest = c.getTemp(n.typ)
  1887. let t = n.typ.skipTypes(abstractRange+{tyOwned}-{tyTypeDesc})
  1888. if t.kind == tyRef:
  1889. c.gABx(n, opcNew, dest, c.genType(t.elementType))
  1890. else:
  1891. c.gABx(n, opcLdNull, dest, c.genType(n.typ))
  1892. for i in 1..<n.len:
  1893. let it = n[i]
  1894. if it.kind == nkExprColonExpr and it[0].kind == nkSym:
  1895. let idx = genField(c, it[0])
  1896. let tmp = c.genx(it[1])
  1897. c.preventFalseAlias(it[1], opcWrObj,
  1898. dest, idx, tmp)
  1899. c.freeTemp(tmp)
  1900. else:
  1901. globalError(c.config, n.info, "invalid object constructor")
  1902. proc genTupleConstr(c: PCtx, n: PNode, dest: var TDest) =
  1903. if dest < 0: dest = c.getTemp(n.typ)
  1904. if n.typ.kind != tyTypeDesc:
  1905. c.gABx(n, opcLdNull, dest, c.genType(n.typ))
  1906. # XXX x = (x.old, 22) produces wrong code ... stupid self assignments
  1907. for i in 0..<n.len:
  1908. let it = n[i]
  1909. if it.kind == nkExprColonExpr:
  1910. let idx = genField(c, it[0])
  1911. let tmp = c.genx(it[1])
  1912. c.preventFalseAlias(it[1], opcWrObj,
  1913. dest, idx, tmp)
  1914. c.freeTemp(tmp)
  1915. else:
  1916. let tmp = c.genx(it)
  1917. c.preventFalseAlias(it, opcWrObj, dest, i.TRegister, tmp)
  1918. c.freeTemp(tmp)
  1919. proc genProc*(c: PCtx; s: PSym): int
  1920. proc toKey(s: PSym): string =
  1921. result = ""
  1922. var s = s
  1923. while s != nil:
  1924. result.add s.name.s
  1925. if s.owner != nil:
  1926. if sfFromGeneric in s.flags:
  1927. s = s.instantiatedFrom.owner
  1928. else:
  1929. s = s.owner
  1930. result.add "."
  1931. else:
  1932. break
  1933. proc procIsCallback(c: PCtx; s: PSym): bool =
  1934. if s.offset < -1: return true
  1935. let key = toKey(s)
  1936. if c.callbackIndex.contains(key):
  1937. let index = c.callbackIndex[key]
  1938. doAssert s.offset == -1
  1939. s.offset = -2'i32 - index.int32
  1940. result = true
  1941. else:
  1942. result = false
  1943. proc gen(c: PCtx; n: PNode; dest: var TDest; flags: TGenFlags = {}) =
  1944. when defined(nimCompilerStacktraceHints):
  1945. setFrameMsg c.config$n.info & " " & $n.kind & " " & $flags
  1946. case n.kind
  1947. of nkSym:
  1948. let s = n.sym
  1949. checkCanEval(c, n)
  1950. case s.kind
  1951. of skVar, skForVar, skTemp, skLet, skResult:
  1952. genRdVar(c, n, dest, flags)
  1953. of skParam:
  1954. if s.typ.kind == tyTypeDesc:
  1955. genTypeLit(c, s.typ.skipTypes({tyTypeDesc}), dest)
  1956. else:
  1957. genRdVar(c, n, dest, flags)
  1958. of skProc, skFunc, skConverter, skMacro, skTemplate, skMethod, skIterator:
  1959. # 'skTemplate' is only allowed for 'getAst' support:
  1960. if s.kind == skIterator and s.typ.callConv == TCallingConvention.ccClosure:
  1961. globalError(c.config, n.info, "Closure iterators are not supported by VM!")
  1962. if procIsCallback(c, s): discard
  1963. elif importcCond(c, s): c.importcSym(n.info, s)
  1964. genLit(c, n, dest)
  1965. of skConst:
  1966. let constVal = if s.astdef != nil: s.astdef else: s.typ.n
  1967. if dontInlineConstant(n, constVal):
  1968. genLit(c, constVal, dest)
  1969. else:
  1970. gen(c, constVal, dest)
  1971. of skEnumField:
  1972. # we never reach this case - as of the time of this comment,
  1973. # skEnumField is folded to an int in semfold.nim, but this code
  1974. # remains for robustness
  1975. if dest < 0: dest = c.getTemp(n.typ)
  1976. if s.position >= low(int16) and s.position <= high(int16):
  1977. c.gABx(n, opcLdImmInt, dest, s.position)
  1978. else:
  1979. var lit = genLiteral(c, newIntNode(nkIntLit, s.position))
  1980. c.gABx(n, opcLdConst, dest, lit)
  1981. of skType:
  1982. genTypeLit(c, s.typ, dest)
  1983. of skGenericParam:
  1984. if c.prc.sym != nil and c.prc.sym.kind == skMacro:
  1985. genRdVar(c, n, dest, flags)
  1986. else:
  1987. globalError(c.config, n.info, "cannot generate code for: " & s.name.s)
  1988. else:
  1989. globalError(c.config, n.info, "cannot generate code for: " & s.name.s)
  1990. of nkCallKinds:
  1991. if n[0].kind == nkSym:
  1992. let s = n[0].sym
  1993. if s.magic != mNone:
  1994. genMagic(c, n, dest, s.magic)
  1995. elif s.kind == skMethod:
  1996. localError(c.config, n.info, "cannot call method " & s.name.s &
  1997. " at compile time")
  1998. else:
  1999. genCall(c, n, dest)
  2000. clearDest(c, n, dest)
  2001. else:
  2002. genCall(c, n, dest)
  2003. clearDest(c, n, dest)
  2004. of nkCharLit..nkInt64Lit:
  2005. if isInt16Lit(n):
  2006. if dest < 0: dest = c.getTemp(n.typ)
  2007. c.gABx(n, opcLdImmInt, dest, n.intVal.int)
  2008. else:
  2009. genLit(c, n, dest)
  2010. of nkUIntLit..pred(nkNilLit): genLit(c, n, dest)
  2011. of nkNilLit:
  2012. if not n.typ.isEmptyType: genLit(c, getNullValue(n.typ, n.info, c.config), dest)
  2013. else: unused(c, n, dest)
  2014. of nkAsgn, nkFastAsgn, nkSinkAsgn:
  2015. unused(c, n, dest)
  2016. genAsgn(c, n[0], n[1], n.kind == nkAsgn)
  2017. of nkDotExpr: genObjAccess(c, n, dest, flags)
  2018. of nkCheckedFieldExpr: genCheckedObjAccess(c, n, dest, flags)
  2019. of nkBracketExpr: genArrAccess(c, n, dest, flags)
  2020. of nkDerefExpr, nkHiddenDeref: genDeref(c, n, dest, flags)
  2021. of nkAddr, nkHiddenAddr: genAddr(c, n, dest, flags)
  2022. of nkIfStmt, nkIfExpr: genIf(c, n, dest)
  2023. of nkWhenStmt:
  2024. # This is "when nimvm" node. Chose the first branch.
  2025. gen(c, n[0][1], dest)
  2026. of nkCaseStmt: genCase(c, n, dest)
  2027. of nkWhileStmt:
  2028. unused(c, n, dest)
  2029. genWhile(c, n)
  2030. of nkBlockExpr, nkBlockStmt: genBlock(c, n, dest)
  2031. of nkReturnStmt:
  2032. genReturn(c, n)
  2033. of nkRaiseStmt:
  2034. genRaise(c, n)
  2035. of nkBreakStmt:
  2036. genBreak(c, n)
  2037. of nkTryStmt, nkHiddenTryStmt: genTry(c, n, dest)
  2038. of nkStmtList:
  2039. #unused(c, n, dest)
  2040. # XXX Fix this bug properly, lexim triggers it
  2041. for x in n: gen(c, x)
  2042. of nkStmtListExpr:
  2043. for i in 0..<n.len-1: gen(c, n[i])
  2044. gen(c, n[^1], dest, flags)
  2045. of nkPragmaBlock:
  2046. gen(c, n.lastSon, dest, flags)
  2047. of nkDiscardStmt:
  2048. unused(c, n, dest)
  2049. gen(c, n[0])
  2050. of nkHiddenStdConv, nkHiddenSubConv, nkConv:
  2051. genConv(c, n, n[1], dest)
  2052. of nkObjDownConv:
  2053. genConv(c, n, n[0], dest)
  2054. of nkObjUpConv:
  2055. genConv(c, n, n[0], dest)
  2056. of nkVarSection, nkLetSection:
  2057. unused(c, n, dest)
  2058. genVarSection(c, n)
  2059. of nkLambdaKinds:
  2060. #let s = n[namePos].sym
  2061. #discard genProc(c, s)
  2062. genLit(c, newSymNode(n[namePos].sym), dest)
  2063. of nkChckRangeF, nkChckRange64, nkChckRange:
  2064. let
  2065. tmp0 = c.genx(n[0])
  2066. tmp1 = c.genx(n[1])
  2067. tmp2 = c.genx(n[2])
  2068. c.gABC(n, opcRangeChck, tmp0, tmp1, tmp2)
  2069. c.freeTemp(tmp1)
  2070. c.freeTemp(tmp2)
  2071. if dest >= 0:
  2072. gABC(c, n, whichAsgnOpc(n), dest, tmp0)
  2073. c.freeTemp(tmp0)
  2074. else:
  2075. dest = tmp0
  2076. of nkEmpty, nkCommentStmt, nkTypeSection, nkConstSection, nkPragma,
  2077. nkTemplateDef, nkIncludeStmt, nkImportStmt, nkFromStmt, nkExportStmt,
  2078. nkMixinStmt, nkBindStmt, declarativeDefs, nkMacroDef:
  2079. unused(c, n, dest)
  2080. of nkStringToCString, nkCStringToString:
  2081. gen(c, n[0], dest)
  2082. of nkBracket: genArrayConstr(c, n, dest)
  2083. of nkCurly: genSetConstr(c, n, dest)
  2084. of nkObjConstr: genObjConstr(c, n, dest)
  2085. of nkPar, nkClosure, nkTupleConstr: genTupleConstr(c, n, dest)
  2086. of nkCast:
  2087. if allowCast in c.features:
  2088. genConv(c, n, n[1], dest, opcCast)
  2089. else:
  2090. genCastIntFloat(c, n, dest)
  2091. of nkTypeOfExpr:
  2092. genTypeLit(c, n.typ, dest)
  2093. of nkComesFrom:
  2094. discard "XXX to implement for better stack traces"
  2095. else:
  2096. if n.typ != nil and n.typ.isCompileTimeOnly:
  2097. genTypeLit(c, n.typ, dest)
  2098. else:
  2099. globalError(c.config, n.info, "cannot generate VM code for " & $n)
  2100. proc removeLastEof(c: PCtx) =
  2101. let last = c.code.len-1
  2102. if last >= 0 and c.code[last].opcode == opcEof:
  2103. # overwrite last EOF:
  2104. assert c.code.len == c.debug.len
  2105. c.code.setLen(last)
  2106. c.debug.setLen(last)
  2107. proc genStmt*(c: PCtx; n: PNode): int =
  2108. c.removeLastEof
  2109. result = c.code.len
  2110. var d: TDest = -1
  2111. c.gen(n, d)
  2112. c.gABC(n, opcEof)
  2113. if d >= 0:
  2114. globalError(c.config, n.info, "VM problem: dest register is set")
  2115. proc genExpr*(c: PCtx; n: PNode, requiresValue = true): int =
  2116. c.removeLastEof
  2117. result = c.code.len
  2118. var d: TDest = -1
  2119. c.gen(n, d)
  2120. if d < 0:
  2121. if requiresValue:
  2122. globalError(c.config, n.info, "VM problem: dest register is not set")
  2123. d = 0
  2124. c.gABC(n, opcEof, d)
  2125. #echo renderTree(n)
  2126. #c.echoCode(result)
  2127. proc genParams(c: PCtx; params: PNode) =
  2128. # res.sym.position is already 0
  2129. setLen(c.prc.regInfo, max(params.len, 1))
  2130. c.prc.regInfo[0] = (inUse: true, kind: slotFixedVar)
  2131. for i in 1..<params.len:
  2132. c.prc.regInfo[i] = (inUse: true, kind: slotFixedLet)
  2133. proc finalJumpTarget(c: PCtx; pc, diff: int) =
  2134. internalAssert(c.config, regBxMin < diff and diff < regBxMax)
  2135. let oldInstr = c.code[pc]
  2136. # opcode and regA stay the same:
  2137. c.code[pc] = ((oldInstr.TInstrType and ((regOMask shl regOShift) or (regAMask shl regAShift))).TInstrType or
  2138. TInstrType(diff+wordExcess) shl regBxShift).TInstr
  2139. proc genGenericParams(c: PCtx; gp: PNode) =
  2140. var base = c.prc.regInfo.len
  2141. setLen c.prc.regInfo, base + gp.len
  2142. for i in 0..<gp.len:
  2143. var param = gp[i].sym
  2144. param.position = base + i # XXX: fix this earlier; make it consistent with templates
  2145. c.prc.regInfo[base + i] = (inUse: true, kind: slotFixedLet)
  2146. proc optimizeJumps(c: PCtx; start: int) =
  2147. const maxIterations = 10
  2148. for i in start..<c.code.len:
  2149. let opc = c.code[i].opcode
  2150. case opc
  2151. of opcTJmp, opcFJmp:
  2152. var reg = c.code[i].regA
  2153. var d = i + c.code[i].jmpDiff
  2154. for iters in countdown(maxIterations, 0):
  2155. case c.code[d].opcode
  2156. of opcJmp:
  2157. d += c.code[d].jmpDiff
  2158. of opcTJmp, opcFJmp:
  2159. if c.code[d].regA != reg: break
  2160. # tjmp x, 23
  2161. # ...
  2162. # tjmp x, 12
  2163. # -- we know 'x' is true, and so can jump to 12+13:
  2164. if c.code[d].opcode == opc:
  2165. d += c.code[d].jmpDiff
  2166. else:
  2167. # tjmp x, 23
  2168. # fjmp x, 22
  2169. # We know 'x' is true so skip to the next instruction:
  2170. d += 1
  2171. else: break
  2172. if d != i + c.code[i].jmpDiff:
  2173. c.finalJumpTarget(i, d - i)
  2174. of opcJmp, opcJmpBack:
  2175. var d = i + c.code[i].jmpDiff
  2176. var iters = maxIterations
  2177. while c.code[d].opcode == opcJmp and iters > 0:
  2178. d += c.code[d].jmpDiff
  2179. dec iters
  2180. if c.code[d].opcode == opcRet:
  2181. # optimize 'jmp to ret' to 'ret' here
  2182. c.code[i] = c.code[d]
  2183. elif d != i + c.code[i].jmpDiff:
  2184. c.finalJumpTarget(i, d - i)
  2185. else: discard
  2186. proc genProc(c: PCtx; s: PSym): int =
  2187. let
  2188. pos = c.procToCodePos.getOrDefault(s.id)
  2189. wasNotGenProcBefore = pos == 0
  2190. noRegistersAllocated = s.offset == -1
  2191. if wasNotGenProcBefore or noRegistersAllocated:
  2192. # xxx: the noRegisterAllocated check is required in order to avoid issues
  2193. # where nimsuggest can crash due as a macro with pos will be loaded
  2194. # but it doesn't have offsets for register allocations see:
  2195. # https://github.com/nim-lang/Nim/issues/18385
  2196. # Improvements and further use of IC should remove the need for this.
  2197. #if s.name.s == "outterMacro" or s.name.s == "innerProc":
  2198. # echo "GENERATING CODE FOR ", s.name.s
  2199. let last = c.code.len-1
  2200. var eofInstr: TInstr = default(TInstr)
  2201. if last >= 0 and c.code[last].opcode == opcEof:
  2202. eofInstr = c.code[last]
  2203. c.code.setLen(last)
  2204. c.debug.setLen(last)
  2205. #c.removeLastEof
  2206. result = c.code.len+1 # skip the jump instruction
  2207. c.procToCodePos[s.id] = result
  2208. # thanks to the jmp we can add top level statements easily and also nest
  2209. # procs easily:
  2210. let body = transformBody(c.graph, c.idgen, s, if isCompileTimeProc(s): {} else: {useCache})
  2211. let procStart = c.xjmp(body, opcJmp, 0)
  2212. var p = PProc(blocks: @[], sym: s)
  2213. let oldPrc = c.prc
  2214. c.prc = p
  2215. # iterate over the parameters and allocate space for them:
  2216. genParams(c, s.typ.n)
  2217. # allocate additional space for any generically bound parameters
  2218. if s.kind == skMacro and s.isGenericRoutineStrict:
  2219. genGenericParams(c, s.ast[genericParamsPos])
  2220. if tfCapturesEnv in s.typ.flags:
  2221. #let env = s.ast[paramsPos].lastSon.sym
  2222. #assert env.position == 2
  2223. c.prc.regInfo.add (inUse: true, kind: slotFixedLet)
  2224. gen(c, body)
  2225. # generate final 'return' statement:
  2226. c.gABC(body, opcRet)
  2227. c.patch(procStart)
  2228. c.gABC(body, opcEof, eofInstr.regA)
  2229. c.optimizeJumps(result)
  2230. s.offset = c.prc.regInfo.len.int32
  2231. #if s.name.s == "main" or s.name.s == "[]":
  2232. # echo renderTree(body)
  2233. # c.echoCode(result)
  2234. c.prc = oldPrc
  2235. else:
  2236. c.prc.regInfo.setLen s.offset
  2237. result = pos