emptyP def to gHC.PArr
[ghc-base.git] / GHC / PArr.hs
1 {-# OPTIONS_GHC -fparr -funbox-strict-fields #-}
2
3 -----------------------------------------------------------------------------
4 -- |
5 -- Module      :  GHC.PArr
6 -- Copyright   :  (c) 2001-2002 Manuel M T Chakravarty & Gabriele Keller
7 -- License     :  see libraries/base/LICENSE
8 -- 
9 -- Maintainer  :  Manuel M. T. Chakravarty <chak@cse.unsw.edu.au>
10 -- Stability   :  internal
11 -- Portability :  non-portable (GHC Extensions)
12 --
13 --  Basic implementation of Parallel Arrays.
14 --
15 --  This module has two functions: (1) It defines the interface to the
16 --  parallel array extension of the Prelude and (2) it provides a vanilla
17 --  implementation of parallel arrays that does not require to flatten the
18 --  array code.  The implementation is not very optimised.
19 --
20 --- DOCU ----------------------------------------------------------------------
21 --
22 --  Language: Haskell 98 plus unboxed values and parallel arrays
23 --
24 --  The semantic difference between standard Haskell arrays (aka "lazy
25 --  arrays") and parallel arrays (aka "strict arrays") is that the evaluation
26 --  of two different elements of a lazy array is independent, whereas in a
27 --  strict array either non or all elements are evaluated.  In other words,
28 --  when a parallel array is evaluated to WHNF, all its elements will be
29 --  evaluated to WHNF.  The name parallel array indicates that all array
30 --  elements may, in general, be evaluated to WHNF in parallel without any
31 --  need to resort to speculative evaluation.  This parallel evaluation
32 --  semantics is also beneficial in the sequential case, as it facilitates
33 --  loop-based array processing as known from classic array-based languages,
34 --  such as Fortran.
35 --
36 --  The interface of this module is essentially a variant of the list
37 --  component of the Prelude, but also includes some functions (such as
38 --  permutations) that are not provided for lists.  The following list
39 --  operations are not supported on parallel arrays, as they would require the
40 --  availability of infinite parallel arrays: `iterate', `repeat', and `cycle'.
41 --
42 --  The current implementation is quite simple and entirely based on boxed
43 --  arrays.  One disadvantage of boxed arrays is that they require to
44 --  immediately initialise all newly allocated arrays with an error thunk to
45 --  keep the garbage collector happy, even if it is guaranteed that the array
46 --  is fully initialised with different values before passing over the
47 --  user-visible interface boundary.  Currently, no effort is made to use
48 --  raw memory copy operations to speed things up.
49 --
50 --- TODO ----------------------------------------------------------------------
51 --
52 --  * We probably want a standard library `PArray' in addition to the prelude
53 --    extension in the same way as the standard library `List' complements the
54 --    list functions from the prelude.
55 --
56 --  * Currently, functions that emphasis the constructor-based definition of
57 --    lists (such as, head, last, tail, and init) are not supported.  
58 --
59 --    Is it worthwhile to support the string processing functions lines,
60 --    words, unlines, and unwords?  (Currently, they are not implemented.)
61 --
62 --    It can, however, be argued that it would be worthwhile to include them
63 --    for completeness' sake; maybe only in the standard library `PArray'.
64 --
65 --  * Prescans are often more useful for array programming than scans.  Shall
66 --    we include them into the Prelude or the library?
67 --
68 --  * Due to the use of the iterator `loop', we could define some fusion rules
69 --    in this module.
70 --
71 --  * We might want to add bounds checks that can be deactivated.
72 --
73
74 module GHC.PArr (
75   -- [::],              -- Built-in syntax
76
77   mapP,                 -- :: (a -> b) -> [:a:] -> [:b:]
78   (+:+),                -- :: [:a:] -> [:a:] -> [:a:]
79   filterP,              -- :: (a -> Bool) -> [:a:] -> [:a:]
80   concatP,              -- :: [:[:a:]:] -> [:a:]
81   concatMapP,           -- :: (a -> [:b:]) -> [:a:] -> [:b:]
82 --  head, last, tail, init,   -- it's not wise to use them on arrays
83   nullP,                -- :: [:a:] -> Bool
84   lengthP,              -- :: [:a:] -> Int
85   (!:),                 -- :: [:a:] -> Int -> a
86   foldlP,               -- :: (a -> b -> a) -> a -> [:b:] -> a
87   foldl1P,              -- :: (a -> a -> a) ->      [:a:] -> a
88   scanlP,               -- :: (a -> b -> a) -> a -> [:b:] -> [:a:]
89   scanl1P,              -- :: (a -> a -> a) ->      [:a:] -> [:a:]
90   foldrP,               -- :: (a -> b -> b) -> b -> [:a:] -> b
91   foldr1P,              -- :: (a -> a -> a) ->      [:a:] -> a
92   scanrP,               -- :: (a -> b -> b) -> b -> [:a:] -> [:b:]
93   scanr1P,              -- :: (a -> a -> a) ->      [:a:] -> [:a:]
94 --  iterate, repeat,          -- parallel arrays must be finite
95   singletonP,           -- :: a -> [:a:]
96   emptyP,               -- :: [:a:]
97   replicateP,           -- :: Int -> a -> [:a:]
98 --  cycle,                    -- parallel arrays must be finite
99   takeP,                -- :: Int -> [:a:] -> [:a:]
100   dropP,                -- :: Int -> [:a:] -> [:a:]
101   splitAtP,             -- :: Int -> [:a:] -> ([:a:],[:a:])
102   takeWhileP,           -- :: (a -> Bool) -> [:a:] -> [:a:]
103   dropWhileP,           -- :: (a -> Bool) -> [:a:] -> [:a:]
104   spanP,                -- :: (a -> Bool) -> [:a:] -> ([:a:], [:a:])
105   breakP,               -- :: (a -> Bool) -> [:a:] -> ([:a:], [:a:])
106 --  lines, words, unlines, unwords,  -- is string processing really needed
107   reverseP,             -- :: [:a:] -> [:a:]
108   andP,                 -- :: [:Bool:] -> Bool
109   orP,                  -- :: [:Bool:] -> Bool
110   anyP,                 -- :: (a -> Bool) -> [:a:] -> Bool
111   allP,                 -- :: (a -> Bool) -> [:a:] -> Bool
112   elemP,                -- :: (Eq a) => a -> [:a:] -> Bool
113   notElemP,             -- :: (Eq a) => a -> [:a:] -> Bool
114   lookupP,              -- :: (Eq a) => a -> [:(a, b):] -> Maybe b
115   sumP,                 -- :: (Num a) => [:a:] -> a
116   productP,             -- :: (Num a) => [:a:] -> a
117   maximumP,             -- :: (Ord a) => [:a:] -> a
118   minimumP,             -- :: (Ord a) => [:a:] -> a
119   zipP,                 -- :: [:a:] -> [:b:]          -> [:(a, b)   :]
120   zip3P,                -- :: [:a:] -> [:b:] -> [:c:] -> [:(a, b, c):]
121   zipWithP,             -- :: (a -> b -> c)      -> [:a:] -> [:b:] -> [:c:]
122   zipWith3P,            -- :: (a -> b -> c -> d) -> [:a:]->[:b:]->[:c:]->[:d:]
123   unzipP,               -- :: [:(a, b)   :] -> ([:a:], [:b:])
124   unzip3P,              -- :: [:(a, b, c):] -> ([:a:], [:b:], [:c:])
125
126   -- overloaded functions
127   --
128   enumFromToP,          -- :: Enum a => a -> a      -> [:a:]
129   enumFromThenToP,      -- :: Enum a => a -> a -> a -> [:a:]
130
131   -- the following functions are not available on lists
132   --
133   toP,                  -- :: [a] -> [:a:]
134   fromP,                -- :: [:a:] -> [a]
135   sliceP,               -- :: Int -> Int -> [:e:] -> [:e:]
136   foldP,                -- :: (e -> e -> e) -> e -> [:e:] -> e
137   fold1P,               -- :: (e -> e -> e) ->      [:e:] -> e
138   permuteP,             -- :: [:Int:] -> [:e:] ->          [:e:]
139   bpermuteP,            -- :: [:Int:] -> [:e:] ->          [:e:]
140   dpermuteP,            -- :: [:Int:] -> [:e:] -> [:e:] -> [:e:]
141   crossP,               -- :: [:a:] -> [:b:] -> [:(a, b):]
142   crossMapP,            -- :: [:a:] -> (a -> [:b:]) -> [:(a, b):]
143   indexOfP              -- :: (a -> Bool) -> [:a:] -> [:Int:]
144 ) where
145
146 #ifndef __HADDOCK__
147
148 import Prelude
149
150 import GHC.ST   ( ST(..), STRep, runST )
151 import GHC.Exts ( Int#, Array#, Int(I#), MutableArray#, newArray#,
152                   unsafeFreezeArray#, indexArray#, writeArray#, (<#), (>=#) )
153
154 infixl 9  !:
155 infixr 5  +:+
156 infix  4  `elemP`, `notElemP`
157
158
159 -- representation of parallel arrays
160 -- ---------------------------------
161
162 -- this rather straight forward implementation maps parallel arrays to the
163 -- internal representation used for standard Haskell arrays in GHC's Prelude
164 -- (EXPORTED ABSTRACTLY)
165 --
166 -- * This definition *must* be kept in sync with `TysWiredIn.parrTyCon'!
167 --
168 data [::] e = PArr Int# (Array# e)
169
170
171 -- exported operations on parallel arrays
172 -- --------------------------------------
173
174 -- operations corresponding to list operations
175 --
176
177 mapP   :: (a -> b) -> [:a:] -> [:b:]
178 mapP f  = fst . loop (mapEFL f) noAL
179
180 (+:+)     :: [:a:] -> [:a:] -> [:a:]
181 a1 +:+ a2  = fst $ loop (mapEFL sel) noAL (enumFromToP 0 (len1 + len2 - 1))
182                        -- we can't use the [:x..y:] form here for tedious
183                        -- reasons to do with the typechecker and the fact that
184                        -- `enumFromToP' is defined in the same module
185              where
186                len1 = lengthP a1
187                len2 = lengthP a2
188                --
189                sel i | i < len1  = a1!:i
190                      | otherwise = a2!:(i - len1)
191
192 filterP   :: (a -> Bool) -> [:a:] -> [:a:]
193 filterP p  = fst . loop (filterEFL p) noAL
194
195 concatP     :: [:[:a:]:] -> [:a:]
196 concatP xss  = foldlP (+:+) [::] xss
197
198 concatMapP   :: (a -> [:b:]) -> [:a:] -> [:b:]
199 concatMapP f  = concatP . mapP f
200
201 --  head, last, tail, init,   -- it's not wise to use them on arrays
202
203 nullP      :: [:a:] -> Bool
204 nullP [::]  = True
205 nullP _     = False
206
207 lengthP             :: [:a:] -> Int
208 lengthP (PArr n# _)  = I# n#
209
210 (!:) :: [:a:] -> Int -> a
211 (!:)  = indexPArr
212
213 foldlP     :: (a -> b -> a) -> a -> [:b:] -> a
214 foldlP f z  = snd . loop (foldEFL (flip f)) z
215
216 foldl1P        :: (a -> a -> a) -> [:a:] -> a
217 foldl1P f [::]  = error "Prelude.foldl1P: empty array"
218 foldl1P f a     = snd $ loopFromTo 1 (lengthP a - 1) (foldEFL f) (a!:0) a
219
220 scanlP     :: (a -> b -> a) -> a -> [:b:] -> [:a:]
221 scanlP f z  = fst . loop (scanEFL (flip f)) z
222
223 scanl1P        :: (a -> a -> a) -> [:a:] -> [:a:]
224 scanl1P f [::]  = error "Prelude.scanl1P: empty array"
225 scanl1P f a     = fst $ loopFromTo 1 (lengthP a - 1) (scanEFL f) (a!:0) a
226
227 foldrP :: (a -> b -> b) -> b -> [:a:] -> b
228 foldrP  = error "Prelude.foldrP: not implemented yet" -- FIXME
229
230 foldr1P :: (a -> a -> a) -> [:a:] -> a
231 foldr1P  = error "Prelude.foldr1P: not implemented yet" -- FIXME
232
233 scanrP :: (a -> b -> b) -> b -> [:a:] -> [:b:]
234 scanrP  = error "Prelude.scanrP: not implemented yet" -- FIXME
235
236 scanr1P :: (a -> a -> a) -> [:a:] -> [:a:]
237 scanr1P  = error "Prelude.scanr1P: not implemented yet" -- FIXME
238
239 --  iterate, repeat           -- parallel arrays must be finite
240
241 singletonP             :: a -> [:a:]
242 {-# INLINE singletonP #-}
243 singletonP e = replicateP 1 e
244   
245 replicateP             :: Int -> a -> [:a:]
246 {-# INLINE replicateP #-}
247 replicateP n e  = runST (do
248   marr# <- newArray n e
249   mkPArr n marr#)
250
251 --  cycle                     -- parallel arrays must be finite
252
253 takeP   :: Int -> [:a:] -> [:a:]
254 takeP n  = sliceP 0 (n - 1)
255
256 dropP     :: Int -> [:a:] -> [:a:]
257 dropP n a  = sliceP n (lengthP a - 1) a
258
259 splitAtP      :: Int -> [:a:] -> ([:a:],[:a:])
260 splitAtP n xs  = (takeP n xs, dropP n xs)
261
262 takeWhileP :: (a -> Bool) -> [:a:] -> [:a:]
263 takeWhileP  = error "Prelude.takeWhileP: not implemented yet" -- FIXME
264
265 dropWhileP :: (a -> Bool) -> [:a:] -> [:a:]
266 dropWhileP  = error "Prelude.dropWhileP: not implemented yet" -- FIXME
267
268 spanP :: (a -> Bool) -> [:a:] -> ([:a:], [:a:])
269 spanP  = error "Prelude.spanP: not implemented yet" -- FIXME
270
271 breakP   :: (a -> Bool) -> [:a:] -> ([:a:], [:a:])
272 breakP p  = spanP (not . p)
273
274 --  lines, words, unlines, unwords,  -- is string processing really needed
275
276 reverseP   :: [:a:] -> [:a:]
277 reverseP a  = permuteP (enumFromThenToP (len - 1) (len - 2) 0) a
278                        -- we can't use the [:x, y..z:] form here for tedious
279                        -- reasons to do with the typechecker and the fact that
280                        -- `enumFromThenToP' is defined in the same module
281               where
282                 len = lengthP a
283
284 andP :: [:Bool:] -> Bool
285 andP  = foldP (&&) True
286
287 orP :: [:Bool:] -> Bool
288 orP  = foldP (||) True
289
290 anyP   :: (a -> Bool) -> [:a:] -> Bool
291 anyP p  = orP . mapP p
292
293 allP :: (a -> Bool) -> [:a:] -> Bool
294 allP p  = andP . mapP p
295
296 elemP   :: (Eq a) => a -> [:a:] -> Bool
297 elemP x  = anyP (== x)
298
299 notElemP   :: (Eq a) => a -> [:a:] -> Bool
300 notElemP x  = allP (/= x)
301
302 lookupP :: (Eq a) => a -> [:(a, b):] -> Maybe b
303 lookupP  = error "Prelude.lookupP: not implemented yet" -- FIXME
304
305 sumP :: (Num a) => [:a:] -> a
306 sumP  = foldP (+) 0
307
308 productP :: (Num a) => [:a:] -> a
309 productP  = foldP (*) 1
310
311 maximumP      :: (Ord a) => [:a:] -> a
312 maximumP [::]  = error "Prelude.maximumP: empty parallel array"
313 maximumP xs    = fold1P max xs
314
315 minimumP :: (Ord a) => [:a:] -> a
316 minimumP [::]  = error "Prelude.minimumP: empty parallel array"
317 minimumP xs    = fold1P min xs
318
319 zipP :: [:a:] -> [:b:] -> [:(a, b):]
320 zipP  = zipWithP (,)
321
322 zip3P :: [:a:] -> [:b:] -> [:c:] -> [:(a, b, c):]
323 zip3P  = zipWith3P (,,)
324
325 zipWithP         :: (a -> b -> c) -> [:a:] -> [:b:] -> [:c:]
326 zipWithP f a1 a2  = let 
327                       len1 = lengthP a1
328                       len2 = lengthP a2
329                       len  = len1 `min` len2
330                     in
331                     fst $ loopFromTo 0 (len - 1) combine 0 a1
332                     where
333                       combine e1 i = (Just $ f e1 (a2!:i), i + 1)
334
335 zipWith3P :: (a -> b -> c -> d) -> [:a:]->[:b:]->[:c:]->[:d:]
336 zipWith3P f a1 a2 a3 = let 
337                         len1 = lengthP a1
338                         len2 = lengthP a2
339                         len3 = lengthP a3
340                         len  = len1 `min` len2 `min` len3
341                       in
342                       fst $ loopFromTo 0 (len - 1) combine 0 a1
343                       where
344                         combine e1 i = (Just $ f e1 (a2!:i) (a3!:i), i + 1)
345
346 unzipP   :: [:(a, b):] -> ([:a:], [:b:])
347 unzipP a  = (fst $ loop (mapEFL fst) noAL a, fst $ loop (mapEFL snd) noAL a)
348 -- FIXME: these two functions should be optimised using a tupled custom loop
349 unzip3P   :: [:(a, b, c):] -> ([:a:], [:b:], [:c:])
350 unzip3P a  = (fst $ loop (mapEFL fst3) noAL a, 
351               fst $ loop (mapEFL snd3) noAL a,
352               fst $ loop (mapEFL trd3) noAL a)
353              where
354                fst3 (a, _, _) = a
355                snd3 (_, b, _) = b
356                trd3 (_, _, c) = c
357
358 -- instances
359 --
360
361 instance Eq a => Eq [:a:] where
362   a1 == a2 | lengthP a1 == lengthP a2 = andP (zipWithP (==) a1 a2)
363            | otherwise                = False
364
365 instance Ord a => Ord [:a:] where
366   compare a1 a2 = case foldlP combineOrdering EQ (zipWithP compare a1 a2) of
367                     EQ | lengthP a1 == lengthP a2 -> EQ
368                        | lengthP a1 <  lengthP a2 -> LT
369                        | otherwise                -> GT
370                   where
371                     combineOrdering EQ    EQ    = EQ
372                     combineOrdering EQ    other = other
373                     combineOrdering other _     = other
374
375 instance Functor [::] where
376   fmap = mapP
377
378 instance Monad [::] where
379   m >>= k  = foldrP ((+:+) . k      ) [::] m
380   m >>  k  = foldrP ((+:+) . const k) [::] m
381   return x = [:x:]
382   fail _   = [::]
383
384 instance Show a => Show [:a:]  where
385   showsPrec _  = showPArr . fromP
386     where
387       showPArr []     s = "[::]" ++ s
388       showPArr (x:xs) s = "[:" ++ shows x (showPArr' xs s)
389
390       showPArr' []     s = ":]" ++ s
391       showPArr' (y:ys) s = ',' : shows y (showPArr' ys s)
392
393 instance Read a => Read [:a:]  where
394   readsPrec _ a = [(toP v, rest) | (v, rest) <- readPArr a]
395     where
396       readPArr = readParen False (\r -> do
397                                           ("[:",s) <- lex r
398                                           readPArr1 s)
399       readPArr1 s = 
400         (do { (":]", t) <- lex s; return ([], t) }) ++
401         (do { (x, t) <- reads s; (xs, u) <- readPArr2 t; return (x:xs, u) })
402
403       readPArr2 s = 
404         (do { (":]", t) <- lex s; return ([], t) }) ++
405         (do { (",", t) <- lex s; (x, u) <- reads t; (xs, v) <- readPArr2 u; 
406               return (x:xs, v) })
407
408 -- overloaded functions
409 -- 
410
411 -- Ideally, we would like `enumFromToP' and `enumFromThenToP' to be members of
412 -- `Enum'.  On the other hand, we really do not want to change `Enum'.  Thus,
413 -- for the moment, we hope that the compiler is sufficiently clever to
414 -- properly fuse the following definitions.
415
416 enumFromToP     :: Enum a => a -> a -> [:a:]
417 enumFromToP x y  = mapP toEnum (eftInt (fromEnum x) (fromEnum y))
418   where
419     eftInt x y = scanlP (+) x $ replicateP (y - x + 1) 1
420
421 enumFromThenToP       :: Enum a => a -> a -> a -> [:a:]
422 enumFromThenToP x y z  = 
423   mapP toEnum (efttInt (fromEnum x) (fromEnum y) (fromEnum z))
424   where
425     efttInt x y z = scanlP (+) x $ 
426                       replicateP (abs (z - x) `div` abs delta + 1) delta
427       where
428        delta = y - x
429
430 -- the following functions are not available on lists
431 --
432
433 -- create an array from a list (EXPORTED)
434 --
435 toP   :: [a] -> [:a:]
436 toP l  = fst $ loop store l (replicateP (length l) ())
437          where
438            store _ (x:xs) = (Just x, xs)
439
440 -- convert an array to a list (EXPORTED)
441 --
442 fromP   :: [:a:] -> [a]
443 fromP a  = [a!:i | i <- [0..lengthP a - 1]]
444
445 -- cut a subarray out of an array (EXPORTED)
446 --
447 sliceP :: Int -> Int -> [:e:] -> [:e:]
448 sliceP from to a = 
449   fst $ loopFromTo (0 `max` from) (to `min` (lengthP a - 1)) (mapEFL id) noAL a
450
451 -- parallel folding (EXPORTED)
452 --
453 -- * the first argument must be associative; otherwise, the result is undefined
454 --
455 foldP :: (e -> e -> e) -> e -> [:e:] -> e
456 foldP  = foldlP
457
458 -- parallel folding without explicit neutral (EXPORTED)
459 --
460 -- * the first argument must be associative; otherwise, the result is undefined
461 --
462 fold1P :: (e -> e -> e) -> [:e:] -> e
463 fold1P  = foldl1P
464
465 -- permute an array according to the permutation vector in the first argument
466 -- (EXPORTED)
467 --
468 permuteP       :: [:Int:] -> [:e:] -> [:e:]
469 permuteP is es 
470   | isLen /= esLen = error "GHC.PArr: arguments must be of the same length"
471   | otherwise      = runST (do
472                        marr <- newArray isLen noElem
473                        permute marr is es
474                        mkPArr isLen marr)
475   where
476     noElem = error "GHC.PArr.permuteP: I do not exist!"
477              -- unlike standard Haskell arrays, this value represents an
478              -- internal error
479     isLen = lengthP is
480     esLen = lengthP es
481
482 -- permute an array according to the back-permutation vector in the first
483 -- argument (EXPORTED)
484 --
485 -- * the permutation vector must represent a surjective function; otherwise,
486 --   the result is undefined
487 --
488 bpermuteP       :: [:Int:] -> [:e:] -> [:e:]
489 bpermuteP is es  = fst $ loop (mapEFL (es!:)) noAL is
490
491 -- permute an array according to the permutation vector in the first
492 -- argument, which need not be surjective (EXPORTED)
493 --
494 -- * any elements in the result that are not covered by the permutation
495 --   vector assume the value of the corresponding position of the third
496 --   argument 
497 --
498 dpermuteP :: [:Int:] -> [:e:] -> [:e:] -> [:e:]
499 dpermuteP is es dft
500   | isLen /= esLen = error "GHC.PArr: arguments must be of the same length"
501   | otherwise      = runST (do
502                        marr <- newArray dftLen noElem
503                        trans 0 (isLen - 1) marr dft copyOne noAL
504                        permute marr is es
505                        mkPArr dftLen marr)
506   where
507     noElem = error "GHC.PArr.permuteP: I do not exist!"
508              -- unlike standard Haskell arrays, this value represents an
509              -- internal error
510     isLen  = lengthP is
511     esLen  = lengthP es
512     dftLen = lengthP dft
513
514     copyOne e _ = (Just e, noAL)
515
516 -- computes the cross combination of two arrays (EXPORTED)
517 --
518 crossP       :: [:a:] -> [:b:] -> [:(a, b):]
519 crossP a1 a2  = fst $ loop combine (0, 0) $ replicateP len ()
520                 where
521                   len1 = lengthP a1
522                   len2 = lengthP a2
523                   len  = len1 * len2
524                   --
525                   combine _ (i, j) = (Just $ (a1!:i, a2!:j), next)
526                                      where
527                                        next | (i + 1) == len1 = (0    , j + 1)
528                                             | otherwise       = (i + 1, j)
529
530 {- An alternative implementation
531    * The one above is certainly better for flattened code, but here where we
532      are handling boxed arrays, the trade off is less clear.  However, I
533      think, the above one is still better.
534
535 crossP a1 a2  = let
536                   len1 = lengthP a1
537                   len2 = lengthP a2
538                   x1   = concatP $ mapP (replicateP len2) a1
539                   x2   = concatP $ replicateP len1 a2
540                 in
541                 zipP x1 x2
542  -}
543
544 -- |Compute a cross of an array and the arrays produced by the given function
545 -- for the elements of the first array.
546 --
547 crossMapP :: [:a:] -> (a -> [:b:]) -> [:(a, b):]
548 crossMapP a f = let
549                   bs   = mapP f a
550                   segd = mapP lengthP bs
551                   as   = zipWithP replicateP segd a
552                 in
553                 zipP (concatP as) (concatP bs)
554
555 {- The following may seem more straight forward, but the above is very cheap
556    with segmented arrays, as `mapP lengthP', `zipP', and `concatP' are
557    constant time, and `map f' uses the lifted version of `f'.
558
559 crossMapP a f = concatP $ mapP (\x -> mapP ((,) x) (f x)) a
560
561  -}
562
563 -- computes an index array for all elements of the second argument for which
564 -- the predicate yields `True' (EXPORTED)
565 --
566 indexOfP     :: (a -> Bool) -> [:a:] -> [:Int:]
567 indexOfP p a  = fst $ loop calcIdx 0 a
568                 where
569                   calcIdx e idx | p e       = (Just idx, idx + 1)
570                                 | otherwise = (Nothing , idx    )
571
572
573 -- auxiliary functions
574 -- -------------------
575
576 -- internally used mutable boxed arrays
577 --
578 data MPArr s e = MPArr Int# (MutableArray# s e)
579
580 -- allocate a new mutable array that is pre-initialised with a given value
581 --
582 newArray             :: Int -> e -> ST s (MPArr s e)
583 {-# INLINE newArray #-}
584 newArray (I# n#) e  = ST $ \s1# ->
585   case newArray# n# e s1# of { (# s2#, marr# #) ->
586   (# s2#, MPArr n# marr# #)}
587
588 -- convert a mutable array into the external parallel array representation
589 --
590 mkPArr                           :: Int -> MPArr s e -> ST s [:e:]
591 {-# INLINE mkPArr #-}
592 mkPArr (I# n#) (MPArr _ marr#)  = ST $ \s1# ->
593   case unsafeFreezeArray# marr# s1#   of { (# s2#, arr# #) ->
594   (# s2#, PArr n# arr# #) }
595
596 -- general array iterator
597 --
598 -- * corresponds to `loopA' from ``Functional Array Fusion'', Chakravarty &
599 --   Keller, ICFP 2001
600 --
601 loop :: (e -> acc -> (Maybe e', acc))    -- mapping & folding, once per element
602      -> acc                              -- initial acc value
603      -> [:e:]                            -- input array
604      -> ([:e':], acc)
605 {-# INLINE loop #-}
606 loop mf acc arr = loopFromTo 0 (lengthP arr - 1) mf acc arr
607
608 -- general array iterator with bounds
609 --
610 loopFromTo :: Int                        -- from index
611            -> Int                        -- to index
612            -> (e -> acc -> (Maybe e', acc))
613            -> acc
614            -> [:e:]
615            -> ([:e':], acc)
616 {-# INLINE loopFromTo #-}
617 loopFromTo from to mf start arr = runST (do
618   marr      <- newArray (to - from + 1) noElem
619   (n', acc) <- trans from to marr arr mf start
620   arr       <- mkPArr n' marr
621   return (arr, acc))
622   where
623     noElem = error "GHC.PArr.loopFromTo: I do not exist!"
624              -- unlike standard Haskell arrays, this value represents an
625              -- internal error
626
627 -- actual loop body of `loop'
628 --
629 -- * for this to be really efficient, it has to be translated with the
630 --   constructor specialisation phase "SpecConstr" switched on; as of GHC 5.03
631 --   this requires an optimisation level of at least -O2
632 --
633 trans :: Int                            -- index of first elem to process
634       -> Int                            -- index of last elem to process
635       -> MPArr s e'                     -- destination array
636       -> [:e:]                          -- source array
637       -> (e -> acc -> (Maybe e', acc))  -- mutator
638       -> acc                            -- initial accumulator
639       -> ST s (Int, acc)                -- final destination length/final acc
640 {-# INLINE trans #-}
641 trans from to marr arr mf start = trans' from 0 start
642   where
643     trans' arrOff marrOff acc 
644       | arrOff > to = return (marrOff, acc)
645       | otherwise   = do
646                         let (oe', acc') = mf (arr `indexPArr` arrOff) acc
647                         marrOff' <- case oe' of
648                                       Nothing -> return marrOff 
649                                       Just e' -> do
650                                         writeMPArr marr marrOff e'
651                                         return $ marrOff + 1
652                         trans' (arrOff + 1) marrOff' acc'
653
654 -- Permute the given elements into the mutable array.
655 --
656 permute :: MPArr s e -> [:Int:] -> [:e:] -> ST s ()
657 permute marr is es = perm 0
658   where
659     perm i
660       | i == n = return ()
661       | otherwise  = writeMPArr marr (is!:i) (es!:i) >> perm (i + 1)
662       where
663         n = lengthP is
664
665
666 -- common patterns for using `loop'
667 --
668
669 -- initial value for the accumulator when the accumulator is not needed
670 --
671 noAL :: ()
672 noAL  = ()
673
674 -- `loop' mutator maps a function over array elements
675 --
676 mapEFL   :: (e -> e') -> (e -> () -> (Maybe e', ()))
677 {-# INLINE mapEFL #-}
678 mapEFL f  = \e a -> (Just $ f e, ())
679
680 -- `loop' mutator that filter elements according to a predicate
681 --
682 filterEFL   :: (e -> Bool) -> (e -> () -> (Maybe e, ()))
683 {-# INLINE filterEFL #-}
684 filterEFL p  = \e a -> if p e then (Just e, ()) else (Nothing, ())
685
686 -- `loop' mutator for array folding
687 --
688 foldEFL   :: (e -> acc -> acc) -> (e -> acc -> (Maybe (), acc))
689 {-# INLINE foldEFL #-}
690 foldEFL f  = \e a -> (Nothing, f e a)
691
692 -- `loop' mutator for array scanning
693 --
694 scanEFL   :: (e -> acc -> acc) -> (e -> acc -> (Maybe acc, acc))
695 {-# INLINE scanEFL #-}
696 scanEFL f  = \e a -> (Just a, f e a)
697
698 -- elementary array operations
699 --
700
701 -- unlifted array indexing 
702 --
703 indexPArr                       :: [:e:] -> Int -> e
704 {-# INLINE indexPArr #-}
705 indexPArr (PArr n# arr#) (I# i#) 
706   | i# >=# 0# && i# <# n# =
707     case indexArray# arr# i# of (# e #) -> e
708   | otherwise = error $ "indexPArr: out of bounds parallel array index; " ++
709                         "idx = " ++ show (I# i#) ++ ", arr len = "
710                         ++ show (I# n#)
711
712 -- encapsulate writing into a mutable array into the `ST' monad
713 --
714 writeMPArr                           :: MPArr s e -> Int -> e -> ST s ()
715 {-# INLINE writeMPArr #-}
716 writeMPArr (MPArr n# marr#) (I# i#) e 
717   | i# >=# 0# && i# <# n# =
718     ST $ \s# ->
719     case writeArray# marr# i# e s# of s'# -> (# s'#, () #)
720   | otherwise = error $ "writeMPArr: out of bounds parallel array index; " ++
721                         "idx = " ++ show (I# i#) ++ ", arr len = "
722                         ++ show (I# n#)
723
724 #endif /* __HADDOCK__ */
725
726 emptyP:: [:a:]
727 {- NOINLINE emptyP #-}
728 emptyP = replicateP 0 undefined