Skip to content
Snippets Groups Projects
  1. Feb 29, 2000
  2. Feb 28, 2000
    • Jeff Lewis's avatar
      [project @ 2000-02-28 21:59:32 by lewie] · f8e67a2c
      Jeff Lewis authored
      Fix signatures w/ implicit parameter types in them (in particular,
      correctly handle the case where there are no type variables).  Also
      made a few more things Outputable.  Nuke outdated comment in Parser.y.
      f8e67a2c
    • Simon Marlow's avatar
      [project @ 2000-02-28 16:54:29 by simonmar] · 58b3e315
      Simon Marlow authored
      Add haxml/lib to imports for -syslib text.
      58b3e315
    • Simon Marlow's avatar
      [project @ 2000-02-28 13:59:43 by simonmar] · 187e9eb5
      Simon Marlow authored
      Only fill in the ARG_TAG when DEBUG is on, for unregisterised.
      187e9eb5
    • Julian Seward's avatar
      [project @ 2000-02-28 12:02:31 by sewardj] · 4070b105
      Julian Seward authored
      Many changes to improve the quality and correctness of generated code,
      both for x86 and all-platforms.  The intent is that the x86 NCG will
      now be good enough for general use.
      
      -- Add an almost-trivial Stix (generic) peephole optimiser, whose sole
         purpose is elide assignments to temporaries used only once, in the
         very next tree.  This generates substantially better code for
         conditionals on all platforms.  Enhance Stix constant folding to
         take advantage of the inlining.
      
         The inlining presents subsequent insn selection phases with more
         complex trees than would have previously been used to.  This has
         shown up several bugs in the x86 insn selectors, now fixed.
         (assumptions that data size is Word, when could be Byte,
          assumptions that an operand will always be in a temp reg, etc)
      
      -- x86: Use the FLDZ and FLD1 insns.
      
      -- x86: spill FP registers with 80-bit loads/stores so that
         Intel's extra 16 bits of accuracy are not lost.  If this isn't
         done, FP spills are not suitably transparent.  Increase the
         number of spill words available to 2048.
      
      -- x86: give the register allocator more flexibility in choosing
         spill temporaries.
      
      -- x86, RegAllocInfo.regUsage: fix error for GST, and rewrite to
         make it clearer.
      
      -- Correctly track movements in the C stack pointer, and generate
         correct spill code for archs which spill against the stack pointer
         even when the stack pointer moves.  Redo the x86 ccall mechanism
         to push args on the C stack in the normal way.  Rather than have
         the spiller have to analyse code sequences to determine the current
         stack offset, the insn selectors communicate the current offset
         whenever it changes by inserting a DELTA pseudo-insn.  Then the
         spiller only has to spot DELTAs.
      
         This means having a new native-code-generator monad (Stix.NatM)
         which carries both a UniqSupply and the current stack offset.
      
      -- Remove the asmPar/asmSeq ways of grouping insns together.
         In the presence of fixed registers, it is hard to demonstrate
         that insn selectors using asmPar always give correct code, and
         the extra complication doesn't help any.
      
         Also, directly construct code sequences using tree-based ordered
         lists (utils/OrdList.lhs) for linear-time appends, rather than
         the bizarrely complex method using fns and fn composition.
      
      -- Inline some hcats in printing of x86 address modes.
      
      -- Document more of the hidden assumptions which insn selection relies
         on, particular wrt addressing modes.
      4070b105
    • Simon Marlow's avatar
      [project @ 2000-02-28 11:53:44 by simonmar] · e0e07f52
      Simon Marlow authored
      oops, back out local patch that accidentally got committed with rev. 1.139.
      e0e07f52
    • Simon Marlow's avatar
      [project @ 2000-02-28 10:57:44 by simonmar] · bbe3617e
      Simon Marlow authored
      fix = vs. == in conditional
      bbe3617e
    • Simon Marlow's avatar
      [project @ 2000-02-28 10:14:27 by simonmar] · 33fd067b
      Simon Marlow authored
      document the -recomp option explicitly.
      33fd067b
    • Simon Marlow's avatar
      [project @ 2000-02-28 09:17:54 by simonmar] · c5535e01
      Simon Marlow authored
      'IPVARID :: type' moved from btype to type, to reduce conflicts.
      c5535e01
  3. Feb 25, 2000
  4. Feb 24, 2000
  5. Feb 23, 2000
    • Jeff Lewis's avatar
      [project @ 2000-02-23 19:41:50 by lewie] · e87d56ce
      Jeff Lewis authored
      Handle `with' more cleverly.  I was generating partially applied methods
      for the case where the `with' expression was also overloaded, but this
      was buggy, and completely unnecessary.  Instead, simply force the method
      binding at the point of the `with' expression (we reap no benefits from
      pushing the sharing further out anyway), and release the remainder of
      the method's context into the LIE.
      e87d56ce
  6. Feb 22, 2000
    • sven.panne@aedion.de's avatar
      [project @ 2000-02-22 15:47:56 by panne] · b78eb7be
      sven.panne@aedion.de authored
      Load deprecations from interface files into a deprecation environment
      which maps Names to RenamedDeprecations. This map is not used yet, but
      very soon it will...
      
      This commit fixes a bug related to implicit parameters, too:
      Previously, an interface file containing the name "with" could not be
      read by the interface parser. This broke Malcolm's HaXml 0.9 (released
      today). Remember Sven's glaexts-commandment (Jeffrey? :-) : Always
      keep Lex.lhs's ghcExtensionKeywordsFM and ParseIface.y's var_fs
      production in synch!
      b78eb7be
    • sven.panne@aedion.de's avatar
      [project @ 2000-02-22 12:45:30 by panne] · c01dc71d
      sven.panne@aedion.de authored
      Space leak paranoia: Don't keep whole InterfaceDetails alive
      throughout the middle part of the compiler
      c01dc71d
    • Simon Marlow's avatar
      [project @ 2000-02-22 12:09:23 by simonmar] · b310c854
      Simon Marlow authored
      Ignore SIGPIPE, since our I/O library handles EPIPE properly and
      SIGPIPE tends to cause the Haskell program to exit silently and
      mysteriously.
      
      Found-by: furiously pressing the refresh button in a browser connected
      to my Haskell web server :-)
      b310c854
  7. Feb 21, 2000
  8. Feb 20, 2000
  9. Feb 18, 2000
Loading