ghc-base.git
17 years agoremove Text.Regex(.Posix) from nhc98 build
Malcolm.Wallace@cs.york.ac.uk [Thu, 31 Aug 2006 10:10:16 +0000 (10:10 +0000)]
remove Text.Regex(.Posix) from nhc98 build

17 years agoadd Data.Foldable.{msum,asum}, plus tweaks to comments
Ross Paterson [Wed, 30 Aug 2006 16:35:21 +0000 (16:35 +0000)]
add Data.Foldable.{msum,asum}, plus tweaks to comments

17 years agofix doc typo
Ross Paterson [Wed, 30 Aug 2006 13:41:23 +0000 (13:41 +0000)]
fix doc typo

17 years agoadd Data.Foldable.{for_,forM_} and Data.Traversable.{for,forM}
Ross Paterson [Wed, 30 Aug 2006 13:38:05 +0000 (13:38 +0000)]
add Data.Foldable.{for_,forM_} and Data.Traversable.{for,forM}

generalizing Control.Monad.{forM_,forM}

18 years agoMake length a good consumer
simonpj@microsoft [Mon, 8 May 2006 14:27:26 +0000 (14:27 +0000)]
Make length a good consumer

Make length into a good consumer.  Fixes Trac bug #707.

(Before length simply didn't use foldr.)

17 years agoAdd Control.Monad.forM and forM_
Don Stewart [Thu, 24 Aug 2006 08:11:18 +0000 (08:11 +0000)]
Add Control.Monad.forM and forM_

flip mapM_ is more and more common, I find. Several suggestions have
been made to add this, as foreach or something similar. This patch
does just that:

    forM  :: (Monad m) => [a] -> (a -> m b) -> m [b]
    forM_ :: (Monad m) => [a] -> (a -> m b) -> m ()

So we can write:

    Prelude Control.Monad> forM_ [1..4] $ \x -> print x
    1
    2
    3
    4

17 years agoHide internal module from haddock in Data.ByteString
Don Stewart [Mon, 28 Aug 2006 01:15:15 +0000 (01:15 +0000)]
Hide internal module from haddock in Data.ByteString

17 years agoadd advice on avoiding import ambiguities
Ross Paterson [Sun, 27 Aug 2006 17:04:07 +0000 (17:04 +0000)]
add advice on avoiding import ambiguities

17 years agoexpand advice on importing these modules
Ross Paterson [Sun, 27 Aug 2006 16:40:44 +0000 (16:40 +0000)]
expand advice on importing these modules

17 years agoadd Haddock marker
Ross Paterson [Sun, 27 Aug 2006 11:51:40 +0000 (11:51 +0000)]
add Haddock marker

17 years agoClarify how one hides Prelude.catch
Don Stewart [Sat, 26 Aug 2006 12:43:46 +0000 (12:43 +0000)]
Clarify how one hides Prelude.catch

User feedback indicated that an example was required, of how to hide
Prelude.catch, so add such an example to the docs

17 years agoWorkaround for OSes that don't have intmax_t and uintmax_t
Ian Lynagh [Fri, 25 Aug 2006 13:49:36 +0000 (13:49 +0000)]
Workaround for OSes that don't have intmax_t and uintmax_t
OpenBSD (and possibly others) do not have intmax_t and uintmax_t types:
    http://www.mail-archive.com/haskell-prime@haskell.org/msg01548.html
so substitute (unsigned) long long if we have them, otherwise
(unsigned) long.

17 years agoadd docs for par
Simon Marlow [Fri, 25 Aug 2006 11:06:10 +0000 (11:06 +0000)]
add docs for par

17 years agodocument minimal complete definition for Bits
Ross Paterson [Thu, 24 Aug 2006 14:05:04 +0000 (14:05 +0000)]
document minimal complete definition for Bits

17 years agoC regex library bits have moved to the regex-posix package
Simon Marlow [Thu, 24 Aug 2006 13:23:11 +0000 (13:23 +0000)]
C regex library bits have moved to the regex-posix package

17 years agoAdd shared Typeable support (ghc only)
Esa Ilari Vuokko [Wed, 23 Aug 2006 00:31:26 +0000 (00:31 +0000)]
Add shared Typeable support (ghc only)

17 years agothis should have been removed with the previous patch
Simon Marlow [Thu, 24 Aug 2006 12:12:23 +0000 (12:12 +0000)]
this should have been removed with the previous patch

17 years agoremove Text.Regx & Text.Regex.Posix
Simon Marlow [Thu, 24 Aug 2006 09:46:15 +0000 (09:46 +0000)]
remove Text.Regx & Text.Regex.Posix
These are subsumed by the new regex-base, regex-posix and regex-compat
packages.

17 years agoexplicitly tag Data.ByteString rules with the FPS prefix.
Don Stewart [Thu, 24 Aug 2006 04:13:26 +0000 (04:13 +0000)]
explicitly tag Data.ByteString rules with the FPS prefix.

17 years agoAdd spec rules for sections in Data.ByteString
Don Stewart [Thu, 24 Aug 2006 01:26:11 +0000 (01:26 +0000)]
Add spec rules for sections in Data.ByteString

17 years agoSync Data.ByteString with current stable branch, 0.7
Don Stewart [Wed, 23 Aug 2006 14:33:38 +0000 (14:33 +0000)]
Sync Data.ByteString with current stable branch, 0.7

17 years agoadd notes about why copyFile doesn't remove the target
Simon Marlow [Wed, 23 Aug 2006 09:50:59 +0000 (09:50 +0000)]
add notes about why copyFile doesn't remove the target

17 years agocopyFile: try removing the target file before opening it for writing
Simon Marlow [Tue, 22 Aug 2006 12:19:09 +0000 (12:19 +0000)]
copyFile: try removing the target file before opening it for writing

17 years agocopyFile: try removing the target file before opening it for writing
Simon Marlow [Tue, 22 Aug 2006 12:19:09 +0000 (12:19 +0000)]
copyFile: try removing the target file before opening it for writing

17 years agoadd alternative functors and extra instances
Ross Paterson [Mon, 21 Aug 2006 15:21:51 +0000 (15:21 +0000)]
add alternative functors and extra instances

* Alternative class, for functors with a monoid
* instances for Const
* instances for arrows

17 years agogenerate Haddock docs on all platforms
Simon Marlow [Mon, 21 Aug 2006 13:16:12 +0000 (13:16 +0000)]
generate Haddock docs on all platforms

17 years agoremove extra comma from import
Ross Paterson [Sat, 19 Aug 2006 17:39:54 +0000 (17:39 +0000)]
remove extra comma from import

17 years agofix docs for withC(A)StringLen
Ross Paterson [Fri, 18 Aug 2006 17:03:28 +0000 (17:03 +0000)]
fix docs for withC(A)StringLen

17 years agouse Haskell'98 compliant indentation in do blocks
Malcolm.Wallace@cs.york.ac.uk [Fri, 18 Aug 2006 13:08:10 +0000 (13:08 +0000)]
use Haskell'98 compliant indentation in do blocks

17 years agouse correct names of IOArray operations for nhc98
Malcolm.Wallace@cs.york.ac.uk [Fri, 18 Aug 2006 13:07:14 +0000 (13:07 +0000)]
use correct names of IOArray operations for nhc98

17 years agoadd mapMaybe and mapEither, plus WithKey variants
Ross Paterson [Thu, 17 Aug 2006 23:50:41 +0000 (23:50 +0000)]
add mapMaybe and mapEither, plus WithKey variants

17 years agoremove Text.Html from nhc98 build
Malcolm.Wallace@cs.york.ac.uk [Thu, 17 Aug 2006 13:55:02 +0000 (13:55 +0000)]
remove Text.Html from nhc98 build

17 years agoeliminate more HOST_OS tests
Ross Paterson [Tue, 15 Aug 2006 19:06:09 +0000 (19:06 +0000)]
eliminate more HOST_OS tests

17 years agoHugs only: disable unused process primitives
Ross Paterson [Sun, 13 Aug 2006 18:44:35 +0000 (18:44 +0000)]
Hugs only: disable unused process primitives

These were the cause of Hugs bug #30, I think, and weren't used by Hugs anyway.

17 years agomarkup fix to Data.HashTable
Ross Paterson [Sat, 12 Aug 2006 10:38:35 +0000 (10:38 +0000)]
markup fix to Data.HashTable

17 years agorevert removal of ghcconfig.h from package.conf.in
Ross Paterson [Sat, 12 Aug 2006 08:27:02 +0000 (08:27 +0000)]
revert removal of ghcconfig.h from package.conf.in

as it's preprocessed with -undef (pointed out by Esa Ilari Vuokko)

17 years agofix Data.HashTable for non-GHC
Ross Paterson [Fri, 11 Aug 2006 23:15:21 +0000 (23:15 +0000)]
fix Data.HashTable for non-GHC

17 years agoremove deprecated 'withObject'
Simon Marlow [Fri, 11 Aug 2006 15:23:50 +0000 (15:23 +0000)]
remove deprecated 'withObject'

17 years agoJan-Willem Maessen's improved implementation of Data.HashTable
Simon Marlow [Fri, 11 Aug 2006 15:10:24 +0000 (15:10 +0000)]
Jan-Willem Maessen's improved implementation of Data.HashTable
Rather than incrementally enlarging the hash table, this version
just does it in one go when the table gets too full.

17 years agoWarning police: Make some prototypes from the RTS known
sven.panne@aedion.de [Fri, 11 Aug 2006 14:46:29 +0000 (14:46 +0000)]
Warning police: Make some prototypes from the RTS known

17 years agoWarning police: Removed useless catch-all clause
sven.panne@aedion.de [Fri, 11 Aug 2006 14:22:08 +0000 (14:22 +0000)]
Warning police: Removed useless catch-all clause

17 years agoreduce dependency on ghcconfig.h
Ross Paterson [Fri, 11 Aug 2006 12:40:30 +0000 (12:40 +0000)]
reduce dependency on ghcconfig.h

The only remaining use is in cbits/dirUtils.h, which tests solaris2_HOST_OS

(Also System.Info uses ghcplatform.h and several modules import MachDeps.h
to get SIZEOF_* and ALIGNMENT_* from ghcautoconf.h)

17 years ago(non-GHC only) track MArray interface change
Ross Paterson [Thu, 10 Aug 2006 18:29:02 +0000 (18:29 +0000)]
(non-GHC only) track MArray interface change

17 years agomove Text.Html to a separate package
Simon Marlow [Thu, 10 Aug 2006 11:30:17 +0000 (11:30 +0000)]
move Text.Html to a separate package

17 years agobump version to 2.0
Simon Marlow [Thu, 10 Aug 2006 11:28:33 +0000 (11:28 +0000)]
bump version to 2.0

17 years agoRemove deprecated Data.FiniteMap and Data.Set interfaces
Simon Marlow [Wed, 9 Aug 2006 15:38:10 +0000 (15:38 +0000)]
Remove deprecated Data.FiniteMap and Data.Set interfaces

17 years agomove altzone test from ghc to base package
Ross Paterson [Wed, 9 Aug 2006 12:42:59 +0000 (12:42 +0000)]
move altzone test from ghc to base package

17 years agoremove unnecessary #include "ghcconfig.h"
Ross Paterson [Wed, 9 Aug 2006 12:38:12 +0000 (12:38 +0000)]
remove unnecessary #include "ghcconfig.h"

17 years agoChange the API of MArray to allow resizable arrays
Simon Marlow [Wed, 9 Aug 2006 10:05:48 +0000 (10:05 +0000)]
Change the API of MArray to allow resizable arrays
See #704

The MArray class doesn't currently allow a mutable array to change its
size, because of the pure function

  bounds :: (HasBounds a, Ix i) => a i e -> (i,i)

This patch removes the HasBounds class, and adds

  getBounds :: (MArray a e m, Ix i) => a i e -> m (i,i)

to the MArray class, and

  bounds :: (IArray a e, Ix i) => a i e -> (i,i)

to the IArray class.

The reason that bounds had to be incorporated into the IArray class is
because I couldn't make DiffArray work without doing this.  DiffArray
acts as a layer converting an MArray into an IArray, and there was no
way (that I could find) to define an instance of HasBounds for
DiffArray.

17 years agodeprecate this module.
Simon Marlow [Tue, 8 Aug 2006 10:07:08 +0000 (10:07 +0000)]
deprecate this module.

17 years agoadd traceShow (see #474)
Simon Marlow [Mon, 7 Aug 2006 15:55:45 +0000 (15:55 +0000)]
add traceShow (see #474)

17 years agoremove spurious 'extern "C" {'
Simon Marlow [Mon, 24 Jul 2006 16:02:58 +0000 (16:02 +0000)]
remove spurious 'extern "C" {'

17 years agoFix unsafeIndex for large ranges
Simon Marlow [Fri, 21 Jul 2006 10:02:25 +0000 (10:02 +0000)]
Fix unsafeIndex for large ranges

17 years agoImprove documentation of atomically
simonpj@microsoft [Fri, 14 Jul 2006 12:02:07 +0000 (12:02 +0000)]
Improve documentation of atomically

17 years agoAdd missing method genRange for StdGen (fixes #794)
simonpj@microsoft [Fri, 7 Jul 2006 15:19:01 +0000 (15:19 +0000)]
Add missing method genRange for StdGen (fixes #794)

MERGE TO STABLE

Trac #794 reports (correctly) that the implementation of StdGen
only returns numbers in the range (0..something) rather than
(minBound, maxBound), which is what StdGen's genRange claims.

This commit fixes the problem, by implementing genRange for StdGen
(previously it just used the default method).

17 years agodisambiguate uses of foldr for nhc98 to compile without errors
Malcolm.Wallace@cs.york.ac.uk [Tue, 11 Jul 2006 16:16:14 +0000 (16:16 +0000)]
disambiguate uses of foldr for nhc98 to compile without errors

17 years agomake Control.Monad.Instances compilable by nhc98
Malcolm.Wallace@cs.york.ac.uk [Tue, 11 Jul 2006 16:09:41 +0000 (16:09 +0000)]
make Control.Monad.Instances compilable by nhc98

17 years agobreakpointCond
Lemmih [Sat, 8 Jul 2006 05:55:28 +0000 (05:55 +0000)]
breakpointCond

17 years agoUNDO: Merge "unrecognized long opt" fix from 6.4.2
Simon Marlow [Wed, 5 Jul 2006 14:25:37 +0000 (14:25 +0000)]
UNDO: Merge "unrecognized long opt" fix from 6.4.2
This patch undid the previous patch, "RequireOrder: do not collect
unrecognised options after a non-opt".  I asked Sven to revert it, but
didn't get an answer.

See bug #473.

17 years agoAvoid strictness in accumulator for unpackFoldr
Don Stewart [Mon, 3 Jul 2006 09:18:06 +0000 (09:18 +0000)]
Avoid strictness in accumulator for unpackFoldr

The seq on the accumulator for unpackFoldr will break in the presence of
head/build rewrite rules. The empty list case will be forced, producing
an exception. This is a known issue with seq and rewrite rules that we
just stumbled on to.

17 years agoDisable unpack/build fusion
Don Stewart [Sun, 2 Jul 2006 08:39:13 +0000 (08:39 +0000)]
Disable unpack/build fusion

unpack/build on bytestrings seems to trigger a bug when interacting with
head/build fusion in GHC.List. The bytestring001 testcase catches it.

I'll investigate further, but best to disable this for now (its not
often used anyway).

Note that with -frules-off or ghc 6.4.2 things are fine. It seems to
have emerged with the recent rules changes.

17 years agoImport Data.ByteString.Lazy, improve ByteString Fusion, and resync with FPS head
Don Stewart [Sat, 1 Jul 2006 08:43:45 +0000 (08:43 +0000)]
Import Data.ByteString.Lazy, improve ByteString Fusion, and resync with FPS head

This patch imports the Data.ByteString.Lazy module, and its helpers,
providing a ByteString implemented as a lazy list of strict cache-sized
chunks. This type allows the usual lazy operations to be written on
bytestrings, including lazy IO, with much improved space and time over
the [Char] equivalents.

17 years agoWibble in docs for new ForeignPtr functionsn
Don Stewart [Fri, 9 Jun 2006 07:59:24 +0000 (07:59 +0000)]
Wibble in docs for new ForeignPtr functionsn

17 years agocomments for Applicative and Traversable
Ross Paterson [Thu, 22 Jun 2006 17:04:36 +0000 (17:04 +0000)]
comments for Applicative and Traversable

17 years agodefault to NoBuffering on Windows for a read/write text file
Simon Marlow [Thu, 22 Jun 2006 14:44:46 +0000 (14:44 +0000)]
default to NoBuffering on Windows for a read/write text file
Fixes (works around) #679

17 years agoremove dead code
Simon Marlow [Thu, 22 Jun 2006 14:44:33 +0000 (14:44 +0000)]
remove dead code

17 years agoclarify and expand docs
Simon Marlow [Thu, 22 Jun 2006 11:29:11 +0000 (11:29 +0000)]
clarify and expand docs

17 years agoAdd minView and maxView to Map and Set
jeanphilippe.bernardy@gmail.com [Fri, 16 Jun 2006 18:01:21 +0000 (18:01 +0000)]
Add minView and maxView to Map and Set

17 years agoadd signature for registerDelay
Ross Paterson [Wed, 14 Jun 2006 11:44:56 +0000 (11:44 +0000)]
add signature for registerDelay

17 years agoa few doc comments
Ross Paterson [Tue, 13 Jun 2006 14:27:04 +0000 (14:27 +0000)]
a few doc comments

17 years agoOptimised foreign pointer representation, for heap-allocated objects
Don Stewart [Thu, 8 Jun 2006 01:50:11 +0000 (01:50 +0000)]
Optimised foreign pointer representation, for heap-allocated objects

17 years agoAdd the inline function, and many comments
simonpj@microsoft.com [Mon, 5 Jun 2006 11:58:14 +0000 (11:58 +0000)]
Add the inline function, and many comments

This commit adds the 'inline' function described in the
related patch in the compiler.

I've also added comments about the 'lazy' function.

18 years agosmall intro to exceptions
Ross Paterson [Thu, 25 May 2006 11:16:04 +0000 (11:16 +0000)]
small intro to exceptions

18 years agoexport breakpoint
Simon Marlow [Thu, 25 May 2006 09:04:56 +0000 (09:04 +0000)]
export breakpoint

18 years agoMerge in changes from fps head. Highlights:
Don Stewart [Thu, 25 May 2006 06:50:12 +0000 (06:50 +0000)]
Merge in changes from fps head. Highlights:

    Wed May 24 15:49:38 EST 2006  sjanssen@cse.unl.edu
      * instance Monoid ByteString

    Wed May 24 15:04:04 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Rearange export lists for the .Char8 modules

    Wed May 24 14:59:56 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Implement mapAccumL and reimplement mapIndexed using loopU

    Wed May 24 14:47:32 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Change the implementation of the unfoldr(N) functions.
      Use a more compact implementation for unfoldrN and change it's behaviour
      to only return Just in the case that it actually 'overflowed' the N, so
      the boundary case of unfolding exactly N gives Nothing.
      Implement unfoldr and Lazy.unfoldr in terms of unfoldrN. Use fibonacci
      growth for the chunk size in unfoldr

    Wed May 24 08:32:29 EST 2006  sjanssen@cse.unl.edu
      * Add unfoldr to ByteString and .Char8
      A preliminary implementation of unfoldr.

    Wed May 24 01:39:41 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Reorder the export lists to better match the Data.List api

    Tue May 23 14:04:32 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * pack{Byte,Char} -> singleton. As per fptools convention

    Tue May 23 14:00:51 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * elemIndexLast -> elemIndexEnd

    Tue May 23 13:57:34 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * In the search for a more orthogonal api, we kill breakFirst/breakLast,
        which were of dubious value

    Tue May 23 12:24:09 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Abolish elems. It's name implied it was unpack, but its type didn't. it made no sense

    Tue May 23 10:42:09 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Minor doc tidyup. Use haddock markup better.

    Tue May 23 11:00:31 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Simplify the join() implementation. Spotted by Duncan.

18 years agoadd a way to ask the IO manager thread to exit
Simon Marlow [Wed, 24 May 2006 12:18:23 +0000 (12:18 +0000)]
add a way to ask the IO manager thread to exit

18 years agoSync with FPS head, including the following patches:
Don Stewart [Sat, 20 May 2006 03:04:36 +0000 (03:04 +0000)]
Sync with FPS head, including the following patches:

    Thu May 18 15:45:46 EST 2006  sjanssen@cse.unl.edu
      * Export unsafeTake and unsafeDrop

    Fri May 19 11:53:08 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Add foldl1'

    Fri May 19 13:41:24 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Add fuseable scanl, scanl1 + properties

    Fri May 19 18:20:40 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Spotted another chance to use unsafeTake,Drop (in groupBy)

    Thu May 18 09:24:25 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * More effecient findIndexOrEnd based on the impl of findIndex

    Thu May 18 09:22:49 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Eliminate special case in findIndex since it's handled anyway.

    Thu May 18 09:19:08 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Add unsafeTake and unsafeDrop
      These versions assume the n is in the bounds of the bytestring, saving
      two comparison tests. Then use them in varous places where we think this
      holds. These cases need double checking (and there are a few remaining
      internal uses of take / drop that might be possible to convert).
      Not exported for the moment.

    Tue May 16 23:15:11 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Handle n < 0 in drop and splitAt. Spotted by QC.

    Tue May 16 22:46:22 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Handle n <= 0 cases for unfoldr and replicate. Spotted by QC

    Tue May 16 21:34:11 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * mapF -> map', filterF -> filter'

18 years agohaddock fix
Ross Paterson [Thu, 18 May 2006 15:47:23 +0000 (15:47 +0000)]
haddock fix

18 years agosimplify indexing in Data.Sequence
Ross Paterson [Thu, 18 May 2006 15:43:16 +0000 (15:43 +0000)]
simplify indexing in Data.Sequence

18 years agoMove Eq, Ord, Show instances for ThreadId to GHC.Conc
Simon Marlow [Thu, 18 May 2006 11:33:39 +0000 (11:33 +0000)]
Move Eq, Ord, Show instances for ThreadId to GHC.Conc
Eliminates orphans.

18 years agoBetter error handling in the IO manager thread
Simon Marlow [Thu, 18 May 2006 11:33:03 +0000 (11:33 +0000)]
Better error handling in the IO manager thread
In particular, handle EBADF just like rts/posix/Select.c, by waking up
all the waiting threads.  Other errors are thrown, instead of just
being ignored.

18 years ago#define _REENTRANT 1 (needed to get the right errno on some OSs)
Simon Marlow [Thu, 18 May 2006 10:41:51 +0000 (10:41 +0000)]
#define _REENTRANT 1  (needed to get the right errno on some OSs)
Part 2 of the fix for threaded RTS problems on Solaris and possibly
*BSD (Part 1 was the same change in ghc/includes/Rts.h).

18 years agocopyCString* should be in IO. Spotted by Tomasz Zielonka
Don Stewart [Thu, 18 May 2006 01:21:54 +0000 (01:21 +0000)]
copyCString* should be in IO. Spotted by Tomasz Zielonka

18 years agoadd import Prelude to get dependencies right for Data/Fixed.hs
Duncan Coutts [Wed, 17 May 2006 22:20:44 +0000 (22:20 +0000)]
add import Prelude to get dependencies right for Data/Fixed.hs
Hopefully this fixes parallel builds.

18 years agoFix negative index handling in splitAt, replicate and unfoldrN. Move mapF, filterF...
Don Stewart [Wed, 17 May 2006 02:01:50 +0000 (02:01 +0000)]
Fix negative index handling in splitAt, replicate and unfoldrN. Move mapF, filterF -> map', filter' while we're here

18 years agoUse our own realloc. Thus reduction functions (like filter) allocate on the Haskell...
Don Stewart [Sat, 13 May 2006 05:17:36 +0000 (05:17 +0000)]
Use our own realloc. Thus reduction functions (like filter) allocate on the Haskell heap. Makes around 10% difference.

18 years agoLast two CInt fixes for 64 bit, and bracket writeFile while we're here
Don Stewart [Fri, 12 May 2006 05:07:50 +0000 (05:07 +0000)]
Last two CInt fixes for 64 bit, and bracket writeFile while we're here

18 years agoSome small optimisations, generalise the type of unfold
Don Stewart [Wed, 10 May 2006 04:33:09 +0000 (04:33 +0000)]
Some small optimisations, generalise the type of unfold

    Tue May  9 22:36:29 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Surely the error function should not be inlined.

    Tue May  9 22:35:53 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Reorder memory writes for better cache locality.

    Tue May  9 23:28:09 EST 2006  Duncan Coutts <duncan.coutts@worc.ox.ac.uk>
      * Generalise the type of unfoldrN

      The type of unfoldrN was overly constrained:
      unfoldrN :: Int -> (Word8 -> Maybe (Word8, Word8)) -> Word8 -> ByteString

      if we compare that to unfoldr:
      unfoldr :: (b -> Maybe (a, b)) -> b -> [a]

      So we can generalise unfoldrN to this type:
      unfoldrN :: Int -> (a -> Maybe (Word8, a)) -> a -> ByteString

      and something similar for the .Char8 version. If people really do want to
      use it a lot with Word8/Char then perhaps we should add a specialise pragma.

    Wed May 10 13:26:40 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
      * Add foldl', and thus a fusion rule for length . {map,filter,fold},
      that avoids creating an array at all if the end of the pipeline is a 'length' reduction

**END OF DESCRIPTION***

Place the long patch description above the ***END OF DESCRIPTION*** marker.
The first line of this file will be the patch name.

This patch contains the following changes:

M ./Data/ByteString.hs -8 +38
M ./Data/ByteString/Char8.hs -6 +12

18 years agoportable implementation of WordPtr/IntPtr for non-GHC
Ross Paterson [Wed, 10 May 2006 00:18:26 +0000 (00:18 +0000)]
portable implementation of WordPtr/IntPtr for non-GHC

plus much tweaking of imports to avoid cycles

18 years agoadd WordPtr and IntPtr types to Foreign.Ptr, with associated conversions
Simon Marlow [Tue, 9 May 2006 09:26:06 +0000 (09:26 +0000)]
add WordPtr and IntPtr types to Foreign.Ptr, with associated conversions

As suggested by John Meacham.

I had to move the Show instance for Ptr into GHC.ForeignPtr to avoid
recursive dependencies.

18 years agoadd CIntPtr, CUIntPtr, CIntMax, CUIntMax types
Simon Marlow [Tue, 9 May 2006 09:24:27 +0000 (09:24 +0000)]
add CIntPtr, CUIntPtr, CIntMax, CUIntMax types

18 years agoadd GHC.Dynamic
Simon Marlow [Tue, 9 May 2006 08:27:39 +0000 (08:27 +0000)]
add GHC.Dynamic

18 years agoTwo things. #if defined(__GLASGOW_HASKELL__) on INLINE [n] pragmas (for jhc). And...
Don Stewart [Tue, 9 May 2006 02:34:25 +0000 (02:34 +0000)]
Two things. #if defined(__GLASGOW_HASKELL__) on INLINE [n] pragmas (for jhc). And careful use of INLINE on words/unwords halves runtime for those functions

18 years agoMake length a good consumer
simonpj@microsoft [Mon, 8 May 2006 14:27:26 +0000 (14:27 +0000)]
Make length a good consumer

Make length into a good consumer.  Fixes Trac bug #707.

(Before length simply didn't use foldr.)

18 years agoTrim imports
simonpj@microsoft [Mon, 8 May 2006 14:25:57 +0000 (14:25 +0000)]
Trim imports

18 years agoMake unsafePerformIO lazy
simonpj@microsoft [Mon, 8 May 2006 14:25:07 +0000 (14:25 +0000)]
Make unsafePerformIO lazy

The stricteness analyser used to have a HACK which ensured that NOINLNE things
were not strictness-analysed.  The reason was unsafePerformIO. Left to itself,
the strictness analyser would discover this strictness for unsafePerformIO:
unsafePerformIO:  C(U(AV))
But then consider this sub-expression
unsafePerformIO (\s -> let r = f x in
       case writeIORef v r s of (# s1, _ #) ->
       (# s1, r #)
The strictness analyser will now find that r is sure to be eval'd,
and may then hoist it out.  This makes tests/lib/should_run/memo002
deadlock.

Solving this by making all NOINLINE things have no strictness info is overkill.
In particular, it's overkill for runST, which is perfectly respectable.
Consider
f x = runST (return x)
This should be strict in x.

So the new plan is to define unsafePerformIO using the 'lazy' combinator:

unsafePerformIO (IO m) = lazy (case m realWorld# of (# _, r #) -> r)

Remember, 'lazy' is a wired-in identity-function Id, of type a->a, which is
magically NON-STRICT, and is inlined after strictness analysis.  So
unsafePerformIO will look non-strict, and that's what we want.

18 years agoSync with FPS head.
Don Stewart [Mon, 8 May 2006 12:23:22 +0000 (12:23 +0000)]
Sync with FPS head.

Mon May  8 10:40:14 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
  * Fix all uses for Int that should be CInt or CSize in ffi imports.
  Spotted by Igloo, dcoutts

Mon May  8 16:09:41 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
  * Import nicer loop/loop fusion rule from ghc-ndp

Mon May  8 17:36:07 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
  * Fix stack leak in split on > 60M strings

Mon May  8 17:50:13 EST 2006  Don Stewart <dons@cse.unsw.edu.au>
  * Try same fix for stack overflow in elemIndices

18 years agoFix all uses for Int that should be CInt or CSize in ffi imports. Spotted by Duncan...
Don Stewart [Mon, 8 May 2006 01:03:11 +0000 (01:03 +0000)]
Fix all uses for Int that should be CInt or CSize in ffi imports. Spotted by Duncan and Ian

18 years agoFixed import list syntax
Sven Panne [Sun, 7 May 2006 15:50:08 +0000 (15:50 +0000)]
Fixed import list syntax

18 years agoFaster filterF, filterNotByte
dons@cse.unsw.edu.au [Sun, 7 May 2006 04:23:01 +0000 (04:23 +0000)]
Faster filterF, filterNotByte