1 / 27

A Lightweight Interactive Debugger for Haskell

A Lightweight Interactive Debugger for Haskell. Simon Marlow José Iborra Bernard Pope Andy Gill. We don’t need no debugger!. A type system!. We have. GHCi and Hugs!. QuickCheck and HUnit!. NO BUGS!. but…. A debugger was still the #1 requested feature in the GHC survey (2005)

donat
Télécharger la présentation

A Lightweight Interactive Debugger for Haskell

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. A Lightweight Interactive Debugger for Haskell Simon Marlow José Iborra Bernard Pope Andy Gill

  2. We don’t need no debugger! A type system! • We have GHCi and Hugs! QuickCheck and HUnit! NO BUGS!

  3. but… • A debugger was still the #1 requested feature in the GHC survey (2005) • New users often want a way to visualise execution to understand what’s happening • When you missed out a test, diagnosing the failure is hard: deep bugs • head [] 

  4. But we have debuggers! • There exist debugging tools for Haskell, but for various reasons they are often too hard to use: • limited language support • require recompiling libraries • time/space overhead • etc. (see paper for comparison)

  5. Goals • We want a debugger that: • Is always available • works with everything that GHC can compile • doesn’t add significant overheads • We might sacrifice some functionality to achieve accessibility. Aim for a high power-to-weight ratio. • This won’t necessarily supercede other Haskell debuggers: the goal is to provide some debugging functionality that everyone can use easily. • Secondary goals: • can be re-used in IDE frontends

  6. Real programmers want to set breakpoints • Our debugger is “online”: you debug the running program, as opposed to “post-mortem” debugging (eg. Hat). • The basic model is “execute, stop, inspect, continue”. • Advantages: • we can let you evaluate arbitrary expressions involving runtime values (e.g. look up a key in a finite map). • no limit on the runtime of the program • Disadvantages: • we can’t easily go back in time • evaluation order is exposed (possibly an advantage?) • Our debugger is integrated into GHCi

  7. Walkthrough GHCi, version 6.8.0.20070919: http://www.haskell.org/ghc/ :? for help Loading package base ... linking ... done. Prelude>:load foldl [1 of 1] Compiling Test ( foldl.hs, interpreted ) Ok, modules loaded: Test. *Test> :list foldl 10 11foldl f c xs = go c xs 12where go c [] = c 13go c (x:xs) = go (f c x) xs 14 *Test> :break foldl Breakpoint 1 activated at foldl.hs:(11,0)-(13,34) *Test> :show breaks [0] Test foldl.hs:(11,0)-(13,34) *Test> foldl (+) 0 [1..5] Stopped at foldl.hs:(11,0)-(13,34) _result :: t1 = _ [foldl.hs:(11,0)-(13,34)] *Test> [foldl.hs:(11,0)-(13,34)] *Test> :list 10 11 foldl f c xs = go c xs 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 breakpoints can be set in any interpreted module, on any function definition or expression.

  8. Walkthrough [foldl.hs:(11,0)-(13,34)] *Test> :set stop :list [foldl.hs:(11,0)-(13,34)] *Test> :step Stopped at foldl.hs:11:15-21 _result :: a = _ c :: a = _ go :: a -> [b] -> a = _ xs :: [b] = _ 10 11 foldl f c xs = go c xs 12 where go c [] = c [foldl.hs:11:15-21] *Test> length xs 5 we can take a single step, which executes until the next breakpoint location - next expression or function call. this is the expression to be evaluated next new bindings for variables in scope at the breakpoint. Underscore means “unevaluated” we can evaluate expressions involving the local variables

  9. Walkthrough some variables have polymorphic types. What does that mean? At runtime, c is bound to a value with a monomorphic type. [foldl.hs:11:15-21] *Test> :type c c :: a [foldl.hs:11:15-21] *Test> c <interactive>:1:0: Ambiguous type variable `a' in the constraint: `Show a' arising from a use of `print' at <interactive>:1:0 Cannot resolve unknown runtime types: a Use :print or :force to determine these types The compiler doesn’t know the runtime type of c, so it doesn’t know which Show instance to use. ‘a’ is a runtime type variable Defaulting does not apply to these type variables. Note that ‘length xs’ worked, however.

  10. Walkthrough :print displays a value without knowing its type, and without forcing evaluation. c is completely unevaluated, so we don't see any new information. [foldl.hs:11:15-21] *Test> :print c c = (_t1::a) [foldl.hs:11:15-21] *Test> :force c c = 0 [foldl.hs:11:15-21] *Test> :type c c :: Integer [foldl.hs:11:15-21] *Test> :show bindings _result :: Integer _t1 :: Integer c :: Integer go :: Integer -> [Integer] -> Integer it :: Int xs :: [Integer] :force is like :print, but forces evaluation. the type of ‘c’ is now known! and the type information has been propagated to the other bindings (type variable ‘a’ is now bound to ‘Integer’) ‘b’ was resolved to Integer earlier by ‘length xs’. GHCi automatically propagates type information as it becomes available.

  11. Walkthrough [foldl.hs:11:15-21] *Test> :step Stopped at foldl.hs:(12,8)-(13,34) _result :: a = _ f :: a -> b -> a = _ 11 foldl f c xs = go c xs 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 [foldl.hs:(12,8)-(13,34)] *Test> :step Stopped at foldl.hs:13:22-34 _result :: Integer = _ c :: Integer = 0 f :: Integer -> Integer -> Integer = _ x :: Integer = 1 xs :: [Integer] = [2,3,4,5] 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 most of the types are concrete, because GHCi has inspected the values of the free variables to determine their types.

  12. Walkthrough [foldl.hs:13:22-34] *Test> :step Stopped at foldl.hs:(12,8)-(13,34) _result :: a = _ f :: a -> b -> a = _ 11 foldl f c xs = go c xs 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 [foldl.hs:(12,8)-(13,34)] *Test>:step Stopped at foldl.hs:13:22-34 _result :: a = _ c :: a = _ f :: a -> Integer -> a = _ x :: Integer = 2 xs :: [Integer] = [3,4,5] 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 [foldl.hs:13:22-34] *Test> :step Stopped at foldl.hs:(12,8)-(13,34) _result :: a = _ f :: a -> b -> a = _ 11 foldl f c xs = go c xs 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 [foldl.hs:(12,8)-(13,34)] *Test>:step Stopped at foldl.hs:13:22-34 _result :: a = _ c :: a = _ f :: a -> Integer -> a = _ x :: Integer = 3 xs :: [Integer] = [4,5] 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 note that ‘c’ is unevaluated now. foldl is building up a chain of thunks.

  13. Walkthrough We can single-step the evaluation of ‘c’ separately, :step takes an expression to evaluate as an argument [foldl.hs:13:22-34] *Test> :step c <interactive>:1:0: Ambiguous type variable `a' in the constraint: `Show a' arising from a use of `print' at <interactive>:1:0 Cannot resolve unknown runtime types: a Use :print or :force to determine these types [foldl.hs:13:22-34] *Test> :step c `seq` () Stopped at foldl.hs:13:26-30 _result :: a = _ c :: a = _ f :: a -> Integer -> a = _ x :: Integer = 2 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 ... [foldl.hs:13:26-30] *Test> ... [foldl.hs:13:26-30] *Test> :show context --> foldl (+) 0 [1..5] Stopped at foldl.hs:13:22-34 --> c `seq` () Stopped at foldl.hs:13:26-30 oops, not like that! but this works “…” in the prompt indicates that we are now in a nested debugging session. lists the current debugging sessions

  14. Walkthrough ... [foldl.hs:13:26-30] *Test> :step Stopped at foldl.hs:13:26-30 _result :: Integer = _ c :: Integer = 0 f :: Integer -> Integer -> Integer = _ x :: Integer = 1 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 ... [foldl.hs:13:26-30] *Test> :step () [foldl.hs:13:22-34] *Test> :continue 15 *Test> continue the evaluation of c result of c `seq` () is () continue the original evaluation, result is 15

  15. Walkthrough let’s try something else… first delete all breakpoints *Test> :delete * *Test> foldl (+) 0 [1..20000] *** Exception: stack overflow foldl has a commonly-encountered problem with stack overflow (I’m using a reduced stack limit here).

  16. Walkthrough *Test> :set -fbreak-on-error *Test> :trace foldl (+) 0 [1..20000] Stopped at <exception thrown> _exception :: e = stack overflow [<exception thrown>] *Test> :history -1 : foldl (foldl.hs:13:26-30) -2 : foldl (foldl.hs:13:26-30) -3 : foldl (foldl.hs:13:26-30) -4 : foldl (foldl.hs:13:26-30) -5 : foldl (foldl.hs:13:26-30) -6 : foldl (foldl.hs:13:26-30) -7 : foldl (foldl.hs:13:26-30) -8 : foldl (foldl.hs:13:26-30) -9 : foldl (foldl.hs:13:26-30) -10 : foldl (foldl.hs:13:26-30) -11 : foldl (foldl.hs:13:26-30) -12 : foldl (foldl.hs:13:26-30) -13 : foldl (foldl.hs:13:26-30) -14 : foldl (foldl.hs:13:26-30) -15 : foldl (foldl.hs:13:26-30) -16 : foldl (foldl.hs:13:26-30) -17 : foldl (foldl.hs:13:26-30) -18 : foldl (foldl.hs:13:26-30) -19 : foldl (foldl.hs:13:26-30) -20 : foldl (foldl.hs:13:26-30) ... Uncaught exceptions now trigger a breakpoint :trace evaluates as normal, but remembers the 50 most recent steps :history shows the history of evaluation steps when stopped

  17. Walkthrough [<exception thrown>] *Test> :back Logged breakpoint at foldl.hs:13:26-30 _result :: a c :: a f :: a -> Integer -> a x :: Integer 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 [-1: foldl.hs:13:26-30] *Test> :back Logged breakpoint at foldl.hs:13:26-30 _result :: a c :: a f :: a -> Integer -> a x :: Integer 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 [-2: foldl.hs:13:26-30] *Test> :back Logged breakpoint at foldl.hs:13:26-30 _result :: a c :: a f :: a -> Integer -> a x :: Integer 12 where go c [] = c 13 go c (x:xs) = go (f c x) xs 14 [-3: foldl.hs:13:26-30] *Test> every step in the history is evaluating ‘f c x’

  18. :trace/:history • The :trace/:history functionality is a poor substitute for a proper lexical call stack. • Maintaining a proper lexical call stack is hard, but :trace/:history were easy to implement. • Still, it is useful for finding the source of ‘head []’, pattern-match failure, stack overflow, and infinite loops. • For infinite loops, hit Control-C which generates an exception, then use :history.

  19. Implementation • A problem with implementing a debugger is during execution answering the question “where in the source code am I right now?”. • Approach 1: annotate each expression in the object code with the source expression it orignated from. • Problem: with extensive optimisation and transformation, it is hard to maintain this information accurately, and it requires careful attention to all the transformations. • cf. debugging optimised C with gdb.

  20. Annotating compiled code • Approach 2: use a systematic source-to-source transformation to yield a program with the same semantics, but with additional side-effects, e.g. reporting the current source location • Used by several existing Haskell debuggers, also the HPC coverage tool. • Two challenges: • the annotations are side-effects, we don’t want those side-effects to be lost or moved by transformations in the compiler • do this without impacting performance too much – we want the debugger to be “always on”

  21. Ticks case tick<module,n> of DEFAULT -> E • Has the same semantics as E • tick<module,n> is a side-effect: • in coverage it records that this expression was evaluated • in the debugger it checks whether this breakpoint is enabled • GHC’s middle-stage optimisations are already side-effect-aware; they won’t • eliminate the side-effect, or • perform it speculatively • but otherwise transformations are unaffected.

  22. Compared to coverage analysis… • The debugger puts ticks in different places • not on variables (too many ticks) • in let-expressions, coverage puts it here: • the debugger puts it here: • so that x is in scope at the breakpoint case tick<module,n> of DEFAULT -> let x = E in E’ let x = E in case tick<module,n> of DEFAULT -> E’

  23. Compiling ticks • Ideally we want ticks to imply no extra allocation. e.g. in • f gives rise to a single byte-code-object (BCO), the first instruction of which implements the tick. • Sadly, not all ticks are quite so easy to implement. e.g. • Every tick must be at a safe-point, i.e. at the beginning of a BCO, because execution may be suspended (just like a GC). We need to manufacture an extra safe point: let f = \x -> case tick<module,n> of DEFAULT -> E in … let x = E in case tick<m,n> of DEFAULT -> E’ let x = E in let z = case tick<m,n> of DEFAULT -> E’ in z

  24. Performance • Interpreted code already runs 15-20x slower than optimised compiled code (but compiles 2-3x quicker) • Performance of interpreted code is affected: • at compile-time, we need to insert ticks (+15%) • at runtime, check breakpoint status at each breakpoint, and extra safe-points (+45%) • But safe points do unnecessary updates, we expect to be able to reduce this • debugger cannot be disabled, but individual modules can be compiled rather than interpreted.

  25. The GHC API • The debugger is implemented mostly in Haskell; breakpoints are implemented using threads. • Debugging functionality is exposed via the GHC API. • GHCi is just a textual front-end built on top of this API, IDEs could also talk directly to the GHC API to provide interactive debugging.

  26. Future Work • High priority: a real lexical call stack • Get feedback from GHC 6.8.1 users – is exposing the evaluation order confusing or helpful? • Performance can be improved • breakpoints in compiled code should be possible • API interface means it can be built into an IDE • Concurrency debugging

  27. Conclusion • We have an instant always-on debugger that works with everything that GHCi can compile • Functionality is limited compared to other debuggers – no backtrace, no algorithmic debugging etc. • Online debugging has some benefits over offline debugging: • evaluate arbitrary expressions involving runtime values • no need to store the entire trace of the program • no need to switch tools if you’re already using GHCi

More Related