ccgexprs.nim 128 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447
  1. #
  2. #
  3. # The Nim Compiler
  4. # (c) Copyright 2013 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. # included from cgen.nim
  10. when defined(nimCompilerStacktraceHints):
  11. import std/stackframes
  12. proc getNullValueAuxT(p: BProc; orig, t: PType; obj, constOrNil: PNode,
  13. result: var Rope; count: var int;
  14. isConst: bool, info: TLineInfo)
  15. # -------------------------- constant expressions ------------------------
  16. proc rdSetElemLoc(conf: ConfigRef; a: TLoc, typ: PType; result: var Rope)
  17. proc int64Literal(i: BiggestInt; result: var Rope) =
  18. if i > low(int64):
  19. result.add "IL64($1)" % [rope(i)]
  20. else:
  21. result.add "(IL64(-9223372036854775807) - IL64(1))"
  22. proc uint64Literal(i: uint64; result: var Rope) = result.add rope($i & "ULL")
  23. proc intLiteral(i: BiggestInt; result: var Rope) =
  24. if i > low(int32) and i <= high(int32):
  25. result.add rope(i)
  26. elif i == low(int32):
  27. # Nim has the same bug for the same reasons :-)
  28. result.add "(-2147483647 -1)"
  29. elif i > low(int64):
  30. result.add "IL64($1)" % [rope(i)]
  31. else:
  32. result.add "(IL64(-9223372036854775807) - IL64(1))"
  33. proc intLiteral(i: Int128; result: var Rope) =
  34. intLiteral(toInt64(i), result)
  35. proc genLiteral(p: BProc, n: PNode, ty: PType; result: var Rope) =
  36. case n.kind
  37. of nkCharLit..nkUInt64Lit:
  38. var k: TTypeKind
  39. if ty != nil:
  40. k = skipTypes(ty, abstractVarRange).kind
  41. else:
  42. case n.kind
  43. of nkCharLit: k = tyChar
  44. of nkUInt64Lit: k = tyUInt64
  45. of nkInt64Lit: k = tyInt64
  46. else: k = tyNil # don't go into the case variant that uses 'ty'
  47. case k
  48. of tyChar, tyNil:
  49. intLiteral(n.intVal, result)
  50. of tyBool:
  51. if n.intVal != 0: result.add "NIM_TRUE"
  52. else: result.add "NIM_FALSE"
  53. of tyInt64: int64Literal(n.intVal, result)
  54. of tyUInt64: uint64Literal(uint64(n.intVal), result)
  55. else:
  56. result.add "(("
  57. result.add getTypeDesc(p.module, ty)
  58. result.add ")"
  59. intLiteral(n.intVal, result)
  60. result.add ")"
  61. of nkNilLit:
  62. let k = if ty == nil: tyPointer else: skipTypes(ty, abstractVarRange).kind
  63. if k == tyProc and skipTypes(ty, abstractVarRange).callConv == ccClosure:
  64. let id = nodeTableTestOrSet(p.module.dataCache, n, p.module.labels)
  65. let tmpName = p.module.tmpBase & rope(id)
  66. if id == p.module.labels:
  67. # not found in cache:
  68. inc(p.module.labels)
  69. p.module.s[cfsStrData].addf(
  70. "static NIM_CONST $1 $2 = {NIM_NIL,NIM_NIL};$n",
  71. [getTypeDesc(p.module, ty), tmpName])
  72. result.add tmpName
  73. elif k in {tyPointer, tyNil, tyProc}:
  74. result.add rope("NIM_NIL")
  75. else:
  76. result.add "(($1) NIM_NIL)" % [getTypeDesc(p.module, ty)]
  77. of nkStrLit..nkTripleStrLit:
  78. let k = if ty == nil: tyString
  79. else: skipTypes(ty, abstractVarRange + {tyStatic, tyUserTypeClass, tyUserTypeClassInst}).kind
  80. case k
  81. of tyNil:
  82. genNilStringLiteral(p.module, n.info, result)
  83. of tyString:
  84. # with the new semantics for not 'nil' strings, we can map "" to nil and
  85. # save tons of allocations:
  86. if n.strVal.len == 0 and optSeqDestructors notin p.config.globalOptions:
  87. genNilStringLiteral(p.module, n.info, result)
  88. else:
  89. genStringLiteral(p.module, n, result)
  90. else:
  91. result.add makeCString(n.strVal)
  92. of nkFloatLit, nkFloat64Lit:
  93. if ty.kind == tyFloat32:
  94. result.add rope(n.floatVal.float32.toStrMaxPrecision)
  95. else:
  96. result.add rope(n.floatVal.toStrMaxPrecision)
  97. of nkFloat32Lit:
  98. result.add rope(n.floatVal.float32.toStrMaxPrecision)
  99. else:
  100. internalError(p.config, n.info, "genLiteral(" & $n.kind & ')')
  101. proc genLiteral(p: BProc, n: PNode; result: var Rope) =
  102. genLiteral(p, n, n.typ, result)
  103. proc bitSetToWord(s: TBitSet, size: int): BiggestUInt =
  104. result = 0
  105. for j in 0..<size:
  106. if j < s.len: result = result or (BiggestUInt(s[j]) shl (j * 8))
  107. proc genRawSetData(cs: TBitSet, size: int; result: var Rope) =
  108. if size > 8:
  109. var res = "{\n"
  110. for i in 0..<size:
  111. res.add "0x"
  112. res.add "0123456789abcdef"[cs[i] div 16]
  113. res.add "0123456789abcdef"[cs[i] mod 16]
  114. if i < size - 1:
  115. # not last iteration
  116. if i mod 8 == 7:
  117. res.add ",\n"
  118. else:
  119. res.add ", "
  120. else:
  121. res.add "}\n"
  122. result.add rope(res)
  123. else:
  124. intLiteral(cast[BiggestInt](bitSetToWord(cs, size)), result)
  125. proc genSetNode(p: BProc, n: PNode; result: var Rope) =
  126. var size = int(getSize(p.config, n.typ))
  127. let cs = toBitSet(p.config, n)
  128. if size > 8:
  129. let id = nodeTableTestOrSet(p.module.dataCache, n, p.module.labels)
  130. let tmpName = p.module.tmpBase & rope(id)
  131. if id == p.module.labels:
  132. # not found in cache:
  133. inc(p.module.labels)
  134. p.module.s[cfsStrData].addf("static NIM_CONST $1 $2 = ",
  135. [getTypeDesc(p.module, n.typ), tmpName])
  136. genRawSetData(cs, size, p.module.s[cfsStrData])
  137. p.module.s[cfsStrData].addf(";$n", [])
  138. result.add tmpName
  139. else:
  140. genRawSetData(cs, size, result)
  141. proc getStorageLoc(n: PNode): TStorageLoc =
  142. ## deadcode
  143. case n.kind
  144. of nkSym:
  145. case n.sym.kind
  146. of skParam, skTemp:
  147. result = OnStack
  148. of skVar, skForVar, skResult, skLet:
  149. if sfGlobal in n.sym.flags: result = OnHeap
  150. else: result = OnStack
  151. of skConst:
  152. if sfGlobal in n.sym.flags: result = OnHeap
  153. else: result = OnUnknown
  154. else: result = OnUnknown
  155. of nkDerefExpr, nkHiddenDeref:
  156. case n[0].typ.kind
  157. of tyVar, tyLent: result = OnUnknown
  158. of tyPtr: result = OnStack
  159. of tyRef: result = OnHeap
  160. else: doAssert(false, "getStorageLoc")
  161. of nkBracketExpr, nkDotExpr, nkObjDownConv, nkObjUpConv:
  162. result = getStorageLoc(n[0])
  163. else: result = OnUnknown
  164. proc canMove(p: BProc, n: PNode; dest: TLoc): bool =
  165. # for now we're conservative here:
  166. if n.kind == nkBracket:
  167. # This needs to be kept consistent with 'const' seq code
  168. # generation!
  169. if not isDeepConstExpr(n) or n.len == 0:
  170. if skipTypes(n.typ, abstractVarRange).kind == tySequence:
  171. return true
  172. elif n.kind in nkStrKinds and n.strVal.len == 0:
  173. # Empty strings are codegen'd as NIM_NIL so it's just a pointer copy
  174. return true
  175. result = n.kind in nkCallKinds
  176. #if not result and dest.k == locTemp:
  177. # return true
  178. #if result:
  179. # echo n.info, " optimized ", n
  180. # result = false
  181. proc genRefAssign(p: BProc, dest, src: TLoc) =
  182. if (dest.storage == OnStack and p.config.selectedGC != gcGo) or not usesWriteBarrier(p.config):
  183. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  184. elif dest.storage == OnHeap:
  185. linefmt(p, cpsStmts, "#asgnRef((void**) $1, $2);$n",
  186. [addrLoc(p.config, dest), rdLoc(src)])
  187. else:
  188. linefmt(p, cpsStmts, "#unsureAsgnRef((void**) $1, $2);$n",
  189. [addrLoc(p.config, dest), rdLoc(src)])
  190. proc asgnComplexity(n: PNode): int =
  191. if n != nil:
  192. case n.kind
  193. of nkSym: result = 1
  194. of nkRecCase:
  195. # 'case objects' are too difficult to inline their assignment operation:
  196. result = 100
  197. of nkRecList:
  198. for t in items(n):
  199. result += asgnComplexity(t)
  200. else: discard
  201. proc optAsgnLoc(a: TLoc, t: PType, field: Rope): TLoc =
  202. assert field != ""
  203. result.k = locField
  204. result.storage = a.storage
  205. result.lode = lodeTyp t
  206. result.r = rdLoc(a) & "." & field
  207. proc genOptAsgnTuple(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) =
  208. let newflags =
  209. if src.storage == OnStatic:
  210. flags + {needToCopy}
  211. elif tfShallow in dest.t.flags:
  212. flags - {needToCopy}
  213. else:
  214. flags
  215. let t = skipTypes(dest.t, abstractInst).getUniqueType()
  216. for i in 0..<t.len:
  217. let t = t[i]
  218. let field = "Field$1" % [i.rope]
  219. genAssignment(p, optAsgnLoc(dest, t, field),
  220. optAsgnLoc(src, t, field), newflags)
  221. proc genOptAsgnObject(p: BProc, dest, src: TLoc, flags: TAssignmentFlags,
  222. t: PNode, typ: PType) =
  223. if t == nil: return
  224. let newflags =
  225. if src.storage == OnStatic:
  226. flags + {needToCopy}
  227. elif tfShallow in dest.t.flags:
  228. flags - {needToCopy}
  229. else:
  230. flags
  231. case t.kind
  232. of nkSym:
  233. let field = t.sym
  234. if field.loc.r == "": fillObjectFields(p.module, typ)
  235. genAssignment(p, optAsgnLoc(dest, field.typ, field.loc.r),
  236. optAsgnLoc(src, field.typ, field.loc.r), newflags)
  237. of nkRecList:
  238. for child in items(t): genOptAsgnObject(p, dest, src, newflags, child, typ)
  239. else: discard
  240. proc genGenericAsgn(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) =
  241. # Consider:
  242. # type TMyFastString {.shallow.} = string
  243. # Due to the implementation of pragmas this would end up to set the
  244. # tfShallow flag for the built-in string type too! So we check only
  245. # here for this flag, where it is reasonably safe to do so
  246. # (for objects, etc.):
  247. if optSeqDestructors in p.config.globalOptions:
  248. linefmt(p, cpsStmts,
  249. "$1 = $2;$n",
  250. [rdLoc(dest), rdLoc(src)])
  251. elif needToCopy notin flags or
  252. tfShallow in skipTypes(dest.t, abstractVarRange).flags:
  253. if (dest.storage == OnStack and p.config.selectedGC != gcGo) or not usesWriteBarrier(p.config):
  254. linefmt(p, cpsStmts,
  255. "#nimCopyMem((void*)$1, (NIM_CONST void*)$2, sizeof($3));$n",
  256. [addrLoc(p.config, dest), addrLoc(p.config, src), rdLoc(dest)])
  257. else:
  258. linefmt(p, cpsStmts, "#genericShallowAssign((void*)$1, (void*)$2, $3);$n",
  259. [addrLoc(p.config, dest), addrLoc(p.config, src), genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  260. else:
  261. linefmt(p, cpsStmts, "#genericAssign((void*)$1, (void*)$2, $3);$n",
  262. [addrLoc(p.config, dest), addrLoc(p.config, src), genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  263. proc genOpenArrayConv(p: BProc; d: TLoc; a: TLoc) =
  264. assert d.k != locNone
  265. # getTemp(p, d.t, d)
  266. case a.t.skipTypes(abstractVar).kind
  267. of tyOpenArray, tyVarargs:
  268. if reifiedOpenArray(a.lode):
  269. linefmt(p, cpsStmts, "$1.Field0 = $2.Field0; $1.Field1 = $2.Field1;$n",
  270. [rdLoc(d), a.rdLoc])
  271. else:
  272. linefmt(p, cpsStmts, "$1.Field0 = $2; $1.Field1 = $2Len_0;$n",
  273. [rdLoc(d), a.rdLoc])
  274. of tySequence:
  275. linefmt(p, cpsStmts, "$1.Field0 = $2$3; $1.Field1 = $4;$n",
  276. [rdLoc(d), a.rdLoc, dataField(p), lenExpr(p, a)])
  277. of tyArray:
  278. linefmt(p, cpsStmts, "$1.Field0 = $2; $1.Field1 = $3;$n",
  279. [rdLoc(d), rdLoc(a), rope(lengthOrd(p.config, a.t))])
  280. of tyString:
  281. let etyp = skipTypes(a.t, abstractInst)
  282. if etyp.kind in {tyVar} and optSeqDestructors in p.config.globalOptions:
  283. linefmt(p, cpsStmts, "#nimPrepareStrMutationV2($1);$n", [byRefLoc(p, a)])
  284. linefmt(p, cpsStmts, "$1.Field0 = $2$3; $1.Field1 = $4;$n",
  285. [rdLoc(d), a.rdLoc, dataField(p), lenExpr(p, a)])
  286. else:
  287. internalError(p.config, a.lode.info, "cannot handle " & $a.t.kind)
  288. proc genAssignment(p: BProc, dest, src: TLoc, flags: TAssignmentFlags) =
  289. # This function replaces all other methods for generating
  290. # the assignment operation in C.
  291. if src.t != nil and src.t.kind == tyPtr:
  292. # little HACK to support the new 'var T' as return type:
  293. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  294. return
  295. let ty = skipTypes(dest.t, abstractRange + tyUserTypeClasses + {tyStatic})
  296. case ty.kind
  297. of tyRef:
  298. genRefAssign(p, dest, src)
  299. of tySequence:
  300. if optSeqDestructors in p.config.globalOptions:
  301. genGenericAsgn(p, dest, src, flags)
  302. elif (needToCopy notin flags and src.storage != OnStatic) or canMove(p, src.lode, dest):
  303. genRefAssign(p, dest, src)
  304. else:
  305. linefmt(p, cpsStmts, "#genericSeqAssign($1, $2, $3);$n",
  306. [addrLoc(p.config, dest), rdLoc(src),
  307. genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  308. of tyString:
  309. if optSeqDestructors in p.config.globalOptions:
  310. genGenericAsgn(p, dest, src, flags)
  311. elif (needToCopy notin flags and src.storage != OnStatic) or canMove(p, src.lode, dest):
  312. genRefAssign(p, dest, src)
  313. else:
  314. if (dest.storage == OnStack and p.config.selectedGC != gcGo) or not usesWriteBarrier(p.config):
  315. linefmt(p, cpsStmts, "$1 = #copyString($2);$n", [dest.rdLoc, src.rdLoc])
  316. elif dest.storage == OnHeap:
  317. # we use a temporary to care for the dreaded self assignment:
  318. var tmp: TLoc
  319. getTemp(p, ty, tmp)
  320. linefmt(p, cpsStmts, "$3 = $1; $1 = #copyStringRC1($2);$n",
  321. [dest.rdLoc, src.rdLoc, tmp.rdLoc])
  322. linefmt(p, cpsStmts, "if ($1) #nimGCunrefNoCycle($1);$n", [tmp.rdLoc])
  323. else:
  324. linefmt(p, cpsStmts, "#unsureAsgnRef((void**) $1, #copyString($2));$n",
  325. [addrLoc(p.config, dest), rdLoc(src)])
  326. of tyProc:
  327. if containsGarbageCollectedRef(dest.t):
  328. # optimize closure assignment:
  329. let a = optAsgnLoc(dest, dest.t, "ClE_0".rope)
  330. let b = optAsgnLoc(src, dest.t, "ClE_0".rope)
  331. genRefAssign(p, a, b)
  332. linefmt(p, cpsStmts, "$1.ClP_0 = $2.ClP_0;$n", [rdLoc(dest), rdLoc(src)])
  333. else:
  334. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  335. of tyTuple:
  336. if containsGarbageCollectedRef(dest.t):
  337. if dest.t.len <= 4: genOptAsgnTuple(p, dest, src, flags)
  338. else: genGenericAsgn(p, dest, src, flags)
  339. else:
  340. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  341. of tyObject:
  342. # XXX: check for subtyping?
  343. if ty.isImportedCppType:
  344. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  345. elif not isObjLackingTypeField(ty):
  346. genGenericAsgn(p, dest, src, flags)
  347. elif containsGarbageCollectedRef(ty):
  348. if ty[0].isNil and asgnComplexity(ty.n) <= 4:
  349. discard getTypeDesc(p.module, ty)
  350. internalAssert p.config, ty.n != nil
  351. genOptAsgnObject(p, dest, src, flags, ty.n, ty)
  352. else:
  353. genGenericAsgn(p, dest, src, flags)
  354. else:
  355. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  356. of tyArray:
  357. if containsGarbageCollectedRef(dest.t) and p.config.selectedGC notin {gcArc, gcOrc, gcHooks}:
  358. genGenericAsgn(p, dest, src, flags)
  359. else:
  360. linefmt(p, cpsStmts,
  361. "#nimCopyMem((void*)$1, (NIM_CONST void*)$2, sizeof($3));$n",
  362. [rdLoc(dest), rdLoc(src), getTypeDesc(p.module, dest.t)])
  363. of tyOpenArray, tyVarargs:
  364. # open arrays are always on the stack - really? What if a sequence is
  365. # passed to an open array?
  366. if reifiedOpenArray(dest.lode):
  367. genOpenArrayConv(p, dest, src)
  368. elif containsGarbageCollectedRef(dest.t):
  369. linefmt(p, cpsStmts, # XXX: is this correct for arrays?
  370. "#genericAssignOpenArray((void*)$1, (void*)$2, $1Len_0, $3);$n",
  371. [addrLoc(p.config, dest), addrLoc(p.config, src),
  372. genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  373. else:
  374. linefmt(p, cpsStmts,
  375. # bug #4799, keep the nimCopyMem for a while
  376. #"#nimCopyMem((void*)$1, (NIM_CONST void*)$2, sizeof($1[0])*$1Len_0);$n",
  377. "$1 = $2;$n",
  378. [rdLoc(dest), rdLoc(src)])
  379. of tySet:
  380. if mapSetType(p.config, ty) == ctArray:
  381. linefmt(p, cpsStmts, "#nimCopyMem((void*)$1, (NIM_CONST void*)$2, $3);$n",
  382. [rdLoc(dest), rdLoc(src), getSize(p.config, dest.t)])
  383. else:
  384. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  385. of tyPtr, tyPointer, tyChar, tyBool, tyEnum, tyCstring,
  386. tyInt..tyUInt64, tyRange, tyVar, tyLent, tyNil:
  387. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  388. else: internalError(p.config, "genAssignment: " & $ty.kind)
  389. if optMemTracker in p.options and dest.storage in {OnHeap, OnUnknown}:
  390. #writeStackTrace()
  391. #echo p.currLineInfo, " requesting"
  392. linefmt(p, cpsStmts, "#memTrackerWrite((void*)$1, $2, $3, $4);$n",
  393. [addrLoc(p.config, dest), getSize(p.config, dest.t),
  394. makeCString(toFullPath(p.config, p.currLineInfo)),
  395. p.currLineInfo.safeLineNm])
  396. proc genDeepCopy(p: BProc; dest, src: TLoc) =
  397. template addrLocOrTemp(a: TLoc): Rope =
  398. if a.k == locExpr:
  399. var tmp: TLoc
  400. getTemp(p, a.t, tmp)
  401. genAssignment(p, tmp, a, {})
  402. addrLoc(p.config, tmp)
  403. else:
  404. addrLoc(p.config, a)
  405. var ty = skipTypes(dest.t, abstractVarRange + {tyStatic})
  406. case ty.kind
  407. of tyPtr, tyRef, tyProc, tyTuple, tyObject, tyArray:
  408. # XXX optimize this
  409. linefmt(p, cpsStmts, "#genericDeepCopy((void*)$1, (void*)$2, $3);$n",
  410. [addrLoc(p.config, dest), addrLocOrTemp(src),
  411. genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  412. of tySequence, tyString:
  413. if optTinyRtti in p.config.globalOptions:
  414. linefmt(p, cpsStmts, "#genericDeepCopy((void*)$1, (void*)$2, $3);$n",
  415. [addrLoc(p.config, dest), addrLocOrTemp(src),
  416. genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  417. else:
  418. linefmt(p, cpsStmts, "#genericSeqDeepCopy($1, $2, $3);$n",
  419. [addrLoc(p.config, dest), rdLoc(src),
  420. genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  421. of tyOpenArray, tyVarargs:
  422. linefmt(p, cpsStmts,
  423. "#genericDeepCopyOpenArray((void*)$1, (void*)$2, $1Len_0, $3);$n",
  424. [addrLoc(p.config, dest), addrLocOrTemp(src),
  425. genTypeInfoV1(p.module, dest.t, dest.lode.info)])
  426. of tySet:
  427. if mapSetType(p.config, ty) == ctArray:
  428. linefmt(p, cpsStmts, "#nimCopyMem((void*)$1, (NIM_CONST void*)$2, $3);$n",
  429. [rdLoc(dest), rdLoc(src), getSize(p.config, dest.t)])
  430. else:
  431. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  432. of tyPointer, tyChar, tyBool, tyEnum, tyCstring,
  433. tyInt..tyUInt64, tyRange, tyVar, tyLent:
  434. linefmt(p, cpsStmts, "$1 = $2;$n", [rdLoc(dest), rdLoc(src)])
  435. else: internalError(p.config, "genDeepCopy: " & $ty.kind)
  436. proc putLocIntoDest(p: BProc, d: var TLoc, s: TLoc) =
  437. if d.k != locNone:
  438. if lfNoDeepCopy in d.flags: genAssignment(p, d, s, {})
  439. else: genAssignment(p, d, s, {needToCopy})
  440. else:
  441. d = s # ``d`` is free, so fill it with ``s``
  442. proc putDataIntoDest(p: BProc, d: var TLoc, n: PNode, r: Rope) =
  443. var a: TLoc
  444. if d.k != locNone:
  445. # need to generate an assignment here
  446. initLoc(a, locData, n, OnStatic)
  447. a.r = r
  448. if lfNoDeepCopy in d.flags: genAssignment(p, d, a, {})
  449. else: genAssignment(p, d, a, {needToCopy})
  450. else:
  451. # we cannot call initLoc() here as that would overwrite
  452. # the flags field!
  453. d.k = locData
  454. d.lode = n
  455. d.r = r
  456. proc putIntoDest(p: BProc, d: var TLoc, n: PNode, r: Rope; s=OnUnknown) =
  457. var a: TLoc
  458. if d.k != locNone:
  459. # need to generate an assignment here
  460. initLoc(a, locExpr, n, s)
  461. a.r = r
  462. if lfNoDeepCopy in d.flags: genAssignment(p, d, a, {})
  463. else: genAssignment(p, d, a, {needToCopy})
  464. else:
  465. # we cannot call initLoc() here as that would overwrite
  466. # the flags field!
  467. d.k = locExpr
  468. d.lode = n
  469. d.r = r
  470. proc binaryStmt(p: BProc, e: PNode, d: var TLoc, op: string) =
  471. var a, b: TLoc
  472. if d.k != locNone: internalError(p.config, e.info, "binaryStmt")
  473. initLocExpr(p, e[1], a)
  474. initLocExpr(p, e[2], b)
  475. lineCg(p, cpsStmts, "$1 $2 $3;$n", [rdLoc(a), op, rdLoc(b)])
  476. proc binaryStmtAddr(p: BProc, e: PNode, d: var TLoc, cpname: string) =
  477. var a, b: TLoc
  478. if d.k != locNone: internalError(p.config, e.info, "binaryStmtAddr")
  479. initLocExpr(p, e[1], a)
  480. initLocExpr(p, e[2], b)
  481. lineCg(p, cpsStmts, "#$1($2, $3);$n", [cpname, byRefLoc(p, a), rdLoc(b)])
  482. template unaryStmt(p: BProc, e: PNode, d: var TLoc, frmt: string) =
  483. var a: TLoc
  484. if d.k != locNone: internalError(p.config, e.info, "unaryStmt")
  485. initLocExpr(p, e[1], a)
  486. lineCg(p, cpsStmts, frmt, [rdLoc(a)])
  487. template binaryExpr(p: BProc, e: PNode, d: var TLoc, frmt: string) =
  488. var a, b: TLoc
  489. assert(e[1].typ != nil)
  490. assert(e[2].typ != nil)
  491. initLocExpr(p, e[1], a)
  492. initLocExpr(p, e[2], b)
  493. putIntoDest(p, d, e, ropecg(p.module, frmt, [rdLoc(a), rdLoc(b)]))
  494. template binaryExprChar(p: BProc, e: PNode, d: var TLoc, frmt: string) =
  495. var a, b: TLoc
  496. assert(e[1].typ != nil)
  497. assert(e[2].typ != nil)
  498. initLocExpr(p, e[1], a)
  499. initLocExpr(p, e[2], b)
  500. putIntoDest(p, d, e, ropecg(p.module, frmt, [a.rdCharLoc, b.rdCharLoc]))
  501. template unaryExpr(p: BProc, e: PNode, d: var TLoc, frmt: string) =
  502. var a: TLoc
  503. initLocExpr(p, e[1], a)
  504. putIntoDest(p, d, e, ropecg(p.module, frmt, [rdLoc(a)]))
  505. template unaryExprChar(p: BProc, e: PNode, d: var TLoc, frmt: string) =
  506. var a: TLoc
  507. initLocExpr(p, e[1], a)
  508. putIntoDest(p, d, e, ropecg(p.module, frmt, [rdCharLoc(a)]))
  509. template binaryArithOverflowRaw(p: BProc, t: PType, a, b: TLoc;
  510. cpname: string): Rope =
  511. var size = getSize(p.config, t)
  512. let storage = if size < p.config.target.intSize: rope("NI")
  513. else: getTypeDesc(p.module, t)
  514. var result = getTempName(p.module)
  515. linefmt(p, cpsLocals, "$1 $2;$n", [storage, result])
  516. lineCg(p, cpsStmts, "if (#$2($3, $4, &$1)) { #raiseOverflow(); ",
  517. [result, cpname, rdCharLoc(a), rdCharLoc(b)])
  518. raiseInstr(p, p.s(cpsStmts))
  519. linefmt p, cpsStmts, "};$n", []
  520. if size < p.config.target.intSize or t.kind in {tyRange, tyEnum}:
  521. var first = newRopeAppender()
  522. intLiteral(firstOrd(p.config, t), first)
  523. var last = newRopeAppender()
  524. intLiteral(lastOrd(p.config, t), last)
  525. linefmt(p, cpsStmts, "if ($1 < $2 || $1 > $3){ #raiseOverflow(); ",
  526. [result, first, last])
  527. raiseInstr(p, p.s(cpsStmts))
  528. linefmt p, cpsStmts, "}$n", []
  529. result
  530. proc binaryArithOverflow(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
  531. const
  532. prc: array[mAddI..mPred, string] = [
  533. "nimAddInt", "nimSubInt",
  534. "nimMulInt", "nimDivInt", "nimModInt",
  535. "nimAddInt", "nimSubInt"
  536. ]
  537. prc64: array[mAddI..mPred, string] = [
  538. "nimAddInt64", "nimSubInt64",
  539. "nimMulInt64", "nimDivInt64", "nimModInt64",
  540. "nimAddInt64", "nimSubInt64"
  541. ]
  542. opr: array[mAddI..mPred, string] = ["+", "-", "*", "/", "%", "+", "-"]
  543. var a, b: TLoc
  544. assert(e[1].typ != nil)
  545. assert(e[2].typ != nil)
  546. initLocExpr(p, e[1], a)
  547. initLocExpr(p, e[2], b)
  548. # skipping 'range' is correct here as we'll generate a proper range check
  549. # later via 'chckRange'
  550. let t = e.typ.skipTypes(abstractRange)
  551. if optOverflowCheck notin p.options:
  552. let res = "($1)($2 $3 $4)" % [getTypeDesc(p.module, e.typ), rdLoc(a), rope(opr[m]), rdLoc(b)]
  553. putIntoDest(p, d, e, res)
  554. else:
  555. # we handle div by zero here so that we know that the compilerproc's
  556. # result is only for overflows.
  557. var needsOverflowCheck = true
  558. if m in {mDivI, mModI}:
  559. var canBeZero = true
  560. if e[2].kind in {nkIntLit..nkUInt64Lit}:
  561. canBeZero = e[2].intVal == 0
  562. if e[2].kind in {nkIntLit..nkInt64Lit}:
  563. needsOverflowCheck = e[2].intVal == -1
  564. if canBeZero:
  565. linefmt(p, cpsStmts, "if ($1 == 0){ #raiseDivByZero(); ", [rdLoc(b)])
  566. raiseInstr(p, p.s(cpsStmts))
  567. linefmt(p, cpsStmts, "}$n", [])
  568. if needsOverflowCheck:
  569. let res = binaryArithOverflowRaw(p, t, a, b,
  570. if t.kind == tyInt64: prc64[m] else: prc[m])
  571. putIntoDest(p, d, e, "($#)($#)" % [getTypeDesc(p.module, e.typ), res])
  572. else:
  573. let res = "($1)($2 $3 $4)" % [getTypeDesc(p.module, e.typ), rdLoc(a), rope(opr[m]), rdLoc(b)]
  574. putIntoDest(p, d, e, res)
  575. proc unaryArithOverflow(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
  576. var
  577. a: TLoc
  578. t: PType
  579. assert(e[1].typ != nil)
  580. initLocExpr(p, e[1], a)
  581. t = skipTypes(e.typ, abstractRange)
  582. if optOverflowCheck in p.options:
  583. var first = newRopeAppender()
  584. intLiteral(firstOrd(p.config, t), first)
  585. linefmt(p, cpsStmts, "if ($1 == $2){ #raiseOverflow(); ",
  586. [rdLoc(a), first])
  587. raiseInstr(p, p.s(cpsStmts))
  588. linefmt p, cpsStmts, "}$n", []
  589. case m
  590. of mUnaryMinusI:
  591. putIntoDest(p, d, e, "((NI$2)-($1))" % [rdLoc(a), rope(getSize(p.config, t) * 8)])
  592. of mUnaryMinusI64:
  593. putIntoDest(p, d, e, "-($1)" % [rdLoc(a)])
  594. of mAbsI:
  595. putIntoDest(p, d, e, "($1 > 0? ($1) : -($1))" % [rdLoc(a)])
  596. else:
  597. assert(false, $m)
  598. proc binaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
  599. var
  600. a, b: TLoc
  601. s, k: BiggestInt
  602. assert(e[1].typ != nil)
  603. assert(e[2].typ != nil)
  604. initLocExpr(p, e[1], a)
  605. initLocExpr(p, e[2], b)
  606. # BUGFIX: cannot use result-type here, as it may be a boolean
  607. s = max(getSize(p.config, a.t), getSize(p.config, b.t)) * 8
  608. k = getSize(p.config, a.t) * 8
  609. template applyFormat(frmt: untyped) =
  610. putIntoDest(p, d, e, frmt % [
  611. rdLoc(a), rdLoc(b), rope(s),
  612. getSimpleTypeDesc(p.module, e.typ), rope(k)]
  613. )
  614. case op
  615. of mAddF64: applyFormat("(($4)($1) + ($4)($2))")
  616. of mSubF64: applyFormat("(($4)($1) - ($4)($2))")
  617. of mMulF64: applyFormat("(($4)($1) * ($4)($2))")
  618. of mDivF64: applyFormat("(($4)($1) / ($4)($2))")
  619. of mShrI: applyFormat("($4)((NU$5)($1) >> (NU$3)($2))")
  620. of mShlI: applyFormat("($4)((NU$3)($1) << (NU$3)($2))")
  621. of mAshrI: applyFormat("($4)((NI$3)($1) >> (NU$3)($2))")
  622. of mBitandI: applyFormat("($4)($1 & $2)")
  623. of mBitorI: applyFormat("($4)($1 | $2)")
  624. of mBitxorI: applyFormat("($4)($1 ^ $2)")
  625. of mMinI: applyFormat("(($1 <= $2) ? $1 : $2)")
  626. of mMaxI: applyFormat("(($1 >= $2) ? $1 : $2)")
  627. of mAddU: applyFormat("($4)((NU$3)($1) + (NU$3)($2))")
  628. of mSubU: applyFormat("($4)((NU$3)($1) - (NU$3)($2))")
  629. of mMulU: applyFormat("($4)((NU$3)($1) * (NU$3)($2))")
  630. of mDivU: applyFormat("($4)((NU$3)($1) / (NU$3)($2))")
  631. of mModU: applyFormat("($4)((NU$3)($1) % (NU$3)($2))")
  632. of mEqI: applyFormat("($1 == $2)")
  633. of mLeI: applyFormat("($1 <= $2)")
  634. of mLtI: applyFormat("($1 < $2)")
  635. of mEqF64: applyFormat("($1 == $2)")
  636. of mLeF64: applyFormat("($1 <= $2)")
  637. of mLtF64: applyFormat("($1 < $2)")
  638. of mLeU: applyFormat("((NU$3)($1) <= (NU$3)($2))")
  639. of mLtU: applyFormat("((NU$3)($1) < (NU$3)($2))")
  640. of mEqEnum: applyFormat("($1 == $2)")
  641. of mLeEnum: applyFormat("($1 <= $2)")
  642. of mLtEnum: applyFormat("($1 < $2)")
  643. of mEqCh: applyFormat("((NU8)($1) == (NU8)($2))")
  644. of mLeCh: applyFormat("((NU8)($1) <= (NU8)($2))")
  645. of mLtCh: applyFormat("((NU8)($1) < (NU8)($2))")
  646. of mEqB: applyFormat("($1 == $2)")
  647. of mLeB: applyFormat("($1 <= $2)")
  648. of mLtB: applyFormat("($1 < $2)")
  649. of mEqRef: applyFormat("($1 == $2)")
  650. of mLePtr: applyFormat("($1 <= $2)")
  651. of mLtPtr: applyFormat("($1 < $2)")
  652. of mXor: applyFormat("($1 != $2)")
  653. else:
  654. assert(false, $op)
  655. proc genEqProc(p: BProc, e: PNode, d: var TLoc) =
  656. var a, b: TLoc
  657. assert(e[1].typ != nil)
  658. assert(e[2].typ != nil)
  659. initLocExpr(p, e[1], a)
  660. initLocExpr(p, e[2], b)
  661. if a.t.skipTypes(abstractInstOwned).callConv == ccClosure:
  662. putIntoDest(p, d, e,
  663. "($1.ClP_0 == $2.ClP_0 && $1.ClE_0 == $2.ClE_0)" % [rdLoc(a), rdLoc(b)])
  664. else:
  665. putIntoDest(p, d, e, "($1 == $2)" % [rdLoc(a), rdLoc(b)])
  666. proc genIsNil(p: BProc, e: PNode, d: var TLoc) =
  667. let t = skipTypes(e[1].typ, abstractRange)
  668. if t.kind == tyProc and t.callConv == ccClosure:
  669. unaryExpr(p, e, d, "($1.ClP_0 == 0)")
  670. else:
  671. unaryExpr(p, e, d, "($1 == 0)")
  672. proc unaryArith(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
  673. var
  674. a: TLoc
  675. t: PType
  676. assert(e[1].typ != nil)
  677. initLocExpr(p, e[1], a)
  678. t = skipTypes(e.typ, abstractRange)
  679. template applyFormat(frmt: untyped) =
  680. putIntoDest(p, d, e, frmt % [rdLoc(a), rope(getSize(p.config, t) * 8),
  681. getSimpleTypeDesc(p.module, e.typ)])
  682. case op
  683. of mNot:
  684. applyFormat("!($1)")
  685. of mUnaryPlusI:
  686. applyFormat("$1")
  687. of mBitnotI:
  688. applyFormat("($3)((NU$2) ~($1))")
  689. of mUnaryPlusF64:
  690. applyFormat("$1")
  691. of mUnaryMinusF64:
  692. applyFormat("-($1)")
  693. else:
  694. assert false, $op
  695. proc isCppRef(p: BProc; typ: PType): bool {.inline.} =
  696. result = p.module.compileToCpp and
  697. skipTypes(typ, abstractInstOwned).kind in {tyVar} and
  698. tfVarIsPtr notin skipTypes(typ, abstractInstOwned).flags
  699. proc derefBlock(p: BProc, e: PNode, d: var TLoc) =
  700. # We transform (block: x)[] to (block: x[])
  701. let e0 = e[0]
  702. var n = shallowCopy(e0)
  703. n.typ = e.typ
  704. for i in 0 ..< e0.len - 1:
  705. n[i] = e0[i]
  706. n[e0.len-1] = newTreeIT(nkHiddenDeref, e.info, e.typ, e0[e0.len-1])
  707. expr p, n, d
  708. proc genDeref(p: BProc, e: PNode, d: var TLoc) =
  709. if e.kind == nkHiddenDeref and e[0].kind in {nkBlockExpr, nkBlockStmt}:
  710. # bug #20107. Watch out to not deref the pointer too late.
  711. derefBlock(p, e, d)
  712. return
  713. let mt = mapType(p.config, e[0].typ, mapTypeChooser(e[0]))
  714. if mt in {ctArray, ctPtrToArray} and lfEnforceDeref notin d.flags:
  715. # XXX the amount of hacks for C's arrays is incredible, maybe we should
  716. # simply wrap them in a struct? --> Losing auto vectorization then?
  717. expr(p, e[0], d)
  718. if e[0].typ.skipTypes(abstractInstOwned).kind == tyRef:
  719. d.storage = OnHeap
  720. else:
  721. var a: TLoc
  722. var typ = e[0].typ
  723. if typ.kind in {tyUserTypeClass, tyUserTypeClassInst} and typ.isResolvedUserTypeClass:
  724. typ = typ.lastSon
  725. typ = typ.skipTypes(abstractInstOwned)
  726. if typ.kind in {tyVar} and tfVarIsPtr notin typ.flags and p.module.compileToCpp and e[0].kind == nkHiddenAddr:
  727. initLocExprSingleUse(p, e[0][0], d)
  728. return
  729. else:
  730. initLocExprSingleUse(p, e[0], a)
  731. if d.k == locNone:
  732. # dest = *a; <-- We do not know that 'dest' is on the heap!
  733. # It is completely wrong to set 'd.storage' here, unless it's not yet
  734. # been assigned to.
  735. case typ.kind
  736. of tyRef:
  737. d.storage = OnHeap
  738. of tyVar, tyLent:
  739. d.storage = OnUnknown
  740. if tfVarIsPtr notin typ.flags and p.module.compileToCpp and
  741. e.kind == nkHiddenDeref:
  742. putIntoDest(p, d, e, rdLoc(a), a.storage)
  743. return
  744. of tyPtr:
  745. d.storage = OnUnknown # BUGFIX!
  746. else:
  747. internalError(p.config, e.info, "genDeref " & $typ.kind)
  748. elif p.module.compileToCpp:
  749. if typ.kind in {tyVar} and tfVarIsPtr notin typ.flags and
  750. e.kind == nkHiddenDeref:
  751. putIntoDest(p, d, e, rdLoc(a), a.storage)
  752. return
  753. if mt == ctPtrToArray and lfEnforceDeref in d.flags:
  754. # we lie about the type for better C interop: 'ptr array[3,T]' is
  755. # translated to 'ptr T', but for deref'ing this produces wrong code.
  756. # See tmissingderef. So we get rid of the deref instead. The codegen
  757. # ends up using 'memcpy' for the array assignment,
  758. # so the '&' and '*' cancel out:
  759. putIntoDest(p, d, e, rdLoc(a), a.storage)
  760. else:
  761. putIntoDest(p, d, e, "(*$1)" % [rdLoc(a)], a.storage)
  762. proc cowBracket(p: BProc; n: PNode) =
  763. if n.kind == nkBracketExpr and optSeqDestructors in p.config.globalOptions:
  764. let strCandidate = n[0]
  765. if strCandidate.typ.skipTypes(abstractInst).kind == tyString:
  766. var a: TLoc
  767. initLocExpr(p, strCandidate, a)
  768. linefmt(p, cpsStmts, "#nimPrepareStrMutationV2($1);$n", [byRefLoc(p, a)])
  769. proc cow(p: BProc; n: PNode) {.inline.} =
  770. if n.kind == nkHiddenAddr: cowBracket(p, n[0])
  771. proc genAddr(p: BProc, e: PNode, d: var TLoc) =
  772. # careful 'addr(myptrToArray)' needs to get the ampersand:
  773. if e[0].typ.skipTypes(abstractInstOwned).kind in {tyRef, tyPtr}:
  774. var a: TLoc
  775. initLocExpr(p, e[0], a)
  776. putIntoDest(p, d, e, "&" & a.r, a.storage)
  777. #Message(e.info, warnUser, "HERE NEW &")
  778. elif mapType(p.config, e[0].typ, mapTypeChooser(e[0])) == ctArray or isCppRef(p, e.typ):
  779. expr(p, e[0], d)
  780. else:
  781. var a: TLoc
  782. initLocExpr(p, e[0], a)
  783. putIntoDest(p, d, e, addrLoc(p.config, a), a.storage)
  784. template inheritLocation(d: var TLoc, a: TLoc) =
  785. if d.k == locNone: d.storage = a.storage
  786. proc genRecordFieldAux(p: BProc, e: PNode, d, a: var TLoc) =
  787. initLocExpr(p, e[0], a)
  788. if e[1].kind != nkSym: internalError(p.config, e.info, "genRecordFieldAux")
  789. d.inheritLocation(a)
  790. discard getTypeDesc(p.module, a.t) # fill the record's fields.loc
  791. proc genTupleElem(p: BProc, e: PNode, d: var TLoc) =
  792. var
  793. a: TLoc
  794. i: int
  795. initLocExpr(p, e[0], a)
  796. let tupType = a.t.skipTypes(abstractInst+{tyVar})
  797. assert tupType.kind == tyTuple
  798. d.inheritLocation(a)
  799. discard getTypeDesc(p.module, a.t) # fill the record's fields.loc
  800. var r = rdLoc(a)
  801. case e[1].kind
  802. of nkIntLit..nkUInt64Lit: i = int(e[1].intVal)
  803. else: internalError(p.config, e.info, "genTupleElem")
  804. r.addf(".Field$1", [rope(i)])
  805. putIntoDest(p, d, e, r, a.storage)
  806. proc lookupFieldAgain(p: BProc, ty: PType; field: PSym; r: var Rope;
  807. resTyp: ptr PType = nil): PSym =
  808. var ty = ty
  809. assert r != ""
  810. while ty != nil:
  811. ty = ty.skipTypes(skipPtrs)
  812. assert(ty.kind in {tyTuple, tyObject})
  813. result = lookupInRecord(ty.n, field.name)
  814. if result != nil:
  815. if resTyp != nil: resTyp[] = ty
  816. break
  817. if not p.module.compileToCpp: r.add(".Sup")
  818. ty = ty[0]
  819. if result == nil: internalError(p.config, field.info, "genCheckedRecordField")
  820. proc genRecordField(p: BProc, e: PNode, d: var TLoc) =
  821. var a: TLoc
  822. genRecordFieldAux(p, e, d, a)
  823. var r = rdLoc(a)
  824. var f = e[1].sym
  825. let ty = skipTypes(a.t, abstractInstOwned + tyUserTypeClasses)
  826. if ty.kind == tyTuple:
  827. # we found a unique tuple type which lacks field information
  828. # so we use Field$i
  829. r.add ".Field"
  830. r.add rope(f.position)
  831. putIntoDest(p, d, e, r, a.storage)
  832. else:
  833. var rtyp: PType
  834. let field = lookupFieldAgain(p, ty, f, r, addr rtyp)
  835. if field.loc.r == "" and rtyp != nil: fillObjectFields(p.module, rtyp)
  836. if field.loc.r == "": internalError(p.config, e.info, "genRecordField 3 " & typeToString(ty))
  837. r.add "."
  838. r.add field.loc.r
  839. putIntoDest(p, d, e, r, a.storage)
  840. r.freeze
  841. proc genInExprAux(p: BProc, e: PNode, a, b, d: var TLoc)
  842. proc genFieldCheck(p: BProc, e: PNode, obj: Rope, field: PSym) =
  843. var test, u, v: TLoc
  844. for i in 1..<e.len:
  845. var it = e[i]
  846. assert(it.kind in nkCallKinds)
  847. assert(it[0].kind == nkSym)
  848. let op = it[0].sym
  849. if op.magic == mNot: it = it[1]
  850. let disc = it[2].skipConv
  851. assert(disc.kind == nkSym)
  852. initLoc(test, locNone, it, OnStack)
  853. initLocExpr(p, it[1], u)
  854. initLoc(v, locExpr, disc, OnUnknown)
  855. v.r = newRopeAppender()
  856. v.r.add obj
  857. v.r.add(".")
  858. v.r.add(disc.sym.loc.r)
  859. genInExprAux(p, it, u, v, test)
  860. var msg = ""
  861. if optDeclaredLocs in p.config.globalOptions:
  862. # xxx this should be controlled by a separate flag, and
  863. # used for other similar defects so that location information is shown
  864. # even without the expensive `--stacktrace`; binary size could be optimized
  865. # by encoding the file names separately from `file(line:col)`, essentially
  866. # passing around `TLineInfo` + the set of files in the project.
  867. msg.add toFileLineCol(p.config, e.info) & " "
  868. msg.add genFieldDefect(p.config, field.name.s, disc.sym)
  869. var strLit = newRopeAppender()
  870. genStringLiteral(p.module, newStrNode(nkStrLit, msg), strLit)
  871. ## discriminant check
  872. template fun(code) = linefmt(p, cpsStmts, code, [rdLoc(test)])
  873. if op.magic == mNot: fun("if ($1) ") else: fun("if (!($1)) ")
  874. ## call raiseFieldError2 on failure
  875. var discIndex = newRopeAppender()
  876. rdSetElemLoc(p.config, v, u.t, discIndex)
  877. if optTinyRtti in p.config.globalOptions:
  878. # not sure how to use `genEnumToStr` here
  879. if p.config.getStdlibVersion < (1, 5, 1):
  880. const code = "{ #raiseFieldError($1); "
  881. linefmt(p, cpsStmts, code, [strLit])
  882. else:
  883. const code = "{ #raiseFieldError2($1, (NI)$2); "
  884. linefmt(p, cpsStmts, code, [strLit, discIndex])
  885. else:
  886. # complication needed for signed types
  887. let first = p.config.firstOrd(disc.sym.typ)
  888. var firstLit = newRopeAppender()
  889. int64Literal(cast[int](first), firstLit)
  890. let discName = genTypeInfo(p.config, p.module, disc.sym.typ, e.info)
  891. if p.config.getStdlibVersion < (1,5,1):
  892. const code = "{ #raiseFieldError($1); "
  893. linefmt(p, cpsStmts, code, [strLit])
  894. else:
  895. const code = "{ #raiseFieldError2($1, #reprDiscriminant(((NI)$2) + (NI)$3, $4)); "
  896. linefmt(p, cpsStmts, code, [strLit, discIndex, firstLit, discName])
  897. raiseInstr(p, p.s(cpsStmts))
  898. linefmt p, cpsStmts, "}$n", []
  899. proc genCheckedRecordField(p: BProc, e: PNode, d: var TLoc) =
  900. assert e[0].kind == nkDotExpr
  901. if optFieldCheck in p.options:
  902. var a: TLoc
  903. genRecordFieldAux(p, e[0], d, a)
  904. let ty = skipTypes(a.t, abstractInst + tyUserTypeClasses)
  905. var r = rdLoc(a)
  906. let f = e[0][1].sym
  907. let field = lookupFieldAgain(p, ty, f, r)
  908. if field.loc.r == "": fillObjectFields(p.module, ty)
  909. if field.loc.r == "":
  910. internalError(p.config, e.info, "genCheckedRecordField") # generate the checks:
  911. genFieldCheck(p, e, r, field)
  912. r.add(".")
  913. r.add field.loc.r
  914. putIntoDest(p, d, e[0], r, a.storage)
  915. r.freeze
  916. else:
  917. genRecordField(p, e[0], d)
  918. proc genUncheckedArrayElem(p: BProc, n, x, y: PNode, d: var TLoc) =
  919. var a, b: TLoc
  920. initLocExpr(p, x, a)
  921. initLocExpr(p, y, b)
  922. d.inheritLocation(a)
  923. putIntoDest(p, d, n, ropecg(p.module, "$1[$2]", [rdLoc(a), rdCharLoc(b)]),
  924. a.storage)
  925. proc genArrayElem(p: BProc, n, x, y: PNode, d: var TLoc) =
  926. var a, b: TLoc
  927. initLocExpr(p, x, a)
  928. initLocExpr(p, y, b)
  929. var ty = skipTypes(a.t, abstractVarRange + abstractPtrs + tyUserTypeClasses)
  930. var first = newRopeAppender()
  931. intLiteral(firstOrd(p.config, ty), first)
  932. # emit range check:
  933. if optBoundsCheck in p.options and ty.kind != tyUncheckedArray:
  934. if not isConstExpr(y):
  935. # semantic pass has already checked for const index expressions
  936. if firstOrd(p.config, ty) == 0 and lastOrd(p.config, ty) >= 0:
  937. if (firstOrd(p.config, b.t) < firstOrd(p.config, ty)) or (lastOrd(p.config, b.t) > lastOrd(p.config, ty)):
  938. var last = newRopeAppender()
  939. intLiteral(lastOrd(p.config, ty), last)
  940. linefmt(p, cpsStmts, "if ((NU)($1) > (NU)($2)){ #raiseIndexError2($1, $2); ",
  941. [rdCharLoc(b), last])
  942. raiseInstr(p, p.s(cpsStmts))
  943. linefmt p, cpsStmts, "}$n", []
  944. else:
  945. var last = newRopeAppender()
  946. intLiteral(lastOrd(p.config, ty), last)
  947. linefmt(p, cpsStmts, "if ($1 < $2 || $1 > $3){ #raiseIndexError3($1, $2, $3); ",
  948. [rdCharLoc(b), first, last])
  949. raiseInstr(p, p.s(cpsStmts))
  950. linefmt p, cpsStmts, "}$n", []
  951. else:
  952. let idx = getOrdValue(y)
  953. if idx < firstOrd(p.config, ty) or idx > lastOrd(p.config, ty):
  954. localError(p.config, x.info, formatErrorIndexBound(idx, firstOrd(p.config, ty), lastOrd(p.config, ty)))
  955. d.inheritLocation(a)
  956. putIntoDest(p, d, n,
  957. ropecg(p.module, "$1[($2)- $3]", [rdLoc(a), rdCharLoc(b), first]), a.storage)
  958. proc genCStringElem(p: BProc, n, x, y: PNode, d: var TLoc) =
  959. var a, b: TLoc
  960. initLocExpr(p, x, a)
  961. initLocExpr(p, y, b)
  962. inheritLocation(d, a)
  963. putIntoDest(p, d, n,
  964. ropecg(p.module, "$1[$2]", [rdLoc(a), rdCharLoc(b)]), a.storage)
  965. proc genBoundsCheck(p: BProc; arr, a, b: TLoc) =
  966. let ty = skipTypes(arr.t, abstractVarRange)
  967. case ty.kind
  968. of tyOpenArray, tyVarargs:
  969. if reifiedOpenArray(arr.lode):
  970. linefmt(p, cpsStmts,
  971. "if ($2-$1 != -1 && " &
  972. "($1 < 0 || $1 >= $3.Field1 || $2 < 0 || $2 >= $3.Field1)){ #raiseIndexError4($1, $2, $3.Field1); ",
  973. [rdLoc(a), rdLoc(b), rdLoc(arr)])
  974. else:
  975. linefmt(p, cpsStmts,
  976. "if ($2-$1 != -1 && ($1 < 0 || $1 >= $3Len_0 || $2 < 0 || $2 >= $3Len_0))" &
  977. "{ #raiseIndexError4($1, $2, $3Len_0); ",
  978. [rdLoc(a), rdLoc(b), rdLoc(arr)])
  979. raiseInstr(p, p.s(cpsStmts))
  980. linefmt p, cpsStmts, "}$n", []
  981. of tyArray:
  982. var first = newRopeAppender()
  983. intLiteral(firstOrd(p.config, ty), first)
  984. var last = newRopeAppender()
  985. intLiteral(lastOrd(p.config, ty), last)
  986. linefmt(p, cpsStmts,
  987. "if ($2-$1 != -1 && " &
  988. "($2-$1 < -1 || $1 < $3 || $1 > $4 || $2 < $3 || $2 > $4)){ #raiseIndexError(); ",
  989. [rdCharLoc(a), rdCharLoc(b), first, last])
  990. raiseInstr(p, p.s(cpsStmts))
  991. linefmt p, cpsStmts, "}$n", []
  992. of tySequence, tyString:
  993. linefmt(p, cpsStmts,
  994. "if ($2-$1 != -1 && " &
  995. "($1 < 0 || $1 >= $3 || $2 < 0 || $2 >= $3)){ #raiseIndexError4($1, $2, $3); ",
  996. [rdLoc(a), rdLoc(b), lenExpr(p, arr)])
  997. raiseInstr(p, p.s(cpsStmts))
  998. linefmt p, cpsStmts, "}$n", []
  999. else: discard
  1000. proc genOpenArrayElem(p: BProc, n, x, y: PNode, d: var TLoc) =
  1001. var a, b: TLoc
  1002. initLocExpr(p, x, a)
  1003. initLocExpr(p, y, b)
  1004. if not reifiedOpenArray(x):
  1005. # emit range check:
  1006. if optBoundsCheck in p.options:
  1007. linefmt(p, cpsStmts, "if ($1 < 0 || $1 >= $2Len_0){ #raiseIndexError2($1,$2Len_0-1); ",
  1008. [rdCharLoc(b), rdLoc(a)]) # BUGFIX: ``>=`` and not ``>``!
  1009. raiseInstr(p, p.s(cpsStmts))
  1010. linefmt p, cpsStmts, "}$n", []
  1011. inheritLocation(d, a)
  1012. putIntoDest(p, d, n,
  1013. ropecg(p.module, "$1[$2]", [rdLoc(a), rdCharLoc(b)]), a.storage)
  1014. else:
  1015. if optBoundsCheck in p.options:
  1016. linefmt(p, cpsStmts, "if ($1 < 0 || $1 >= $2.Field1){ #raiseIndexError2($1,$2.Field1-1); ",
  1017. [rdCharLoc(b), rdLoc(a)]) # BUGFIX: ``>=`` and not ``>``!
  1018. raiseInstr(p, p.s(cpsStmts))
  1019. linefmt p, cpsStmts, "}$n", []
  1020. inheritLocation(d, a)
  1021. putIntoDest(p, d, n,
  1022. ropecg(p.module, "$1.Field0[$2]", [rdLoc(a), rdCharLoc(b)]), a.storage)
  1023. proc genSeqElem(p: BProc, n, x, y: PNode, d: var TLoc) =
  1024. var a, b: TLoc
  1025. initLocExpr(p, x, a)
  1026. initLocExpr(p, y, b)
  1027. var ty = skipTypes(a.t, abstractVarRange)
  1028. if ty.kind in {tyRef, tyPtr}:
  1029. ty = skipTypes(ty.lastSon, abstractVarRange) # emit range check:
  1030. if optBoundsCheck in p.options:
  1031. linefmt(p, cpsStmts,
  1032. "if ($1 < 0 || $1 >= $2){ #raiseIndexError2($1,$2-1); ",
  1033. [rdCharLoc(b), lenExpr(p, a)])
  1034. raiseInstr(p, p.s(cpsStmts))
  1035. linefmt p, cpsStmts, "}$n", []
  1036. if d.k == locNone: d.storage = OnHeap
  1037. if skipTypes(a.t, abstractVar).kind in {tyRef, tyPtr}:
  1038. a.r = ropecg(p.module, "(*$1)", [a.r])
  1039. if lfPrepareForMutation in d.flags and ty.kind == tyString and
  1040. optSeqDestructors in p.config.globalOptions:
  1041. linefmt(p, cpsStmts, "#nimPrepareStrMutationV2($1);$n", [byRefLoc(p, a)])
  1042. putIntoDest(p, d, n,
  1043. ropecg(p.module, "$1$3[$2]", [rdLoc(a), rdCharLoc(b), dataField(p)]), a.storage)
  1044. proc genBracketExpr(p: BProc; n: PNode; d: var TLoc) =
  1045. var ty = skipTypes(n[0].typ, abstractVarRange + tyUserTypeClasses)
  1046. if ty.kind in {tyRef, tyPtr}: ty = skipTypes(ty.lastSon, abstractVarRange)
  1047. case ty.kind
  1048. of tyUncheckedArray: genUncheckedArrayElem(p, n, n[0], n[1], d)
  1049. of tyArray: genArrayElem(p, n, n[0], n[1], d)
  1050. of tyOpenArray, tyVarargs: genOpenArrayElem(p, n, n[0], n[1], d)
  1051. of tySequence, tyString: genSeqElem(p, n, n[0], n[1], d)
  1052. of tyCstring: genCStringElem(p, n, n[0], n[1], d)
  1053. of tyTuple: genTupleElem(p, n, d)
  1054. else: internalError(p.config, n.info, "expr(nkBracketExpr, " & $ty.kind & ')')
  1055. discard getTypeDesc(p.module, n.typ)
  1056. proc isSimpleExpr(n: PNode): bool =
  1057. # calls all the way down --> can stay expression based
  1058. case n.kind
  1059. of nkCallKinds, nkDotExpr, nkPar, nkTupleConstr,
  1060. nkObjConstr, nkBracket, nkCurly, nkHiddenDeref, nkDerefExpr, nkHiddenAddr,
  1061. nkHiddenStdConv, nkHiddenSubConv, nkConv, nkAddr:
  1062. for c in n:
  1063. if not isSimpleExpr(c): return false
  1064. result = true
  1065. of nkStmtListExpr:
  1066. for i in 0..<n.len-1:
  1067. if n[i].kind notin {nkCommentStmt, nkEmpty}: return false
  1068. result = isSimpleExpr(n.lastSon)
  1069. else:
  1070. if n.isAtom:
  1071. result = true
  1072. proc genAndOr(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
  1073. # how to generate code?
  1074. # 'expr1 and expr2' becomes:
  1075. # result = expr1
  1076. # fjmp result, end
  1077. # result = expr2
  1078. # end:
  1079. # ... (result computed)
  1080. # BUGFIX:
  1081. # a = b or a
  1082. # used to generate:
  1083. # a = b
  1084. # if a: goto end
  1085. # a = a
  1086. # end:
  1087. # now it generates:
  1088. # tmp = b
  1089. # if tmp: goto end
  1090. # tmp = a
  1091. # end:
  1092. # a = tmp
  1093. when false:
  1094. #if isSimpleExpr(e) and p.module.compileToCpp:
  1095. var tmpA, tmpB: TLoc
  1096. #getTemp(p, e.typ, tmpA)
  1097. #getTemp(p, e.typ, tmpB)
  1098. initLocExprSingleUse(p, e[1], tmpA)
  1099. initLocExprSingleUse(p, e[2], tmpB)
  1100. tmpB.k = locExpr
  1101. if m == mOr:
  1102. tmpB.r = "((" & rdLoc(tmpA) & ")||(" & rdLoc(tmpB) & "))"
  1103. else:
  1104. tmpB.r = "((" & rdLoc(tmpA) & ")&&(" & rdLoc(tmpB) & "))"
  1105. if d.k == locNone:
  1106. d = tmpB
  1107. else:
  1108. genAssignment(p, d, tmpB, {})
  1109. else:
  1110. var
  1111. L: TLabel
  1112. tmp: TLoc
  1113. getTemp(p, e.typ, tmp) # force it into a temp!
  1114. inc p.splitDecls
  1115. expr(p, e[1], tmp)
  1116. L = getLabel(p)
  1117. if m == mOr:
  1118. lineF(p, cpsStmts, "if ($1) goto $2;$n", [rdLoc(tmp), L])
  1119. else:
  1120. lineF(p, cpsStmts, "if (!($1)) goto $2;$n", [rdLoc(tmp), L])
  1121. expr(p, e[2], tmp)
  1122. fixLabel(p, L)
  1123. if d.k == locNone:
  1124. d = tmp
  1125. else:
  1126. genAssignment(p, d, tmp, {}) # no need for deep copying
  1127. dec p.splitDecls
  1128. proc genEcho(p: BProc, n: PNode) =
  1129. # this unusual way of implementing it ensures that e.g. ``echo("hallo", 45)``
  1130. # is threadsafe.
  1131. internalAssert p.config, n.kind == nkBracket
  1132. if p.config.target.targetOS == osGenode:
  1133. # echo directly to the Genode LOG session
  1134. var args: Rope = ""
  1135. var a: TLoc
  1136. for i, it in n.sons:
  1137. if it.skipConv.kind == nkNilLit:
  1138. args.add(", \"\"")
  1139. elif n.len != 0:
  1140. initLocExpr(p, it, a)
  1141. if i > 0:
  1142. args.add(", ")
  1143. case detectStrVersion(p.module)
  1144. of 2:
  1145. args.add(ropecg(p.module, "Genode::Cstring($1.p->data, $1.len)", [a.rdLoc]))
  1146. else:
  1147. args.add(ropecg(p.module, "Genode::Cstring($1->data, $1->len)", [a.rdLoc]))
  1148. p.module.includeHeader("<base/log.h>")
  1149. p.module.includeHeader("<util/string.h>")
  1150. linefmt(p, cpsStmts, """Genode::log($1);$n""", [args])
  1151. else:
  1152. if n.len == 0:
  1153. linefmt(p, cpsStmts, "#echoBinSafe(NIM_NIL, $1);$n", [n.len])
  1154. else:
  1155. var a: TLoc
  1156. initLocExpr(p, n, a)
  1157. linefmt(p, cpsStmts, "#echoBinSafe($1, $2);$n", [a.rdLoc, n.len])
  1158. when false:
  1159. p.module.includeHeader("<stdio.h>")
  1160. linefmt(p, cpsStmts, "printf($1$2);$n",
  1161. makeCString(repeat("%s", n.len) & "\L"), [args])
  1162. linefmt(p, cpsStmts, "fflush(stdout);$n", [])
  1163. proc gcUsage(conf: ConfigRef; n: PNode) =
  1164. if conf.selectedGC == gcNone: message(conf, n.info, warnGcMem, n.renderTree)
  1165. proc strLoc(p: BProc; d: TLoc): Rope =
  1166. if optSeqDestructors in p.config.globalOptions:
  1167. result = byRefLoc(p, d)
  1168. else:
  1169. result = rdLoc(d)
  1170. proc genStrConcat(p: BProc, e: PNode, d: var TLoc) =
  1171. # <Nim code>
  1172. # s = "Hello " & name & ", how do you feel?" & 'z'
  1173. #
  1174. # <generated C code>
  1175. # {
  1176. # string tmp0;
  1177. # ...
  1178. # tmp0 = rawNewString(6 + 17 + 1 + s2->len);
  1179. # // we cannot generate s = rawNewString(...) here, because
  1180. # // ``s`` may be used on the right side of the expression
  1181. # appendString(tmp0, strlit_1);
  1182. # appendString(tmp0, name);
  1183. # appendString(tmp0, strlit_2);
  1184. # appendChar(tmp0, 'z');
  1185. # asgn(s, tmp0);
  1186. # }
  1187. var a, tmp: TLoc
  1188. getTemp(p, e.typ, tmp)
  1189. var L = 0
  1190. var appends: Rope = ""
  1191. var lens: Rope = ""
  1192. for i in 0..<e.len - 1:
  1193. # compute the length expression:
  1194. initLocExpr(p, e[i + 1], a)
  1195. if skipTypes(e[i + 1].typ, abstractVarRange).kind == tyChar:
  1196. inc(L)
  1197. appends.add(ropecg(p.module, "#appendChar($1, $2);$n", [strLoc(p, tmp), rdLoc(a)]))
  1198. else:
  1199. if e[i + 1].kind in {nkStrLit..nkTripleStrLit}:
  1200. inc(L, e[i + 1].strVal.len)
  1201. else:
  1202. lens.add(lenExpr(p, a))
  1203. lens.add(" + ")
  1204. appends.add(ropecg(p.module, "#appendString($1, $2);$n", [strLoc(p, tmp), rdLoc(a)]))
  1205. linefmt(p, cpsStmts, "$1 = #rawNewString($2$3);$n", [tmp.r, lens, L])
  1206. p.s(cpsStmts).add appends
  1207. if d.k == locNone:
  1208. d = tmp
  1209. else:
  1210. genAssignment(p, d, tmp, {}) # no need for deep copying
  1211. gcUsage(p.config, e)
  1212. proc genStrAppend(p: BProc, e: PNode, d: var TLoc) =
  1213. # <Nim code>
  1214. # s &= "Hello " & name & ", how do you feel?" & 'z'
  1215. # // BUG: what if s is on the left side too?
  1216. # <generated C code>
  1217. # {
  1218. # s = resizeString(s, 6 + 17 + 1 + name->len);
  1219. # appendString(s, strlit_1);
  1220. # appendString(s, name);
  1221. # appendString(s, strlit_2);
  1222. # appendChar(s, 'z');
  1223. # }
  1224. var
  1225. a, dest, call: TLoc
  1226. appends, lens: Rope
  1227. assert(d.k == locNone)
  1228. var L = 0
  1229. initLocExpr(p, e[1], dest)
  1230. for i in 0..<e.len - 2:
  1231. # compute the length expression:
  1232. initLocExpr(p, e[i + 2], a)
  1233. if skipTypes(e[i + 2].typ, abstractVarRange).kind == tyChar:
  1234. inc(L)
  1235. appends.add(ropecg(p.module, "#appendChar($1, $2);$n",
  1236. [strLoc(p, dest), rdLoc(a)]))
  1237. else:
  1238. if e[i + 2].kind in {nkStrLit..nkTripleStrLit}:
  1239. inc(L, e[i + 2].strVal.len)
  1240. else:
  1241. lens.add(lenExpr(p, a))
  1242. lens.add(" + ")
  1243. appends.add(ropecg(p.module, "#appendString($1, $2);$n",
  1244. [strLoc(p, dest), rdLoc(a)]))
  1245. if optSeqDestructors in p.config.globalOptions:
  1246. linefmt(p, cpsStmts, "#prepareAdd($1, $2$3);$n",
  1247. [byRefLoc(p, dest), lens, L])
  1248. else:
  1249. initLoc(call, locCall, e, OnHeap)
  1250. call.r = ropecg(p.module, "#resizeString($1, $2$3)", [rdLoc(dest), lens, L])
  1251. genAssignment(p, dest, call, {})
  1252. gcUsage(p.config, e)
  1253. p.s(cpsStmts).add appends
  1254. proc genSeqElemAppend(p: BProc, e: PNode, d: var TLoc) =
  1255. # seq &= x -->
  1256. # seq = (typeof seq) incrSeq(&seq->Sup, sizeof(x));
  1257. # seq->data[seq->len-1] = x;
  1258. var a, b, dest, tmpL, call: TLoc
  1259. initLocExpr(p, e[1], a)
  1260. initLocExpr(p, e[2], b)
  1261. let seqType = skipTypes(e[1].typ, {tyVar})
  1262. initLoc(call, locCall, e, OnHeap)
  1263. if not p.module.compileToCpp:
  1264. const seqAppendPattern = "($2) #incrSeqV3((TGenericSeq*)($1), $3)"
  1265. call.r = ropecg(p.module, seqAppendPattern, [rdLoc(a),
  1266. getTypeDesc(p.module, e[1].typ),
  1267. genTypeInfoV1(p.module, seqType, e.info)])
  1268. else:
  1269. const seqAppendPattern = "($2) #incrSeqV3($1, $3)"
  1270. call.r = ropecg(p.module, seqAppendPattern, [rdLoc(a),
  1271. getTypeDesc(p.module, e[1].typ),
  1272. genTypeInfoV1(p.module, seqType, e.info)])
  1273. # emit the write barrier if required, but we can always move here, so
  1274. # use 'genRefAssign' for the seq.
  1275. genRefAssign(p, a, call)
  1276. #if bt != b.t:
  1277. # echo "YES ", e.info, " new: ", typeToString(bt), " old: ", typeToString(b.t)
  1278. initLoc(dest, locExpr, e[2], OnHeap)
  1279. getIntTemp(p, tmpL)
  1280. lineCg(p, cpsStmts, "$1 = $2->$3++;$n", [tmpL.r, rdLoc(a), lenField(p)])
  1281. dest.r = ropecg(p.module, "$1$3[$2]", [rdLoc(a), tmpL.r, dataField(p)])
  1282. genAssignment(p, dest, b, {needToCopy})
  1283. gcUsage(p.config, e)
  1284. proc genReset(p: BProc, n: PNode) =
  1285. var a: TLoc
  1286. initLocExpr(p, n[1], a)
  1287. specializeReset(p, a)
  1288. when false:
  1289. linefmt(p, cpsStmts, "#genericReset((void*)$1, $2);$n",
  1290. [addrLoc(p.config, a),
  1291. genTypeInfoV1(p.module, skipTypes(a.t, {tyVar}), n.info)])
  1292. proc genDefault(p: BProc; n: PNode; d: var TLoc) =
  1293. if d.k == locNone: getTemp(p, n.typ, d, needsInit=true)
  1294. else: resetLoc(p, d)
  1295. proc rawGenNew(p: BProc, a: var TLoc, sizeExpr: Rope; needsInit: bool) =
  1296. var sizeExpr = sizeExpr
  1297. let typ = a.t
  1298. var b: TLoc
  1299. initLoc(b, locExpr, a.lode, OnHeap)
  1300. let refType = typ.skipTypes(abstractInstOwned)
  1301. assert refType.kind == tyRef
  1302. let bt = refType.lastSon
  1303. if sizeExpr == "":
  1304. sizeExpr = "sizeof($1)" % [getTypeDesc(p.module, bt)]
  1305. if optTinyRtti in p.config.globalOptions:
  1306. if needsInit:
  1307. b.r = ropecg(p.module, "($1) #nimNewObj($2, NIM_ALIGNOF($3))",
  1308. [getTypeDesc(p.module, typ), sizeExpr, getTypeDesc(p.module, bt)])
  1309. else:
  1310. b.r = ropecg(p.module, "($1) #nimNewObjUninit($2, NIM_ALIGNOF($3))",
  1311. [getTypeDesc(p.module, typ), sizeExpr, getTypeDesc(p.module, bt)])
  1312. genAssignment(p, a, b, {})
  1313. else:
  1314. let ti = genTypeInfoV1(p.module, typ, a.lode.info)
  1315. let op = getAttachedOp(p.module.g.graph, bt, attachedDestructor)
  1316. if op != nil and not isTrivialProc(p.module.g.graph, op):
  1317. # the prototype of a destructor is ``=destroy(x: var T)`` and that of a
  1318. # finalizer is: ``proc (x: ref T) {.nimcall.}``. We need to check the calling
  1319. # convention at least:
  1320. if op.typ == nil or op.typ.callConv != ccNimCall:
  1321. localError(p.module.config, a.lode.info,
  1322. "the destructor that is turned into a finalizer needs " &
  1323. "to have the 'nimcall' calling convention")
  1324. var f: TLoc
  1325. initLocExpr(p, newSymNode(op), f)
  1326. p.module.s[cfsTypeInit3].addf("$1->finalizer = (void*)$2;$n", [ti, rdLoc(f)])
  1327. if a.storage == OnHeap and usesWriteBarrier(p.config):
  1328. if canFormAcycle(a.t):
  1329. linefmt(p, cpsStmts, "if ($1) { #nimGCunrefRC1($1); $1 = NIM_NIL; }$n", [a.rdLoc])
  1330. else:
  1331. linefmt(p, cpsStmts, "if ($1) { #nimGCunrefNoCycle($1); $1 = NIM_NIL; }$n", [a.rdLoc])
  1332. if p.config.selectedGC == gcGo:
  1333. # newObjRC1() would clash with unsureAsgnRef() - which is used by gcGo to
  1334. # implement the write barrier
  1335. b.r = ropecg(p.module, "($1) #newObj($2, $3)", [getTypeDesc(p.module, typ), ti, sizeExpr])
  1336. linefmt(p, cpsStmts, "#unsureAsgnRef((void**) $1, $2);$n",
  1337. [addrLoc(p.config, a), b.rdLoc])
  1338. else:
  1339. # use newObjRC1 as an optimization
  1340. b.r = ropecg(p.module, "($1) #newObjRC1($2, $3)", [getTypeDesc(p.module, typ), ti, sizeExpr])
  1341. linefmt(p, cpsStmts, "$1 = $2;$n", [a.rdLoc, b.rdLoc])
  1342. else:
  1343. b.r = ropecg(p.module, "($1) #newObj($2, $3)", [getTypeDesc(p.module, typ), ti, sizeExpr])
  1344. genAssignment(p, a, b, {})
  1345. # set the object type:
  1346. genObjectInit(p, cpsStmts, bt, a, constructRefObj)
  1347. proc genNew(p: BProc, e: PNode) =
  1348. var a: TLoc
  1349. initLocExpr(p, e[1], a)
  1350. # 'genNew' also handles 'unsafeNew':
  1351. if e.len == 3:
  1352. var se: TLoc
  1353. initLocExpr(p, e[2], se)
  1354. rawGenNew(p, a, se.rdLoc, needsInit = true)
  1355. else:
  1356. rawGenNew(p, a, "", needsInit = true)
  1357. gcUsage(p.config, e)
  1358. proc genNewSeqAux(p: BProc, dest: TLoc, length: Rope; lenIsZero: bool) =
  1359. let seqtype = skipTypes(dest.t, abstractVarRange)
  1360. var call: TLoc
  1361. initLoc(call, locExpr, dest.lode, OnHeap)
  1362. if dest.storage == OnHeap and usesWriteBarrier(p.config):
  1363. if canFormAcycle(dest.t):
  1364. linefmt(p, cpsStmts, "if ($1) { #nimGCunrefRC1($1); $1 = NIM_NIL; }$n", [dest.rdLoc])
  1365. else:
  1366. linefmt(p, cpsStmts, "if ($1) { #nimGCunrefNoCycle($1); $1 = NIM_NIL; }$n", [dest.rdLoc])
  1367. if not lenIsZero:
  1368. if p.config.selectedGC == gcGo:
  1369. # we need the write barrier
  1370. call.r = ropecg(p.module, "($1) #newSeq($2, $3)", [getTypeDesc(p.module, seqtype),
  1371. genTypeInfoV1(p.module, seqtype, dest.lode.info), length])
  1372. linefmt(p, cpsStmts, "#unsureAsgnRef((void**) $1, $2);$n", [addrLoc(p.config, dest), call.rdLoc])
  1373. else:
  1374. call.r = ropecg(p.module, "($1) #newSeqRC1($2, $3)", [getTypeDesc(p.module, seqtype),
  1375. genTypeInfoV1(p.module, seqtype, dest.lode.info), length])
  1376. linefmt(p, cpsStmts, "$1 = $2;$n", [dest.rdLoc, call.rdLoc])
  1377. else:
  1378. if lenIsZero:
  1379. call.r = rope"NIM_NIL"
  1380. else:
  1381. call.r = ropecg(p.module, "($1) #newSeq($2, $3)", [getTypeDesc(p.module, seqtype),
  1382. genTypeInfoV1(p.module, seqtype, dest.lode.info), length])
  1383. genAssignment(p, dest, call, {})
  1384. proc genNewSeq(p: BProc, e: PNode) =
  1385. var a, b: TLoc
  1386. initLocExpr(p, e[1], a)
  1387. initLocExpr(p, e[2], b)
  1388. if optSeqDestructors in p.config.globalOptions:
  1389. let seqtype = skipTypes(e[1].typ, abstractVarRange)
  1390. linefmt(p, cpsStmts, "$1.len = $2; $1.p = ($4*) #newSeqPayload($2, sizeof($3), NIM_ALIGNOF($3));$n",
  1391. [a.rdLoc, b.rdLoc,
  1392. getTypeDesc(p.module, seqtype.lastSon),
  1393. getSeqPayloadType(p.module, seqtype)])
  1394. else:
  1395. let lenIsZero = e[2].kind == nkIntLit and e[2].intVal == 0
  1396. genNewSeqAux(p, a, b.rdLoc, lenIsZero)
  1397. gcUsage(p.config, e)
  1398. proc genNewSeqOfCap(p: BProc; e: PNode; d: var TLoc) =
  1399. let seqtype = skipTypes(e.typ, abstractVarRange)
  1400. var a: TLoc
  1401. initLocExpr(p, e[1], a)
  1402. if optSeqDestructors in p.config.globalOptions:
  1403. if d.k == locNone: getTemp(p, e.typ, d, needsInit=false)
  1404. linefmt(p, cpsStmts, "$1.len = 0; $1.p = ($4*) #newSeqPayload($2, sizeof($3), NIM_ALIGNOF($3));$n",
  1405. [d.rdLoc, a.rdLoc, getTypeDesc(p.module, seqtype.lastSon),
  1406. getSeqPayloadType(p.module, seqtype),
  1407. ])
  1408. else:
  1409. putIntoDest(p, d, e, ropecg(p.module,
  1410. "($1)#nimNewSeqOfCap($2, $3)", [
  1411. getTypeDesc(p.module, seqtype),
  1412. genTypeInfoV1(p.module, seqtype, e.info), a.rdLoc]))
  1413. gcUsage(p.config, e)
  1414. proc rawConstExpr(p: BProc, n: PNode; d: var TLoc) =
  1415. let t = n.typ
  1416. discard getTypeDesc(p.module, t) # so that any fields are initialized
  1417. let id = nodeTableTestOrSet(p.module.dataCache, n, p.module.labels)
  1418. fillLoc(d, locData, n, p.module.tmpBase & rope(id), OnStatic)
  1419. if id == p.module.labels:
  1420. # expression not found in the cache:
  1421. inc(p.module.labels)
  1422. p.module.s[cfsData].addf("static NIM_CONST $1 $2 = ", [getTypeDesc(p.module, t), d.r])
  1423. genBracedInit(p, n, isConst = true, t, p.module.s[cfsData])
  1424. p.module.s[cfsData].addf(";$n", [])
  1425. proc handleConstExpr(p: BProc, n: PNode, d: var TLoc): bool =
  1426. if d.k == locNone and n.len > ord(n.kind == nkObjConstr) and n.isDeepConstExpr:
  1427. rawConstExpr(p, n, d)
  1428. result = true
  1429. else:
  1430. result = false
  1431. proc genObjConstr(p: BProc, e: PNode, d: var TLoc) =
  1432. #echo renderTree e, " ", e.isDeepConstExpr
  1433. # inheritance in C++ does not allow struct initialization so
  1434. # we skip this step here:
  1435. if not p.module.compileToCpp and optSeqDestructors notin p.config.globalOptions:
  1436. # disabled optimization: it is wrong for C++ and now also
  1437. # causes trouble for --gc:arc, see bug #13240
  1438. #[
  1439. var box: seq[Thing]
  1440. for i in 0..3:
  1441. box.add Thing(s1: "121") # pass by sink can mutate Thing.
  1442. ]#
  1443. if handleConstExpr(p, e, d): return
  1444. var t = e.typ.skipTypes(abstractInstOwned)
  1445. let isRef = t.kind == tyRef
  1446. # check if we need to construct the object in a temporary
  1447. var useTemp =
  1448. isRef or
  1449. (d.k notin {locTemp,locLocalVar,locGlobalVar,locParam,locField}) or
  1450. (isPartOf(d.lode, e) != arNo)
  1451. var tmp: TLoc
  1452. var r: Rope
  1453. if useTemp:
  1454. getTemp(p, t, tmp)
  1455. r = rdLoc(tmp)
  1456. if isRef:
  1457. rawGenNew(p, tmp, "", needsInit = nfAllFieldsSet notin e.flags)
  1458. t = t.lastSon.skipTypes(abstractInstOwned)
  1459. r = "(*$1)" % [r]
  1460. gcUsage(p.config, e)
  1461. else:
  1462. constructLoc(p, tmp)
  1463. else:
  1464. resetLoc(p, d)
  1465. r = rdLoc(d)
  1466. discard getTypeDesc(p.module, t)
  1467. let ty = getUniqueType(t)
  1468. for i in 1..<e.len:
  1469. let it = e[i]
  1470. var tmp2: TLoc
  1471. tmp2.r = r
  1472. let field = lookupFieldAgain(p, ty, it[0].sym, tmp2.r)
  1473. if field.loc.r == "": fillObjectFields(p.module, ty)
  1474. if field.loc.r == "": internalError(p.config, e.info, "genObjConstr")
  1475. if it.len == 3 and optFieldCheck in p.options:
  1476. genFieldCheck(p, it[2], r, field)
  1477. tmp2.r.add(".")
  1478. tmp2.r.add(field.loc.r)
  1479. if useTemp:
  1480. tmp2.k = locTemp
  1481. tmp2.storage = if isRef: OnHeap else: OnStack
  1482. else:
  1483. tmp2.k = d.k
  1484. tmp2.storage = if isRef: OnHeap else: d.storage
  1485. tmp2.lode = it[1]
  1486. expr(p, it[1], tmp2)
  1487. if useTemp:
  1488. if d.k == locNone:
  1489. d = tmp
  1490. else:
  1491. genAssignment(p, d, tmp, {})
  1492. proc lhsDoesAlias(a, b: PNode): bool =
  1493. for y in b:
  1494. if isPartOf(a, y) != arNo: return true
  1495. proc genSeqConstr(p: BProc, n: PNode, d: var TLoc) =
  1496. var arr, tmp: TLoc
  1497. # bug #668
  1498. let doesAlias = lhsDoesAlias(d.lode, n)
  1499. let dest = if doesAlias: addr(tmp) else: addr(d)
  1500. if doesAlias:
  1501. getTemp(p, n.typ, tmp)
  1502. elif d.k == locNone:
  1503. getTemp(p, n.typ, d)
  1504. var lit = newRopeAppender()
  1505. intLiteral(n.len, lit)
  1506. if optSeqDestructors in p.config.globalOptions:
  1507. let seqtype = n.typ
  1508. linefmt(p, cpsStmts, "$1.len = $2; $1.p = ($4*) #newSeqPayload($2, sizeof($3), NIM_ALIGNOF($3));$n",
  1509. [rdLoc dest[], lit, getTypeDesc(p.module, seqtype.lastSon),
  1510. getSeqPayloadType(p.module, seqtype)])
  1511. else:
  1512. # generate call to newSeq before adding the elements per hand:
  1513. genNewSeqAux(p, dest[], lit, n.len == 0)
  1514. for i in 0..<n.len:
  1515. initLoc(arr, locExpr, n[i], OnHeap)
  1516. var lit = newRopeAppender()
  1517. intLiteral(i, lit)
  1518. arr.r = ropecg(p.module, "$1$3[$2]", [rdLoc(dest[]), lit, dataField(p)])
  1519. arr.storage = OnHeap # we know that sequences are on the heap
  1520. expr(p, n[i], arr)
  1521. gcUsage(p.config, n)
  1522. if doesAlias:
  1523. if d.k == locNone:
  1524. d = tmp
  1525. else:
  1526. genAssignment(p, d, tmp, {})
  1527. proc genArrToSeq(p: BProc, n: PNode, d: var TLoc) =
  1528. var elem, a, arr: TLoc
  1529. if n[1].kind == nkBracket:
  1530. n[1].typ = n.typ
  1531. genSeqConstr(p, n[1], d)
  1532. return
  1533. if d.k == locNone:
  1534. getTemp(p, n.typ, d)
  1535. # generate call to newSeq before adding the elements per hand:
  1536. let L = toInt(lengthOrd(p.config, n[1].typ))
  1537. if optSeqDestructors in p.config.globalOptions:
  1538. let seqtype = n.typ
  1539. linefmt(p, cpsStmts, "$1.len = $2; $1.p = ($4*) #newSeqPayload($2, sizeof($3), NIM_ALIGNOF($3));$n",
  1540. [rdLoc d, L, getTypeDesc(p.module, seqtype.lastSon),
  1541. getSeqPayloadType(p.module, seqtype)])
  1542. else:
  1543. var lit = newRopeAppender()
  1544. intLiteral(L, lit)
  1545. genNewSeqAux(p, d, lit, L == 0)
  1546. initLocExpr(p, n[1], a)
  1547. # bug #5007; do not produce excessive C source code:
  1548. if L < 10:
  1549. for i in 0..<L:
  1550. initLoc(elem, locExpr, lodeTyp elemType(skipTypes(n.typ, abstractInst)), OnHeap)
  1551. var lit = newRopeAppender()
  1552. intLiteral(i, lit)
  1553. elem.r = ropecg(p.module, "$1$3[$2]", [rdLoc(d), lit, dataField(p)])
  1554. elem.storage = OnHeap # we know that sequences are on the heap
  1555. initLoc(arr, locExpr, lodeTyp elemType(skipTypes(n[1].typ, abstractInst)), a.storage)
  1556. arr.r = ropecg(p.module, "$1[$2]", [rdLoc(a), lit])
  1557. genAssignment(p, elem, arr, {needToCopy})
  1558. else:
  1559. var i: TLoc
  1560. getTemp(p, getSysType(p.module.g.graph, unknownLineInfo, tyInt), i)
  1561. linefmt(p, cpsStmts, "for ($1 = 0; $1 < $2; $1++) {$n", [i.r, L])
  1562. initLoc(elem, locExpr, lodeTyp elemType(skipTypes(n.typ, abstractInst)), OnHeap)
  1563. elem.r = ropecg(p.module, "$1$3[$2]", [rdLoc(d), rdLoc(i), dataField(p)])
  1564. elem.storage = OnHeap # we know that sequences are on the heap
  1565. initLoc(arr, locExpr, lodeTyp elemType(skipTypes(n[1].typ, abstractInst)), a.storage)
  1566. arr.r = ropecg(p.module, "$1[$2]", [rdLoc(a), rdLoc(i)])
  1567. genAssignment(p, elem, arr, {needToCopy})
  1568. lineF(p, cpsStmts, "}$n", [])
  1569. proc genNewFinalize(p: BProc, e: PNode) =
  1570. var
  1571. a, b, f: TLoc
  1572. refType, bt: PType
  1573. ti: Rope
  1574. refType = skipTypes(e[1].typ, abstractVarRange)
  1575. initLocExpr(p, e[1], a)
  1576. initLocExpr(p, e[2], f)
  1577. initLoc(b, locExpr, a.lode, OnHeap)
  1578. ti = genTypeInfo(p.config, p.module, refType, e.info)
  1579. p.module.s[cfsTypeInit3].addf("$1->finalizer = (void*)$2;$n", [ti, rdLoc(f)])
  1580. b.r = ropecg(p.module, "($1) #newObj($2, sizeof($3))", [
  1581. getTypeDesc(p.module, refType),
  1582. ti, getTypeDesc(p.module, skipTypes(refType.lastSon, abstractRange))])
  1583. genAssignment(p, a, b, {}) # set the object type:
  1584. bt = skipTypes(refType.lastSon, abstractRange)
  1585. genObjectInit(p, cpsStmts, bt, a, constructRefObj)
  1586. gcUsage(p.config, e)
  1587. proc genOfHelper(p: BProc; dest: PType; a: Rope; info: TLineInfo; result: var Rope) =
  1588. if optTinyRtti in p.config.globalOptions:
  1589. let ti = genTypeInfo2Name(p.module, dest)
  1590. inc p.module.labels
  1591. let cache = "Nim_OfCheck_CACHE" & p.module.labels.rope
  1592. p.module.s[cfsVars].addf("static TNimTypeV2* $#[2];$n", [cache])
  1593. appcg(p.module, result, "#isObjWithCache($#.m_type, $#, $#)", [a, ti, cache])
  1594. else:
  1595. # unfortunately 'genTypeInfoV1' sets tfObjHasKids as a side effect, so we
  1596. # have to call it here first:
  1597. let ti = genTypeInfoV1(p.module, dest, info)
  1598. if tfFinal in dest.flags or (objHasKidsValid in p.module.flags and
  1599. tfObjHasKids notin dest.flags):
  1600. result.add "$1.m_type == $2" % [a, ti]
  1601. else:
  1602. cgsym(p.module, "TNimType")
  1603. inc p.module.labels
  1604. let cache = "Nim_OfCheck_CACHE" & p.module.labels.rope
  1605. p.module.s[cfsVars].addf("static TNimType* $#[2];$n", [cache])
  1606. appcg(p.module, result, "#isObjWithCache($#.m_type, $#, $#)", [a, ti, cache])
  1607. when false:
  1608. # former version:
  1609. appcg(p.module, result, "#isObj($1.m_type, $2)",
  1610. [a, genTypeInfoV1(p.module, dest, info)])
  1611. proc genOf(p: BProc, x: PNode, typ: PType, d: var TLoc) =
  1612. var a: TLoc
  1613. initLocExpr(p, x, a)
  1614. var dest = skipTypes(typ, typedescPtrs)
  1615. var r = rdLoc(a)
  1616. var nilCheck: Rope = ""
  1617. var t = skipTypes(a.t, abstractInstOwned)
  1618. while t.kind in {tyVar, tyLent, tyPtr, tyRef}:
  1619. if t.kind notin {tyVar, tyLent}: nilCheck = r
  1620. if t.kind notin {tyVar, tyLent} or not p.module.compileToCpp:
  1621. r = ropecg(p.module, "(*$1)", [r])
  1622. t = skipTypes(t.lastSon, typedescInst+{tyOwned})
  1623. discard getTypeDesc(p.module, t)
  1624. if not p.module.compileToCpp:
  1625. while t.kind == tyObject and t[0] != nil:
  1626. r.add(".Sup")
  1627. t = skipTypes(t[0], skipPtrs)
  1628. if isObjLackingTypeField(t):
  1629. globalError(p.config, x.info,
  1630. "no 'of' operator available for pure objects")
  1631. var ro = newRopeAppender()
  1632. genOfHelper(p, dest, r, x.info, ro)
  1633. var ofExpr = newRopeAppender()
  1634. ofExpr.add "("
  1635. if nilCheck != "":
  1636. ofExpr.add "("
  1637. ofExpr.add nilCheck
  1638. ofExpr.add ") && ("
  1639. ofExpr.add ro
  1640. ofExpr.add "))"
  1641. else:
  1642. ofExpr.add ro
  1643. ofExpr.add ")"
  1644. putIntoDest(p, d, x, ofExpr, a.storage)
  1645. proc genOf(p: BProc, n: PNode, d: var TLoc) =
  1646. genOf(p, n[1], n[2].typ, d)
  1647. proc genRepr(p: BProc, e: PNode, d: var TLoc) =
  1648. if optTinyRtti in p.config.globalOptions:
  1649. localError(p.config, e.info, "'repr' is not available for --newruntime")
  1650. var a: TLoc
  1651. initLocExpr(p, e[1], a)
  1652. var t = skipTypes(e[1].typ, abstractVarRange)
  1653. case t.kind
  1654. of tyInt..tyInt64, tyUInt..tyUInt64:
  1655. putIntoDest(p, d, e,
  1656. ropecg(p.module, "#reprInt((NI64)$1)", [rdLoc(a)]), a.storage)
  1657. of tyFloat..tyFloat128:
  1658. putIntoDest(p, d, e, ropecg(p.module, "#reprFloat($1)", [rdLoc(a)]), a.storage)
  1659. of tyBool:
  1660. putIntoDest(p, d, e, ropecg(p.module, "#reprBool($1)", [rdLoc(a)]), a.storage)
  1661. of tyChar:
  1662. putIntoDest(p, d, e, ropecg(p.module, "#reprChar($1)", [rdLoc(a)]), a.storage)
  1663. of tyEnum, tyOrdinal:
  1664. putIntoDest(p, d, e,
  1665. ropecg(p.module, "#reprEnum((NI)$1, $2)", [
  1666. rdLoc(a), genTypeInfoV1(p.module, t, e.info)]), a.storage)
  1667. of tyString:
  1668. putIntoDest(p, d, e, ropecg(p.module, "#reprStr($1)", [rdLoc(a)]), a.storage)
  1669. of tySet:
  1670. putIntoDest(p, d, e, ropecg(p.module, "#reprSet($1, $2)", [
  1671. addrLoc(p.config, a), genTypeInfoV1(p.module, t, e.info)]), a.storage)
  1672. of tyOpenArray, tyVarargs:
  1673. var b: TLoc
  1674. case skipTypes(a.t, abstractVarRange).kind
  1675. of tyOpenArray, tyVarargs:
  1676. putIntoDest(p, b, e, "$1, $1Len_0" % [rdLoc(a)], a.storage)
  1677. of tyString, tySequence:
  1678. putIntoDest(p, b, e,
  1679. "$1$3, $2" % [rdLoc(a), lenExpr(p, a), dataField(p)], a.storage)
  1680. of tyArray:
  1681. putIntoDest(p, b, e,
  1682. "$1, $2" % [rdLoc(a), rope(lengthOrd(p.config, a.t))], a.storage)
  1683. else: internalError(p.config, e[0].info, "genRepr()")
  1684. putIntoDest(p, d, e,
  1685. ropecg(p.module, "#reprOpenArray($1, $2)", [rdLoc(b),
  1686. genTypeInfoV1(p.module, elemType(t), e.info)]), a.storage)
  1687. of tyCstring, tyArray, tyRef, tyPtr, tyPointer, tyNil, tySequence:
  1688. putIntoDest(p, d, e,
  1689. ropecg(p.module, "#reprAny($1, $2)", [
  1690. rdLoc(a), genTypeInfoV1(p.module, t, e.info)]), a.storage)
  1691. of tyEmpty, tyVoid:
  1692. localError(p.config, e.info, "'repr' doesn't support 'void' type")
  1693. else:
  1694. putIntoDest(p, d, e, ropecg(p.module, "#reprAny($1, $2)",
  1695. [addrLoc(p.config, a), genTypeInfoV1(p.module, t, e.info)]),
  1696. a.storage)
  1697. gcUsage(p.config, e)
  1698. proc rdMType(p: BProc; a: TLoc; nilCheck: var Rope; result: var Rope; enforceV1 = false) =
  1699. var derefs = rdLoc(a)
  1700. var t = skipTypes(a.t, abstractInst)
  1701. while t.kind in {tyVar, tyLent, tyPtr, tyRef}:
  1702. if t.kind notin {tyVar, tyLent}: nilCheck = derefs
  1703. if t.kind notin {tyVar, tyLent} or not p.module.compileToCpp:
  1704. derefs = "(*$1)" % [derefs]
  1705. t = skipTypes(t.lastSon, abstractInst)
  1706. result.add derefs
  1707. discard getTypeDesc(p.module, t)
  1708. if not p.module.compileToCpp:
  1709. while t.kind == tyObject and t[0] != nil:
  1710. result.add(".Sup")
  1711. t = skipTypes(t[0], skipPtrs)
  1712. result.add ".m_type"
  1713. if optTinyRtti in p.config.globalOptions and enforceV1:
  1714. result.add "->typeInfoV1"
  1715. proc genGetTypeInfo(p: BProc, e: PNode, d: var TLoc) =
  1716. cgsym(p.module, "TNimType")
  1717. let t = e[1].typ
  1718. # ordinary static type information
  1719. putIntoDest(p, d, e, genTypeInfoV1(p.module, t, e.info))
  1720. proc genGetTypeInfoV2(p: BProc, e: PNode, d: var TLoc) =
  1721. let t = e[1].typ
  1722. if isFinal(t) or e[0].sym.name.s != "getDynamicTypeInfo":
  1723. # ordinary static type information
  1724. putIntoDest(p, d, e, genTypeInfoV2(p.module, t, e.info))
  1725. else:
  1726. var a: TLoc
  1727. initLocExpr(p, e[1], a)
  1728. var nilCheck = ""
  1729. # use the dynamic type stored at offset 0:
  1730. var rt = newRopeAppender()
  1731. rdMType(p, a, nilCheck, rt)
  1732. putIntoDest(p, d, e, rt)
  1733. proc genAccessTypeField(p: BProc; e: PNode; d: var TLoc) =
  1734. var a: TLoc
  1735. initLocExpr(p, e[1], a)
  1736. var nilCheck = ""
  1737. # use the dynamic type stored at offset 0:
  1738. var rt = newRopeAppender()
  1739. rdMType(p, a, nilCheck, rt)
  1740. putIntoDest(p, d, e, rt)
  1741. template genDollar(p: BProc, n: PNode, d: var TLoc, frmt: string) =
  1742. var a: TLoc
  1743. initLocExpr(p, n[1], a)
  1744. a.r = ropecg(p.module, frmt, [rdLoc(a)])
  1745. a.flags.excl lfIndirect # this flag should not be propagated here (not just for HCR)
  1746. if d.k == locNone: getTemp(p, n.typ, d)
  1747. genAssignment(p, d, a, {})
  1748. gcUsage(p.config, n)
  1749. proc genArrayLen(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
  1750. var a = e[1]
  1751. if a.kind == nkHiddenAddr: a = a[0]
  1752. var typ = skipTypes(a.typ, abstractVar + tyUserTypeClasses)
  1753. case typ.kind
  1754. of tyOpenArray, tyVarargs:
  1755. # Bug #9279, len(toOpenArray()) has to work:
  1756. if a.kind in nkCallKinds and a[0].kind == nkSym and a[0].sym.magic == mSlice:
  1757. # magic: pass slice to openArray:
  1758. var b, c: TLoc
  1759. initLocExpr(p, a[2], b)
  1760. initLocExpr(p, a[3], c)
  1761. if op == mHigh:
  1762. putIntoDest(p, d, e, ropecg(p.module, "($2)-($1)", [rdLoc(b), rdLoc(c)]))
  1763. else:
  1764. putIntoDest(p, d, e, ropecg(p.module, "($2)-($1)+1", [rdLoc(b), rdLoc(c)]))
  1765. else:
  1766. if not reifiedOpenArray(a):
  1767. if op == mHigh: unaryExpr(p, e, d, "($1Len_0-1)")
  1768. else: unaryExpr(p, e, d, "$1Len_0")
  1769. else:
  1770. if op == mHigh: unaryExpr(p, e, d, "($1.Field1-1)")
  1771. else: unaryExpr(p, e, d, "$1.Field1")
  1772. of tyCstring:
  1773. if op == mHigh: unaryExpr(p, e, d, "($1 ? (#nimCStrLen($1)-1) : -1)")
  1774. else: unaryExpr(p, e, d, "($1 ? #nimCStrLen($1) : 0)")
  1775. of tyString:
  1776. var a: TLoc
  1777. initLocExpr(p, e[1], a)
  1778. var x = lenExpr(p, a)
  1779. if op == mHigh: x = "($1-1)" % [x]
  1780. putIntoDest(p, d, e, x)
  1781. of tySequence:
  1782. # we go through a temporary here because people write bullshit code.
  1783. var a, tmp: TLoc
  1784. initLocExpr(p, e[1], a)
  1785. getIntTemp(p, tmp)
  1786. var x = lenExpr(p, a)
  1787. if op == mHigh: x = "($1-1)" % [x]
  1788. lineCg(p, cpsStmts, "$1 = $2;$n", [tmp.r, x])
  1789. putIntoDest(p, d, e, tmp.r)
  1790. of tyArray:
  1791. # YYY: length(sideeffect) is optimized away incorrectly?
  1792. if op == mHigh: putIntoDest(p, d, e, rope(lastOrd(p.config, typ)))
  1793. else: putIntoDest(p, d, e, rope(lengthOrd(p.config, typ)))
  1794. else: internalError(p.config, e.info, "genArrayLen()")
  1795. proc makePtrType(baseType: PType; idgen: IdGenerator): PType =
  1796. result = newType(tyPtr, nextTypeId idgen, baseType.owner)
  1797. addSonSkipIntLit(result, baseType, idgen)
  1798. proc makeAddr(n: PNode; idgen: IdGenerator): PNode =
  1799. if n.kind == nkHiddenAddr:
  1800. result = n
  1801. else:
  1802. result = newTree(nkHiddenAddr, n)
  1803. result.typ = makePtrType(n.typ, idgen)
  1804. proc genSetLengthSeq(p: BProc, e: PNode, d: var TLoc) =
  1805. if optSeqDestructors in p.config.globalOptions:
  1806. e[1] = makeAddr(e[1], p.module.idgen)
  1807. genCall(p, e, d)
  1808. return
  1809. var a, b, call: TLoc
  1810. assert(d.k == locNone)
  1811. var x = e[1]
  1812. if x.kind in {nkAddr, nkHiddenAddr}: x = x[0]
  1813. initLocExpr(p, x, a)
  1814. initLocExpr(p, e[2], b)
  1815. let t = skipTypes(e[1].typ, {tyVar})
  1816. initLoc(call, locCall, e, OnHeap)
  1817. if not p.module.compileToCpp:
  1818. const setLenPattern = "($3) #setLengthSeqV2(&($1)->Sup, $4, $2)"
  1819. call.r = ropecg(p.module, setLenPattern, [
  1820. rdLoc(a), rdLoc(b), getTypeDesc(p.module, t),
  1821. genTypeInfoV1(p.module, t.skipTypes(abstractInst), e.info)])
  1822. else:
  1823. const setLenPattern = "($3) #setLengthSeqV2($1, $4, $2)"
  1824. call.r = ropecg(p.module, setLenPattern, [
  1825. rdLoc(a), rdLoc(b), getTypeDesc(p.module, t),
  1826. genTypeInfoV1(p.module, t.skipTypes(abstractInst), e.info)])
  1827. genAssignment(p, a, call, {})
  1828. gcUsage(p.config, e)
  1829. proc genSetLengthStr(p: BProc, e: PNode, d: var TLoc) =
  1830. if optSeqDestructors in p.config.globalOptions:
  1831. binaryStmtAddr(p, e, d, "setLengthStrV2")
  1832. else:
  1833. var a, b, call: TLoc
  1834. if d.k != locNone: internalError(p.config, e.info, "genSetLengthStr")
  1835. initLocExpr(p, e[1], a)
  1836. initLocExpr(p, e[2], b)
  1837. initLoc(call, locCall, e, OnHeap)
  1838. call.r = ropecg(p.module, "#setLengthStr($1, $2)", [
  1839. rdLoc(a), rdLoc(b)])
  1840. genAssignment(p, a, call, {})
  1841. gcUsage(p.config, e)
  1842. proc genSwap(p: BProc, e: PNode, d: var TLoc) =
  1843. # swap(a, b) -->
  1844. # temp = a
  1845. # a = b
  1846. # b = temp
  1847. cowBracket(p, e[1])
  1848. cowBracket(p, e[2])
  1849. var a, b, tmp: TLoc
  1850. getTemp(p, skipTypes(e[1].typ, abstractVar), tmp)
  1851. initLocExpr(p, e[1], a) # eval a
  1852. initLocExpr(p, e[2], b) # eval b
  1853. genAssignment(p, tmp, a, {})
  1854. genAssignment(p, a, b, {})
  1855. genAssignment(p, b, tmp, {})
  1856. proc rdSetElemLoc(conf: ConfigRef; a: TLoc, typ: PType; result: var Rope) =
  1857. # read a location of an set element; it may need a subtraction operation
  1858. # before the set operation
  1859. result.add "("
  1860. result.add rdCharLoc(a)
  1861. let setType = typ.skipTypes(abstractPtrs)
  1862. assert(setType.kind == tySet)
  1863. if firstOrd(conf, setType) != 0:
  1864. result.add " - "
  1865. result.add rope(firstOrd(conf, setType))
  1866. result.add ")"
  1867. proc fewCmps(conf: ConfigRef; s: PNode): bool =
  1868. # this function estimates whether it is better to emit code
  1869. # for constructing the set or generating a bunch of comparisons directly
  1870. if s.kind != nkCurly: return false
  1871. if (getSize(conf, s.typ) <= conf.target.intSize) and (nfAllConst in s.flags):
  1872. result = false # it is better to emit the set generation code
  1873. elif elemType(s.typ).kind in {tyInt, tyInt16..tyInt64}:
  1874. result = true # better not emit the set if int is basetype!
  1875. else:
  1876. result = s.len <= 8 # 8 seems to be a good value
  1877. template binaryExprIn(p: BProc, e: PNode, a, b, d: var TLoc, frmt: string) =
  1878. var elem = newRopeAppender()
  1879. rdSetElemLoc(p.config, b, a.t, elem)
  1880. putIntoDest(p, d, e, frmt % [rdLoc(a), elem])
  1881. proc genInExprAux(p: BProc, e: PNode, a, b, d: var TLoc) =
  1882. case int(getSize(p.config, skipTypes(e[1].typ, abstractVar)))
  1883. of 1: binaryExprIn(p, e, a, b, d, "(($1 &((NU8)1<<((NU)($2)&7U)))!=0)")
  1884. of 2: binaryExprIn(p, e, a, b, d, "(($1 &((NU16)1<<((NU)($2)&15U)))!=0)")
  1885. of 4: binaryExprIn(p, e, a, b, d, "(($1 &((NU32)1<<((NU)($2)&31U)))!=0)")
  1886. of 8: binaryExprIn(p, e, a, b, d, "(($1 &((NU64)1<<((NU)($2)&63U)))!=0)")
  1887. else: binaryExprIn(p, e, a, b, d, "(($1[(NU)($2)>>3] &(1U<<((NU)($2)&7U)))!=0)")
  1888. template binaryStmtInExcl(p: BProc, e: PNode, d: var TLoc, frmt: string) =
  1889. var a, b: TLoc
  1890. assert(d.k == locNone)
  1891. initLocExpr(p, e[1], a)
  1892. initLocExpr(p, e[2], b)
  1893. var elem = newRopeAppender()
  1894. rdSetElemLoc(p.config, b, a.t, elem)
  1895. lineF(p, cpsStmts, frmt, [rdLoc(a), elem])
  1896. proc genInOp(p: BProc, e: PNode, d: var TLoc) =
  1897. var a, b, x, y: TLoc
  1898. if (e[1].kind == nkCurly) and fewCmps(p.config, e[1]):
  1899. # a set constructor but not a constant set:
  1900. # do not emit the set, but generate a bunch of comparisons; and if we do
  1901. # so, we skip the unnecessary range check: This is a semantical extension
  1902. # that code now relies on. :-/ XXX
  1903. let ea = if e[2].kind in {nkChckRange, nkChckRange64}:
  1904. e[2][0]
  1905. else:
  1906. e[2]
  1907. initLocExpr(p, ea, a)
  1908. initLoc(b, locExpr, e, OnUnknown)
  1909. if e[1].len > 0:
  1910. b.r = rope("(")
  1911. for i in 0..<e[1].len:
  1912. let it = e[1][i]
  1913. if it.kind == nkRange:
  1914. initLocExpr(p, it[0], x)
  1915. initLocExpr(p, it[1], y)
  1916. b.r.addf("$1 >= $2 && $1 <= $3",
  1917. [rdCharLoc(a), rdCharLoc(x), rdCharLoc(y)])
  1918. else:
  1919. initLocExpr(p, it, x)
  1920. b.r.addf("$1 == $2", [rdCharLoc(a), rdCharLoc(x)])
  1921. if i < e[1].len - 1: b.r.add(" || ")
  1922. b.r.add(")")
  1923. else:
  1924. # handle the case of an empty set
  1925. b.r = rope("0")
  1926. putIntoDest(p, d, e, b.r)
  1927. else:
  1928. assert(e[1].typ != nil)
  1929. assert(e[2].typ != nil)
  1930. initLocExpr(p, e[1], a)
  1931. initLocExpr(p, e[2], b)
  1932. genInExprAux(p, e, a, b, d)
  1933. proc genSetOp(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
  1934. const
  1935. lookupOpr: array[mLeSet..mMinusSet, string] = [
  1936. "for ($1 = 0; $1 < $2; $1++) { $n" &
  1937. " $3 = (($4[$1] & ~ $5[$1]) == 0);$n" &
  1938. " if (!$3) break;}$n",
  1939. "for ($1 = 0; $1 < $2; $1++) { $n" &
  1940. " $3 = (($4[$1] & ~ $5[$1]) == 0);$n" &
  1941. " if (!$3) break;}$n" &
  1942. "if ($3) $3 = (#nimCmpMem($4, $5, $2) != 0);$n",
  1943. "&",
  1944. "|",
  1945. "& ~"]
  1946. var a, b, i: TLoc
  1947. var setType = skipTypes(e[1].typ, abstractVar)
  1948. var size = int(getSize(p.config, setType))
  1949. case size
  1950. of 1, 2, 4, 8:
  1951. case op
  1952. of mIncl:
  1953. case size
  1954. of 1: binaryStmtInExcl(p, e, d, "$1 |= ((NU8)1)<<(($2) & 7);$n")
  1955. of 2: binaryStmtInExcl(p, e, d, "$1 |= ((NU16)1)<<(($2) & 15);$n")
  1956. of 4: binaryStmtInExcl(p, e, d, "$1 |= ((NU32)1)<<(($2) & 31);$n")
  1957. of 8: binaryStmtInExcl(p, e, d, "$1 |= ((NU64)1)<<(($2) & 63);$n")
  1958. else: assert(false, $size)
  1959. of mExcl:
  1960. case size
  1961. of 1: binaryStmtInExcl(p, e, d, "$1 &= ~(((NU8)1) << (($2) & 7));$n")
  1962. of 2: binaryStmtInExcl(p, e, d, "$1 &= ~(((NU16)1) << (($2) & 15));$n")
  1963. of 4: binaryStmtInExcl(p, e, d, "$1 &= ~(((NU32)1) << (($2) & 31));$n")
  1964. of 8: binaryStmtInExcl(p, e, d, "$1 &= ~(((NU64)1) << (($2) & 63));$n")
  1965. else: assert(false, $size)
  1966. of mCard:
  1967. if size <= 4: unaryExprChar(p, e, d, "#countBits32($1)")
  1968. else: unaryExprChar(p, e, d, "#countBits64($1)")
  1969. of mLtSet: binaryExprChar(p, e, d, "((($1 & ~ $2)==0)&&($1 != $2))")
  1970. of mLeSet: binaryExprChar(p, e, d, "(($1 & ~ $2)==0)")
  1971. of mEqSet: binaryExpr(p, e, d, "($1 == $2)")
  1972. of mMulSet: binaryExpr(p, e, d, "($1 & $2)")
  1973. of mPlusSet: binaryExpr(p, e, d, "($1 | $2)")
  1974. of mMinusSet: binaryExpr(p, e, d, "($1 & ~ $2)")
  1975. of mInSet:
  1976. genInOp(p, e, d)
  1977. else: internalError(p.config, e.info, "genSetOp()")
  1978. else:
  1979. case op
  1980. of mIncl: binaryStmtInExcl(p, e, d, "$1[(NU)($2)>>3] |=(1U<<($2&7U));$n")
  1981. of mExcl: binaryStmtInExcl(p, e, d, "$1[(NU)($2)>>3] &= ~(1U<<($2&7U));$n")
  1982. of mCard:
  1983. var a: TLoc
  1984. initLocExpr(p, e[1], a)
  1985. putIntoDest(p, d, e, ropecg(p.module, "#cardSet($1, $2)", [rdCharLoc(a), size]))
  1986. of mLtSet, mLeSet:
  1987. getTemp(p, getSysType(p.module.g.graph, unknownLineInfo, tyInt), i) # our counter
  1988. initLocExpr(p, e[1], a)
  1989. initLocExpr(p, e[2], b)
  1990. if d.k == locNone: getTemp(p, getSysType(p.module.g.graph, unknownLineInfo, tyBool), d)
  1991. if op == mLtSet:
  1992. linefmt(p, cpsStmts, lookupOpr[mLtSet],
  1993. [rdLoc(i), size, rdLoc(d), rdLoc(a), rdLoc(b)])
  1994. else:
  1995. linefmt(p, cpsStmts, lookupOpr[mLeSet],
  1996. [rdLoc(i), size, rdLoc(d), rdLoc(a), rdLoc(b)])
  1997. of mEqSet:
  1998. var a, b: TLoc
  1999. assert(e[1].typ != nil)
  2000. assert(e[2].typ != nil)
  2001. initLocExpr(p, e[1], a)
  2002. initLocExpr(p, e[2], b)
  2003. putIntoDest(p, d, e, ropecg(p.module, "(#nimCmpMem($1, $2, $3)==0)", [a.rdCharLoc, b.rdCharLoc, size]))
  2004. of mMulSet, mPlusSet, mMinusSet:
  2005. # we inline the simple for loop for better code generation:
  2006. getTemp(p, getSysType(p.module.g.graph, unknownLineInfo, tyInt), i) # our counter
  2007. initLocExpr(p, e[1], a)
  2008. initLocExpr(p, e[2], b)
  2009. if d.k == locNone: getTemp(p, setType, d)
  2010. lineF(p, cpsStmts,
  2011. "for ($1 = 0; $1 < $2; $1++) $n" &
  2012. " $3[$1] = $4[$1] $6 $5[$1];$n", [
  2013. rdLoc(i), rope(size), rdLoc(d), rdLoc(a), rdLoc(b),
  2014. rope(lookupOpr[op])])
  2015. of mInSet: genInOp(p, e, d)
  2016. else: internalError(p.config, e.info, "genSetOp")
  2017. proc genOrd(p: BProc, e: PNode, d: var TLoc) =
  2018. unaryExprChar(p, e, d, "$1")
  2019. proc genSomeCast(p: BProc, e: PNode, d: var TLoc) =
  2020. const
  2021. ValueTypes = {tyTuple, tyObject, tyArray, tyOpenArray, tyVarargs, tyUncheckedArray}
  2022. # we use whatever C gives us. Except if we have a value-type, we need to go
  2023. # through its address:
  2024. var a: TLoc
  2025. initLocExpr(p, e[1], a)
  2026. let etyp = skipTypes(e.typ, abstractRange+{tyOwned})
  2027. let srcTyp = skipTypes(e[1].typ, abstractRange)
  2028. if etyp.kind in ValueTypes and lfIndirect notin a.flags:
  2029. putIntoDest(p, d, e, "(*($1*) ($2))" %
  2030. [getTypeDesc(p.module, e.typ), addrLoc(p.config, a)], a.storage)
  2031. elif etyp.kind == tyProc and etyp.callConv == ccClosure and srcTyp.callConv != ccClosure:
  2032. putIntoDest(p, d, e, "(($1) ($2))" %
  2033. [getClosureType(p.module, etyp, clHalfWithEnv), rdCharLoc(a)], a.storage)
  2034. else:
  2035. # C++ does not like direct casts from pointer to shorter integral types
  2036. if srcTyp.kind in {tyPtr, tyPointer} and etyp.kind in IntegralTypes:
  2037. putIntoDest(p, d, e, "(($1) (ptrdiff_t) ($2))" %
  2038. [getTypeDesc(p.module, e.typ), rdCharLoc(a)], a.storage)
  2039. elif optSeqDestructors in p.config.globalOptions and etyp.kind in {tySequence, tyString}:
  2040. putIntoDest(p, d, e, "(*($1*) (&$2))" %
  2041. [getTypeDesc(p.module, e.typ), rdCharLoc(a)], a.storage)
  2042. elif etyp.kind == tyBool and srcTyp.kind in IntegralTypes:
  2043. putIntoDest(p, d, e, "(($1) != 0)" % [rdCharLoc(a)], a.storage)
  2044. else:
  2045. if etyp.kind == tyPtr:
  2046. # generates the definition of structs for casts like cast[ptr object](addr x)[]
  2047. let internalType = etyp.skipTypes({tyPtr})
  2048. if internalType.kind == tyObject:
  2049. discard getTypeDesc(p.module, internalType)
  2050. putIntoDest(p, d, e, "(($1) ($2))" %
  2051. [getTypeDesc(p.module, e.typ), rdCharLoc(a)], a.storage)
  2052. proc genCast(p: BProc, e: PNode, d: var TLoc) =
  2053. const ValueTypes = {tyFloat..tyFloat128, tyTuple, tyObject, tyArray}
  2054. let
  2055. destt = skipTypes(e.typ, abstractRange)
  2056. srct = skipTypes(e[1].typ, abstractRange)
  2057. if destt.kind in ValueTypes or srct.kind in ValueTypes:
  2058. # 'cast' and some float type involved? --> use a union.
  2059. inc(p.labels)
  2060. var lbl = p.labels.rope
  2061. var tmp: TLoc
  2062. tmp.r = "LOC$1.source" % [lbl]
  2063. linefmt(p, cpsLocals, "union { $1 source; $2 dest; } LOC$3;$n",
  2064. [getTypeDesc(p.module, e[1].typ), getTypeDesc(p.module, e.typ), lbl])
  2065. tmp.k = locExpr
  2066. tmp.lode = lodeTyp srct
  2067. tmp.storage = OnStack
  2068. tmp.flags = {}
  2069. expr(p, e[1], tmp)
  2070. putIntoDest(p, d, e, "LOC$#.dest" % [lbl], tmp.storage)
  2071. else:
  2072. # I prefer the shorter cast version for pointer types -> generate less
  2073. # C code; plus it's the right thing to do for closures:
  2074. genSomeCast(p, e, d)
  2075. proc genRangeChck(p: BProc, n: PNode, d: var TLoc) =
  2076. var a: TLoc
  2077. var dest = skipTypes(n.typ, abstractVar)
  2078. initLocExpr(p, n[0], a)
  2079. if optRangeCheck notin p.options or (dest.kind in {tyUInt..tyUInt64} and
  2080. checkUnsignedConversions notin p.config.legacyFeatures):
  2081. discard "no need to generate a check because it was disabled"
  2082. else:
  2083. let n0t = n[0].typ
  2084. # emit range check:
  2085. if n0t.kind in {tyUInt, tyUInt64}:
  2086. var first = newRopeAppender()
  2087. genLiteral(p, n[1], dest, first)
  2088. var last = newRopeAppender()
  2089. genLiteral(p, n[2], dest, last)
  2090. linefmt(p, cpsStmts, "if ($1 > ($5)($3)){ #raiseRangeErrorNoArgs(); ",
  2091. [rdCharLoc(a), first, last,
  2092. raiser, getTypeDesc(p.module, n0t)])
  2093. raiseInstr(p, p.s(cpsStmts))
  2094. linefmt p, cpsStmts, "}$n", []
  2095. else:
  2096. let raiser =
  2097. case skipTypes(n.typ, abstractVarRange).kind
  2098. of tyUInt..tyUInt64, tyChar: "raiseRangeErrorU"
  2099. of tyFloat..tyFloat128: "raiseRangeErrorF"
  2100. else: "raiseRangeErrorI"
  2101. cgsym(p.module, raiser)
  2102. let boundaryCast =
  2103. if n0t.skipTypes(abstractVarRange).kind in {tyUInt, tyUInt32, tyUInt64}:
  2104. "(NI64)"
  2105. else:
  2106. ""
  2107. var first = newRopeAppender()
  2108. genLiteral(p, n[1], dest, first)
  2109. var last = newRopeAppender()
  2110. genLiteral(p, n[2], dest, last)
  2111. linefmt(p, cpsStmts, "if ($5($1) < $2 || $5($1) > $3){ $4($1, $2, $3); ",
  2112. [rdCharLoc(a), first, last,
  2113. raiser, boundaryCast])
  2114. raiseInstr(p, p.s(cpsStmts))
  2115. linefmt p, cpsStmts, "}$n", []
  2116. putIntoDest(p, d, n, "(($1) ($2))" %
  2117. [getTypeDesc(p.module, dest), rdCharLoc(a)], a.storage)
  2118. proc genConv(p: BProc, e: PNode, d: var TLoc) =
  2119. let destType = e.typ.skipTypes({tyVar, tyLent, tyGenericInst, tyAlias, tySink})
  2120. if sameBackendType(destType, e[1].typ):
  2121. expr(p, e[1], d)
  2122. else:
  2123. genSomeCast(p, e, d)
  2124. proc convStrToCStr(p: BProc, n: PNode, d: var TLoc) =
  2125. var a: TLoc
  2126. initLocExpr(p, n[0], a)
  2127. putIntoDest(p, d, n,
  2128. ropecg(p.module, "#nimToCStringConv($1)", [rdLoc(a)]),
  2129. # "($1 ? $1->data : (NCSTRING)\"\")" % [a.rdLoc],
  2130. a.storage)
  2131. proc convCStrToStr(p: BProc, n: PNode, d: var TLoc) =
  2132. var a: TLoc
  2133. initLocExpr(p, n[0], a)
  2134. putIntoDest(p, d, n,
  2135. ropecg(p.module, "#cstrToNimstr($1)", [rdLoc(a)]),
  2136. a.storage)
  2137. gcUsage(p.config, n)
  2138. proc genStrEquals(p: BProc, e: PNode, d: var TLoc) =
  2139. var x: TLoc
  2140. var a = e[1]
  2141. var b = e[2]
  2142. if a.kind in {nkStrLit..nkTripleStrLit} and a.strVal == "":
  2143. initLocExpr(p, e[2], x)
  2144. putIntoDest(p, d, e,
  2145. ropecg(p.module, "($1 == 0)", [lenExpr(p, x)]))
  2146. elif b.kind in {nkStrLit..nkTripleStrLit} and b.strVal == "":
  2147. initLocExpr(p, e[1], x)
  2148. putIntoDest(p, d, e,
  2149. ropecg(p.module, "($1 == 0)", [lenExpr(p, x)]))
  2150. else:
  2151. binaryExpr(p, e, d, "#eqStrings($1, $2)")
  2152. proc binaryFloatArith(p: BProc, e: PNode, d: var TLoc, m: TMagic) =
  2153. if {optNaNCheck, optInfCheck} * p.options != {}:
  2154. const opr: array[mAddF64..mDivF64, string] = ["+", "-", "*", "/"]
  2155. var a, b: TLoc
  2156. assert(e[1].typ != nil)
  2157. assert(e[2].typ != nil)
  2158. initLocExpr(p, e[1], a)
  2159. initLocExpr(p, e[2], b)
  2160. putIntoDest(p, d, e, ropecg(p.module, "(($4)($2) $1 ($4)($3))",
  2161. [opr[m], rdLoc(a), rdLoc(b),
  2162. getSimpleTypeDesc(p.module, e[1].typ)]))
  2163. if optNaNCheck in p.options:
  2164. linefmt(p, cpsStmts, "if ($1 != $1){ #raiseFloatInvalidOp(); ", [rdLoc(d)])
  2165. raiseInstr(p, p.s(cpsStmts))
  2166. linefmt p, cpsStmts, "}$n", []
  2167. if optInfCheck in p.options:
  2168. linefmt(p, cpsStmts, "if ($1 != 0.0 && $1*0.5 == $1) { #raiseFloatOverflow($1); ", [rdLoc(d)])
  2169. raiseInstr(p, p.s(cpsStmts))
  2170. linefmt p, cpsStmts, "}$n", []
  2171. else:
  2172. binaryArith(p, e, d, m)
  2173. proc skipAddr(n: PNode): PNode =
  2174. result = if n.kind in {nkAddr, nkHiddenAddr}: n[0] else: n
  2175. proc genWasMoved(p: BProc; n: PNode) =
  2176. var a: TLoc
  2177. let n1 = n[1].skipAddr
  2178. if p.withinBlockLeaveActions > 0 and notYetAlive(n1):
  2179. discard
  2180. else:
  2181. initLocExpr(p, n1, a)
  2182. resetLoc(p, a)
  2183. #linefmt(p, cpsStmts, "#nimZeroMem((void*)$1, sizeof($2));$n",
  2184. # [addrLoc(p.config, a), getTypeDesc(p.module, a.t)])
  2185. proc genMove(p: BProc; n: PNode; d: var TLoc) =
  2186. var a: TLoc
  2187. initLocExpr(p, n[1].skipAddr, a)
  2188. if n.len == 4:
  2189. # generated by liftdestructors:
  2190. var src: TLoc
  2191. initLocExpr(p, n[2], src)
  2192. linefmt(p, cpsStmts, "if ($1.p != $2.p) {", [rdLoc(a), rdLoc(src)])
  2193. genStmts(p, n[3])
  2194. linefmt(p, cpsStmts, "}$n$1.len = $2.len; $1.p = $2.p;$n", [rdLoc(a), rdLoc(src)])
  2195. else:
  2196. if d.k == locNone: getTemp(p, n.typ, d)
  2197. genAssignment(p, d, a, {})
  2198. resetLoc(p, a)
  2199. proc genDestroy(p: BProc; n: PNode) =
  2200. if optSeqDestructors in p.config.globalOptions:
  2201. let arg = n[1].skipAddr
  2202. let t = arg.typ.skipTypes(abstractInst)
  2203. case t.kind
  2204. of tyString:
  2205. var a: TLoc
  2206. initLocExpr(p, arg, a)
  2207. if optThreads in p.config.globalOptions:
  2208. linefmt(p, cpsStmts, "if ($1.p && !($1.p->cap & NIM_STRLIT_FLAG)) {$n" &
  2209. " #deallocShared($1.p);$n" &
  2210. "}$n", [rdLoc(a)])
  2211. else:
  2212. linefmt(p, cpsStmts, "if ($1.p && !($1.p->cap & NIM_STRLIT_FLAG)) {$n" &
  2213. " #dealloc($1.p);$n" &
  2214. "}$n", [rdLoc(a)])
  2215. of tySequence:
  2216. var a: TLoc
  2217. initLocExpr(p, arg, a)
  2218. linefmt(p, cpsStmts, "if ($1.p && !($1.p->cap & NIM_STRLIT_FLAG)) {$n" &
  2219. " #alignedDealloc($1.p, NIM_ALIGNOF($2));$n" &
  2220. "}$n",
  2221. [rdLoc(a), getTypeDesc(p.module, t.lastSon)])
  2222. else: discard "nothing to do"
  2223. else:
  2224. let t = n[1].typ.skipTypes(abstractVar)
  2225. let op = getAttachedOp(p.module.g.graph, t, attachedDestructor)
  2226. if op != nil and getBody(p.module.g.graph, op).len != 0:
  2227. internalError(p.config, n.info, "destructor turned out to be not trivial")
  2228. discard "ignore calls to the default destructor"
  2229. proc genDispose(p: BProc; n: PNode) =
  2230. when false:
  2231. let elemType = n[1].typ.skipTypes(abstractVar).lastSon
  2232. var a: TLoc
  2233. initLocExpr(p, n[1].skipAddr, a)
  2234. if isFinal(elemType):
  2235. if elemType.destructor != nil:
  2236. var destroyCall = newNodeI(nkCall, n.info)
  2237. genStmts(p, destroyCall)
  2238. lineFmt(p, cpsStmts, "#nimRawDispose($1, NIM_ALIGNOF($2))", [rdLoc(a), getTypeDesc(p.module, elemType)])
  2239. else:
  2240. # ``nimRawDisposeVirtual`` calls the ``finalizer`` which is the same as the
  2241. # destructor, but it uses the runtime type. Afterwards the memory is freed:
  2242. lineCg(p, cpsStmts, ["#nimDestroyAndDispose($#)", rdLoc(a)])
  2243. proc genSlice(p: BProc; e: PNode; d: var TLoc) =
  2244. let (x, y) = genOpenArraySlice(p, e, e.typ, e.typ.lastSon)
  2245. if d.k == locNone: getTemp(p, e.typ, d)
  2246. linefmt(p, cpsStmts, "$1.Field0 = $2; $1.Field1 = $3;$n", [rdLoc(d), x, y])
  2247. when false:
  2248. localError(p.config, e.info, "invalid context for 'toOpenArray'; " &
  2249. "'toOpenArray' is only valid within a call expression")
  2250. proc genEnumToStr(p: BProc, e: PNode, d: var TLoc) =
  2251. let t = e[1].typ.skipTypes(abstractInst+{tyRange})
  2252. let toStrProc = getToStringProc(p.module.g.graph, t)
  2253. # XXX need to modify this logic for IC.
  2254. var n = copyTree(e)
  2255. n[0] = newSymNode(toStrProc)
  2256. expr(p, n, d)
  2257. proc genMagicExpr(p: BProc, e: PNode, d: var TLoc, op: TMagic) =
  2258. case op
  2259. of mOr, mAnd: genAndOr(p, e, d, op)
  2260. of mNot..mUnaryMinusF64: unaryArith(p, e, d, op)
  2261. of mUnaryMinusI..mAbsI: unaryArithOverflow(p, e, d, op)
  2262. of mAddF64..mDivF64: binaryFloatArith(p, e, d, op)
  2263. of mShrI..mXor: binaryArith(p, e, d, op)
  2264. of mEqProc: genEqProc(p, e, d)
  2265. of mAddI..mPred: binaryArithOverflow(p, e, d, op)
  2266. of mRepr: genRepr(p, e, d)
  2267. of mGetTypeInfo: genGetTypeInfo(p, e, d)
  2268. of mGetTypeInfoV2: genGetTypeInfoV2(p, e, d)
  2269. of mSwap: genSwap(p, e, d)
  2270. of mInc, mDec:
  2271. const opr: array[mInc..mDec, string] = ["+=", "-="]
  2272. const fun64: array[mInc..mDec, string] = ["nimAddInt64", "nimSubInt64"]
  2273. const fun: array[mInc..mDec, string] = ["nimAddInt","nimSubInt"]
  2274. let underlying = skipTypes(e[1].typ, {tyGenericInst, tyAlias, tySink, tyVar, tyLent, tyRange, tyDistinct})
  2275. if optOverflowCheck notin p.options or underlying.kind in {tyUInt..tyUInt64}:
  2276. binaryStmt(p, e, d, opr[op])
  2277. else:
  2278. var a, b: TLoc
  2279. assert(e[1].typ != nil)
  2280. assert(e[2].typ != nil)
  2281. initLocExpr(p, e[1], a)
  2282. initLocExpr(p, e[2], b)
  2283. let ranged = skipTypes(e[1].typ, {tyGenericInst, tyAlias, tySink, tyVar, tyLent, tyDistinct})
  2284. let res = binaryArithOverflowRaw(p, ranged, a, b,
  2285. if underlying.kind == tyInt64: fun64[op] else: fun[op])
  2286. putIntoDest(p, a, e[1], "($#)($#)" % [
  2287. getTypeDesc(p.module, ranged), res])
  2288. of mConStrStr: genStrConcat(p, e, d)
  2289. of mAppendStrCh:
  2290. if optSeqDestructors in p.config.globalOptions:
  2291. binaryStmtAddr(p, e, d, "nimAddCharV1")
  2292. else:
  2293. var dest, b, call: TLoc
  2294. initLoc(call, locCall, e, OnHeap)
  2295. initLocExpr(p, e[1], dest)
  2296. initLocExpr(p, e[2], b)
  2297. call.r = ropecg(p.module, "#addChar($1, $2)", [rdLoc(dest), rdLoc(b)])
  2298. genAssignment(p, dest, call, {})
  2299. of mAppendStrStr: genStrAppend(p, e, d)
  2300. of mAppendSeqElem:
  2301. if optSeqDestructors in p.config.globalOptions:
  2302. e[1] = makeAddr(e[1], p.module.idgen)
  2303. genCall(p, e, d)
  2304. else:
  2305. genSeqElemAppend(p, e, d)
  2306. of mEqStr: genStrEquals(p, e, d)
  2307. of mLeStr: binaryExpr(p, e, d, "(#cmpStrings($1, $2) <= 0)")
  2308. of mLtStr: binaryExpr(p, e, d, "(#cmpStrings($1, $2) < 0)")
  2309. of mIsNil: genIsNil(p, e, d)
  2310. of mIntToStr: genDollar(p, e, d, "#nimIntToStr($1)")
  2311. of mInt64ToStr: genDollar(p, e, d, "#nimInt64ToStr($1)")
  2312. of mBoolToStr: genDollar(p, e, d, "#nimBoolToStr($1)")
  2313. of mCharToStr: genDollar(p, e, d, "#nimCharToStr($1)")
  2314. of mFloatToStr:
  2315. if e[1].typ.skipTypes(abstractInst).kind == tyFloat32:
  2316. genDollar(p, e, d, "#nimFloat32ToStr($1)")
  2317. else:
  2318. genDollar(p, e, d, "#nimFloatToStr($1)")
  2319. of mCStrToStr: genDollar(p, e, d, "#cstrToNimstr($1)")
  2320. of mStrToStr, mUnown: expr(p, e[1], d)
  2321. of generatedMagics: genCall(p, e, d)
  2322. of mEnumToStr:
  2323. if optTinyRtti in p.config.globalOptions:
  2324. genEnumToStr(p, e, d)
  2325. else:
  2326. genRepr(p, e, d)
  2327. of mOf: genOf(p, e, d)
  2328. of mNew: genNew(p, e)
  2329. of mNewFinalize:
  2330. if optTinyRtti in p.config.globalOptions:
  2331. var a: TLoc
  2332. initLocExpr(p, e[1], a)
  2333. rawGenNew(p, a, "", needsInit = true)
  2334. gcUsage(p.config, e)
  2335. else:
  2336. genNewFinalize(p, e)
  2337. of mNewSeq:
  2338. if optSeqDestructors in p.config.globalOptions:
  2339. e[1] = makeAddr(e[1], p.module.idgen)
  2340. genCall(p, e, d)
  2341. else:
  2342. genNewSeq(p, e)
  2343. of mNewSeqOfCap: genNewSeqOfCap(p, e, d)
  2344. of mSizeOf:
  2345. let t = e[1].typ.skipTypes({tyTypeDesc})
  2346. putIntoDest(p, d, e, "((NI)sizeof($1))" % [getTypeDesc(p.module, t, skVar)])
  2347. of mAlignOf:
  2348. let t = e[1].typ.skipTypes({tyTypeDesc})
  2349. putIntoDest(p, d, e, "((NI)NIM_ALIGNOF($1))" % [getTypeDesc(p.module, t, skVar)])
  2350. of mOffsetOf:
  2351. var dotExpr: PNode
  2352. if e[1].kind == nkDotExpr:
  2353. dotExpr = e[1]
  2354. elif e[1].kind == nkCheckedFieldExpr:
  2355. dotExpr = e[1][0]
  2356. else:
  2357. internalError(p.config, e.info, "unknown ast")
  2358. let t = dotExpr[0].typ.skipTypes({tyTypeDesc})
  2359. let tname = getTypeDesc(p.module, t, skVar)
  2360. let member =
  2361. if t.kind == tyTuple:
  2362. "Field" & rope(dotExpr[1].sym.position)
  2363. else: dotExpr[1].sym.loc.r
  2364. putIntoDest(p,d,e, "((NI)offsetof($1, $2))" % [tname, member])
  2365. of mChr: genSomeCast(p, e, d)
  2366. of mOrd: genOrd(p, e, d)
  2367. of mLengthArray, mHigh, mLengthStr, mLengthSeq, mLengthOpenArray:
  2368. genArrayLen(p, e, d, op)
  2369. of mGCref: unaryStmt(p, e, d, "if ($1) { #nimGCref($1); }$n")
  2370. of mGCunref: unaryStmt(p, e, d, "if ($1) { #nimGCunref($1); }$n")
  2371. of mSetLengthStr: genSetLengthStr(p, e, d)
  2372. of mSetLengthSeq: genSetLengthSeq(p, e, d)
  2373. of mIncl, mExcl, mCard, mLtSet, mLeSet, mEqSet, mMulSet, mPlusSet, mMinusSet,
  2374. mInSet:
  2375. genSetOp(p, e, d, op)
  2376. of mNewString, mNewStringOfCap, mExit, mParseBiggestFloat:
  2377. var opr = e[0].sym
  2378. # Why would anyone want to set nodecl to one of these hardcoded magics?
  2379. # - not sure, and it wouldn't work if the symbol behind the magic isn't
  2380. # somehow forward-declared from some other usage, but it is *possible*
  2381. if lfNoDecl notin opr.loc.flags:
  2382. let prc = magicsys.getCompilerProc(p.module.g.graph, $opr.loc.r)
  2383. assert prc != nil, $opr.loc.r
  2384. # HACK:
  2385. # Explicitly add this proc as declared here so the cgsym call doesn't
  2386. # add a forward declaration - without this we could end up with the same
  2387. # 2 forward declarations. That happens because the magic symbol and the original
  2388. # one that shall be used have different ids (even though a call to one is
  2389. # actually a call to the other) so checking into m.declaredProtos with the 2 different ids doesn't work.
  2390. # Why would 2 identical forward declarations be a problem?
  2391. # - in the case of hot code-reloading we generate function pointers instead
  2392. # of forward declarations and in C++ it is an error to redefine a global
  2393. let wasDeclared = containsOrIncl(p.module.declaredProtos, prc.id)
  2394. # Make the function behind the magic get actually generated - this will
  2395. # not lead to a forward declaration! The genCall will lead to one.
  2396. cgsym(p.module, $opr.loc.r)
  2397. # make sure we have pointer-initialising code for hot code reloading
  2398. if not wasDeclared and p.hcrOn:
  2399. p.module.s[cfsDynLibInit].addf("\t$1 = ($2) hcrGetProc($3, \"$1\");$n",
  2400. [mangleDynLibProc(prc), getTypeDesc(p.module, prc.loc.t), getModuleDllPath(p.module, prc)])
  2401. genCall(p, e, d)
  2402. of mDefault, mZeroDefault: genDefault(p, e, d)
  2403. of mReset: genReset(p, e)
  2404. of mEcho: genEcho(p, e[1].skipConv)
  2405. of mArrToSeq: genArrToSeq(p, e, d)
  2406. of mNLen..mNError, mSlurp..mQuoteAst:
  2407. localError(p.config, e.info, strutils.`%`(errXMustBeCompileTime, e[0].sym.name.s))
  2408. of mSpawn:
  2409. when defined(leanCompiler):
  2410. p.config.quitOrRaise "compiler built without support for the 'spawn' statement"
  2411. else:
  2412. let n = spawn.wrapProcForSpawn(p.module.g.graph, p.module.idgen, p.module.module, e, e.typ, nil, nil)
  2413. expr(p, n, d)
  2414. of mParallel:
  2415. when defined(leanCompiler):
  2416. p.config.quitOrRaise "compiler built without support for the 'parallel' statement"
  2417. else:
  2418. let n = semparallel.liftParallel(p.module.g.graph, p.module.idgen, p.module.module, e)
  2419. expr(p, n, d)
  2420. of mDeepCopy:
  2421. if p.config.selectedGC in {gcArc, gcOrc} and optEnableDeepCopy notin p.config.globalOptions:
  2422. localError(p.config, e.info,
  2423. "for --gc:arc|orc 'deepcopy' support has to be enabled with --deepcopy:on")
  2424. var a, b: TLoc
  2425. let x = if e[1].kind in {nkAddr, nkHiddenAddr}: e[1][0] else: e[1]
  2426. initLocExpr(p, x, a)
  2427. initLocExpr(p, e[2], b)
  2428. genDeepCopy(p, a, b)
  2429. of mDotDot, mEqCString: genCall(p, e, d)
  2430. of mWasMoved: genWasMoved(p, e)
  2431. of mMove: genMove(p, e, d)
  2432. of mDestroy: genDestroy(p, e)
  2433. of mAccessEnv: unaryExpr(p, e, d, "$1.ClE_0")
  2434. of mAccessTypeField: genAccessTypeField(p, e, d)
  2435. of mSlice: genSlice(p, e, d)
  2436. of mTrace: discard "no code to generate"
  2437. else:
  2438. when defined(debugMagics):
  2439. echo p.prc.name.s, " ", p.prc.id, " ", p.prc.flags, " ", p.prc.ast[genericParamsPos].kind
  2440. internalError(p.config, e.info, "genMagicExpr: " & $op)
  2441. proc genSetConstr(p: BProc, e: PNode, d: var TLoc) =
  2442. # example: { a..b, c, d, e, f..g }
  2443. # we have to emit an expression of the form:
  2444. # nimZeroMem(tmp, sizeof(tmp)); inclRange(tmp, a, b); incl(tmp, c);
  2445. # incl(tmp, d); incl(tmp, e); inclRange(tmp, f, g);
  2446. var
  2447. a, b, idx: TLoc
  2448. if nfAllConst in e.flags:
  2449. var elem = newRopeAppender()
  2450. genSetNode(p, e, elem)
  2451. putIntoDest(p, d, e, elem)
  2452. else:
  2453. if d.k == locNone: getTemp(p, e.typ, d)
  2454. if getSize(p.config, e.typ) > 8:
  2455. # big set:
  2456. linefmt(p, cpsStmts, "#nimZeroMem($1, sizeof($2));$n",
  2457. [rdLoc(d), getTypeDesc(p.module, e.typ)])
  2458. for it in e.sons:
  2459. if it.kind == nkRange:
  2460. getTemp(p, getSysType(p.module.g.graph, unknownLineInfo, tyInt), idx) # our counter
  2461. initLocExpr(p, it[0], a)
  2462. initLocExpr(p, it[1], b)
  2463. var aa = newRopeAppender()
  2464. rdSetElemLoc(p.config, a, e.typ, aa)
  2465. var bb = newRopeAppender()
  2466. rdSetElemLoc(p.config, b, e.typ, bb)
  2467. lineF(p, cpsStmts, "for ($1 = $3; $1 <= $4; $1++) $n" &
  2468. "$2[(NU)($1)>>3] |=(1U<<((NU)($1)&7U));$n", [rdLoc(idx), rdLoc(d),
  2469. aa, bb])
  2470. else:
  2471. initLocExpr(p, it, a)
  2472. var aa = newRopeAppender()
  2473. rdSetElemLoc(p.config, a, e.typ, aa)
  2474. lineF(p, cpsStmts, "$1[(NU)($2)>>3] |=(1U<<((NU)($2)&7U));$n",
  2475. [rdLoc(d), aa])
  2476. else:
  2477. # small set
  2478. var ts = "NU" & $(getSize(p.config, e.typ) * 8)
  2479. lineF(p, cpsStmts, "$1 = 0;$n", [rdLoc(d)])
  2480. for it in e.sons:
  2481. if it.kind == nkRange:
  2482. getTemp(p, getSysType(p.module.g.graph, unknownLineInfo, tyInt), idx) # our counter
  2483. initLocExpr(p, it[0], a)
  2484. initLocExpr(p, it[1], b)
  2485. var aa = newRopeAppender()
  2486. rdSetElemLoc(p.config, a, e.typ, aa)
  2487. var bb = newRopeAppender()
  2488. rdSetElemLoc(p.config, b, e.typ, bb)
  2489. lineF(p, cpsStmts, "for ($1 = $3; $1 <= $4; $1++) $n" &
  2490. "$2 |=(($5)(1)<<(($1)%(sizeof($5)*8)));$n", [
  2491. rdLoc(idx), rdLoc(d), aa, bb, rope(ts)])
  2492. else:
  2493. initLocExpr(p, it, a)
  2494. var aa = newRopeAppender()
  2495. rdSetElemLoc(p.config, a, e.typ, aa)
  2496. lineF(p, cpsStmts,
  2497. "$1 |=(($3)(1)<<(($2)%(sizeof($3)*8)));$n",
  2498. [rdLoc(d), aa, rope(ts)])
  2499. proc genTupleConstr(p: BProc, n: PNode, d: var TLoc) =
  2500. var rec: TLoc
  2501. if not handleConstExpr(p, n, d):
  2502. let t = n.typ
  2503. discard getTypeDesc(p.module, t) # so that any fields are initialized
  2504. if d.k == locNone: getTemp(p, t, d)
  2505. for i in 0..<n.len:
  2506. var it = n[i]
  2507. if it.kind == nkExprColonExpr: it = it[1]
  2508. initLoc(rec, locExpr, it, d.storage)
  2509. rec.r = "$1.Field$2" % [rdLoc(d), rope(i)]
  2510. rec.flags.incl(lfEnforceDeref)
  2511. expr(p, it, rec)
  2512. proc isConstClosure(n: PNode): bool {.inline.} =
  2513. result = n[0].kind == nkSym and isRoutine(n[0].sym) and
  2514. n[1].kind == nkNilLit
  2515. proc genClosure(p: BProc, n: PNode, d: var TLoc) =
  2516. assert n.kind in {nkPar, nkTupleConstr, nkClosure}
  2517. if isConstClosure(n):
  2518. inc(p.module.labels)
  2519. var tmp = "CNSTCLOSURE" & rope(p.module.labels)
  2520. var data = "static NIM_CONST $1 $2 = " % [getTypeDesc(p.module, n.typ), tmp]
  2521. genBracedInit(p, n, isConst = true, n.typ, data)
  2522. data.addf(";$n", [])
  2523. p.module.s[cfsData].add data
  2524. putIntoDest(p, d, n, tmp, OnStatic)
  2525. else:
  2526. var tmp, a, b: TLoc
  2527. initLocExpr(p, n[0], a)
  2528. initLocExpr(p, n[1], b)
  2529. if n[0].skipConv.kind == nkClosure:
  2530. internalError(p.config, n.info, "closure to closure created")
  2531. # tasyncawait.nim breaks with this optimization:
  2532. when false:
  2533. if d.k != locNone:
  2534. linefmt(p, cpsStmts, "$1.ClP_0 = $2; $1.ClE_0 = $3;$n",
  2535. [d.rdLoc, a.rdLoc, b.rdLoc])
  2536. else:
  2537. getTemp(p, n.typ, tmp)
  2538. linefmt(p, cpsStmts, "$1.ClP_0 = $2; $1.ClE_0 = $3;$n",
  2539. [tmp.rdLoc, a.rdLoc, b.rdLoc])
  2540. putLocIntoDest(p, d, tmp)
  2541. proc genArrayConstr(p: BProc, n: PNode, d: var TLoc) =
  2542. var arr: TLoc
  2543. if not handleConstExpr(p, n, d):
  2544. if d.k == locNone: getTemp(p, n.typ, d)
  2545. for i in 0..<n.len:
  2546. initLoc(arr, locExpr, lodeTyp elemType(skipTypes(n.typ, abstractInst)), d.storage)
  2547. var lit = newRopeAppender()
  2548. intLiteral(i, lit)
  2549. arr.r = "$1[$2]" % [rdLoc(d), lit]
  2550. expr(p, n[i], arr)
  2551. proc genComplexConst(p: BProc, sym: PSym, d: var TLoc) =
  2552. requestConstImpl(p, sym)
  2553. assert((sym.loc.r != "") and (sym.loc.t != nil))
  2554. putLocIntoDest(p, d, sym.loc)
  2555. template genStmtListExprImpl(exprOrStmt) {.dirty.} =
  2556. #let hasNimFrame = magicsys.getCompilerProc("nimFrame") != nil
  2557. let hasNimFrame = p.prc != nil and
  2558. sfSystemModule notin p.module.module.flags and
  2559. optStackTrace in p.prc.options
  2560. var frameName: Rope = ""
  2561. for i in 0..<n.len - 1:
  2562. let it = n[i]
  2563. if it.kind == nkComesFrom:
  2564. if hasNimFrame and frameName == "":
  2565. inc p.labels
  2566. frameName = "FR" & rope(p.labels) & "_"
  2567. let theMacro = it[0].sym
  2568. add p.s(cpsStmts), initFrameNoDebug(p, frameName,
  2569. makeCString theMacro.name.s,
  2570. quotedFilename(p.config, theMacro.info), it.info.line.int)
  2571. else:
  2572. genStmts(p, it)
  2573. if n.len > 0: exprOrStmt
  2574. if frameName != "":
  2575. p.s(cpsStmts).add deinitFrameNoDebug(p, frameName)
  2576. proc genStmtListExpr(p: BProc, n: PNode, d: var TLoc) =
  2577. genStmtListExprImpl:
  2578. expr(p, n[^1], d)
  2579. proc genStmtList(p: BProc, n: PNode) =
  2580. genStmtListExprImpl:
  2581. genStmts(p, n[^1])
  2582. from parampatterns import isLValue
  2583. proc upConv(p: BProc, n: PNode, d: var TLoc) =
  2584. var a: TLoc
  2585. initLocExpr(p, n[0], a)
  2586. let dest = skipTypes(n.typ, abstractPtrs)
  2587. if optObjCheck in p.options and not isObjLackingTypeField(dest):
  2588. var nilCheck = ""
  2589. var r = newRopeAppender()
  2590. rdMType(p, a, nilCheck, r)
  2591. let checkFor = if optTinyRtti in p.config.globalOptions:
  2592. genTypeInfo2Name(p.module, dest)
  2593. else:
  2594. genTypeInfoV1(p.module, dest, n.info)
  2595. if nilCheck != "":
  2596. linefmt(p, cpsStmts, "if ($1 && !#isObj($2, $3)){ #raiseObjectConversionError(); ",
  2597. [nilCheck, r, checkFor])
  2598. else:
  2599. linefmt(p, cpsStmts, "if (!#isObj($1, $2)){ #raiseObjectConversionError(); ",
  2600. [r, checkFor])
  2601. raiseInstr(p, p.s(cpsStmts))
  2602. linefmt p, cpsStmts, "}$n", []
  2603. if n[0].typ.kind != tyObject:
  2604. if n.isLValue:
  2605. putIntoDest(p, d, n,
  2606. "(*(($1*) (&($2))))" % [getTypeDesc(p.module, n.typ), rdLoc(a)], a.storage)
  2607. else:
  2608. putIntoDest(p, d, n,
  2609. "(($1) ($2))" % [getTypeDesc(p.module, n.typ), rdLoc(a)], a.storage)
  2610. else:
  2611. putIntoDest(p, d, n, "(*($1*) ($2))" %
  2612. [getTypeDesc(p.module, dest), addrLoc(p.config, a)], a.storage)
  2613. proc downConv(p: BProc, n: PNode, d: var TLoc) =
  2614. var arg = n[0]
  2615. while arg.kind == nkObjDownConv: arg = arg[0]
  2616. let dest = skipTypes(n.typ, abstractPtrs)
  2617. let src = skipTypes(arg.typ, abstractPtrs)
  2618. discard getTypeDesc(p.module, src)
  2619. let isRef = skipTypes(arg.typ, abstractInstOwned).kind in {tyRef, tyPtr, tyVar, tyLent}
  2620. if isRef and d.k == locNone and n.typ.skipTypes(abstractInstOwned).kind in {tyRef, tyPtr} and n.isLValue:
  2621. # it can happen that we end up generating '&&x->Sup' here, so we pack
  2622. # the '&x->Sup' into a temporary and then those address is taken
  2623. # (see bug #837). However sometimes using a temporary is not correct:
  2624. # init(TFigure(my)) # where it is passed to a 'var TFigure'. We test
  2625. # this by ensuring the destination is also a pointer:
  2626. var a: TLoc
  2627. initLocExpr(p, arg, a)
  2628. putIntoDest(p, d, n,
  2629. "(*(($1*) (&($2))))" % [getTypeDesc(p.module, n.typ), rdLoc(a)], a.storage)
  2630. elif p.module.compileToCpp:
  2631. # C++ implicitly downcasts for us
  2632. expr(p, arg, d)
  2633. else:
  2634. var a: TLoc
  2635. initLocExpr(p, arg, a)
  2636. var r = rdLoc(a) & (if isRef: "->Sup" else: ".Sup")
  2637. for i in 2..abs(inheritanceDiff(dest, src)): r.add(".Sup")
  2638. putIntoDest(p, d, n, if isRef: "&" & r else: r, a.storage)
  2639. proc exprComplexConst(p: BProc, n: PNode, d: var TLoc) =
  2640. let t = n.typ
  2641. discard getTypeDesc(p.module, t) # so that any fields are initialized
  2642. let id = nodeTableTestOrSet(p.module.dataCache, n, p.module.labels)
  2643. let tmp = p.module.tmpBase & rope(id)
  2644. if id == p.module.labels:
  2645. # expression not found in the cache:
  2646. inc(p.module.labels)
  2647. p.module.s[cfsData].addf("static NIM_CONST $1 $2 = ",
  2648. [getTypeDesc(p.module, t, skConst), tmp])
  2649. genBracedInit(p, n, isConst = true, t, p.module.s[cfsData])
  2650. p.module.s[cfsData].addf(";$n", [])
  2651. if d.k == locNone:
  2652. fillLoc(d, locData, n, tmp, OnStatic)
  2653. else:
  2654. putDataIntoDest(p, d, n, tmp)
  2655. # This fixes bug #4551, but we really need better dataflow
  2656. # analysis to make this 100% safe.
  2657. if t.kind notin {tySequence, tyString}:
  2658. d.storage = OnStatic
  2659. proc genConstSetup(p: BProc; sym: PSym): bool =
  2660. let m = p.module
  2661. useHeader(m, sym)
  2662. if sym.loc.k == locNone:
  2663. fillBackendName(p.module, sym)
  2664. fillLoc(sym.loc, locData, sym.astdef, OnStatic)
  2665. if m.hcrOn: incl(sym.loc.flags, lfIndirect)
  2666. result = lfNoDecl notin sym.loc.flags
  2667. proc genConstHeader(m, q: BModule; p: BProc, sym: PSym) =
  2668. if sym.loc.r == "":
  2669. if not genConstSetup(p, sym): return
  2670. assert(sym.loc.r != "", $sym.name.s & $sym.itemId)
  2671. if m.hcrOn:
  2672. m.s[cfsVars].addf("static $1* $2;$n", [getTypeDesc(m, sym.loc.t, skVar), sym.loc.r]);
  2673. m.initProc.procSec(cpsLocals).addf(
  2674. "\t$1 = ($2*)hcrGetGlobal($3, \"$1\");$n", [sym.loc.r,
  2675. getTypeDesc(m, sym.loc.t, skVar), getModuleDllPath(q, sym)])
  2676. else:
  2677. let headerDecl = "extern NIM_CONST $1 $2;$n" %
  2678. [getTypeDesc(m, sym.loc.t, skVar), sym.loc.r]
  2679. m.s[cfsData].add(headerDecl)
  2680. if sfExportc in sym.flags and p.module.g.generatedHeader != nil:
  2681. p.module.g.generatedHeader.s[cfsData].add(headerDecl)
  2682. proc genConstDefinition(q: BModule; p: BProc; sym: PSym) =
  2683. # add a suffix for hcr - will later init the global pointer with this data
  2684. let actualConstName = if q.hcrOn: sym.loc.r & "_const" else: sym.loc.r
  2685. var data = newRopeAppender()
  2686. data.addf("N_LIB_PRIVATE NIM_CONST $1 $2 = ",
  2687. [getTypeDesc(q, sym.typ), actualConstName])
  2688. genBracedInit(q.initProc, sym.astdef, isConst = true, sym.typ, data)
  2689. data.addf(";$n", [])
  2690. q.s[cfsData].add data
  2691. if q.hcrOn:
  2692. # generate the global pointer with the real name
  2693. q.s[cfsVars].addf("static $1* $2;$n", [getTypeDesc(q, sym.loc.t, skVar), sym.loc.r])
  2694. # register it (but ignore the boolean result of hcrRegisterGlobal)
  2695. q.initProc.procSec(cpsLocals).addf(
  2696. "\thcrRegisterGlobal($1, \"$2\", sizeof($3), NULL, (void**)&$2);$n",
  2697. [getModuleDllPath(q, sym), sym.loc.r, rdLoc(sym.loc)])
  2698. # always copy over the contents of the actual constant with the _const
  2699. # suffix ==> this means that the constant is reloadable & updatable!
  2700. q.initProc.procSec(cpsLocals).add(ropecg(q,
  2701. "\t#nimCopyMem((void*)$1, (NIM_CONST void*)&$2, sizeof($3));$n",
  2702. [sym.loc.r, actualConstName, rdLoc(sym.loc)]))
  2703. proc genConstStmt(p: BProc, n: PNode) =
  2704. # This code is only used in the new DCE implementation.
  2705. assert useAliveDataFromDce in p.module.flags
  2706. let m = p.module
  2707. for it in n:
  2708. if it[0].kind == nkSym:
  2709. let sym = it[0].sym
  2710. if not isSimpleConst(sym.typ) and sym.itemId.item in m.alive and genConstSetup(p, sym):
  2711. genConstDefinition(m, p, sym)
  2712. proc expr(p: BProc, n: PNode, d: var TLoc) =
  2713. when defined(nimCompilerStacktraceHints):
  2714. setFrameMsg p.config$n.info & " " & $n.kind
  2715. p.currLineInfo = n.info
  2716. case n.kind
  2717. of nkSym:
  2718. var sym = n.sym
  2719. case sym.kind
  2720. of skMethod:
  2721. if useAliveDataFromDce in p.module.flags or {sfDispatcher, sfForward} * sym.flags != {}:
  2722. # we cannot produce code for the dispatcher yet:
  2723. fillProcLoc(p.module, n)
  2724. genProcPrototype(p.module, sym)
  2725. else:
  2726. genProc(p.module, sym)
  2727. putLocIntoDest(p, d, sym.loc)
  2728. of skProc, skConverter, skIterator, skFunc:
  2729. #if sym.kind == skIterator:
  2730. # echo renderTree(sym.getBody, {renderIds})
  2731. if sfCompileTime in sym.flags:
  2732. localError(p.config, n.info, "request to generate code for .compileTime proc: " &
  2733. sym.name.s)
  2734. if useAliveDataFromDce in p.module.flags and sym.typ.callConv != ccInline:
  2735. fillProcLoc(p.module, n)
  2736. genProcPrototype(p.module, sym)
  2737. else:
  2738. genProc(p.module, sym)
  2739. if sym.loc.r == "" or sym.loc.lode == nil:
  2740. internalError(p.config, n.info, "expr: proc not init " & sym.name.s)
  2741. putLocIntoDest(p, d, sym.loc)
  2742. of skConst:
  2743. if isSimpleConst(sym.typ):
  2744. var lit = newRopeAppender()
  2745. genLiteral(p, sym.astdef, sym.typ, lit)
  2746. putIntoDest(p, d, n, lit, OnStatic)
  2747. elif useAliveDataFromDce in p.module.flags:
  2748. genConstHeader(p.module, p.module, p, sym)
  2749. assert((sym.loc.r != "") and (sym.loc.t != nil))
  2750. putLocIntoDest(p, d, sym.loc)
  2751. else:
  2752. genComplexConst(p, sym, d)
  2753. of skEnumField:
  2754. # we never reach this case - as of the time of this comment,
  2755. # skEnumField is folded to an int in semfold.nim, but this code
  2756. # remains for robustness
  2757. putIntoDest(p, d, n, rope(sym.position))
  2758. of skVar, skForVar, skResult, skLet:
  2759. if {sfGlobal, sfThread} * sym.flags != {}:
  2760. genVarPrototype(p.module, n)
  2761. if sfCompileTime in sym.flags:
  2762. genSingleVar(p, sym, n, astdef(sym))
  2763. if sym.loc.r == "" or sym.loc.t == nil:
  2764. #echo "FAILED FOR PRCO ", p.prc.name.s
  2765. #echo renderTree(p.prc.ast, {renderIds})
  2766. internalError p.config, n.info, "expr: var not init " & sym.name.s & "_" & $sym.id
  2767. if sfThread in sym.flags:
  2768. accessThreadLocalVar(p, sym)
  2769. if emulatedThreadVars(p.config):
  2770. putIntoDest(p, d, sym.loc.lode, "NimTV_->" & sym.loc.r)
  2771. else:
  2772. putLocIntoDest(p, d, sym.loc)
  2773. else:
  2774. putLocIntoDest(p, d, sym.loc)
  2775. of skTemp:
  2776. when false:
  2777. # this is more harmful than helpful.
  2778. if sym.loc.r == "":
  2779. # we now support undeclared 'skTemp' variables for easier
  2780. # transformations in other parts of the compiler:
  2781. assignLocalVar(p, n)
  2782. if sym.loc.r == "" or sym.loc.t == nil:
  2783. #echo "FAILED FOR PRCO ", p.prc.name.s
  2784. #echo renderTree(p.prc.ast, {renderIds})
  2785. internalError(p.config, n.info, "expr: temp not init " & sym.name.s & "_" & $sym.id)
  2786. putLocIntoDest(p, d, sym.loc)
  2787. of skParam:
  2788. if sym.loc.r == "" or sym.loc.t == nil:
  2789. # echo "FAILED FOR PRCO ", p.prc.name.s
  2790. # debug p.prc.typ.n
  2791. # echo renderTree(p.prc.ast, {renderIds})
  2792. internalError(p.config, n.info, "expr: param not init " & sym.name.s & "_" & $sym.id)
  2793. putLocIntoDest(p, d, sym.loc)
  2794. else: internalError(p.config, n.info, "expr(" & $sym.kind & "); unknown symbol")
  2795. of nkNilLit:
  2796. if not isEmptyType(n.typ):
  2797. var lit = newRopeAppender()
  2798. genLiteral(p, n, lit)
  2799. putIntoDest(p, d, n, lit)
  2800. of nkStrLit..nkTripleStrLit:
  2801. var lit = newRopeAppender()
  2802. genLiteral(p, n, lit)
  2803. putDataIntoDest(p, d, n, lit)
  2804. of nkIntLit..nkUInt64Lit, nkFloatLit..nkFloat128Lit, nkCharLit:
  2805. var lit = newRopeAppender()
  2806. genLiteral(p, n, lit)
  2807. putIntoDest(p, d, n, lit)
  2808. of nkCall, nkHiddenCallConv, nkInfix, nkPrefix, nkPostfix, nkCommand,
  2809. nkCallStrLit:
  2810. genLineDir(p, n) # may be redundant, it is generated in fixupCall as well
  2811. let op = n[0]
  2812. if n.typ.isNil:
  2813. # discard the value:
  2814. var a: TLoc
  2815. if op.kind == nkSym and op.sym.magic != mNone:
  2816. genMagicExpr(p, n, a, op.sym.magic)
  2817. else:
  2818. genCall(p, n, a)
  2819. else:
  2820. # load it into 'd':
  2821. if op.kind == nkSym and op.sym.magic != mNone:
  2822. genMagicExpr(p, n, d, op.sym.magic)
  2823. else:
  2824. genCall(p, n, d)
  2825. of nkCurly:
  2826. if isDeepConstExpr(n) and n.len != 0:
  2827. var lit = newRopeAppender()
  2828. genSetNode(p, n, lit)
  2829. putIntoDest(p, d, n, lit)
  2830. else:
  2831. genSetConstr(p, n, d)
  2832. of nkBracket:
  2833. if isDeepConstExpr(n) and n.len != 0:
  2834. exprComplexConst(p, n, d)
  2835. elif skipTypes(n.typ, abstractVarRange).kind == tySequence:
  2836. genSeqConstr(p, n, d)
  2837. else:
  2838. genArrayConstr(p, n, d)
  2839. of nkPar, nkTupleConstr:
  2840. if n.typ != nil and n.typ.kind == tyProc and n.len == 2:
  2841. genClosure(p, n, d)
  2842. elif isDeepConstExpr(n) and n.len != 0:
  2843. exprComplexConst(p, n, d)
  2844. else:
  2845. genTupleConstr(p, n, d)
  2846. of nkObjConstr: genObjConstr(p, n, d)
  2847. of nkCast: genCast(p, n, d)
  2848. of nkHiddenStdConv, nkHiddenSubConv, nkConv: genConv(p, n, d)
  2849. of nkHiddenAddr, nkAddr: genAddr(p, n, d)
  2850. of nkBracketExpr: genBracketExpr(p, n, d)
  2851. of nkDerefExpr, nkHiddenDeref: genDeref(p, n, d)
  2852. of nkDotExpr: genRecordField(p, n, d)
  2853. of nkCheckedFieldExpr: genCheckedRecordField(p, n, d)
  2854. of nkBlockExpr, nkBlockStmt: genBlock(p, n, d)
  2855. of nkStmtListExpr: genStmtListExpr(p, n, d)
  2856. of nkStmtList: genStmtList(p, n)
  2857. of nkIfExpr, nkIfStmt: genIf(p, n, d)
  2858. of nkWhen:
  2859. # This should be a "when nimvm" node.
  2860. expr(p, n[1][0], d)
  2861. of nkObjDownConv: downConv(p, n, d)
  2862. of nkObjUpConv: upConv(p, n, d)
  2863. of nkChckRangeF, nkChckRange64, nkChckRange: genRangeChck(p, n, d)
  2864. of nkStringToCString: convStrToCStr(p, n, d)
  2865. of nkCStringToString: convCStrToStr(p, n, d)
  2866. of nkLambdaKinds:
  2867. var sym = n[namePos].sym
  2868. genProc(p.module, sym)
  2869. if sym.loc.r == "" or sym.loc.lode == nil:
  2870. internalError(p.config, n.info, "expr: proc not init " & sym.name.s)
  2871. putLocIntoDest(p, d, sym.loc)
  2872. of nkClosure: genClosure(p, n, d)
  2873. of nkEmpty: discard
  2874. of nkWhileStmt: genWhileStmt(p, n)
  2875. of nkVarSection, nkLetSection: genVarStmt(p, n)
  2876. of nkConstSection:
  2877. if useAliveDataFromDce in p.module.flags:
  2878. genConstStmt(p, n)
  2879. # else: consts generated lazily on use
  2880. of nkForStmt: internalError(p.config, n.info, "for statement not eliminated")
  2881. of nkCaseStmt: genCase(p, n, d)
  2882. of nkReturnStmt: genReturnStmt(p, n)
  2883. of nkBreakStmt: genBreakStmt(p, n)
  2884. of nkAsgn:
  2885. cow(p, n[1])
  2886. if nfPreventCg notin n.flags:
  2887. genAsgn(p, n, fastAsgn=false)
  2888. of nkFastAsgn:
  2889. cow(p, n[1])
  2890. if nfPreventCg notin n.flags:
  2891. # transf is overly aggressive with 'nkFastAsgn', so we work around here.
  2892. # See tests/run/tcnstseq3 for an example that would fail otherwise.
  2893. genAsgn(p, n, fastAsgn=p.prc != nil)
  2894. of nkDiscardStmt:
  2895. let ex = n[0]
  2896. if ex.kind != nkEmpty:
  2897. genLineDir(p, n)
  2898. var a: TLoc
  2899. initLocExprSingleUse(p, ex, a)
  2900. line(p, cpsStmts, "(void)(" & a.r & ");\L")
  2901. of nkAsmStmt: genAsmStmt(p, n)
  2902. of nkTryStmt, nkHiddenTryStmt:
  2903. case p.config.exc
  2904. of excGoto:
  2905. genTryGoto(p, n, d)
  2906. of excCpp:
  2907. genTryCpp(p, n, d)
  2908. else:
  2909. genTrySetjmp(p, n, d)
  2910. of nkRaiseStmt: genRaiseStmt(p, n)
  2911. of nkTypeSection:
  2912. # we have to emit the type information for object types here to support
  2913. # separate compilation:
  2914. genTypeSection(p.module, n)
  2915. of nkCommentStmt, nkIteratorDef, nkIncludeStmt,
  2916. nkImportStmt, nkImportExceptStmt, nkExportStmt, nkExportExceptStmt,
  2917. nkFromStmt, nkTemplateDef, nkMacroDef, nkStaticStmt:
  2918. discard
  2919. of nkPragma: genPragma(p, n)
  2920. of nkPragmaBlock:
  2921. var inUncheckedAssignSection = 0
  2922. let pragmaList = n[0]
  2923. for pi in pragmaList:
  2924. if whichPragma(pi) == wCast:
  2925. case whichPragma(pi[1])
  2926. of wUncheckedAssign:
  2927. inUncheckedAssignSection = 1
  2928. else:
  2929. discard
  2930. inc p.inUncheckedAssignSection, inUncheckedAssignSection
  2931. expr(p, n.lastSon, d)
  2932. dec p.inUncheckedAssignSection, inUncheckedAssignSection
  2933. of nkProcDef, nkFuncDef, nkMethodDef, nkConverterDef:
  2934. if n[genericParamsPos].kind == nkEmpty:
  2935. var prc = n[namePos].sym
  2936. if useAliveDataFromDce in p.module.flags:
  2937. if p.module.alive.contains(prc.itemId.item) and
  2938. prc.magic in generatedMagics:
  2939. genProc(p.module, prc)
  2940. elif prc.skipGenericOwner.kind == skModule and sfCompileTime notin prc.flags:
  2941. if ({sfExportc, sfCompilerProc} * prc.flags == {sfExportc}) or
  2942. (sfExportc in prc.flags and lfExportLib in prc.loc.flags) or
  2943. (prc.kind == skMethod):
  2944. # due to a bug/limitation in the lambda lifting, unused inner procs
  2945. # are not transformed correctly. We work around this issue (#411) here
  2946. # by ensuring it's no inner proc (owner is a module).
  2947. # Generate proc even if empty body, bugfix #11651.
  2948. genProc(p.module, prc)
  2949. of nkParForStmt: genParForStmt(p, n)
  2950. of nkState: genState(p, n)
  2951. of nkGotoState:
  2952. # simply never set it back to 0 here from here on...
  2953. inc p.splitDecls
  2954. genGotoState(p, n)
  2955. of nkBreakState: genBreakState(p, n, d)
  2956. of nkMixinStmt, nkBindStmt: discard
  2957. else: internalError(p.config, n.info, "expr(" & $n.kind & "); unknown node kind")
  2958. proc getDefaultValue(p: BProc; typ: PType; info: TLineInfo; result: var Rope) =
  2959. var t = skipTypes(typ, abstractRange+{tyOwned}-{tyTypeDesc})
  2960. case t.kind
  2961. of tyBool: result.add rope"NIM_FALSE"
  2962. of tyEnum, tyChar, tyInt..tyInt64, tyUInt..tyUInt64: result.add rope"0"
  2963. of tyFloat..tyFloat128: result.add rope"0.0"
  2964. of tyCstring, tyVar, tyLent, tyPointer, tyPtr, tyUntyped,
  2965. tyTyped, tyTypeDesc, tyStatic, tyRef, tyNil:
  2966. result.add rope"NIM_NIL"
  2967. of tyString, tySequence:
  2968. if optSeqDestructors in p.config.globalOptions:
  2969. result.add "{0, NIM_NIL}"
  2970. else:
  2971. result.add "NIM_NIL"
  2972. of tyProc:
  2973. if t.callConv != ccClosure:
  2974. result.add "NIM_NIL"
  2975. else:
  2976. result.add "{NIM_NIL, NIM_NIL}"
  2977. of tyObject:
  2978. var count = 0
  2979. result.add "{"
  2980. getNullValueAuxT(p, t, t, t.n, nil, result, count, true, info)
  2981. result.add "}"
  2982. of tyTuple:
  2983. result.add "{"
  2984. for i in 0..<t.len:
  2985. if i > 0: result.add ", "
  2986. getDefaultValue(p, t[i], info, result)
  2987. result.add "}"
  2988. of tyArray:
  2989. result.add "{"
  2990. for i in 0..<toInt(lengthOrd(p.config, t.sons[0])):
  2991. if i > 0: result.add ", "
  2992. getDefaultValue(p, t.sons[1], info, result)
  2993. result.add "}"
  2994. #result = rope"{}"
  2995. of tyOpenArray, tyVarargs:
  2996. result.add "{NIM_NIL, 0}"
  2997. of tySet:
  2998. if mapSetType(p.config, t) == ctArray: result.add "{}"
  2999. else: result.add "0"
  3000. else:
  3001. globalError(p.config, info, "cannot create null element for: " & $t.kind)
  3002. proc caseObjDefaultBranch(obj: PNode; branch: Int128): int =
  3003. for i in 1 ..< obj.len:
  3004. for j in 0 .. obj[i].len - 2:
  3005. if obj[i][j].kind == nkRange:
  3006. let x = getOrdValue(obj[i][j][0])
  3007. let y = getOrdValue(obj[i][j][1])
  3008. if branch >= x and branch <= y:
  3009. return i
  3010. elif getOrdValue(obj[i][j]) == branch:
  3011. return i
  3012. if obj[i].len == 1:
  3013. # else branch
  3014. return i
  3015. assert(false, "unreachable")
  3016. proc getNullValueAux(p: BProc; t: PType; obj, constOrNil: PNode,
  3017. result: var Rope; count: var int;
  3018. isConst: bool, info: TLineInfo) =
  3019. case obj.kind
  3020. of nkRecList:
  3021. for it in obj.sons:
  3022. getNullValueAux(p, t, it, constOrNil, result, count, isConst, info)
  3023. of nkRecCase:
  3024. getNullValueAux(p, t, obj[0], constOrNil, result, count, isConst, info)
  3025. if count > 0: result.add ", "
  3026. var branch = Zero
  3027. if constOrNil != nil:
  3028. ## find kind value, default is zero if not specified
  3029. for i in 1..<constOrNil.len:
  3030. if constOrNil[i].kind == nkExprColonExpr:
  3031. if constOrNil[i][0].sym.name.id == obj[0].sym.name.id:
  3032. branch = getOrdValue(constOrNil[i][1])
  3033. break
  3034. elif i == obj[0].sym.position:
  3035. branch = getOrdValue(constOrNil[i])
  3036. break
  3037. let selectedBranch = caseObjDefaultBranch(obj, branch)
  3038. result.add "{"
  3039. var countB = 0
  3040. let b = lastSon(obj[selectedBranch])
  3041. # designated initilization is the only way to init non first element of unions
  3042. # branches are allowed to have no members (b.len == 0), in this case they don't need initializer
  3043. if b.kind == nkRecList and b.len > 0:
  3044. result.add "._" & mangleRecFieldName(p.module, obj[0].sym) & "_" & $selectedBranch & " = {"
  3045. getNullValueAux(p, t, b, constOrNil, result, countB, isConst, info)
  3046. result.add "}"
  3047. elif b.kind == nkSym:
  3048. result.add "." & mangleRecFieldName(p.module, b.sym) & " = "
  3049. getNullValueAux(p, t, b, constOrNil, result, countB, isConst, info)
  3050. result.add "}"
  3051. of nkSym:
  3052. if count > 0: result.add ", "
  3053. inc count
  3054. let field = obj.sym
  3055. if constOrNil != nil:
  3056. for i in 1..<constOrNil.len:
  3057. if constOrNil[i].kind == nkExprColonExpr:
  3058. if constOrNil[i][0].sym.name.id == field.name.id:
  3059. genBracedInit(p, constOrNil[i][1], isConst, field.typ, result)
  3060. return
  3061. elif i == field.position:
  3062. genBracedInit(p, constOrNil[i], isConst, field.typ, result)
  3063. return
  3064. # not found, produce default value:
  3065. getDefaultValue(p, field.typ, info, result)
  3066. else:
  3067. localError(p.config, info, "cannot create null element for: " & $obj)
  3068. proc getNullValueAuxT(p: BProc; orig, t: PType; obj, constOrNil: PNode,
  3069. result: var Rope; count: var int;
  3070. isConst: bool, info: TLineInfo) =
  3071. var base = t[0]
  3072. let oldRes = result
  3073. let oldcount = count
  3074. if base != nil:
  3075. result.add "{"
  3076. base = skipTypes(base, skipPtrs)
  3077. getNullValueAuxT(p, orig, base, base.n, constOrNil, result, count, isConst, info)
  3078. result.add "}"
  3079. elif not isObjLackingTypeField(t):
  3080. if optTinyRtti in p.config.globalOptions:
  3081. result.add genTypeInfoV2(p.module, orig, obj.info)
  3082. else:
  3083. result.add genTypeInfoV1(p.module, orig, obj.info)
  3084. inc count
  3085. getNullValueAux(p, t, obj, constOrNil, result, count, isConst, info)
  3086. # do not emit '{}' as that is not valid C:
  3087. if oldcount == count: result = oldRes
  3088. proc genConstObjConstr(p: BProc; n: PNode; isConst: bool; result: var Rope) =
  3089. let t = n.typ.skipTypes(abstractInstOwned)
  3090. var count = 0
  3091. #if not isObjLackingTypeField(t) and not p.module.compileToCpp:
  3092. # result.addf("{$1}", [genTypeInfo(p.module, t)])
  3093. # inc count
  3094. result.add "{"
  3095. if t.kind == tyObject:
  3096. getNullValueAuxT(p, t, t, t.n, n, result, count, isConst, n.info)
  3097. result.add("}\n")
  3098. proc genConstSimpleList(p: BProc, n: PNode; isConst: bool; result: var Rope) =
  3099. result.add "{"
  3100. for i in 0..<n.len:
  3101. let it = n[i]
  3102. if i > 0: result.add ",\n"
  3103. if it.kind == nkExprColonExpr: genBracedInit(p, it[1], isConst, it[0].typ, result)
  3104. else: genBracedInit(p, it, isConst, it.typ, result)
  3105. result.add("}\n")
  3106. proc genConstTuple(p: BProc, n: PNode; isConst: bool; tup: PType; result: var Rope) =
  3107. result.add "{"
  3108. for i in 0..<n.len:
  3109. let it = n[i]
  3110. if i > 0: result.add ",\n"
  3111. if it.kind == nkExprColonExpr: genBracedInit(p, it[1], isConst, tup[i], result)
  3112. else: genBracedInit(p, it, isConst, tup[i], result)
  3113. result.add("}\n")
  3114. proc genConstSeq(p: BProc, n: PNode, t: PType; isConst: bool; result: var Rope) =
  3115. var data = "{{$1, $1 | NIM_STRLIT_FLAG}" % [n.len.rope]
  3116. let base = t.skipTypes(abstractInst)[0]
  3117. if n.len > 0:
  3118. # array part needs extra curlies:
  3119. data.add(", {")
  3120. for i in 0..<n.len:
  3121. if i > 0: data.addf(",$n", [])
  3122. genBracedInit(p, n[i], isConst, base, data)
  3123. data.add("}")
  3124. data.add("}")
  3125. let tmpName = getTempName(p.module)
  3126. appcg(p.module, cfsStrData,
  3127. "static $5 struct {$n" &
  3128. " #TGenericSeq Sup;$n" &
  3129. " $1 data[$2];$n" &
  3130. "} $3 = $4;$n", [
  3131. getTypeDesc(p.module, base), n.len, tmpName, data,
  3132. if isConst: "NIM_CONST" else: ""])
  3133. result.add "(($1)&$2)" % [getTypeDesc(p.module, t), tmpName]
  3134. proc genConstSeqV2(p: BProc, n: PNode, t: PType; isConst: bool; result: var Rope) =
  3135. let base = t.skipTypes(abstractInst)[0]
  3136. var data = rope"{"
  3137. for i in 0..<n.len:
  3138. if i > 0: data.addf(",$n", [])
  3139. genBracedInit(p, n[i], isConst, base, data)
  3140. data.add("}")
  3141. let payload = getTempName(p.module)
  3142. appcg(p.module, cfsStrData,
  3143. "static $5 struct {$n" &
  3144. " NI cap; $1 data[$2];$n" &
  3145. "} $3 = {$2 | NIM_STRLIT_FLAG, $4};$n", [
  3146. getTypeDesc(p.module, base), n.len, payload, data,
  3147. if isConst: "const" else: ""])
  3148. result.add "{$1, ($2*)&$3}" % [rope(n.len), getSeqPayloadType(p.module, t), payload]
  3149. proc genBracedInit(p: BProc, n: PNode; isConst: bool; optionalType: PType; result: var Rope) =
  3150. case n.kind
  3151. of nkHiddenStdConv, nkHiddenSubConv:
  3152. genBracedInit(p, n[1], isConst, n.typ, result)
  3153. else:
  3154. var ty = tyNone
  3155. var typ: PType = nil
  3156. if optionalType == nil:
  3157. if n.kind in nkStrKinds:
  3158. ty = tyString
  3159. else:
  3160. internalError(p.config, n.info, "node has no type")
  3161. else:
  3162. typ = skipTypes(optionalType, abstractInstOwned + {tyStatic})
  3163. ty = typ.kind
  3164. case ty
  3165. of tySet:
  3166. let cs = toBitSet(p.config, n)
  3167. genRawSetData(cs, int(getSize(p.config, n.typ)), result)
  3168. of tySequence:
  3169. if optSeqDestructors in p.config.globalOptions:
  3170. genConstSeqV2(p, n, typ, isConst, result)
  3171. else:
  3172. genConstSeq(p, n, typ, isConst, result)
  3173. of tyProc:
  3174. if typ.callConv == ccClosure and n.safeLen > 1 and n[1].kind == nkNilLit:
  3175. # n.kind could be: nkClosure, nkTupleConstr and maybe others; `n.safeLen`
  3176. # guards against the case of `nkSym`, refs bug #14340.
  3177. # Conversion: nimcall -> closure.
  3178. # this hack fixes issue that nkNilLit is expanded to {NIM_NIL,NIM_NIL}
  3179. # this behaviour is needed since closure_var = nil must be
  3180. # expanded to {NIM_NIL,NIM_NIL}
  3181. # in VM closures are initialized with nkPar(nkNilLit, nkNilLit)
  3182. # leading to duplicate code like this:
  3183. # "{NIM_NIL,NIM_NIL}, {NIM_NIL,NIM_NIL}"
  3184. if n[0].kind == nkNilLit:
  3185. result.add "{NIM_NIL,NIM_NIL}"
  3186. else:
  3187. var d: TLoc
  3188. initLocExpr(p, n[0], d)
  3189. result.add "{(($1) $2),NIM_NIL}" % [getClosureType(p.module, typ, clHalfWithEnv), rdLoc(d)]
  3190. else:
  3191. var d: TLoc
  3192. initLocExpr(p, n, d)
  3193. result.add rdLoc(d)
  3194. of tyArray, tyVarargs:
  3195. genConstSimpleList(p, n, isConst, result)
  3196. of tyTuple:
  3197. genConstTuple(p, n, isConst, typ, result)
  3198. of tyOpenArray:
  3199. if n.kind != nkBracket:
  3200. internalError(p.config, n.info, "const openArray expression is not an array construction")
  3201. var data = newRopeAppender()
  3202. genConstSimpleList(p, n, isConst, data)
  3203. let payload = getTempName(p.module)
  3204. let ctype = getTypeDesc(p.module, typ[0])
  3205. let arrLen = n.len
  3206. appcg(p.module, cfsStrData,
  3207. "static $5 $1 $3[$2] = $4;$n", [
  3208. ctype, arrLen, payload, data,
  3209. if isConst: "const" else: ""])
  3210. result.add "{($1*)&$2, $3}" % [ctype, payload, rope arrLen]
  3211. of tyObject:
  3212. genConstObjConstr(p, n, isConst, result)
  3213. of tyString, tyCstring:
  3214. if optSeqDestructors in p.config.globalOptions and n.kind != nkNilLit and ty == tyString:
  3215. genStringLiteralV2Const(p.module, n, isConst, result)
  3216. else:
  3217. var d: TLoc
  3218. initLocExpr(p, n, d)
  3219. result.add rdLoc(d)
  3220. else:
  3221. var d: TLoc
  3222. initLocExpr(p, n, d)
  3223. result.add rdLoc(d)