Skip to content
Snippets Groups Projects
  1. Nov 09, 1999
    • Simon Marlow's avatar
      [project @ 1999-11-09 15:46:49 by simonmar] · 30681e79
      Simon Marlow authored
      A slew of SMP-related changes.
      
       - New locking scheme for thunks: we now check whether the thunk
         being entered is in our private allocation area, and if so
         we don't lock it.  Well, that's the upshot.  In practice it's
         a lot more fiddly than that.
      
       - I/O blocking is handled a bit more sanely now (but still not
         properly, methinks)
      
       - deadlock detection is back
      
       - remove old pre-SMP scheduler code
      
       - revamp the timing code.  We actually get reasonable-looking
         timing info for SMP programs now.
      
       - fix a bug in the garbage collector to do with IND_OLDGENs appearing
         on the mutable list of the old generation.
      
       - move BDescr() function from rts/BlockAlloc.h to includes/Block.h.
      
       - move struct generation and struct step into includes/StgStorage.h (sigh)
      
       - add UPD_IND_NOLOCK for updating with an indirection where locking
         the black hole is not required.
      30681e79
    • Simon Marlow's avatar
      [project @ 1999-11-09 11:38:28 by simonmar] · 532fc331
      Simon Marlow authored
      Test for lit-lits in patterns.
      532fc331
    • Simon Marlow's avatar
      [project @ 1999-11-09 11:37:38 by simonmar] · f91f525e
      Simon Marlow authored
      Fixes to Simon's lit-lit pattern commit
      f91f525e
    • Simon Marlow's avatar
      [project @ 1999-11-09 10:46:25 by simonmar] · ee6369a6
      Simon Marlow authored
      Reset standard file descriptors to blocking mode on exit.
      ee6369a6
    • Julian Seward's avatar
      [project @ 1999-11-09 10:05:07 by sewardj] · b38a2d75
      Julian Seward authored
      mulIntCzh (i386_TARGET_ARCH): xor --> xorl
      b38a2d75
    • AndyGill's avatar
      [project @ 1999-11-09 00:41:19 by andy] · 0d4adcb4
      AndyGill authored
      Debugging wibble.
      0d4adcb4
    • AndyGill's avatar
      [project @ 1999-11-09 00:40:11 by andy] · 1e440dbc
      AndyGill authored
      This is to fix the following bugs:
      
          Reported by    Description
          ----------------------------------------------------------------------
          Various        cutoff value for -c option seems too low.
          Andy           weirdness with :i C if C is a zero parameter class.
          Ross Paterson  Problem with rank 2 parameters and "Showable" class.
          Jeff           Stronger static checking on instances for classes with
                         functional dependencies.
      1e440dbc
    • Kevin Glynn's avatar
      [project @ 1999-11-09 00:14:50 by kglynn] · 8a76a663
      Kevin Glynn authored
      Support for negative timings in the stats file.  (I've seen times of -0.00).
      If a timing is negative then set it to 0.
      8a76a663
  2. Nov 08, 1999
  3. Nov 05, 1999
  4. Nov 04, 1999
  5. Nov 03, 1999
  6. Nov 02, 1999
    • Simon Marlow's avatar
      [project @ 1999-11-02 17:19:15 by simonmar] · c6ff5639
      Simon Marlow authored
      Time the shutdown code as well as the initialisation code.  This
      figure is sometimes significant for SMP, because the tasks are all
      killed by a signal (at the moment) and it might take a while for the
      signal to be delivered.
      c6ff5639
    • Simon Marlow's avatar
      [project @ 1999-11-02 17:17:47 by simonmar] · 4ada7d7d
      Simon Marlow authored
      Fix CAF_BLACKHOLE and BLACKHOLE_BQ entry code for SMP case (it was
      going into a busy locking state through comparing against the wrong
      info pointer)
      4ada7d7d
    • Simon Marlow's avatar
      [project @ 1999-11-02 17:08:28 by simonmar] · 05ae92d8
      Simon Marlow authored
      Remove accidental wibble that made it in with the last commit
      05ae92d8
    • Simon Marlow's avatar
      [project @ 1999-11-02 17:04:28 by simonmar] · 85b05cb2
      Simon Marlow authored
      make the prototypes of suspendThread and resumeThread available to the RTS.
      85b05cb2
    • Simon Marlow's avatar
      [project @ 1999-11-02 15:05:38 by simonmar] · f6692611
      Simon Marlow authored
      This commit adds in the current state of our SMP support.  Notably,
      this allows the new way 's' to be built, providing support for running
      multiple Haskell threads simultaneously on top of any pthreads
      implementation, the idea being to take advantage of commodity SMP
      boxes.
      
      Don't expect to get much of a speedup yet; due to the excessive
      locking required to synchronise access to mutable heap objects, you'll
      see a slowdown in most cases, even on a UP machine.  The best I've
      seen is a 1.6-1.7 speedup on an example that did no locking (two
      optimised nfibs in parallel).
      
      	- new RTS -N flag specifies how many pthreads to start.
      
      	- new driver -smp flag, tells the driver to use way 's'.
      
      	- new compiler -fsmp option (not for user comsumption)
      	  tells the compiler not to generate direct jumps to
      	  thunk entry code.
      
      	- largely rewritten scheduler
      
      	- _ccall_GC is now done by handing back a "token" to the
      	  RTS before executing the ccall; it should now be possible
      	  to execute blocking ccalls in the current thread while
      	  allowing the RTS to continue running Haskell threads as
      	  normal.
      
      	- you can only call thread-safe C libraries from a way 's'
      	  build, of course.
      
      Pthread support is still incomplete, and weird things (including
      deadlocks) are likely to happen.
      f6692611
    • sof's avatar
      [project @ 1999-11-02 13:58:57 by sof] · 947d2e36
      sof authored
      expected output
      947d2e36
    • Simon Marlow's avatar
      [project @ 1999-11-02 11:57:15 by simonmar] · c6f67e94
      Simon Marlow authored
      Add simple "raw" style callback example (i.e. not using the FFI).  Just
      for testing _ccall_GC really.
      c6f67e94
    • sof's avatar
      [project @ 1999-11-02 11:55:02 by sof] · ceb975cd
      sof authored
      Simple example of callback'ery in action
      ceb975cd
    • sof's avatar
      [project @ 1999-11-02 11:25:42 by sof] · 3b8b96b3
      sof authored
      updated with expected-output files
      3b8b96b3
    • Simon Peyton Jones's avatar
      [project @ 1999-11-02 10:31:54 by simonpj] · 727f51dc
      Simon Peyton Jones authored
      Fix bug in instance Dynamic (Either a b)
      727f51dc
  7. Nov 01, 1999
    • Julian Seward's avatar
      [project @ 1999-11-01 18:19:39 by sewardj] · 081601b1
      Julian Seward authored
      Computation of max-stack-use during BCO generation was completely bogus.
      Fix it.  Also, add a i_STK_CHECK_big insn with 16-bit opcode.
      081601b1
    • Julian Seward's avatar
      [project @ 1999-11-01 18:17:45 by sewardj] · d8010e81
      Julian Seward authored
      Correctly evacuate BCOs on the large object list.  Was causing
      okeefe_neural to fail.
      d8010e81
    • Simon Peyton Jones's avatar
      [project @ 1999-11-01 17:09:54 by simonpj] · 30b5ebe4
      Simon Peyton Jones authored
      A regrettably-gigantic commit that puts in place what Simon PJ
      has been up to for the last month or so, on and off.
      
      The basic idea was to restore unfoldings to *occurrences* of
      variables without introducing a space leak.  I wanted to make
      sure things improved relative to 4.04, and that proved depressingly
      hard.  On the way I discovered several quite serious bugs in the
      simplifier.
      
      Here's a summary of what's gone on.
      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
      * No commas between for-alls in RULES.  This makes the for-alls have
        the same syntax as in types.
      
      * Arrange that simplConArgs works in one less pass than before.
        This exposed a bug: a bogus call to completeBeta.
      
      * Add a top-level flag in CoreUnfolding, used in callSiteInline
      
      * Extend w/w to use etaExpandArity, so it does eta/coerce expansion
      
      * Implement inline phases.   The meaning of the inline pragmas is
        described in CoreUnfold.lhs.  You can say things like
      	{#- INLINE 2 build #-}
        to mean "inline build in phase 2"
      
      * Don't float anything out of an INLINE.
        Don't float things to top level unless they also escape a value lambda.
      	[see comments with SetLevels.lvlMFE
        Without at least one of these changes, I found that
      	{-# INLINE concat #-}
      	concat = __inline (/\a -> foldr (++) [])
        was getting floated to
      	concat = __inline( /\a -> lvl a )
      	lvl = ...inlined version of foldr...
      
        Subsequently I found that not floating constants out of an INLINE
        gave really bad code like
      	__inline (let x = e in \y -> ...)
        so I now let things float out of INLINE
      
      * Implement the "reverse-mapping" idea for CSE; actually it turned out to be easier
        to implement it in SetLevels, and may benefit full laziness too.
      
      * It's a good idea to inline inRange. Consider
      
      	index (l,h) i = case inRange (l,h) i of
      		  	  True ->  l+i
      			  False -> error
        inRange itself isn't strict in h, but if it't inlined then 'index'
        *does* become strict in h.  Interesting!
      
      * Big change to the way unfoldings and occurrence info is propagated in the simplifier
        The plan is described in Subst.lhs with the Subst type
        Occurrence info is now in a separate IdInfo field than user pragmas
      
      * I found that
      	(coerce T (coerce S (\x.e))) y
        didn't simplify in one round. First we get to
      	(\x.e) y
        and only then do the beta. Solution: cancel the coerces in the continuation
      
      * Amazingly, CoreUnfold wasn't counting the cost of a function an application.
      
      * Disable rules in initial simplifier run.  Otherwise full laziness
        doesn't get a chance to lift out a MFE before a rule (e.g. fusion)
        zaps it.  queens is a case in point
      
      * Improve float-out stuff significantly.  The big change is that if we have
      
      	\x -> ... /\a -> ...let p = ..a.. in let q = ...p...
      
        where p's rhs doesn't x, we abstract a from p, so that we can get p past x.
        (We did that before.)  But we also substitute (p a) for p in q, and then
        we can do the same thing for q.  (We didn't do that, so q got stuck.)
        This is much better.  It involves doing a substitution "as we go" in SetLevels,
        though.
      30b5ebe4
    • Simon Peyton Jones's avatar
      [project @ 1999-11-01 16:07:48 by simonpj] · ddddb042
      Simon Peyton Jones authored
      fromInt stuff and other wibbles
      ddddb042
    • Simon Peyton Jones's avatar
      [project @ 1999-11-01 16:06:34 by simonpj] · 98eb01d1
      Simon Peyton Jones authored
      Minor tweaks to intro, and description of RULES
      98eb01d1
    • sof's avatar
      [project @ 1999-11-01 14:20:18 by sof] · cfd47515
      sof authored
      ppr change that should have been included with prev absCSyn/ commit
      cfd47515
Loading