semfold.nim 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787
  1. #
  2. #
  3. # The Nim Compiler
  4. # (c) Copyright 2015 Andreas Rumpf
  5. #
  6. # See the file "copying.txt", included in this
  7. # distribution, for details about the copyright.
  8. #
  9. # this module folds constants; used by semantic checking phase
  10. # and evaluation phase
  11. import
  12. strutils, options, ast, trees, nimsets,
  13. platform, math, msgs, idents, renderer, types,
  14. commands, magicsys, modulegraphs, strtabs, lineinfos, wordrecg
  15. from system/memory import nimCStrLen
  16. when defined(nimPreviewSlimSystem):
  17. import std/[assertions, formatfloat]
  18. proc errorType*(g: ModuleGraph): PType =
  19. ## creates a type representing an error state
  20. result = newType(tyError, nextTypeId(g.idgen), g.owners[^1])
  21. result.flags.incl tfCheckedForDestructor
  22. proc getIntLitTypeG(g: ModuleGraph; literal: PNode; idgen: IdGenerator): PType =
  23. # we cache some common integer literal types for performance:
  24. let ti = getSysType(g, literal.info, tyInt)
  25. result = copyType(ti, nextTypeId(idgen), ti.owner)
  26. result.n = literal
  27. proc newIntNodeT*(intVal: Int128, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  28. result = newIntTypeNode(intVal, n.typ)
  29. # See bug #6989. 'pred' et al only produce an int literal type if the
  30. # original type was 'int', not a distinct int etc.
  31. if n.typ.kind == tyInt:
  32. # access cache for the int lit type
  33. result.typ = getIntLitTypeG(g, result, idgen)
  34. result.info = n.info
  35. proc newFloatNodeT*(floatVal: BiggestFloat, n: PNode; g: ModuleGraph): PNode =
  36. if n.typ.skipTypes(abstractInst).kind == tyFloat32:
  37. result = newFloatNode(nkFloat32Lit, floatVal)
  38. else:
  39. result = newFloatNode(nkFloatLit, floatVal)
  40. result.typ = n.typ
  41. result.info = n.info
  42. proc newStrNodeT*(strVal: string, n: PNode; g: ModuleGraph): PNode =
  43. result = newStrNode(nkStrLit, strVal)
  44. result.typ = n.typ
  45. result.info = n.info
  46. proc getConstExpr*(m: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode
  47. # evaluates the constant expression or returns nil if it is no constant
  48. # expression
  49. proc evalOp*(m: TMagic, n, a, b, c: PNode; idgen: IdGenerator; g: ModuleGraph): PNode
  50. proc checkInRange(conf: ConfigRef; n: PNode, res: Int128): bool =
  51. res in firstOrd(conf, n.typ)..lastOrd(conf, n.typ)
  52. proc foldAdd(a, b: Int128, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  53. let res = a + b
  54. if checkInRange(g.config, n, res):
  55. result = newIntNodeT(res, n, idgen, g)
  56. else:
  57. result = nil
  58. proc foldSub(a, b: Int128, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  59. let res = a - b
  60. if checkInRange(g.config, n, res):
  61. result = newIntNodeT(res, n, idgen, g)
  62. else:
  63. result = nil
  64. proc foldUnarySub(a: Int128, n: PNode; idgen: IdGenerator, g: ModuleGraph): PNode =
  65. if a != firstOrd(g.config, n.typ):
  66. result = newIntNodeT(-a, n, idgen, g)
  67. else:
  68. result = nil
  69. proc foldAbs(a: Int128, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  70. if a != firstOrd(g.config, n.typ):
  71. result = newIntNodeT(abs(a), n, idgen, g)
  72. else:
  73. result = nil
  74. proc foldMul(a, b: Int128, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  75. let res = a * b
  76. if checkInRange(g.config, n, res):
  77. return newIntNodeT(res, n, idgen, g)
  78. else:
  79. result = nil
  80. proc ordinalValToString*(a: PNode; g: ModuleGraph): string =
  81. # because $ has the param ordinal[T], `a` is not necessarily an enum, but an
  82. # ordinal
  83. var x = getInt(a)
  84. var t = skipTypes(a.typ, abstractRange)
  85. case t.kind
  86. of tyChar:
  87. result = $chr(toInt64(x) and 0xff)
  88. of tyEnum:
  89. result = ""
  90. var n = t.n
  91. for i in 0..<n.len:
  92. if n[i].kind != nkSym: internalError(g.config, a.info, "ordinalValToString")
  93. var field = n[i].sym
  94. if field.position == x:
  95. if field.ast == nil:
  96. return field.name.s
  97. else:
  98. return field.ast.strVal
  99. localError(g.config, a.info,
  100. "Cannot convert int literal to $1. The value is invalid." %
  101. [typeToString(t)])
  102. else:
  103. result = $x
  104. proc isFloatRange(t: PType): bool {.inline.} =
  105. result = t.kind == tyRange and t[0].kind in {tyFloat..tyFloat128}
  106. proc isIntRange(t: PType): bool {.inline.} =
  107. result = t.kind == tyRange and t[0].kind in {
  108. tyInt..tyInt64, tyUInt8..tyUInt32}
  109. proc pickIntRange(a, b: PType): PType =
  110. if isIntRange(a): result = a
  111. elif isIntRange(b): result = b
  112. else: result = a
  113. proc isIntRangeOrLit(t: PType): bool =
  114. result = isIntRange(t) or isIntLit(t)
  115. proc evalOp(m: TMagic, n, a, b, c: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  116. # b and c may be nil
  117. result = nil
  118. case m
  119. of mOrd: result = newIntNodeT(getOrdValue(a), n, idgen, g)
  120. of mChr: result = newIntNodeT(getInt(a), n, idgen, g)
  121. of mUnaryMinusI, mUnaryMinusI64: result = foldUnarySub(getInt(a), n, idgen, g)
  122. of mUnaryMinusF64: result = newFloatNodeT(-getFloat(a), n, g)
  123. of mNot: result = newIntNodeT(One - getInt(a), n, idgen, g)
  124. of mCard: result = newIntNodeT(toInt128(nimsets.cardSet(g.config, a)), n, idgen, g)
  125. of mBitnotI:
  126. if n.typ.isUnsigned:
  127. result = newIntNodeT(bitnot(getInt(a)).maskBytes(int(getSize(g.config, n.typ))), n, idgen, g)
  128. else:
  129. result = newIntNodeT(bitnot(getInt(a)), n, idgen, g)
  130. of mLengthArray: result = newIntNodeT(lengthOrd(g.config, a.typ), n, idgen, g)
  131. of mLengthSeq, mLengthOpenArray, mLengthStr:
  132. if a.kind == nkNilLit:
  133. result = newIntNodeT(Zero, n, idgen, g)
  134. elif a.kind in {nkStrLit..nkTripleStrLit}:
  135. if a.typ.kind == tyString:
  136. result = newIntNodeT(toInt128(a.strVal.len), n, idgen, g)
  137. elif a.typ.kind == tyCstring:
  138. result = newIntNodeT(toInt128(nimCStrLen(a.strVal.cstring)), n, idgen, g)
  139. else:
  140. result = newIntNodeT(toInt128(a.len), n, idgen, g)
  141. of mUnaryPlusI, mUnaryPlusF64: result = a # throw `+` away
  142. # XXX: Hides overflow/underflow
  143. of mAbsI: result = foldAbs(getInt(a), n, idgen, g)
  144. of mSucc: result = foldAdd(getOrdValue(a), getInt(b), n, idgen, g)
  145. of mPred: result = foldSub(getOrdValue(a), getInt(b), n, idgen, g)
  146. of mAddI: result = foldAdd(getInt(a), getInt(b), n, idgen, g)
  147. of mSubI: result = foldSub(getInt(a), getInt(b), n, idgen, g)
  148. of mMulI: result = foldMul(getInt(a), getInt(b), n, idgen, g)
  149. of mMinI:
  150. let argA = getInt(a)
  151. let argB = getInt(b)
  152. result = newIntNodeT(if argA < argB: argA else: argB, n, idgen, g)
  153. of mMaxI:
  154. let argA = getInt(a)
  155. let argB = getInt(b)
  156. result = newIntNodeT(if argA > argB: argA else: argB, n, idgen, g)
  157. of mShlI:
  158. case skipTypes(n.typ, abstractRange).kind
  159. of tyInt8: result = newIntNodeT(toInt128(toInt8(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  160. of tyInt16: result = newIntNodeT(toInt128(toInt16(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  161. of tyInt32: result = newIntNodeT(toInt128(toInt32(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  162. of tyInt64: result = newIntNodeT(toInt128(toInt64(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  163. of tyInt:
  164. if g.config.target.intSize == 4:
  165. result = newIntNodeT(toInt128(toInt32(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  166. else:
  167. result = newIntNodeT(toInt128(toInt64(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  168. of tyUInt8: result = newIntNodeT(toInt128(toUInt8(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  169. of tyUInt16: result = newIntNodeT(toInt128(toUInt16(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  170. of tyUInt32: result = newIntNodeT(toInt128(toUInt32(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  171. of tyUInt64: result = newIntNodeT(toInt128(toUInt64(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  172. of tyUInt:
  173. if g.config.target.intSize == 4:
  174. result = newIntNodeT(toInt128(toUInt32(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  175. else:
  176. result = newIntNodeT(toInt128(toUInt64(getInt(a)) shl toInt64(getInt(b))), n, idgen, g)
  177. else: internalError(g.config, n.info, "constant folding for shl")
  178. of mShrI:
  179. var a = cast[uint64](getInt(a))
  180. let b = cast[uint64](getInt(b))
  181. # To support the ``-d:nimOldShiftRight`` flag, we need to mask the
  182. # signed integers to cut off the extended sign bit in the internal
  183. # representation.
  184. if 0'u64 < b: # do not cut off the sign extension, when there is
  185. # no bit shifting happening.
  186. case skipTypes(n.typ, abstractRange).kind
  187. of tyInt8: a = a and 0xff'u64
  188. of tyInt16: a = a and 0xffff'u64
  189. of tyInt32: a = a and 0xffffffff'u64
  190. of tyInt:
  191. if g.config.target.intSize == 4:
  192. a = a and 0xffffffff'u64
  193. else:
  194. # unsigned and 64 bit integers don't need masking
  195. discard
  196. let c = cast[BiggestInt](a shr b)
  197. result = newIntNodeT(toInt128(c), n, idgen, g)
  198. of mAshrI:
  199. case skipTypes(n.typ, abstractRange).kind
  200. of tyInt8: result = newIntNodeT(toInt128(ashr(toInt8(getInt(a)), toInt8(getInt(b)))), n, idgen, g)
  201. of tyInt16: result = newIntNodeT(toInt128(ashr(toInt16(getInt(a)), toInt16(getInt(b)))), n, idgen, g)
  202. of tyInt32: result = newIntNodeT(toInt128(ashr(toInt32(getInt(a)), toInt32(getInt(b)))), n, idgen, g)
  203. of tyInt64, tyInt:
  204. result = newIntNodeT(toInt128(ashr(toInt64(getInt(a)), toInt64(getInt(b)))), n, idgen, g)
  205. else: internalError(g.config, n.info, "constant folding for ashr")
  206. of mDivI:
  207. let argA = getInt(a)
  208. let argB = getInt(b)
  209. if argB != Zero and (argA != firstOrd(g.config, n.typ) or argB != NegOne):
  210. result = newIntNodeT(argA div argB, n, idgen, g)
  211. of mModI:
  212. let argA = getInt(a)
  213. let argB = getInt(b)
  214. if argB != Zero and (argA != firstOrd(g.config, n.typ) or argB != NegOne):
  215. result = newIntNodeT(argA mod argB, n, idgen, g)
  216. of mAddF64: result = newFloatNodeT(getFloat(a) + getFloat(b), n, g)
  217. of mSubF64: result = newFloatNodeT(getFloat(a) - getFloat(b), n, g)
  218. of mMulF64: result = newFloatNodeT(getFloat(a) * getFloat(b), n, g)
  219. of mDivF64:
  220. result = newFloatNodeT(getFloat(a) / getFloat(b), n, g)
  221. of mIsNil: result = newIntNodeT(toInt128(ord(a.kind == nkNilLit)), n, idgen, g)
  222. of mLtI, mLtB, mLtEnum, mLtCh:
  223. result = newIntNodeT(toInt128(ord(getOrdValue(a) < getOrdValue(b))), n, idgen, g)
  224. of mLeI, mLeB, mLeEnum, mLeCh:
  225. result = newIntNodeT(toInt128(ord(getOrdValue(a) <= getOrdValue(b))), n, idgen, g)
  226. of mEqI, mEqB, mEqEnum, mEqCh:
  227. result = newIntNodeT(toInt128(ord(getOrdValue(a) == getOrdValue(b))), n, idgen, g)
  228. of mLtF64: result = newIntNodeT(toInt128(ord(getFloat(a) < getFloat(b))), n, idgen, g)
  229. of mLeF64: result = newIntNodeT(toInt128(ord(getFloat(a) <= getFloat(b))), n, idgen, g)
  230. of mEqF64: result = newIntNodeT(toInt128(ord(getFloat(a) == getFloat(b))), n, idgen, g)
  231. of mLtStr: result = newIntNodeT(toInt128(ord(getStr(a) < getStr(b))), n, idgen, g)
  232. of mLeStr: result = newIntNodeT(toInt128(ord(getStr(a) <= getStr(b))), n, idgen, g)
  233. of mEqStr: result = newIntNodeT(toInt128(ord(getStr(a) == getStr(b))), n, idgen, g)
  234. of mLtU:
  235. result = newIntNodeT(toInt128(ord(`<%`(toInt64(getOrdValue(a)), toInt64(getOrdValue(b))))), n, idgen, g)
  236. of mLeU:
  237. result = newIntNodeT(toInt128(ord(`<=%`(toInt64(getOrdValue(a)), toInt64(getOrdValue(b))))), n, idgen, g)
  238. of mBitandI, mAnd: result = newIntNodeT(bitand(a.getInt, b.getInt), n, idgen, g)
  239. of mBitorI, mOr: result = newIntNodeT(bitor(getInt(a), getInt(b)), n, idgen, g)
  240. of mBitxorI, mXor: result = newIntNodeT(bitxor(getInt(a), getInt(b)), n, idgen, g)
  241. of mAddU:
  242. let val = maskBytes(getInt(a) + getInt(b), int(getSize(g.config, n.typ)))
  243. result = newIntNodeT(val, n, idgen, g)
  244. of mSubU:
  245. let val = maskBytes(getInt(a) - getInt(b), int(getSize(g.config, n.typ)))
  246. result = newIntNodeT(val, n, idgen, g)
  247. # echo "subU: ", val, " n: ", n, " result: ", val
  248. of mMulU:
  249. let val = maskBytes(getInt(a) * getInt(b), int(getSize(g.config, n.typ)))
  250. result = newIntNodeT(val, n, idgen, g)
  251. of mModU:
  252. let argA = maskBytes(getInt(a), int(getSize(g.config, a.typ)))
  253. let argB = maskBytes(getInt(b), int(getSize(g.config, a.typ)))
  254. if argB != Zero:
  255. result = newIntNodeT(argA mod argB, n, idgen, g)
  256. of mDivU:
  257. let argA = maskBytes(getInt(a), int(getSize(g.config, a.typ)))
  258. let argB = maskBytes(getInt(b), int(getSize(g.config, a.typ)))
  259. if argB != Zero:
  260. result = newIntNodeT(argA div argB, n, idgen, g)
  261. of mLeSet: result = newIntNodeT(toInt128(ord(containsSets(g.config, a, b))), n, idgen, g)
  262. of mEqSet: result = newIntNodeT(toInt128(ord(equalSets(g.config, a, b))), n, idgen, g)
  263. of mLtSet:
  264. result = newIntNodeT(toInt128(ord(
  265. containsSets(g.config, a, b) and not equalSets(g.config, a, b))), n, idgen, g)
  266. of mMulSet:
  267. result = nimsets.intersectSets(g.config, a, b)
  268. result.info = n.info
  269. of mPlusSet:
  270. result = nimsets.unionSets(g.config, a, b)
  271. result.info = n.info
  272. of mMinusSet:
  273. result = nimsets.diffSets(g.config, a, b)
  274. result.info = n.info
  275. of mConStrStr: result = newStrNodeT(getStrOrChar(a) & getStrOrChar(b), n, g)
  276. of mInSet: result = newIntNodeT(toInt128(ord(inSet(a, b))), n, idgen, g)
  277. of mRepr:
  278. # BUGFIX: we cannot eval mRepr here for reasons that I forgot.
  279. discard
  280. of mIntToStr, mInt64ToStr: result = newStrNodeT($(getOrdValue(a)), n, g)
  281. of mBoolToStr:
  282. if getOrdValue(a) == 0: result = newStrNodeT("false", n, g)
  283. else: result = newStrNodeT("true", n, g)
  284. of mFloatToStr: result = newStrNodeT($getFloat(a), n, g)
  285. of mCStrToStr, mCharToStr:
  286. result = newStrNodeT(getStrOrChar(a), n, g)
  287. of mStrToStr: result = newStrNodeT(getStrOrChar(a), n, g)
  288. of mEnumToStr: result = newStrNodeT(ordinalValToString(a, g), n, g)
  289. of mArrToSeq:
  290. result = copyTree(a)
  291. result.typ = n.typ
  292. of mCompileOption:
  293. result = newIntNodeT(toInt128(ord(commands.testCompileOption(g.config, a.getStr, n.info))), n, idgen, g)
  294. of mCompileOptionArg:
  295. result = newIntNodeT(toInt128(ord(
  296. testCompileOptionArg(g.config, getStr(a), getStr(b), n.info))), n, idgen, g)
  297. of mEqProc:
  298. result = newIntNodeT(toInt128(ord(
  299. exprStructuralEquivalent(a, b, strictSymEquality=true))), n, idgen, g)
  300. else: discard
  301. proc getConstIfExpr(c: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  302. result = nil
  303. for i in 0..<n.len:
  304. var it = n[i]
  305. if it.len == 2:
  306. var e = getConstExpr(c, it[0], idgen, g)
  307. if e == nil: return nil
  308. if getOrdValue(e) != 0:
  309. if result == nil:
  310. result = getConstExpr(c, it[1], idgen, g)
  311. if result == nil: return
  312. elif it.len == 1:
  313. if result == nil: result = getConstExpr(c, it[0], idgen, g)
  314. else: internalError(g.config, it.info, "getConstIfExpr()")
  315. proc leValueConv*(a, b: PNode): bool =
  316. result = false
  317. case a.kind
  318. of nkCharLit..nkUInt64Lit:
  319. case b.kind
  320. of nkCharLit..nkUInt64Lit: result = a.getInt <= b.getInt
  321. of nkFloatLit..nkFloat128Lit: result = a.intVal <= round(b.floatVal).int
  322. else: result = false #internalError(a.info, "leValueConv")
  323. of nkFloatLit..nkFloat128Lit:
  324. case b.kind
  325. of nkFloatLit..nkFloat128Lit: result = a.floatVal <= b.floatVal
  326. of nkCharLit..nkUInt64Lit: result = a.floatVal <= toFloat64(b.getInt)
  327. else: result = false # internalError(a.info, "leValueConv")
  328. else: result = false # internalError(a.info, "leValueConv")
  329. proc magicCall(m: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  330. if n.len <= 1: return
  331. var s = n[0].sym
  332. var a = getConstExpr(m, n[1], idgen, g)
  333. var b, c: PNode = nil
  334. if a == nil: return
  335. if n.len > 2:
  336. b = getConstExpr(m, n[2], idgen, g)
  337. if b == nil: return
  338. if n.len > 3:
  339. c = getConstExpr(m, n[3], idgen, g)
  340. if c == nil: return
  341. result = evalOp(s.magic, n, a, b, c, idgen, g)
  342. proc getAppType(n: PNode; g: ModuleGraph): PNode =
  343. if g.config.globalOptions.contains(optGenDynLib):
  344. result = newStrNodeT("lib", n, g)
  345. elif g.config.globalOptions.contains(optGenStaticLib):
  346. result = newStrNodeT("staticlib", n, g)
  347. elif g.config.globalOptions.contains(optGenGuiApp):
  348. result = newStrNodeT("gui", n, g)
  349. else:
  350. result = newStrNodeT("console", n, g)
  351. proc rangeCheck(n: PNode, value: Int128; g: ModuleGraph) =
  352. if value < firstOrd(g.config, n.typ) or value > lastOrd(g.config, n.typ):
  353. localError(g.config, n.info, "cannot convert " & $value &
  354. " to " & typeToString(n.typ))
  355. proc floatRangeCheck(n: PNode, value: BiggestFloat; g: ModuleGraph) =
  356. if value < firstFloat(n.typ) or value > lastFloat(n.typ):
  357. localError(g.config, n.info, "cannot convert " & $value &
  358. " to " & typeToString(n.typ))
  359. proc foldConv(n, a: PNode; idgen: IdGenerator; g: ModuleGraph; check = false): PNode =
  360. let dstTyp = skipTypes(n.typ, abstractRange - {tyTypeDesc})
  361. let srcTyp = skipTypes(a.typ, abstractRange - {tyTypeDesc})
  362. # if srcTyp.kind == tyUInt64 and "FFFFFF" in $n:
  363. # echo "n: ", n, " a: ", a
  364. # echo "from: ", srcTyp, " to: ", dstTyp, " check: ", check
  365. # echo getInt(a)
  366. # echo high(int64)
  367. # writeStackTrace()
  368. case dstTyp.kind
  369. of tyBool:
  370. case srcTyp.kind
  371. of tyFloat..tyFloat64:
  372. result = newIntNodeT(toInt128(getFloat(a) != 0.0), n, idgen, g)
  373. of tyChar, tyUInt..tyUInt64, tyInt..tyInt64:
  374. result = newIntNodeT(toInt128(a.getOrdValue != 0), n, idgen, g)
  375. of tyBool, tyEnum: # xxx shouldn't we disallow `tyEnum`?
  376. result = a
  377. result.typ = n.typ
  378. else:
  379. raiseAssert $srcTyp.kind
  380. of tyInt..tyInt64, tyUInt..tyUInt64:
  381. case srcTyp.kind
  382. of tyFloat..tyFloat64:
  383. result = newIntNodeT(toInt128(getFloat(a)), n, idgen, g)
  384. of tyChar, tyUInt..tyUInt64, tyInt..tyInt64:
  385. var val = a.getOrdValue
  386. if check: rangeCheck(n, val, g)
  387. result = newIntNodeT(val, n, idgen, g)
  388. if dstTyp.kind in {tyUInt..tyUInt64}:
  389. result.transitionIntKind(nkUIntLit)
  390. else:
  391. result = a
  392. result.typ = n.typ
  393. if check and result.kind in {nkCharLit..nkUInt64Lit}:
  394. rangeCheck(n, getInt(result), g)
  395. of tyFloat..tyFloat64:
  396. case srcTyp.kind
  397. of tyInt..tyInt64, tyUInt..tyUInt64, tyEnum, tyBool, tyChar:
  398. result = newFloatNodeT(toFloat64(getOrdValue(a)), n, g)
  399. else:
  400. result = a
  401. result.typ = n.typ
  402. of tyOpenArray, tyVarargs, tyProc, tyPointer:
  403. result = nil
  404. else:
  405. result = a
  406. result.typ = n.typ
  407. proc getArrayConstr(m: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  408. if n.kind == nkBracket:
  409. result = n
  410. else:
  411. result = getConstExpr(m, n, idgen, g)
  412. if result == nil: result = n
  413. proc foldArrayAccess(m: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  414. var x = getConstExpr(m, n[0], idgen, g)
  415. if x == nil or x.typ.skipTypes({tyGenericInst, tyAlias, tySink}).kind == tyTypeDesc:
  416. return
  417. var y = getConstExpr(m, n[1], idgen, g)
  418. if y == nil: return
  419. var idx = toInt64(getOrdValue(y))
  420. case x.kind
  421. of nkPar, nkTupleConstr:
  422. if idx >= 0 and idx < x.len:
  423. result = x.sons[idx]
  424. if result.kind == nkExprColonExpr: result = result[1]
  425. else:
  426. result = nil
  427. localError(g.config, n.info, formatErrorIndexBound(idx, x.len-1) & $n)
  428. of nkBracket:
  429. idx -= toInt64(firstOrd(g.config, x.typ))
  430. if idx >= 0 and idx < x.len: result = x[int(idx)]
  431. else:
  432. result = nil
  433. localError(g.config, n.info, formatErrorIndexBound(idx, x.len-1) & $n)
  434. of nkStrLit..nkTripleStrLit:
  435. result = newNodeIT(nkCharLit, x.info, n.typ)
  436. if idx >= 0 and idx < x.strVal.len:
  437. result.intVal = ord(x.strVal[int(idx)])
  438. else:
  439. localError(g.config, n.info, formatErrorIndexBound(idx, x.strVal.len-1) & $n)
  440. else: result = nil
  441. proc foldFieldAccess(m: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  442. # a real field access; proc calls have already been transformed
  443. result = nil
  444. if n[1].kind != nkSym: return nil
  445. var x = getConstExpr(m, n[0], idgen, g)
  446. if x == nil or x.kind notin {nkObjConstr, nkPar, nkTupleConstr}: return
  447. var field = n[1].sym
  448. for i in ord(x.kind == nkObjConstr)..<x.len:
  449. var it = x[i]
  450. if it.kind != nkExprColonExpr:
  451. # lookup per index:
  452. result = x[field.position]
  453. if result.kind == nkExprColonExpr: result = result[1]
  454. return
  455. if it[0].sym.name.id == field.name.id:
  456. result = x[i][1]
  457. return
  458. localError(g.config, n.info, "field not found: " & field.name.s)
  459. proc foldConStrStr(m: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  460. result = newNodeIT(nkStrLit, n.info, n.typ)
  461. result.strVal = ""
  462. for i in 1..<n.len:
  463. let a = getConstExpr(m, n[i], idgen, g)
  464. if a == nil: return nil
  465. result.strVal.add(getStrOrChar(a))
  466. proc newSymNodeTypeDesc*(s: PSym; idgen: IdGenerator; info: TLineInfo): PNode =
  467. result = newSymNode(s, info)
  468. if s.typ.kind != tyTypeDesc:
  469. result.typ = newType(tyTypeDesc, idgen.nextTypeId, s.owner)
  470. result.typ.addSonSkipIntLit(s.typ, idgen)
  471. else:
  472. result.typ = s.typ
  473. proc foldDefine(m, s: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  474. result = nil
  475. var name = s.name.s
  476. let prag = extractPragma(s)
  477. if prag != nil:
  478. for it in prag:
  479. if it.kind in nkPragmaCallKinds and it.len == 2 and it[0].kind == nkIdent:
  480. let word = whichKeyword(it[0].ident)
  481. if word in {wStrDefine, wIntDefine, wBoolDefine, wDefine}:
  482. # should be processed in pragmas.nim already
  483. if it[1].kind in {nkStrLit, nkRStrLit, nkTripleStrLit}:
  484. name = it[1].strVal
  485. if isDefined(g.config, name):
  486. let str = g.config.symbols[name]
  487. case s.magic
  488. of mIntDefine:
  489. try:
  490. result = newIntNodeT(toInt128(str.parseInt), n, idgen, g)
  491. except ValueError:
  492. localError(g.config, s.info,
  493. "{.intdefine.} const was set to an invalid integer: '" &
  494. str & "'")
  495. of mStrDefine:
  496. result = newStrNodeT(str, n, g)
  497. of mBoolDefine:
  498. try:
  499. result = newIntNodeT(toInt128(str.parseBool.int), n, idgen, g)
  500. except ValueError:
  501. localError(g.config, s.info,
  502. "{.booldefine.} const was set to an invalid bool: '" &
  503. str & "'")
  504. of mGenericDefine:
  505. let rawTyp = s.typ
  506. # pretend we don't support distinct types
  507. let typ = rawTyp.skipTypes(abstractVarRange-{tyDistinct})
  508. try:
  509. template intNode(value): PNode =
  510. let val = toInt128(value)
  511. rangeCheck(n, val, g)
  512. newIntNodeT(val, n, idgen, g)
  513. case typ.kind
  514. of tyString, tyCstring:
  515. result = newStrNodeT(str, n, g)
  516. of tyInt..tyInt64:
  517. result = intNode(str.parseBiggestInt)
  518. of tyUInt..tyUInt64:
  519. result = intNode(str.parseBiggestUInt)
  520. of tyBool:
  521. result = intNode(str.parseBool.int)
  522. of tyEnum:
  523. # compile time parseEnum
  524. let ident = getIdent(g.cache, str)
  525. for e in typ.n:
  526. if e.kind != nkSym: internalError(g.config, "foldDefine for enum")
  527. let es = e.sym
  528. let match =
  529. if es.ast.isNil:
  530. es.name.id == ident.id
  531. else:
  532. es.ast.strVal == str
  533. if match:
  534. result = intNode(es.position)
  535. break
  536. if result.isNil:
  537. raise newException(ValueError, "invalid enum value: " & str)
  538. else:
  539. localError(g.config, s.info, "unsupported type $1 for define '$2'" %
  540. [name, typeToString(rawTyp)])
  541. except ValueError as e:
  542. localError(g.config, s.info,
  543. "could not process define '$1' of type $2; $3" %
  544. [name, typeToString(rawTyp), e.msg])
  545. else: result = copyTree(s.astdef) # unreachable
  546. else:
  547. result = copyTree(s.astdef)
  548. if result != nil:
  549. result.info = n.info
  550. proc getConstExpr(m: PSym, n: PNode; idgen: IdGenerator; g: ModuleGraph): PNode =
  551. result = nil
  552. case n.kind
  553. of nkSym:
  554. var s = n.sym
  555. case s.kind
  556. of skEnumField:
  557. result = newIntNodeT(toInt128(s.position), n, idgen, g)
  558. of skConst:
  559. case s.magic
  560. of mIsMainModule: result = newIntNodeT(toInt128(ord(sfMainModule in m.flags)), n, idgen, g)
  561. of mCompileDate: result = newStrNodeT(getDateStr(), n, g)
  562. of mCompileTime: result = newStrNodeT(getClockStr(), n, g)
  563. of mCpuEndian: result = newIntNodeT(toInt128(ord(CPU[g.config.target.targetCPU].endian)), n, idgen, g)
  564. of mHostOS: result = newStrNodeT(toLowerAscii(platform.OS[g.config.target.targetOS].name), n, g)
  565. of mHostCPU: result = newStrNodeT(platform.CPU[g.config.target.targetCPU].name.toLowerAscii, n, g)
  566. of mBuildOS: result = newStrNodeT(toLowerAscii(platform.OS[g.config.target.hostOS].name), n, g)
  567. of mBuildCPU: result = newStrNodeT(platform.CPU[g.config.target.hostCPU].name.toLowerAscii, n, g)
  568. of mAppType: result = getAppType(n, g)
  569. of mIntDefine, mStrDefine, mBoolDefine, mGenericDefine:
  570. result = foldDefine(m, s, n, idgen, g)
  571. else:
  572. result = copyTree(s.astdef)
  573. if result != nil:
  574. result.info = n.info
  575. of skProc, skFunc, skMethod:
  576. result = n
  577. of skParam:
  578. if s.typ != nil and s.typ.kind == tyTypeDesc:
  579. result = newSymNodeTypeDesc(s, idgen, n.info)
  580. of skType:
  581. # XXX gensym'ed symbols can come here and cannot be resolved. This is
  582. # dirty, but correct.
  583. if s.typ != nil:
  584. result = newSymNodeTypeDesc(s, idgen, n.info)
  585. of skGenericParam:
  586. if s.typ.kind == tyStatic:
  587. if s.typ.n != nil and tfUnresolved notin s.typ.flags:
  588. result = s.typ.n
  589. result.typ = s.typ.base
  590. elif s.typ.isIntLit:
  591. result = s.typ.n
  592. else:
  593. result = newSymNodeTypeDesc(s, idgen, n.info)
  594. else: discard
  595. of nkCharLit..nkNilLit:
  596. result = copyNode(n)
  597. of nkIfExpr:
  598. result = getConstIfExpr(m, n, idgen, g)
  599. of nkCallKinds:
  600. if n[0].kind != nkSym: return
  601. var s = n[0].sym
  602. if s.kind != skProc and s.kind != skFunc: return
  603. try:
  604. case s.magic
  605. of mNone:
  606. # If it has no sideEffect, it should be evaluated. But not here.
  607. return
  608. of mLow:
  609. if skipTypes(n[1].typ, abstractVarRange).kind in tyFloat..tyFloat64:
  610. result = newFloatNodeT(firstFloat(n[1].typ), n, g)
  611. else:
  612. result = newIntNodeT(firstOrd(g.config, n[1].typ), n, idgen, g)
  613. of mHigh:
  614. if skipTypes(n[1].typ, abstractVar+{tyUserTypeClassInst}).kind notin
  615. {tySequence, tyString, tyCstring, tyOpenArray, tyVarargs}:
  616. if skipTypes(n[1].typ, abstractVarRange).kind in tyFloat..tyFloat64:
  617. result = newFloatNodeT(lastFloat(n[1].typ), n, g)
  618. else:
  619. result = newIntNodeT(lastOrd(g.config, skipTypes(n[1].typ, abstractVar)), n, idgen, g)
  620. else:
  621. var a = getArrayConstr(m, n[1], idgen, g)
  622. if a.kind == nkBracket:
  623. # we can optimize it away:
  624. result = newIntNodeT(toInt128(a.len-1), n, idgen, g)
  625. of mLengthOpenArray:
  626. var a = getArrayConstr(m, n[1], idgen, g)
  627. if a.kind == nkBracket:
  628. # we can optimize it away! This fixes the bug ``len(134)``.
  629. result = newIntNodeT(toInt128(a.len), n, idgen, g)
  630. else:
  631. result = magicCall(m, n, idgen, g)
  632. of mLengthArray:
  633. # It doesn't matter if the argument is const or not for mLengthArray.
  634. # This fixes bug #544.
  635. result = newIntNodeT(lengthOrd(g.config, n[1].typ), n, idgen, g)
  636. of mSizeOf:
  637. result = foldSizeOf(g.config, n, nil)
  638. of mAlignOf:
  639. result = foldAlignOf(g.config, n, nil)
  640. of mOffsetOf:
  641. result = foldOffsetOf(g.config, n, nil)
  642. of mAstToStr:
  643. result = newStrNodeT(renderTree(n[1], {renderNoComments}), n, g)
  644. of mConStrStr:
  645. result = foldConStrStr(m, n, idgen, g)
  646. of mIs:
  647. # The only kind of mIs node that comes here is one depending on some
  648. # generic parameter and that's (hopefully) handled at instantiation time
  649. discard
  650. else:
  651. result = magicCall(m, n, idgen, g)
  652. except OverflowDefect:
  653. localError(g.config, n.info, "over- or underflow")
  654. except DivByZeroDefect:
  655. localError(g.config, n.info, "division by zero")
  656. of nkAddr:
  657. var a = getConstExpr(m, n[0], idgen, g)
  658. if a != nil:
  659. result = n
  660. n[0] = a
  661. of nkBracket, nkCurly:
  662. result = copyNode(n)
  663. for son in n.items:
  664. var a = getConstExpr(m, son, idgen, g)
  665. if a == nil: return nil
  666. result.add a
  667. incl(result.flags, nfAllConst)
  668. of nkRange:
  669. var a = getConstExpr(m, n[0], idgen, g)
  670. if a == nil: return
  671. var b = getConstExpr(m, n[1], idgen, g)
  672. if b == nil: return
  673. result = copyNode(n)
  674. result.add a
  675. result.add b
  676. #of nkObjConstr:
  677. # result = copyTree(n)
  678. # for i in 1..<n.len:
  679. # var a = getConstExpr(m, n[i][1])
  680. # if a == nil: return nil
  681. # result[i][1] = a
  682. # incl(result.flags, nfAllConst)
  683. of nkPar, nkTupleConstr:
  684. # tuple constructor
  685. result = copyNode(n)
  686. if (n.len > 0) and (n[0].kind == nkExprColonExpr):
  687. for expr in n.items:
  688. let exprNew = copyNode(expr) # nkExprColonExpr
  689. exprNew.add expr[0]
  690. let a = getConstExpr(m, expr[1], idgen, g)
  691. if a == nil: return nil
  692. exprNew.add a
  693. result.add exprNew
  694. else:
  695. for expr in n.items:
  696. let a = getConstExpr(m, expr, idgen, g)
  697. if a == nil: return nil
  698. result.add a
  699. incl(result.flags, nfAllConst)
  700. of nkChckRangeF, nkChckRange64, nkChckRange:
  701. var a = getConstExpr(m, n[0], idgen, g)
  702. if a == nil: return
  703. if leValueConv(n[1], a) and leValueConv(a, n[2]):
  704. result = a # a <= x and x <= b
  705. result.typ = n.typ
  706. else:
  707. localError(g.config, n.info,
  708. "conversion from $1 to $2 is invalid" %
  709. [typeToString(n[0].typ), typeToString(n.typ)])
  710. of nkStringToCString, nkCStringToString:
  711. var a = getConstExpr(m, n[0], idgen, g)
  712. if a == nil: return
  713. result = a
  714. result.typ = n.typ
  715. of nkHiddenStdConv, nkHiddenSubConv, nkConv:
  716. var a = getConstExpr(m, n[1], idgen, g)
  717. if a == nil: return
  718. result = foldConv(n, a, idgen, g, check=true)
  719. of nkDerefExpr, nkHiddenDeref:
  720. let a = getConstExpr(m, n[0], idgen, g)
  721. if a != nil and a.kind == nkNilLit:
  722. result = nil
  723. #localError(g.config, n.info, "nil dereference is not allowed")
  724. of nkCast:
  725. var a = getConstExpr(m, n[1], idgen, g)
  726. if a == nil: return
  727. if n.typ != nil and n.typ.kind in NilableTypes:
  728. # we allow compile-time 'cast' for pointer types:
  729. result = a
  730. result.typ = n.typ
  731. of nkBracketExpr: result = foldArrayAccess(m, n, idgen, g)
  732. of nkDotExpr: result = foldFieldAccess(m, n, idgen, g)
  733. of nkCheckedFieldExpr:
  734. assert n[0].kind == nkDotExpr
  735. result = foldFieldAccess(m, n[0], idgen, g)
  736. of nkStmtListExpr:
  737. var i = 0
  738. while i <= n.len - 2:
  739. if n[i].kind in {nkComesFrom, nkCommentStmt, nkEmpty}: i.inc
  740. else: break
  741. if i == n.len - 1:
  742. result = getConstExpr(m, n[i], idgen, g)
  743. else:
  744. discard