Skip to content
Snippets Groups Projects
  1. Feb 04, 2000
    • Simon Marlow's avatar
      [project @ 2000-02-04 11:15:04 by simonmar] · fcc9fa26
      Simon Marlow authored
      Fix bug #1 in the unregisterised RTS:
      
      Now that catch# is a fully-fledged IO operation, it has to respect the
      return convention for IO, in particular if we don't have an R1
      (eg. when unregisterised) then the return value goes on the stack.
      
      The return convention could be better, after all we use R1 when
      returning normal values, but I'll just fix it for now.
      fcc9fa26
  2. Feb 03, 2000
  3. Feb 02, 2000
    • Julian Seward's avatar
      [project @ 2000-02-02 11:40:33 by sewardj] · a040ea4a
      Julian Seward authored
      trivialCode on x86 is the heart of instruction selection for
      expressions.  It is definitely a non-trivial in complexity.
      To generate correct code it needs to observe preserve several
      delicate invariants, but didn't.
      
      -- Recorded in MachCode.lhs the "Rules of the Game"; ie what I think
         the required invariants are.
      
      -- Completely rewrote trivialCode (also shift_code).  I think it should
         handle all cases correctly, and has special treatment for literal
         operands.
      
      -- Updated NOTES file to record issues which need to be resolved
         before x86 nativeGen can be considered ready for public use.
      a040ea4a
  4. Feb 01, 2000
  5. Jan 31, 2000
  6. Jan 30, 2000
    • Simon Marlow's avatar
      [project @ 2000-01-30 10:25:27 by simonmar] · ca2ab438
      Simon Marlow authored
      Change the type of catch# to
      
      	catch# :: (W# -> (# W#, a #))
      	       -> (b -> W# -> (# W#, a #))
      	       -> W# -> (# W# , a #)
      
      where W# == State# RealWorld.  In other words, make it explicit that
      catch# is an IO operation and takes IO operations as arguments.  The
      previous type was too general, and resulted in catch# having the wrong
      arity which could cause mis-optimisations.
      
      The down side is that we now have to pass the state token around
      inside the primop instead of doing it in the Haskell wrapper, and
      raiseAsync() also has to build a PAP(handler,exception,realworld)
      instead of just a PAP(handler,exception) when it invokes a handler as
      a result of an async exception.
      
      I also added some optimisations to (un)?blockAsyncException to not
      grow the stack if it can be avoided, such as when we're about to block
      async exceptions and there's a blockAsyncExceptions_ret stack frame on
      the top of the stack.
      ca2ab438
    • Simon Marlow's avatar
      [project @ 2000-01-30 10:17:44 by simonmar] · 11a43a34
      Simon Marlow authored
      The bd->free field of a block descriptor is supposed to be set to -1
      for free blocks, if we're #ifdef DEBUGging.  It wasn't sometimes.
      11a43a34
    • Simon Marlow's avatar
      [project @ 2000-01-30 10:16:09 by simonmar] · f195b5de
      Simon Marlow authored
      Deal with ThreadRelocated in checkTSO().
      f195b5de
    • Simon Marlow's avatar
      [project @ 2000-01-30 10:11:32 by simonmar] · 84ccb85d
      Simon Marlow authored
      Add notes about where the IO representation is wired in to various
      parts of the source tree, since I'm about to add some more.
      84ccb85d
    • Simon Marlow's avatar
      [project @ 2000-01-30 10:08:27 by simonmar] · 3427092e
      Simon Marlow authored
      comment fixup
      3427092e
  7. Jan 28, 2000
    • Jeff Lewis's avatar
      [project @ 2000-01-28 20:52:37 by lewie] · 266fadd9
      Jeff Lewis authored
      First pass at implicit parameters.  Honest, I didn't really go in *intending*
      to modify every file in the typechecker... ;-)  The breadth of the change
      is partly due to generalizing contexts so that they are not hardwired to
      be (Class, [Type]) pairs.  See types/Type.lhs for details (look for PredType).
      266fadd9
    • Julian Seward's avatar
      [project @ 2000-01-28 18:07:55 by sewardj] · c39373f1
      Julian Seward authored
      Modifications to make x86 register spilling to work reasonably.  It
      should work ok most of the time, although there is still a remote
      possibility that the allocator simply will be unable to complete
      spilling, and will just give up.
      
      -- Incrementally try with 0, 1, 2 and 3 spill regs, so as not to
         unduly restrict the supply of regs in code which doesn't need spilling.
      
      -- Remove the use of %ecx for shift values, so it is always available
         as the first-choice spill temporary.  For code which doesn't do
         int division, make %edx and %eax available for spilling too.
         Shifts by a non-constant amount (very rare) are now done by
         a short test-and-jump sequence, so that %ecx is not tied up.
      
      -- x86 FP: do sin, cos, tan in-line so we get the same answers as gcc.
      
      -- Moved a little code around to remove recursive dependencies.
      
      -- Fix a subtle bug in x86 regUsage, which could cause underestimation
         of live ranges.
      c39373f1
    • Simon Marlow's avatar
      [project @ 2000-01-28 16:36:03 by simonmar] · f1553c47
      Simon Marlow authored
      bump version to 4.07 on the main trunk.
      f1553c47
    • Simon Marlow's avatar
      [project @ 2000-01-28 14:14:01 by simonmar] · 4d139998
      Simon Marlow authored
      don't use ^ in patterns, Solaris sh barfs on it.
      4d139998
    • Julian Seward's avatar
      [project @ 2000-01-28 09:40:05 by sewardj] · 8252a068
      Julian Seward authored
      Commit all changes prior to addressing the x86 spilling situation in
      the register allocator.
      
      -- Fix nonsensical x86 addressing mode hacks in mangleIndexTree
         and getAmode.
      
      -- Make char-sized loads work properly, using MOVZBL.
      
      -- In assignIntCode, use primRep on the assign node to determine
         the size of data transfer, not the size of the source.
      
      -- Redo Integer primitives to be in line with current representation
         of Integers.
      8252a068
  8. Jan 27, 2000
  9. Jan 26, 2000
  10. Jan 25, 2000
Loading