Rodrigo Mesquita pushed to branch wip/romes/decode-stack-with-ipe at Glasgow Haskell Compiler / GHC
Commits:
-
c7e76720
by Rodrigo Mesquita at 2026-03-18T17:12:52+00:00
2 changed files:
- libraries/ghc-experimental/ghc-experimental.cabal.in
- + libraries/ghc-experimental/src/GHC/Stack/Decode/Experimental.hs
Changes:
| ... | ... | @@ -41,6 +41,7 @@ library |
| 41 | 41 | GHC.TypeNats.Experimental
|
| 42 | 42 | GHC.RTS.Flags.Experimental
|
| 43 | 43 | GHC.Stack.Annotation.Experimental
|
| 44 | + GHC.Stack.Decode.Experimental
|
|
| 44 | 45 | GHC.Stats.Experimental
|
| 45 | 46 | Prelude.Experimental
|
| 46 | 47 | System.Mem.Experimental
|
| 1 | +module GHC.Stack.Decode.Experimental (
|
|
| 2 | + -- * High-level stack decoders
|
|
| 3 | + decodeStackWithIpe,
|
|
| 4 | + -- * Stack decoder helpers
|
|
| 5 | + decodeStackWithFrameUnpack,
|
|
| 6 | + -- * StackEntry
|
|
| 7 | + StackEntry(..),
|
|
| 8 | + -- * Pretty printing
|
|
| 9 | + prettyStackFrameWithIpe,
|
|
| 10 | + ) where
|
|
| 11 | + |
|
| 12 | +import GHC.Internal.Stack.Decode |