summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-03-17 09:45:29 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-03-18 10:06:43 -0400
commit528df8ecb4e2f9c78b1ae4ab7ff8230644e9b643 (patch)
tree86cd4522d35c4c8fd3a17db5f4e6b138f8be70df /testsuite
parent53ff2cd0c49735e8f709ac8a5ceab68483eb89df (diff)
downloadhaskell-528df8ecb4e2f9c78b1ae4ab7ff8230644e9b643.tar.gz
Modules: Core operations (#13009)
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/tests/callarity/unittest/CallArity1.hs2
-rw-r--r--testsuite/tests/codeGen/should_run/T16449_2.hs2
-rw-r--r--testsuite/tests/determinism/determ014/A.hs2
-rw-r--r--testsuite/tests/eyeball/inline4.hs2
-rw-r--r--testsuite/tests/ghc-api/T4891/T4891.hs2
-rw-r--r--testsuite/tests/perf/join_points/join005.hs2
-rw-r--r--testsuite/tests/perf/should_run/MethSharing.hs2
-rw-r--r--testsuite/tests/perf/should_run/T15226.hs2
-rw-r--r--testsuite/tests/perf/should_run/T15226a.hs2
-rw-r--r--testsuite/tests/perf/should_run/all.T2
-rw-r--r--testsuite/tests/polykinds/T10934.hs2
-rw-r--r--testsuite/tests/simplCore/should_compile/T14270a.hs4
-rw-r--r--testsuite/tests/simplCore/should_compile/T3831.hs2
-rw-r--r--testsuite/tests/simplCore/should_compile/simpl018.hs2
-rw-r--r--testsuite/tests/simplCore/should_compile/spec002.hs2
-rw-r--r--testsuite/tests/simplCore/should_run/simplrun007.hs2
-rw-r--r--testsuite/tests/simplCore/should_run/simplrun009.hs2
-rw-r--r--testsuite/tests/stranal/should_compile/T10482a.hs2
-rw-r--r--testsuite/tests/stranal/should_run/strun003.hs2
19 files changed, 20 insertions, 20 deletions
diff --git a/testsuite/tests/callarity/unittest/CallArity1.hs b/testsuite/tests/callarity/unittest/CallArity1.hs
index e39ba63dd6..60afe5be05 100644
--- a/testsuite/tests/callarity/unittest/CallArity1.hs
+++ b/testsuite/tests/callarity/unittest/CallArity1.hs
@@ -4,7 +4,7 @@ import GHC.Core.Utils
import Id
import GHC.Core.Type
import GHC.Core.Make
-import CallArity (callArityRHS)
+import GHC.Core.Op.CallArity (callArityRHS)
import MkId
import SysTools
import GHC.Driver.Session
diff --git a/testsuite/tests/codeGen/should_run/T16449_2.hs b/testsuite/tests/codeGen/should_run/T16449_2.hs
index acb885369c..0a08ffde23 100644
--- a/testsuite/tests/codeGen/should_run/T16449_2.hs
+++ b/testsuite/tests/codeGen/should_run/T16449_2.hs
@@ -7,7 +7,7 @@ import GHC.Int
-- Test that large unchecked shifts, which constitute undefined behavior, do
-- not crash the compiler and instead evaluate to 0.
--- See Note [Guarding against silly shifts] in PrelRules.
+-- See Note [Guarding against silly shifts] in GHC.Core.Op.ConstantFold.
-- Shift should be larger than the word size (e.g. 64 on 64-bit) for this test.
main = print (I# (uncheckedIShiftL# 1# 1000#))
diff --git a/testsuite/tests/determinism/determ014/A.hs b/testsuite/tests/determinism/determ014/A.hs
index 35ea20f225..91d874cde7 100644
--- a/testsuite/tests/determinism/determ014/A.hs
+++ b/testsuite/tests/determinism/determ014/A.hs
@@ -7,7 +7,7 @@
, PolyKinds -- Comment out PolyKinds and the bug goes away.
#-}
{-# OPTIONS_GHC -O #-}
- -- The bug is in SimplUtils.abstractFloats, so we need -O to trigger it
+ -- The bug is in GHC.Core.Op.Simplify.Utils.abstractFloats, so we need -O to trigger it
module KeyValue where
diff --git a/testsuite/tests/eyeball/inline4.hs b/testsuite/tests/eyeball/inline4.hs
index a673de9b2a..bf7cf7382c 100644
--- a/testsuite/tests/eyeball/inline4.hs
+++ b/testsuite/tests/eyeball/inline4.hs
@@ -15,7 +15,7 @@ Reason: 'a' is inline (not pre/post unconditionally; just ordinary inlining)
Then, since ($dm>>) has arity 3, the rhs of (>>) is a PAP, so the arg is
floated out, past the big lambdas.
-See Note [Unsaturated functions] in SimplUtils
+See Note [Unsaturated functions] in GHC.Core.Op.Simplify.Utils
------------------------------------------------------------
a_s9f{v} [lid] =
diff --git a/testsuite/tests/ghc-api/T4891/T4891.hs b/testsuite/tests/ghc-api/T4891/T4891.hs
index 000a8726d1..7ef32aae02 100644
--- a/testsuite/tests/ghc-api/T4891/T4891.hs
+++ b/testsuite/tests/ghc-api/T4891/T4891.hs
@@ -2,7 +2,7 @@
module Main where
import GHC.ByteCode.Linker
-import CoreMonad
+import GHC.Core.Op.Monad
import Data.Array
import GHC.Core.DataCon
import GHC
diff --git a/testsuite/tests/perf/join_points/join005.hs b/testsuite/tests/perf/join_points/join005.hs
index 7feec98c28..de8a50b967 100644
--- a/testsuite/tests/perf/join_points/join005.hs
+++ b/testsuite/tests/perf/join_points/join005.hs
@@ -17,7 +17,7 @@ It's hard to test for this, but what should happen is that go gets W/W'd and the
worker is a join point (else Core Lint will complain). Interestingly, go is
*not* CPR'd, because then the worker couldn't be a join point, but once the
simplifier runs, the worker ends up returning Int# anyway. See Note [Don't CPR
-join points] in WorkWrap.hs.
+join points] in GHC.Core.Op.WorkWrap.
-}
main = print $ sumOfMultiplesOf 2 [1..10]
diff --git a/testsuite/tests/perf/should_run/MethSharing.hs b/testsuite/tests/perf/should_run/MethSharing.hs
index 17276a5fed..2c6b0857bd 100644
--- a/testsuite/tests/perf/should_run/MethSharing.hs
+++ b/testsuite/tests/perf/should_run/MethSharing.hs
@@ -91,7 +91,7 @@ Main.loop [InlPrag=NOINLINE (sat-args=2), Occ=LoopBreaker]
This is a bit disappointing. I would have expected GHC to float out
the application of (^) to the two dictionaries during full laziness
(note that (^) has arity 2 so the application is oversaturated). Why
-doesn't that happen? SetLevels (if this is the right place to look)
+doesn't that happen? GHC.Core.Op.SetLevels (if this is the right place to look)
has this:
-}
diff --git a/testsuite/tests/perf/should_run/T15226.hs b/testsuite/tests/perf/should_run/T15226.hs
index 4c09114b89..0704b77284 100644
--- a/testsuite/tests/perf/should_run/T15226.hs
+++ b/testsuite/tests/perf/should_run/T15226.hs
@@ -6,7 +6,7 @@ import Prelude hiding (repeat)
-- We want to be sure that the compiler *doesn't* know that
-- all the elements of the list are in WHNF, because if it
--- does, PrelRules may erase the seq#'s altogether.
+-- does, GHC.Core.Op.ConstantFold may erase the seq#'s altogether.
repeat :: a -> [a]
repeat a = res
where res = a : res
diff --git a/testsuite/tests/perf/should_run/T15226a.hs b/testsuite/tests/perf/should_run/T15226a.hs
index 6e9a1dbdbb..3f1937627f 100644
--- a/testsuite/tests/perf/should_run/T15226a.hs
+++ b/testsuite/tests/perf/should_run/T15226a.hs
@@ -7,7 +7,7 @@ import Data.Coerce
-- We want to be sure that the compiler *doesn't* know that
-- all the elements of the list are in WHNF, because if it
--- does, PrelRules may erase the seq#'s altogether.
+-- does, GHC.Core.Op.ConstantFold may erase the seq#'s altogether.
repeat :: a -> [a]
repeat a = res
where res = a : res
diff --git a/testsuite/tests/perf/should_run/all.T b/testsuite/tests/perf/should_run/all.T
index d0dec5b2a6..70bd0fa48c 100644
--- a/testsuite/tests/perf/should_run/all.T
+++ b/testsuite/tests/perf/should_run/all.T
@@ -273,7 +273,7 @@ test('T9339',
only_ways(['normal'])],
compile_and_run,
['-O2 -fspec-constr-keen'])
- # For the -fspec-constr-keen see Note [Making SpecConstr keener] in SpecConstr
+ # For the -fspec-constr-keen see Note [Making SpecConstr keener] in GHC.Core.Op.SpecConstr
test('T8472',
diff --git a/testsuite/tests/polykinds/T10934.hs b/testsuite/tests/polykinds/T10934.hs
index 35ea20f225..91d874cde7 100644
--- a/testsuite/tests/polykinds/T10934.hs
+++ b/testsuite/tests/polykinds/T10934.hs
@@ -7,7 +7,7 @@
, PolyKinds -- Comment out PolyKinds and the bug goes away.
#-}
{-# OPTIONS_GHC -O #-}
- -- The bug is in SimplUtils.abstractFloats, so we need -O to trigger it
+ -- The bug is in GHC.Core.Op.Simplify.Utils.abstractFloats, so we need -O to trigger it
module KeyValue where
diff --git a/testsuite/tests/simplCore/should_compile/T14270a.hs b/testsuite/tests/simplCore/should_compile/T14270a.hs
index d8cc497f62..1f90993d5d 100644
--- a/testsuite/tests/simplCore/should_compile/T14270a.hs
+++ b/testsuite/tests/simplCore/should_compile/T14270a.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE TypeApplications, ScopedTypeVariables, GADTs, RankNTypes,
PolyKinds, KindSignatures #-}
-{-# OPTIONS_GHC -O2 #-} -- We are provoking a bug in SpecConstr
+{-# OPTIONS_GHC -O2 #-} -- We are provoking a bug in GHC.Core.Op.SpecConstr
module T14270a where
@@ -25,4 +25,4 @@ g kv x = case kv of
-- The point here is that the call to f looks like
-- f @(a |> co) (T2 @(a |> co))
-- where 'co' is bound by the pattern match on K1
--- See Note [SpecConstr and casts] in SpecConstr
+-- See Note [SpecConstr and casts] in GHC.Core.Op.SpecConstr
diff --git a/testsuite/tests/simplCore/should_compile/T3831.hs b/testsuite/tests/simplCore/should_compile/T3831.hs
index 9eeb0a20c4..163f610a2e 100644
--- a/testsuite/tests/simplCore/should_compile/T3831.hs
+++ b/testsuite/tests/simplCore/should_compile/T3831.hs
@@ -2,7 +2,7 @@
{-# LANGUAGE ScopedTypeVariables, FlexibleInstances #-}
-- This test has a deep nest of join points, which led to
--- an exponential blow-up in SpecConstr
+-- an exponential blow-up in GHC.Core.Op.SpecConstr
module T3831(setAttributes) where
diff --git a/testsuite/tests/simplCore/should_compile/simpl018.hs b/testsuite/tests/simplCore/should_compile/simpl018.hs
index 613c612c25..75d19b9d8c 100644
--- a/testsuite/tests/simplCore/should_compile/simpl018.hs
+++ b/testsuite/tests/simplCore/should_compile/simpl018.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE UnboxedTuples #-}
--- See Note [Float coercions (unlifted)] in Simplify
+-- See Note [Float coercions (unlifted)] in GHC.Core.Op.Simplify
-- This one gave a CoreLint error when compiled optimised
--
-- See also #1718, of which this is a simplified version
diff --git a/testsuite/tests/simplCore/should_compile/spec002.hs b/testsuite/tests/simplCore/should_compile/spec002.hs
index 106debc0c1..619bf274c7 100644
--- a/testsuite/tests/simplCore/should_compile/spec002.hs
+++ b/testsuite/tests/simplCore/should_compile/spec002.hs
@@ -1,6 +1,6 @@
{-# OPTIONS_GHC -O2 #-}
--- Ths one fooled the rule-matching in SpecConstr, and gave a CoreLint error
+-- Ths one fooled the rule-matching in GHC.Core.Op.SpecConstr, and gave a CoreLint error
module Foo where
diff --git a/testsuite/tests/simplCore/should_run/simplrun007.hs b/testsuite/tests/simplCore/should_run/simplrun007.hs
index 9cf3760adf..6940e8d546 100644
--- a/testsuite/tests/simplCore/should_run/simplrun007.hs
+++ b/testsuite/tests/simplCore/should_run/simplrun007.hs
@@ -1,6 +1,6 @@
{-# LANGUAGE MagicHash #-}
--- Actually, this exercises prelude/PrelRules, but this is the closest
+-- Actually, this exercises GHC.Core.Op.ConstantFold, but this is the closest
-- place I could find to put it...
import GHC.Exts
diff --git a/testsuite/tests/simplCore/should_run/simplrun009.hs b/testsuite/tests/simplCore/should_run/simplrun009.hs
index 0e94012b2b..4ae0d2f255 100644
--- a/testsuite/tests/simplCore/should_run/simplrun009.hs
+++ b/testsuite/tests/simplCore/should_run/simplrun009.hs
@@ -6,7 +6,7 @@
-- It produces a nested unfold that should look something
-- like the code below. Note the 'lvl1_shW'. It is BAD
-- if this is a lambda instead; you get a lot more allocation
--- See Note [Escaping a value lambda] in SetLevels
+-- See Note [Escaping a value lambda] in GHC.Core.Op.SetLevels
{-
diff --git a/testsuite/tests/stranal/should_compile/T10482a.hs b/testsuite/tests/stranal/should_compile/T10482a.hs
index 2f5a0e0665..b9e5351587 100644
--- a/testsuite/tests/stranal/should_compile/T10482a.hs
+++ b/testsuite/tests/stranal/should_compile/T10482a.hs
@@ -2,7 +2,7 @@
{-# OPTIONS_GHC -fno-unbox-small-strict-fields #-}
-- Makes f2 a bit more challenging
--- Tests inspired by Note [CPR examples] in DmdAnal, and #10482
+-- Tests inspired by Note [CPR examples] in GHC.Core.Op.DmdAnal, and #10482
module Foo where
diff --git a/testsuite/tests/stranal/should_run/strun003.hs b/testsuite/tests/stranal/should_run/strun003.hs
index 3240ab272a..90594a5c40 100644
--- a/testsuite/tests/stranal/should_run/strun003.hs
+++ b/testsuite/tests/stranal/should_run/strun003.hs
@@ -2,7 +2,7 @@
-- But it won't if the strictness analyser thinks that 'len' is use
-- strictly, which was the case in GHC 6.0
--- See the io_hack_reqd in DmdAnal.lhs
+-- See the io_hack_reqd in GHC.Core.Op.DmdAnal
module Main where