Rodrigo Mesquita pushed to branch wip/romes/decode-stack-with-ipe at Glasgow Haskell Compiler / GHC

Commits:

2 changed files:

Changes:

  • libraries/ghc-experimental/ghc-experimental.cabal.in
    ... ... @@ -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
    

  • libraries/ghc-experimental/src/GHC/Stack/Decode/Experimental.hs
    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