X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=compiler%2Fghci%2FInteractiveUI.hs;h=d7de9404e365cc2745edf6fc22632fa7e4e58e58;hp=507a71c29102cfd0f79ee449efa2b7e16764ccf2;hb=99794f66b568709176dd9fc2248a57a21a165556;hpb=f17c76a4fc51a52ccda154ec9e4990f13f78c8c2 diff --git a/compiler/ghci/InteractiveUI.hs b/compiler/ghci/InteractiveUI.hs index 507a71c..d7de940 100644 --- a/compiler/ghci/InteractiveUI.hs +++ b/compiler/ghci/InteractiveUI.hs @@ -643,21 +643,6 @@ lookupCommand str = do c:_ -> return (Just c) -getCurrentBreakTick :: GHCi (Maybe BreakIndex) -getCurrentBreakTick = do - session <- getSession - resumes <- io $ GHC.getResumeContext session - case resumes of - [] -> return Nothing - (r:rs) -> do - let ix = GHC.resumeHistoryIx r - if ix == 0 - then return (GHC.breakInfo_number `fmap` GHC.resumeBreakInfo r) - else do - let hist = GHC.resumeHistory r !! (ix-1) - let tick = GHC.getHistoryTick hist - return (Just tick) - getCurrentBreakSpan :: GHCi (Maybe SrcSpan) getCurrentBreakSpan = do session <- getSession @@ -1564,37 +1549,29 @@ stepCmd expression = do runStmt expression GHC.SingleStep; return () stepOverCmd [] = do mb_span <- getCurrentBreakSpan - session <- getSession case mb_span of Nothing -> stepCmd [] - Just curr_loc -> do - Just tick <- getCurrentBreakTick - Just mod <- getCurrentBreakModule - parent <- io$ GHC.findEnclosingDeclSpanByTick session mod tick + Just loc -> do + Just mod <- getCurrentBreakModule + parent <- enclosingTickSpan mod loc allTicksRightmost <- (sortBy rightmost . map snd) `fmap` ticksIn mod parent let lastTick = null allTicksRightmost || - head allTicksRightmost == curr_loc + head allTicksRightmost == loc if not lastTick - then let f t = t `isSubspanOf` parent && - (curr_loc `leftmost_largest` t == LT) - in doContinue f GHC.SingleStep - else printForUser (text "Warning: no more breakpoints in this function body, switching to :step") >> - doContinue (const True) GHC.SingleStep + then doContinue (`isSubspanOf` parent) GHC.SingleStep + else doContinue (const True) GHC.SingleStep stepOverCmd expression = stepCmd expression {- - The first tricky bit in stepOver is detecting that we have + So, the only tricky part in stepOver is detecting that we have arrived to the last tick in an expression, in which case we must step normally to the next tick. What we do is: 1. Retrieve the enclosing expression block (with a tick) 2. Retrieve all the ticks there and sort them out by 'rightness' 3. See if the current tick turned out the first one in the list - - The second tricky bit is how to step over recursive calls. - -} --ticksIn :: Module -> SrcSpan -> GHCi [Tick] @@ -1607,6 +1584,15 @@ ticksIn mod src = do , srcSpanEnd src >= srcSpanEnd span ] +enclosingTickSpan :: Module -> SrcSpan -> GHCi SrcSpan +enclosingTickSpan mod src = do + ticks <- getTickArray mod + let line = srcSpanStartLine src + ASSERT (inRange (bounds ticks) line) do + let enclosing_spans = [ span | (_,span) <- ticks ! line + , srcSpanEnd span >= srcSpanEnd src] + return . head . sortBy leftmost_largest $ enclosing_spans + traceCmd :: String -> GHCi () traceCmd [] = doContinue (const True) GHC.RunAndLogSteps traceCmd expression = do runStmt expression GHC.RunAndLogSteps; return ()