summaryrefslogtreecommitdiff
path: root/ghc/compiler/utils/FiniteMap.lhs
Commit message (Collapse)AuthorAgeFilesLines
* Reorganisation of the source treeSimon Marlow2006-04-071-749/+0
| | | | | | | | | | | | | | | Most of the other users of the fptools build system have migrated to Cabal, and with the move to darcs we can now flatten the source tree without losing history, so here goes. The main change is that the ghc/ subdir is gone, and most of what it contained is now at the top level. The build system now makes no pretense at being multi-project, it is just the GHC build system. No doubt this will break many things, and there will be a period of instability while we fix the dependencies. A straightforward build should work, but I haven't yet fixed binary/source distributions. Changes to the Building Guide will follow, too.
* [project @ 2005-03-31 10:16:33 by simonmar]simonmar2005-03-311-1/+1
| | | | | | | Tweaks to get the GHC sources through Haddock. Doesn't quite work yet, because Haddock complains about the recursive modules. Haddock needs to understand SOURCE imports (it can probably just ignore them as a first attempt).
* [project @ 2003-06-03 09:41:48 by ross]ross2003-06-031-2/+2
| | | | | change trailing comments on #else/#endif lines to C style to avoid warnings from gcc 3.3's preprocessor.
* [project @ 2002-08-29 15:44:11 by simonmar]simonmar2002-08-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Housekeeping: - The main goal is to remove dependencies on hslibs for a bootstrapped compiler, leaving only a requirement that the packages base, haskell98 and readline are built in stage 1 in order to bootstrap. We're almost there: Posix is still required for signal handling, but all other dependencies on hslibs are now gone. Uses of Addr and ByteArray/MutableByteArray array are all gone from the compiler. PrimPacked defines the Ptr type for GHC 4.08 (which didn't have it), and it defines simple BA and MBA types to replace uses of ByteArray and MutableByteArray respectively. - Clean up import lists. HsVersions.h now defines macros for some modules which have moved between GHC versions. eg. one now imports 'GLAEXTS' to get at unboxed types and primops in the compiler. Many import lists have been sorted as per the recommendations in the new style guidelines in the commentary. I've built the compiler with GHC 4.08.2, 5.00.2, 5.02.3, 5.04 and itself, and everything still works here. Doubtless I've got something wrong, though.
* [project @ 2002-04-29 14:03:38 by simonmar]simonmar2002-04-291-14/+14
| | | | | | | | | | | | | | | | | | | | | | | | | FastString cleanup, stage 1. The FastString type is no longer a mixture of hashed strings and literal strings, it contains hashed strings only with O(1) comparison (except for UnicodeStr, but that will also go away in due course). To create a literal instance of FastString, use FSLIT(".."). By far the most common use of the old literal version of FastString was in the pattern ptext SLIT("...") this combination still works, although it doesn't go via FastString any more. The next stage will be to remove the need to use this special combination at all, using a RULE. To convert a FastString into an SDoc, now use 'ftext' instead of 'ptext'. I've also removed all the FAST_STRING related macros from HsVersions.h except for SLIT and FSLIT, just use the relevant functions from FastString instead.
* [project @ 2001-03-01 15:59:51 by simonmar]simonmar2001-03-011-2/+3
| | | | use foldl' for addListToFM and delListFromFM
* [project @ 2000-11-20 16:28:29 by simonmar]simonmar2000-11-201-1/+1
| | | | | | Allow the root of the module tree to have a filename which is different from its module name. The argument to cmLoadModule is now a filename.
* [project @ 2000-11-07 13:12:21 by simonpj]simonpj2000-11-071-4/+0
| | | | More small changes
* [project @ 2000-09-08 09:26:05 by simonmar]simonmar2000-09-081-1/+5
| | | | oops, forgot to remove an instance of REALLY_HASKELL_1_3
* [project @ 2000-02-28 21:59:32 by lewie]lewie2000-02-281-0/+4
| | | | | | 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.
* [project @ 1999-11-17 11:25:01 by simonmar]simonmar1999-11-171-29/+0
| | | | Remove unused FiniteSet stuff.
* [project @ 1999-05-21 12:52:28 by simonmar]simonmar1999-05-211-2/+2
| | | | A bunch of patches from SLPJ to fix various things.
* [project @ 1998-12-18 17:40:31 by simonpj]simonpj1998-12-181-2/+4
| | | | | | | | | | | | | | | | | | | | | Another big commit from Simon. Actually, the last one didn't all go into the main trunk; because of a CVS glitch it ended up in the wrong branch. So this commit includes: * Scoped type variables * Warnings for unused variables should work now (they didn't before) * Simplifier improvements: - Much better treatment of strict arguments - Better treatment of bottoming Ids - No need for w/w split for fns that are merely strict - Fewer iterations needed, I hope * Less gratuitous renaming in interface files and abs C * OccName is a separate module, and is an abstract data type I think the whole Prelude and Exts libraries compile correctly. Something isn't quite right about typechecking existentials though.
* [project @ 1998-12-02 13:17:09 by simonm]simonm1998-12-021-2/+2
| | | | Move 4.01 onto the main trunk.
* [project @ 1998-03-06 17:40:11 by simonpj]simonpj1998-03-061-1/+2
| | | | New specialiser
* [project @ 1998-01-08 18:03:08 by simonm]simonm1998-01-081-84/+40
| | | | | | | | | | | | | | | | | | | The Great Multi-Parameter Type Classes Merge. Notes from Simon (abridged): * Multi-parameter type classes are fully implemented. * Error messages from the type checker should be noticeably improved * Warnings for unused bindings (-fwarn-unused-names) * many other minor bug fixes. Internally there are the following changes * Removal of Haskell 1.2 compatibility. * Dramatic clean-up of the PprStyle stuff. * The type Type has been substantially changed. * The dictionary for each class is represented by a new data type for that purpose, rather than by a tuple.
* [project @ 1997-08-25 22:24:51 by sof]sof1997-08-251-31/+11
| | | | Removed use of COMPILING_GHC
* [project @ 1997-06-18 23:52:36 by simonpj]simonpj1997-06-181-0/+1
| | | | A raft of small bug-fixes to 2.05 by SLPJ
* [project @ 1997-06-05 09:16:04 by sof]sof1997-06-051-0/+5
| | | | Do not use loop breaker modules with 2.0x
* [project @ 1997-05-26 01:17:20 by sof]sof1997-05-261-2/+1
| | | | Updated to reflect move of PprStyle to Outputable
* [project @ 1997-05-18 04:56:43 by sof]sof1997-05-181-7/+10
| | | | Updated for new PP
* [project @ 1997-03-14 07:52:06 by simonpj]simonpj1997-03-141-2/+5
| | | | Major update to more-or-less 2.02
* [project @ 1997-01-06 21:08:42 by simonpj]simonpj1997-01-061-10/+0
| | | | Pragmas in interface files added
* [project @ 1996-12-19 09:10:02 by simonpj]simonpj1996-12-191-9/+12
| | | | SLPJ new renamer and lots more
* [project @ 1996-07-25 20:43:49 by partain]partain1996-07-251-0/+4
| | | | Bulk of final changes for 2.01
* [project @ 1996-07-15 11:32:34 by partain]partain1996-07-151-2/+0
| | | | partain changes to 960714
* [project @ 1996-06-26 10:26:00 by partain]partain1996-06-261-27/+38
| | | | SLPJ 1.3 changes through 96/06/25
* [project @ 1996-06-05 06:44:31 by partain]partain1996-06-051-72/+35
| | | | SLPJ changes through 960604
* [project @ 1996-05-06 11:01:29 by partain]partain1996-05-061-1/+2
| | | | SLPJ 1.3 changes through 960505
* [project @ 1996-05-01 18:36:59 by partain]partain1996-05-011-2/+2
| | | | SLPJ 1.3 changes through 960501
* [project @ 1996-04-25 13:02:32 by partain]partain1996-04-251-8/+10
| | | | Sansom 1.3 changes to 960425
* [project @ 1996-04-20 10:37:06 by partain]partain1996-04-201-2/+12
| | | | SLPJ 1.3 changes through 960419
* [project @ 1996-04-05 08:26:04 by partain]partain1996-04-051-5/+5
| | | | Add SLPJ/WDP 1.3 changes through 960404
* [project @ 1996-03-19 08:58:34 by partain]partain1996-03-191-63/+40
| | | | simonpj/sansom/partain/dnt 1.3 compiler stuff through 96/03/18
* [project @ 1996-01-11 14:06:51 by partain]partain1996-01-111-0/+12
|
* [project @ 1996-01-08 20:28:12 by partain]partain1996-01-081-0/+851
Initial revision