vmops.nim 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  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. # Unfortunately this cannot be a module yet:
  10. #import vmdeps, vm
  11. from std/math import sqrt, ln, log10, log2, exp, round, arccos, arcsin,
  12. arctan, arctan2, cos, cosh, hypot, sinh, sin, tan, tanh, pow, trunc,
  13. floor, ceil, `mod`, cbrt, arcsinh, arccosh, arctanh, erf, erfc, gamma,
  14. lgamma
  15. from std/sequtils import toSeq
  16. when declared(math.copySign):
  17. # pending bug #18762, avoid renaming math
  18. from std/math as math2 import copySign
  19. when declared(math.signbit):
  20. # ditto
  21. from std/math as math3 import signbit
  22. from std/envvars import getEnv, existsEnv, delEnv, putEnv, envPairs
  23. from std/os import getAppFilename
  24. from std/private/oscommon import dirExists, fileExists
  25. from std/private/osdirs import walkDir, createDir
  26. from std/times import cpuTime
  27. from std/hashes import hash
  28. from std/osproc import nil
  29. when defined(nimPreviewSlimSystem):
  30. import std/syncio
  31. else:
  32. from std/formatfloat import addFloatRoundtrip, addFloatSprintf
  33. # There are some useful procs in vmconv.
  34. import vmconv, vmmarshal
  35. template mathop(op) {.dirty.} =
  36. registerCallback(c, "stdlib.math." & astToStr(op), `op Wrapper`)
  37. template osop(op) {.dirty.} =
  38. registerCallback(c, "stdlib.os." & astToStr(op), `op Wrapper`)
  39. template oscommonop(op) {.dirty.} =
  40. registerCallback(c, "stdlib.oscommon." & astToStr(op), `op Wrapper`)
  41. template osdirsop(op) {.dirty.} =
  42. registerCallback(c, "stdlib.osdirs." & astToStr(op), `op Wrapper`)
  43. template envvarsop(op) {.dirty.} =
  44. registerCallback(c, "stdlib.envvars." & astToStr(op), `op Wrapper`)
  45. template timesop(op) {.dirty.} =
  46. registerCallback(c, "stdlib.times." & astToStr(op), `op Wrapper`)
  47. template systemop(op) {.dirty.} =
  48. registerCallback(c, "stdlib.system." & astToStr(op), `op Wrapper`)
  49. template ioop(op) {.dirty.} =
  50. registerCallback(c, "stdlib.syncio." & astToStr(op), `op Wrapper`)
  51. template macrosop(op) {.dirty.} =
  52. registerCallback(c, "stdlib.macros." & astToStr(op), `op Wrapper`)
  53. template wrap1fMath(op) {.dirty.} =
  54. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  55. doAssert a.numArgs == 1
  56. setResult(a, op(getFloat(a, 0)))
  57. mathop op
  58. template wrap2fMath(op) {.dirty.} =
  59. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  60. setResult(a, op(getFloat(a, 0), getFloat(a, 1)))
  61. mathop op
  62. template wrap0(op, modop) {.dirty.} =
  63. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  64. setResult(a, op())
  65. modop op
  66. template wrap1s(op, modop) {.dirty.} =
  67. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  68. setResult(a, op(getString(a, 0)))
  69. modop op
  70. template wrap2s(op, modop) {.dirty.} =
  71. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  72. setResult(a, op(getString(a, 0), getString(a, 1)))
  73. modop op
  74. template wrap2si(op, modop) {.dirty.} =
  75. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  76. setResult(a, op(getString(a, 0), getInt(a, 1)))
  77. modop op
  78. template wrap1svoid(op, modop) {.dirty.} =
  79. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  80. op(getString(a, 0))
  81. modop op
  82. template wrap2svoid(op, modop) {.dirty.} =
  83. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  84. op(getString(a, 0), getString(a, 1))
  85. modop op
  86. template wrapDangerous1svoid(op, modop) {.dirty.} =
  87. if vmopsDanger notin c.config.features and (defined(nimsuggest) or c.config.cmd == cmdCheck):
  88. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  89. discard
  90. modop op
  91. else:
  92. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  93. op(getString(a, 0))
  94. modop op
  95. template wrapDangerous2svoid(op, modop) {.dirty.} =
  96. if vmopsDanger notin c.config.features and (defined(nimsuggest) or c.config.cmd == cmdCheck):
  97. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  98. discard
  99. modop op
  100. else:
  101. proc `op Wrapper`(a: VmArgs) {.nimcall.} =
  102. op(getString(a, 0), getString(a, 1))
  103. modop op
  104. proc getCurrentExceptionMsgWrapper(a: VmArgs) {.nimcall.} =
  105. setResult(a, if a.currentException.isNil: ""
  106. else: a.currentException[3].skipColon.strVal)
  107. proc getCurrentExceptionWrapper(a: VmArgs) {.nimcall.} =
  108. setResult(a, a.currentException)
  109. proc staticWalkDirImpl(path: string, relative: bool): PNode =
  110. result = newNode(nkBracket)
  111. for k, f in walkDir(path, relative):
  112. result.add toLit((k, f))
  113. from std / compilesettings import SingleValueSetting, MultipleValueSetting
  114. proc querySettingImpl(conf: ConfigRef, switch: BiggestInt): string =
  115. {.push warning[Deprecated]:off.}
  116. case SingleValueSetting(switch)
  117. of arguments: result = conf.arguments
  118. of outFile: result = conf.outFile.string
  119. of outDir: result = conf.outDir.string
  120. of nimcacheDir: result = conf.getNimcacheDir().string
  121. of projectName: result = conf.projectName
  122. of projectPath: result = conf.projectPath.string
  123. of projectFull: result = conf.projectFull.string
  124. of command: result = conf.command
  125. of commandLine: result = conf.commandLine
  126. of linkOptions: result = conf.linkOptions
  127. of compileOptions: result = conf.compileOptions
  128. of ccompilerPath: result = conf.cCompilerPath
  129. of backend: result = $conf.backend
  130. of libPath: result = conf.libpath.string
  131. of gc: result = $conf.selectedGC
  132. of mm: result = $conf.selectedGC
  133. {.pop.}
  134. proc querySettingSeqImpl(conf: ConfigRef, switch: BiggestInt): seq[string] =
  135. template copySeq(field: untyped): untyped =
  136. for i in field: result.add i.string
  137. case MultipleValueSetting(switch)
  138. of nimblePaths: copySeq(conf.nimblePaths)
  139. of searchPaths: copySeq(conf.searchPaths)
  140. of lazyPaths: copySeq(conf.lazyPaths)
  141. of commandArgs: result = conf.commandArgs
  142. of cincludes: copySeq(conf.cIncludes)
  143. of clibs: copySeq(conf.cLibs)
  144. proc stackTrace2(c: PCtx, msg: string, n: PNode) =
  145. stackTrace(c, PStackFrame(prc: c.prc.sym, comesFrom: 0, next: nil), c.exceptionInstr, msg, n.info)
  146. proc registerAdditionalOps*(c: PCtx) =
  147. template wrapIterator(fqname: string, iter: untyped) =
  148. registerCallback c, fqname, proc(a: VmArgs) =
  149. setResult(a, toLit(toSeq(iter)))
  150. proc gorgeExWrapper(a: VmArgs) =
  151. let ret = opGorge(getString(a, 0), getString(a, 1), getString(a, 2),
  152. a.currentLineInfo, c.config)
  153. setResult a, ret.toLit
  154. proc getProjectPathWrapper(a: VmArgs) =
  155. setResult a, c.config.projectPath.string
  156. wrap1fMath(sqrt)
  157. wrap1fMath(cbrt)
  158. wrap1fMath(ln)
  159. wrap1fMath(log10)
  160. wrap1fMath(log2)
  161. wrap1fMath(exp)
  162. wrap1fMath(arccos)
  163. wrap1fMath(arcsin)
  164. wrap1fMath(arctan)
  165. wrap1fMath(arcsinh)
  166. wrap1fMath(arccosh)
  167. wrap1fMath(arctanh)
  168. wrap2fMath(arctan2)
  169. wrap1fMath(cos)
  170. wrap1fMath(cosh)
  171. wrap2fMath(hypot)
  172. wrap1fMath(sinh)
  173. wrap1fMath(sin)
  174. wrap1fMath(tan)
  175. wrap1fMath(tanh)
  176. wrap2fMath(pow)
  177. wrap1fMath(trunc)
  178. wrap1fMath(floor)
  179. wrap1fMath(ceil)
  180. wrap1fMath(erf)
  181. wrap1fMath(erfc)
  182. wrap1fMath(gamma)
  183. wrap1fMath(lgamma)
  184. when declared(copySign):
  185. wrap2fMath(copySign)
  186. when declared(signbit):
  187. wrap1fMath(signbit)
  188. registerCallback c, "stdlib.math.round", proc (a: VmArgs) {.nimcall.} =
  189. let n = a.numArgs
  190. case n
  191. of 1: setResult(a, round(getFloat(a, 0)))
  192. of 2: setResult(a, round(getFloat(a, 0), getInt(a, 1).int))
  193. else: doAssert false, $n
  194. proc `mod Wrapper`(a: VmArgs) {.nimcall.} =
  195. setResult(a, `mod`(getFloat(a, 0), getFloat(a, 1)))
  196. registerCallback(c, "stdlib.math.mod", `mod Wrapper`)
  197. when defined(nimcore):
  198. wrap2s(getEnv, envvarsop)
  199. wrap1s(existsEnv, envvarsop)
  200. wrap2svoid(putEnv, envvarsop)
  201. wrap1svoid(delEnv, envvarsop)
  202. wrap1s(dirExists, oscommonop)
  203. wrap1s(fileExists, oscommonop)
  204. wrapDangerous2svoid(writeFile, ioop)
  205. wrapDangerous1svoid(createDir, osdirsop)
  206. wrap1s(readFile, ioop)
  207. wrap2si(readLines, ioop)
  208. systemop getCurrentExceptionMsg
  209. systemop getCurrentException
  210. registerCallback c, "stdlib.osdirs.staticWalkDir", proc (a: VmArgs) {.nimcall.} =
  211. setResult(a, staticWalkDirImpl(getString(a, 0), getBool(a, 1)))
  212. registerCallback c, "stdlib.compilesettings.querySetting", proc (a: VmArgs) =
  213. setResult(a, querySettingImpl(c.config, getInt(a, 0)))
  214. registerCallback c, "stdlib.compilesettings.querySettingSeq", proc (a: VmArgs) =
  215. setResult(a, querySettingSeqImpl(c.config, getInt(a, 0)))
  216. if defined(nimsuggest) or c.config.cmd == cmdCheck:
  217. discard "don't run staticExec for 'nim suggest'"
  218. else:
  219. systemop gorgeEx
  220. macrosop getProjectPath
  221. registerCallback c, "stdlib.os.getCurrentCompilerExe", proc (a: VmArgs) {.nimcall.} =
  222. setResult(a, getAppFilename())
  223. registerCallback c, "stdlib.macros.symBodyHash", proc (a: VmArgs) =
  224. let n = getNode(a, 0)
  225. if n.kind != nkSym:
  226. stackTrace2(c, "symBodyHash() requires a symbol. '$#' is of kind '$#'" % [$n, $n.kind], n)
  227. setResult(a, $symBodyDigest(c.graph, n.sym))
  228. registerCallback c, "stdlib.macros.isExported", proc(a: VmArgs) =
  229. let n = getNode(a, 0)
  230. if n.kind != nkSym:
  231. stackTrace2(c, "isExported() requires a symbol. '$#' is of kind '$#'" % [$n, $n.kind], n)
  232. setResult(a, sfExported in n.sym.flags)
  233. registerCallback c, "stdlib.macrocache.hasKey", proc (a: VmArgs) =
  234. let
  235. table = getString(a, 0)
  236. key = getString(a, 1)
  237. setResult(a, table in c.graph.cacheTables and key in c.graph.cacheTables[table])
  238. registerCallback c, "stdlib.vmutils.vmTrace", proc (a: VmArgs) =
  239. c.config.isVmTrace = getBool(a, 0)
  240. proc hashVmImpl(a: VmArgs) =
  241. var res = hashes.hash(a.getString(0), a.getInt(1).int, a.getInt(2).int)
  242. if c.config.backend == backendJs:
  243. # emulate JS's terrible integers:
  244. res = cast[int32](res)
  245. setResult(a, res)
  246. registerCallback c, "stdlib.hashes.hashVmImpl", hashVmImpl
  247. proc hashVmImplByte(a: VmArgs) =
  248. # nkBracket[...]
  249. let sPos = a.getInt(1).int
  250. let ePos = a.getInt(2).int
  251. let arr = a.getNode(0)
  252. var bytes = newSeq[byte](arr.len)
  253. for i in 0..<arr.len:
  254. bytes[i] = byte(arr[i].intVal and 0xff)
  255. var res = hashes.hash(bytes, sPos, ePos)
  256. if c.config.backend == backendJs:
  257. # emulate JS's terrible integers:
  258. res = cast[int32](res)
  259. setResult(a, res)
  260. registerCallback c, "stdlib.hashes.hashVmImplByte", hashVmImplByte
  261. registerCallback c, "stdlib.hashes.hashVmImplChar", hashVmImplByte
  262. if optBenchmarkVM in c.config.globalOptions or vmopsDanger in c.config.features:
  263. wrap0(cpuTime, timesop)
  264. else:
  265. proc cpuTime(): float = 5.391245e-44 # Randomly chosen
  266. wrap0(cpuTime, timesop)
  267. if vmopsDanger in c.config.features:
  268. ## useful procs but these should be opt-in because they may impact
  269. ## reproducible builds and users need to understand that this runs at CT.
  270. ## Note that `staticExec` can already do equal amount of damage so it's more
  271. ## of a semantic issue than a security issue.
  272. registerCallback c, "stdlib.os.getCurrentDir", proc (a: VmArgs) {.nimcall.} =
  273. setResult(a, os.getCurrentDir())
  274. registerCallback c, "stdlib.osproc.execCmdEx", proc (a: VmArgs) {.nimcall.} =
  275. let options = getNode(a, 1).fromLit(set[osproc.ProcessOption])
  276. a.setResult osproc.execCmdEx(getString(a, 0), options).toLit
  277. registerCallback c, "stdlib.times.getTimeImpl", proc (a: VmArgs) =
  278. let obj = a.getNode(0).typ.n
  279. setResult(a, times.getTime().toTimeLit(c, obj, a.currentLineInfo))
  280. proc getEffectList(c: PCtx; a: VmArgs; effectIndex: int) =
  281. let fn = getNode(a, 0)
  282. var list = newNodeI(nkBracket, fn.info)
  283. if fn.typ != nil and fn.typ.n != nil and fn.typ.n[0].len >= effectListLen and
  284. fn.typ.n[0][effectIndex] != nil:
  285. for e in fn.typ.n[0][effectIndex]:
  286. list.add opMapTypeInstToAst(c.cache, e.typ.skipTypes({tyRef}), e.info, c.idgen)
  287. else:
  288. list.add newIdentNode(getIdent(c.cache, "UncomputedEffects"), fn.info)
  289. setResult(a, list)
  290. registerCallback c, "stdlib.effecttraits.getRaisesListImpl", proc (a: VmArgs) =
  291. getEffectList(c, a, exceptionEffects)
  292. registerCallback c, "stdlib.effecttraits.getTagsListImpl", proc (a: VmArgs) =
  293. getEffectList(c, a, tagEffects)
  294. registerCallback c, "stdlib.effecttraits.getForbidsListImpl", proc (a: VmArgs) =
  295. getEffectList(c, a, forbiddenEffects)
  296. registerCallback c, "stdlib.effecttraits.isGcSafeImpl", proc (a: VmArgs) =
  297. let fn = getNode(a, 0)
  298. setResult(a, fn.typ != nil and tfGcSafe in fn.typ.flags)
  299. registerCallback c, "stdlib.effecttraits.hasNoSideEffectsImpl", proc (a: VmArgs) =
  300. let fn = getNode(a, 0)
  301. setResult(a, (fn.typ != nil and tfNoSideEffect in fn.typ.flags) or
  302. (fn.kind == nkSym and fn.sym.kind == skFunc))
  303. registerCallback c, "stdlib.typetraits.hasClosureImpl", proc (a: VmArgs) =
  304. let fn = getNode(a, 0)
  305. setResult(a, fn.kind == nkClosure or (fn.typ != nil and fn.typ.callConv == ccClosure))
  306. registerCallback c, "stdlib.formatfloat.addFloatRoundtrip", proc(a: VmArgs) =
  307. let p = a.getVar(0)
  308. let x = a.getFloat(1)
  309. addFloatRoundtrip(p.strVal, x)
  310. registerCallback c, "stdlib.formatfloat.addFloatSprintf", proc(a: VmArgs) =
  311. let p = a.getVar(0)
  312. let x = a.getFloat(1)
  313. addFloatSprintf(p.strVal, x)
  314. registerCallback c, "stdlib.strutils.formatBiggestFloat", proc(a: VmArgs) =
  315. setResult(a, formatBiggestFloat(a.getFloat(0), FloatFormatMode(a.getInt(1)),
  316. a.getInt(2), chr(a.getInt(3))))
  317. wrapIterator("stdlib.envvars.envPairsImplSeq"): envPairs()
  318. registerCallback c, "stdlib.marshal.toVM", proc(a: VmArgs) =
  319. let typ = a.getNode(0).typ
  320. case typ.kind
  321. of tyInt..tyInt64, tyUInt..tyUInt64:
  322. setResult(a, loadAny(a.getString(1), typ, c.cache, c.config, c.idgen).intVal)
  323. of tyFloat..tyFloat128:
  324. setResult(a, loadAny(a.getString(1), typ, c.cache, c.config, c.idgen).floatVal)
  325. else:
  326. setResult(a, loadAny(a.getString(1), typ, c.cache, c.config, c.idgen))
  327. registerCallback c, "stdlib.marshal.loadVM", proc(a: VmArgs) =
  328. let typ = a.getNode(0).typ
  329. let p = a.getReg(1)
  330. var res: string
  331. storeAny(res, typ, regToNode(p[]), c.config)
  332. setResult(a, res)