ghc-hetmet.git
16 years agopass -no-user-package-conf to ghc-inplace
Simon Marlow [Fri, 4 Jan 2008 16:28:40 +0000 (16:28 +0000)]
pass -no-user-package-conf to ghc-inplace

16 years agoFix build: Recent instance shuffling left us with overlapping instances
Ian Lynagh [Sun, 6 Jan 2008 22:15:47 +0000 (22:15 +0000)]
Fix build: Recent instance shuffling left us with overlapping instances

16 years agoAdd instructions for building docs to README
Ian Lynagh [Sun, 6 Jan 2008 21:57:23 +0000 (21:57 +0000)]
Add instructions for building docs to README

16 years agoA little refactoring of GenIfaceEq to make the Outputable instance into H98
simonpj@microsoft.com [Fri, 4 Jan 2008 10:54:50 +0000 (10:54 +0000)]
A little refactoring of GenIfaceEq to make the Outputable instance into H98

16 years agoMake the instance of DebugNodes more H98-like
simonpj@microsoft.com [Fri, 4 Jan 2008 10:54:09 +0000 (10:54 +0000)]
Make the instance of DebugNodes more H98-like

16 years agochange CmmActual, CmmFormal to use a data CmmHinted rather than tuple (#1405)
Isaac Dupree [Fri, 4 Jan 2008 10:53:39 +0000 (10:53 +0000)]
change CmmActual, CmmFormal to use a data CmmHinted rather than tuple (#1405)
This allows the instance of UserOfLocalRegs to be within Haskell98, and IMHO
 makes the code a little cleaner generally.
This is one small (though tedious) step towards making GHC's code more
 portable...

16 years agogeneralize instance Outputable GenCmm to H98 (#1405)
Isaac Dupree [Wed, 26 Dec 2007 17:59:15 +0000 (17:59 +0000)]
generalize instance Outputable GenCmm to H98 (#1405)

16 years agomove and generalize another instance (#1405)
Isaac Dupree [Wed, 26 Dec 2007 17:49:04 +0000 (17:49 +0000)]
move and generalize another instance (#1405)
was instance Outputable CmmGraph
type CmmGraph = LGraph Middle Last
now instance (ctx) => Outputable (LGraph m l),
in module with LGraph where it belongs
This also let us reduce the context of DebugNodes to Haskell98,
leaving that class's only extension being multi-parameter.
(also Outputable (LGraph M Last) with M = ExtendWithSpills Middle
was another redundant instance that was then removed)

16 years agomove and generalize an instance (#1405)
Isaac Dupree [Wed, 26 Dec 2007 17:19:13 +0000 (17:19 +0000)]
move and generalize an instance (#1405)
UserOfLocalRegs (ZLast Last) isn't Haskell98, but it was just as
good an instance to be UserOfLocalRegs a => UserOfLocalRegs (ZLast a)

16 years agoDo not consult -XGADTs flag when pattern matching on GADTs
simonpj@microsoft.com [Fri, 4 Jan 2008 12:58:14 +0000 (12:58 +0000)]
Do not consult -XGADTs flag when pattern matching on GADTs

See Trac #2004, and Note [Flags and equational constraints] in TcPat.

16 years agoAdd a note about primop wrappers (cf Trac #1509)
simonpj@microsoft.com [Fri, 4 Jan 2008 12:53:05 +0000 (12:53 +0000)]
Add a note about primop wrappers (cf Trac #1509)

16 years agoDocument SOURCE pragma; clarify TH behavior for mutually-recurive modules (Trac ...
simonpj@microsoft.com [Fri, 4 Jan 2008 12:19:39 +0000 (12:19 +0000)]
Document SOURCE pragma; clarify TH behavior for mutually-recurive modules (Trac #1012)

16 years agoWhite space and comments only
simonpj@microsoft.com [Fri, 4 Jan 2008 10:22:36 +0000 (10:22 +0000)]
White space and comments only

16 years agoOptionally use libffi to implement 'foreign import "wrapper"' (#793)
Simon Marlow [Thu, 3 Jan 2008 17:02:36 +0000 (17:02 +0000)]
Optionally use libffi to implement 'foreign import "wrapper"' (#793)
To enable this, set UseLibFFI=YES in mk/build.mk.

The main advantage here is that this reduces the porting effort for
new platforms: libffi works on more architectures than our current
adjustor code, and it is probably more heavily tested.  We could
potentially replace our existing code, but since it is probably faster
than libffi (just a guess, I'll measure later) and is already working,
it doesn't seem worthwhile.

Right now, you must have libffi installed on your system.  I used the
one supplied by Debian/Ubuntu.

16 years agoremove trace apparently left in by accident
Simon Marlow [Thu, 3 Jan 2008 16:38:05 +0000 (16:38 +0000)]
remove trace apparently left in by accident

16 years agoRemove -funfolding-update-in-place flag documentation
simonpj@microsoft.com [Thu, 3 Jan 2008 16:00:36 +0000 (16:00 +0000)]
Remove -funfolding-update-in-place flag documentation

This flag does nothing, and should have been removed ages ago. (GHC
no longer does update-in-place.)

MERGE to 6.8 branch

16 years agoFix warnings with newer gcc versions (I hope)
Simon Marlow [Thu, 3 Jan 2008 14:03:38 +0000 (14:03 +0000)]
Fix warnings with newer gcc versions (I hope)

16 years agoFIX #1898: add a missing UNTAG_CLOSURE() in checkBlackHoles
Simon Marlow [Thu, 3 Jan 2008 11:27:17 +0000 (11:27 +0000)]
FIX #1898: add a missing UNTAG_CLOSURE() in checkBlackHoles

16 years agofix validation failure on non-i386
Simon Marlow [Wed, 2 Jan 2008 15:17:40 +0000 (15:17 +0000)]
fix validation failure on non-i386

16 years agoexpand "out of stack slots" panic to suggest using -fregs-graph, see #1993
Simon Marlow [Wed, 2 Jan 2008 15:07:37 +0000 (15:07 +0000)]
expand "out of stack slots" panic to suggest using -fregs-graph, see #1993

16 years agoWarning clean, and fix compilation with GHC 6.2.x
Simon Marlow [Wed, 2 Jan 2008 11:45:29 +0000 (11:45 +0000)]
Warning clean, and fix compilation with GHC 6.2.x

16 years agoAdd dead code elimination in cmmMiniInline
Simon Marlow [Thu, 20 Dec 2007 15:17:34 +0000 (15:17 +0000)]
Add dead code elimination in cmmMiniInline
cmmMiniInline counts the uses of local variables, so it can easily
eliminate assigments to unused locals.  This almost never gets
triggered, as we don't generate any dead assignments, but it will be
needed by a forthcoming cleanup in CgUtils.emitSwitch.

16 years agoimplement prefix unboxed tuples (part of #1509)
Isaac Dupree [Wed, 2 Jan 2008 12:40:01 +0000 (12:40 +0000)]
implement prefix unboxed tuples (part of #1509)

16 years agoLink libgmp.a statically into libHSrts.dll on Windows
Clemens Fruhwirth [Tue, 1 Jan 2008 15:40:17 +0000 (15:40 +0000)]
Link libgmp.a statically into libHSrts.dll on Windows

16 years agoEmbedd DLL name into its import library, so client libs reference them properly in...
Clemens Fruhwirth [Tue, 1 Jan 2008 15:21:57 +0000 (15:21 +0000)]
Embedd DLL name into its import library, so client libs reference them properly in .idata

16 years agoAdd package dependencies to link pass when building ghc package (required for windows...
Clemens Fruhwirth [Tue, 1 Jan 2008 15:21:01 +0000 (15:21 +0000)]
Add package dependencies to link pass when building ghc package (required for windows DLL build)

16 years agoFix building libHSrts.dll by using ghc-pkg instead of grepping in base.cabal
Clemens Fruhwirth [Sun, 30 Dec 2007 19:39:52 +0000 (19:39 +0000)]
Fix building libHSrts.dll by using ghc-pkg instead of grepping in base.cabal

16 years agoAdd installPackage to dependencies of make.library.* as it's used by the rule
Clemens Fruhwirth [Sat, 29 Dec 2007 16:27:07 +0000 (16:27 +0000)]
Add installPackage to dependencies of make.library.* as it's used by the rule

16 years agoInstall dynlibs correctly
Clemens Fruhwirth [Fri, 28 Dec 2007 18:40:24 +0000 (18:40 +0000)]
Install dynlibs correctly

Add dynlibdir target to config.mk.in, setting it to @libdir@.
Invoke installPackage with dynlibdir at libraries/Makefile
Make installPackage.hs hand dynlibdir to Cabal.

16 years agoimport ord that alex secretly imported
Isaac Dupree [Fri, 28 Dec 2007 17:57:27 +0000 (17:57 +0000)]
import ord that alex secretly imported

16 years agoadd missing import that happy -agc secretly provided
Isaac Dupree [Thu, 27 Dec 2007 17:13:35 +0000 (17:13 +0000)]
add missing import that happy -agc secretly provided

16 years agocorrect type mistake, hidden by happy -agc coercions!
Isaac Dupree [Wed, 26 Dec 2007 14:07:43 +0000 (14:07 +0000)]
correct type mistake, hidden by happy -agc coercions!

16 years agoAPI changes for cabal-HEAD
Clemens Fruhwirth [Thu, 27 Dec 2007 14:31:14 +0000 (14:31 +0000)]
API changes for cabal-HEAD

Rename interfacedir to haddockdir
Change empty(Copy|Register)Flags to default(Copy|Register)Flags
Wrap content of RegisterFlags with toFlag (the Flag type is actually just Maybe)

16 years agoExtend API for compiling to and from Core
Tim Chevalier [Tue, 25 Dec 2007 20:04:11 +0000 (20:04 +0000)]
Extend API for compiling to and from Core

Added API support for compiling Haskell to simplified Core, and for
compiling Core to machine code. The latter, especially, should be
considered experimental and has only been given cursory testing. Also
fixed warnings in DriverPipeline. Merry Christmas.

16 years agoWhen complaining about non-rigid context, give suggestion of adding a signature
simonpj@microsoft.com [Mon, 24 Dec 2007 12:22:17 +0000 (12:22 +0000)]
When complaining about non-rigid context, give suggestion of adding a signature

16 years agoImprove handling of newtypes (fixes Trac 1495)
simonpj@microsoft.com [Fri, 21 Dec 2007 09:04:06 +0000 (09:04 +0000)]
Improve handling of newtypes (fixes Trac 1495)

In a few places we want to "look through" newtypes to get to the
representation type.  But we need to be careful that  we don't fall
into an ininite loop with e.g.
newtype T = MkT T

The old mechansim for doing this was to have a field nt_rep, inside
a newtype TyCon, that gave the "ultimate representation" of the type.
But that failed for Trac 1495, which looked like this:
   newtype Fix a = Fix (a (Fix a))
   data I a = I a
Then, expanding the type (Fix I) went on for ever.

The right thing to do seems to be to check for loops when epxanding
the *type*, rather than in the *tycon*.  This patch does that,
- Removes nt_rep from TyCon
- Make Type.repType check for loops
See Note [Expanding newtypes] in Type.lhs.

At the same time I also fixed a bug for Roman, where newtypes were not
being expanded properly in FamInstEnv.topNormaliseType.  This function
and Type.repType share a common structure.

Ian, see if this merges easily to the branch
If not, I don't think it's essential to fix 6.8

16 years agoFix Trac #1981: seq on a type-family-typed expression
simonpj@microsoft.com [Fri, 21 Dec 2007 08:55:42 +0000 (08:55 +0000)]
Fix Trac #1981: seq on a type-family-typed expression

We were crashing when we saw
case x of DEFAULT -> rhs
where x had a type-family type.  This patch fixes it.

MERGE to the 6.8 branch.

16 years agoComment only
simonpj@microsoft.com [Thu, 20 Dec 2007 16:46:21 +0000 (16:46 +0000)]
Comment only

16 years agoFix nasty recompilation bug in MkIface.computeChangedOccs
simonpj@microsoft.com [Thu, 20 Dec 2007 16:43:07 +0000 (16:43 +0000)]
Fix nasty recompilation bug in MkIface.computeChangedOccs

MERGE to 6.8 branch

In computeChangedOccs we look up the old version of a Name.
But a WiredIn Name doesn't have an old version, because WiredIn things
don't appear in interface files at all.

Result: ghc-6.9: panic! (the 'impossible' happened)
  (GHC version 6.9 for x86_64-unknown-linux):
lookupVers1 base:GHC.Prim chr#{v}

This fixes the problem.  The patch should merge easily onto the branch.

16 years agoFix Trac #1988; keep the ru_fn field of a RULE up to date
simonpj@microsoft.com [Thu, 20 Dec 2007 13:19:12 +0000 (13:19 +0000)]
Fix Trac #1988; keep the ru_fn field of a RULE up to date

The ru_fn field was wrong when we moved RULES from one Id to another.
The fix is simple enough.

However, looking at this makes me realise that the worker/wrapper stuff
for recursive newtypes isn't very clever: we generate demand info but
then don't properly exploit it.

This patch fixes the crash though.

16 years agoAdd better panic message in getSRTInfo (Trac #1973)
simonpj@microsoft.com [Thu, 20 Dec 2007 18:03:35 +0000 (18:03 +0000)]
Add better panic message in getSRTInfo (Trac #1973)

16 years agoRemove obselete code for update-in-place (which we no longer do)
simonpj@microsoft.com [Thu, 20 Dec 2007 17:34:32 +0000 (17:34 +0000)]
Remove obselete code for update-in-place (which we no longer do)

16 years agoImplement generalised list comprehensions
simonpj@microsoft.com [Thu, 20 Dec 2007 11:13:00 +0000 (11:13 +0000)]
Implement generalised list comprehensions

  This patch implements generalised list comprehensions, as described in
  the paper "Comprehensive comprehensions" (Peyton Jones & Wadler, Haskell
  Workshop 2007).  If you don't use the new comprehensions, nothing
  should change.

  The syntax is not exactly as in the paper; see the user manual entry
  for details.

  You need an accompanying patch to the base library for this stuff
  to work.

  The patch is the work of Max Bolingbroke [batterseapower@hotmail.com],
  with some advice from Simon PJ.

  The related GHC Wiki page is
    http://hackage.haskell.org/trac/ghc/wiki/SQLLikeComprehensions

16 years agoMore bindist-publishing fixes and refactoring
Ian Lynagh [Tue, 18 Dec 2007 14:45:05 +0000 (14:45 +0000)]
More bindist-publishing fixes and refactoring

16 years agoFix publishing the docs
Ian Lynagh [Sun, 16 Dec 2007 12:25:44 +0000 (12:25 +0000)]
Fix publishing the docs

16 years agoFIX #1980: must check for ThreadRelocated in killThread#
Simon Marlow [Mon, 17 Dec 2007 16:46:10 +0000 (16:46 +0000)]
FIX #1980: must check for ThreadRelocated in killThread#

16 years agoEliminate external GMP dependencies
Manuel M T Chakravarty [Mon, 17 Dec 2007 09:38:39 +0000 (09:38 +0000)]
Eliminate external GMP dependencies
- Ensure the stage1 compiler uses ghc's own GMP library on Mac OS
- Need to rebuild installPackage and ifBuildable with stage1 compiler as they
  go into bindists

16 years agoInclude ~/Library/Frameworks in the framework searchpath
Ian Lynagh [Mon, 17 Dec 2007 23:34:57 +0000 (23:34 +0000)]
Include ~/Library/Frameworks in the framework searchpath
Patch from Christian Maeder

16 years agoMake ghcii.sh executable
Ian Lynagh [Mon, 17 Dec 2007 19:57:34 +0000 (19:57 +0000)]
Make ghcii.sh executable

16 years agoDon't rely on distrib/prep-bin-dist-mingw being executable
Ian Lynagh [Mon, 17 Dec 2007 19:55:54 +0000 (19:55 +0000)]
Don't rely on distrib/prep-bin-dist-mingw being executable

16 years agoalways try to remove the new file before restoring the old one (#1963)
Simon Marlow [Fri, 14 Dec 2007 12:33:45 +0000 (12:33 +0000)]
always try to remove the new file before restoring the old one (#1963)

16 years agoFix a bug in gen_contents_index
Ian Lynagh [Wed, 12 Dec 2007 12:11:54 +0000 (12:11 +0000)]
Fix a bug in gen_contents_index
The library doc index thought that the docs were in $module.html, rather
than $package/$module.html.

16 years agoFix lifting of case expressions
Roman Leshchinskiy [Sat, 15 Dec 2007 00:08:37 +0000 (00:08 +0000)]
Fix lifting of case expressions

We have to explicity check for empty arrays in each alternative as recursive
algorithms wouldn't terminate otherwise.

16 years agoUse (UArr Int) instead of PArray_Int# in vectorisation
Roman Leshchinskiy [Sat, 15 Dec 2007 00:07:39 +0000 (00:07 +0000)]
Use (UArr Int) instead of PArray_Int# in vectorisation

16 years agoFix bug in VectInfo loading
Roman Leshchinskiy [Fri, 14 Dec 2007 23:09:14 +0000 (23:09 +0000)]
Fix bug in VectInfo loading

16 years agoRemove unused vectorisation built-in
Roman Leshchinskiy [Fri, 14 Dec 2007 01:10:15 +0000 (01:10 +0000)]
Remove unused vectorisation built-in

16 years agoTreat some standard data cons specially during vectorisation
Roman Leshchinskiy [Thu, 13 Dec 2007 03:48:55 +0000 (03:48 +0000)]
Treat some standard data cons specially during vectorisation

This is a temporary hack which allows us to vectorise literals.

16 years agoMore vectorisation-related built ins
Roman Leshchinskiy [Thu, 13 Dec 2007 03:48:39 +0000 (03:48 +0000)]
More vectorisation-related built ins

16 years agoTrack changes to package ndp
Roman Leshchinskiy [Wed, 12 Dec 2007 06:27:14 +0000 (06:27 +0000)]
Track changes to package ndp

16 years agoAdd vectorisation built-ins
Roman Leshchinskiy [Wed, 12 Dec 2007 04:05:21 +0000 (04:05 +0000)]
Add vectorisation built-ins

16 years agoFIX #1963: catch Ctrl-C and clean up properly
Simon Marlow [Thu, 13 Dec 2007 15:40:56 +0000 (15:40 +0000)]
FIX #1963: catch Ctrl-C and clean up properly

16 years agoDocument the new threshold flags
Roman Leshchinskiy [Fri, 14 Dec 2007 00:30:03 +0000 (00:30 +0000)]
Document the new threshold flags

16 years agoSeparate and optional size thresholds for SpecConstr and LiberateCase
Roman Leshchinskiy [Fri, 14 Dec 2007 00:27:19 +0000 (00:27 +0000)]
Separate and optional size thresholds for SpecConstr and LiberateCase

This patch replaces -fspec-threshold by -fspec-constr-threshold and
-fliberate-case-threshold. The thresholds can be disabled by
-fno-spec-constr-threshold and -fno-liberate-case-threshold.

16 years agoMake HscTypes.tyThingId respond not panic on ADataCon
simonpj@microsoft.com [Tue, 4 Dec 2007 15:29:03 +0000 (15:29 +0000)]
Make HscTypes.tyThingId respond not panic on ADataCon

16 years agoUse Unix format for RnPat (no other change)
simonpj@microsoft.com [Thu, 13 Dec 2007 14:05:32 +0000 (14:05 +0000)]
Use Unix format for RnPat (no other change)

16 years agoImprove free-variable handling for rnPat and friends (fixes Trac #1972)
simonpj@microsoft.com [Thu, 13 Dec 2007 14:02:13 +0000 (14:02 +0000)]
Improve free-variable handling for rnPat and friends (fixes Trac #1972)

As well as fixing the immediate problem (Trac #1972) this patch does
a signficant simplification and refactoring of pattern renaming.

Fewer functions, fewer parameters passed....it's all good.  But it
took much longer than I expected to figure out.

The most significant change is that the NameMaker type does *binding*
as well as *making* and, in the matchNameMaker case, checks for unused
bindings as well.  This is much tider.

(No need to merge to the 6.8 branch, but no harm either.)

16 years agoAllow more than 3 simplifier iterations to be run in phase 0
Roman Leshchinskiy [Thu, 13 Dec 2007 04:08:35 +0000 (04:08 +0000)]
Allow more than 3 simplifier iterations to be run in phase 0

The number of iterations during the first run of phase 0 was erroneously
hardcoded to 3. It should be *at least* 3 (see comments in code) but can be
more.

16 years agoDocument -ddump-simpl-phases
Roman Leshchinskiy [Thu, 13 Dec 2007 04:08:22 +0000 (04:08 +0000)]
Document -ddump-simpl-phases

16 years agoNew flag: -ddump-simpl-phases
Roman Leshchinskiy [Thu, 13 Dec 2007 04:06:44 +0000 (04:06 +0000)]
New flag: -ddump-simpl-phases

This outputs the core after each simplifier phase (i.e., it produces less
information that -ddump-simpl-iterations).

16 years agoDon't dump simplifier iterations with -dverbose-core2core
Roman Leshchinskiy [Thu, 13 Dec 2007 03:46:35 +0000 (03:46 +0000)]
Don't dump simplifier iterations with -dverbose-core2core

SimonPJ says this is the correct behaviour. We still have
-ddump-simpl-iterations.

16 years ago"list --simple-output" should be quiet when there are no packages to list
Simon Marlow [Wed, 12 Dec 2007 10:22:30 +0000 (10:22 +0000)]
"list --simple-output" should be quiet when there are no packages to list

Previously:

$ ghc-pkg list --user --simple-output
ghc-pkg: no matches
$

Now:

$ ghc-pkg list --user --simple-output
$

16 years agoFix vectorisation bug
Roman Leshchinskiy [Thu, 6 Dec 2007 23:30:15 +0000 (23:30 +0000)]
Fix vectorisation bug

16 years agoVectorisation-related built ins
Roman Leshchinskiy [Thu, 6 Dec 2007 04:08:29 +0000 (04:08 +0000)]
Vectorisation-related built ins

16 years agoTeach vectorisation about some temporary conversion functions
Roman Leshchinskiy [Thu, 6 Dec 2007 03:25:47 +0000 (03:25 +0000)]
Teach vectorisation about some temporary conversion functions

16 years agoVectorise case of unit correctly
Roman Leshchinskiy [Wed, 5 Dec 2007 22:13:05 +0000 (22:13 +0000)]
Vectorise case of unit correctly

16 years agoTeach vectorisation about singletonP
Roman Leshchinskiy [Wed, 5 Dec 2007 22:12:40 +0000 (22:12 +0000)]
Teach vectorisation about singletonP

16 years agoOptimise desugaring of parallel array comprehensions
Roman Leshchinskiy [Wed, 5 Dec 2007 22:12:13 +0000 (22:12 +0000)]
Optimise desugaring of parallel array comprehensions

16 years agoTeach vectorisation about tuple datacons
Roman Leshchinskiy [Wed, 5 Dec 2007 05:02:21 +0000 (05:02 +0000)]
Teach vectorisation about tuple datacons

16 years agoTrack additions to package ndp
Roman Leshchinskiy [Wed, 5 Dec 2007 04:26:49 +0000 (04:26 +0000)]
Track additions to package ndp

16 years agoTrack changes to package ndp
Roman Leshchinskiy [Wed, 5 Dec 2007 03:38:59 +0000 (03:38 +0000)]
Track changes to package ndp

16 years agoImprove pretty-printing of InstDecl
simonpj@microsoft.com [Mon, 10 Dec 2007 08:30:53 +0000 (08:30 +0000)]
Improve pretty-printing of InstDecl

Fixes Trac #1966.

16 years agoComments only
Pepe Iborra [Sat, 8 Dec 2007 20:48:15 +0000 (20:48 +0000)]
Comments only

16 years agoRefactoring only
Pepe Iborra [Sat, 8 Dec 2007 19:52:22 +0000 (19:52 +0000)]
Refactoring only

Suspensions in the Term datatype used for RTTI
always get assigned a Type, so there is no reason
to juggle around with a (Maybe Type) anymore.

16 years agoChange the format used by :print to show the content of references
Pepe Iborra [Sat, 8 Dec 2007 19:30:13 +0000 (19:30 +0000)]
Change the format used by :print to show the content of references

    This comes as result of the short discussion linked below.

    http://www.haskell.org/pipermail/cvs-ghc/2007-December/040049.html

16 years agoHelp the user when she tries to do :history without :trace
Pepe Iborra [Sat, 8 Dec 2007 18:09:18 +0000 (18:09 +0000)]
Help the user when she tries to do :history without :trace

Teach GHCi to show a "perhaps you forgot to use :trace?" when
it finds that the user is trying to retrieve an empty :history

16 years agoPrevent the binding of unboxed things by :print
Pepe Iborra [Sat, 8 Dec 2007 18:18:30 +0000 (18:18 +0000)]
Prevent the binding of unboxed things by :print

16 years agoCoercions from boxy splitters must be sym'ed in pattern matches
Manuel M T Chakravarty [Sat, 8 Dec 2007 10:50:18 +0000 (10:50 +0000)]
Coercions from boxy splitters must be sym'ed in pattern matches

16 years agoProperly keep track of whether normalising given or wanted dicts
Manuel M T Chakravarty [Fri, 7 Dec 2007 07:13:02 +0000 (07:13 +0000)]
Properly keep track of whether normalising given or wanted dicts
- The information of whether given or wanted class dictionaries where
  normalised by rewriting wasn't always correctly propagated in TcTyFuns,
  which lead to malformed dictionary bindings.
- Also fixes a bug in TcPat.tcConPat where GADT equalities where emitted in
  the wrong position in case bindings (which led to CoreLint failures).

16 years agoTcPat.tcConPat uses equalities instead of GADT refinement
Manuel M T Chakravarty [Tue, 20 Nov 2007 07:12:08 +0000 (07:12 +0000)]
TcPat.tcConPat uses equalities instead of GADT refinement
* This patch implements the use of equality constraints instead of GADT
  refinements that we have been discussing for a while.
* It just changes TcPat.tcConPat.  It doesn't have any of the simplification
  and dead code removal that is possible due to this change.
* At the moment, this patch breaks a fair number of GADT regression tests.

16 years agoUse installPackage for register --inplace as well as installing
Ian Lynagh [Fri, 7 Dec 2007 23:46:52 +0000 (23:46 +0000)]
Use installPackage for register --inplace as well as installing
We also need to do the GHC.Prim hack when registering inplace or the
tests that use it fail.

16 years agoFix the libraries Makefile
Ian Lynagh [Wed, 5 Dec 2007 12:50:15 +0000 (12:50 +0000)]
Fix the libraries Makefile
    x && y
is not the same as
    if x; then y; fi
as the latter doesn't fail when x fails

16 years agoCopy hscolour.css into dist/... so it gets installed with the library docs
Ian Lynagh [Wed, 5 Dec 2007 01:37:03 +0000 (01:37 +0000)]
Copy hscolour.css into dist/... so it gets installed with the library docs

16 years agoAdd the hscolour.css from hscolour 1.8
Ian Lynagh [Wed, 5 Dec 2007 01:17:33 +0000 (01:17 +0000)]
Add the hscolour.css from hscolour 1.8

16 years agoBIN_DIST_INST_SUBDIR Needs to be defined in config.mk so ./Makefile can see it
Ian Lynagh [Fri, 7 Dec 2007 12:13:17 +0000 (12:13 +0000)]
BIN_DIST_INST_SUBDIR Needs to be defined in config.mk so ./Makefile can see it

16 years ago#include ../includes/MachRegs.h rather than just MachRegs.h
Ian Lynagh [Wed, 5 Dec 2007 17:03:35 +0000 (17:03 +0000)]
#include ../includes/MachRegs.h rather than just MachRegs.h
This fixes building on NixOS. I'm not sure why it worked everywhere else,
but not on NixOS, before.

16 years agoFix bindist creation: readline/config.mk is gone
Ian Lynagh [Mon, 3 Dec 2007 12:30:31 +0000 (12:30 +0000)]
Fix bindist creation: readline/config.mk is gone

16 years agoFIX #1843: Generate different instructions on PPC
Ian Lynagh [Mon, 3 Dec 2007 12:32:37 +0000 (12:32 +0000)]
FIX #1843: Generate different instructions on PPC
The old ones caused lots of
    unknown scattered relocation type 4
errors. Patch from Chris Kuklewicz.

16 years agoRefactor gen_contents_index
Ian Lynagh [Fri, 7 Dec 2007 18:35:38 +0000 (18:35 +0000)]
Refactor gen_contents_index
Also fixes it with Solaris's sh, spotted by Christian Maeder

16 years agoUse GHC.Exts rather than GHC.Prim
Ian Lynagh [Sun, 2 Dec 2007 23:42:22 +0000 (23:42 +0000)]
Use GHC.Exts rather than GHC.Prim

16 years agoAlter the base:GHC.Prim hack in installPackage, following changes in base
Ian Lynagh [Sun, 2 Dec 2007 21:57:19 +0000 (21:57 +0000)]
Alter the base:GHC.Prim hack in installPackage, following changes in base