[Git][ghc/ghc][master] JS: disable debugging info for heap objects
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Thu Feb 16 11:45:38 UTC 2023
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
324e925b by Sylvain Henry at 2023-02-16T06:45:15-05:00
JS: disable debugging info for heap objects
- - - - -
1 changed file:
- compiler/GHC/StgToJS/Linker/Linker.hs
Changes:
=====================================
compiler/GHC/StgToJS/Linker/Linker.hs
=====================================
@@ -867,11 +867,13 @@ linkModules mods = (compact_mods, meta)
statics = nubStaticInfo (concatMap mc_statics mods)
infos = concatMap mc_closures mods
+ debug = False -- TODO: this could be enabled in a debug build.
+ -- It adds debug info to heap objects
meta = mconcat
-- render metadata as individual statements
[ mconcat (map staticDeclStat statics)
, mconcat (map staticInitStat statics)
- , mconcat (map (closureInfoStat True) infos)
+ , mconcat (map (closureInfoStat debug) infos)
]
-- | Only keep a single StaticInfo with a given name
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/324e925be847d3969724be3e1b82c25899aaca27
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/324e925be847d3969724be3e1b82c25899aaca27
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20230216/21da1b72/attachment-0001.html>
More information about the ghc-commits
mailing list