3. Release notes for version 8.10.1¶
The significant changes to the various parts of the compiler are listed in the following sections.
3.1. Highlights¶
The
UnliftedNewtypesextension, allowingnewtypes to be wrap types of kind other thanType.The
StandaloneKindSignaturesextension, allowing explicit signatures on type constructors.A new,
low-latency garbage collectorfor the oldest generation.
3.2. Full details¶
3.2.1. Language¶
Kind variables are no longer implicitly quantified when an explicit
forallis used, see GHC proposal #24.-Wimplicit-kind-varsis now obsolete.Kind variables are no longer implicitly quantified in constructor declarations:
data T a = T1 (S (a :: k)) | forall (b::k). T2 (S b) -- no longer accepted data T (a :: k) = T1 (S (a :: k)) | forall (b::k). T2 (S b) -- still accepted
Implicitly quantified kind variables are no longer put in front of other variables:
f :: Proxy (a :: k) -> Proxy (b :: j) ghci> :t +v f -- old order: f :: forall k j (a :: k) (b :: j). Proxy a -> Proxy b ghci> :t +v f -- new order: f :: forall k (a :: k) j (b :: j). Proxy a -> Proxy b
This is a breaking change for users of
TypeApplications.In type synonyms and type family equations, free variables on the RHS are no longer implicitly quantified unless used in an outermost kind annotation:
type T = Just (Nothing :: Maybe a) -- no longer accepted type T = Just Nothing :: Maybe (Maybe a) -- still accepted
A new extension
StandaloneKindSignaturesallows one to explicitly specify the kind of a type constructor, as proposed in GHC proposal #54:type TypeRep :: forall k. k -> Type data TypeRep a where TyInt :: TypeRep Int TyMaybe :: TypeRep Maybe TyApp :: TypeRep a -> TypeRep b -> TypeRep (a b)
Analogous to function type signatures, a standalone kind signature enables polymorphic recursion. This feature is a replacement for
CUSKs.Note: The finer points around this feature are subject to change. In particular, it is likely that the treatment around specified and inferred variables may change, to become more like the way term-level type signatures are handled.
GHC now parses visible, dependent quantifiers (as proposed in GHC proposal 35), such as the following:
data Proxy :: forall k -> k -> Type
See the section on explicit kind quantification for more details.
Type variables in associated type family default declarations can now be explicitly bound with a
forallwhenExplicitForAllis enabled, as in the following example:class C a where type T a b type forall a b. T a b = Either a b
This has a couple of knock-on consequences:
Wildcard patterns are now permitted on the left-hand sides of default declarations, whereas they were rejected by previous versions of GHC.
It used to be the case that default declarations supported occurrences of left-hand side arguments with higher-rank kinds, such as in the following example:
class C a where type T a (f :: forall k. k -> Type) type T a (f :: forall k. k -> Type) = f Int
This will no longer work unless
fis explicitly quantified with aforall, like so:class C a where type T a (f :: forall k. k -> Type) type forall a (f :: forall k. k -> Type). T a f = f Int
A new extension
UnliftedNewtypesthat relaxes restrictions around what kinds of types can appear inside of the data constructor for anewtype. This was proposed in GHC proposal #13.A new extension
ImportQualifiedPostallows the syntaximport M qualified, that is, to annotate a module as qualified by writingqualifiedafter the module name. This was proposed in GHC proposal #49.New flag
-Wderiving-defaultsthat controls a warning message when bothDeriveAnyClassandGeneralizedNewtypeDerivingare enabled and no explicit deriving strategy is in use. The warning is enabled by default and has been present in earlier GHC versions but without the option of disabling it. For example, this code would trigger the warning:class C a newtype T a = MkT a deriving C
GHC now performs more validity checks on inferred type signatures. One consequence of this change is that some programs that used to be accepted will no longer compile without enabling the required language extensions. For example, in these two modules:
{-# LANGUAGE RankNTypes #-} module A where foo :: (forall a. a -> a) -> b -> b foo f x = f x module B where import A bar = foo
Notice that
Aenables-XRankNTypes, butBdoes not. Previous versions of GHC would allowbarto typecheck, even though its inferred type is higher-rank. GHC 8.10 will now reject this, as one must now enable-XRankNTypesinBto accept the inferred type signature.Type family dependencies (also known as injective type families) sometimes now need
-XUndecidableInstancesin order to be accepted. Here is an example:type family F1 a = r | r -> a type family F2 a = r | r -> a type instance F2 [a] = Maybe (F1 a)
Because GHC needs to look under a type family to see that
ais determined by the right-hand side ofF2’s equation, this now needs-XUndecidableInstances. The problem is very much akin to its need to detect some functional dependencies.The pattern-match coverage checker received a number of improvements wrt. correctness and performance.
Checking against user-defined COMPLETE pragmas “just works” now, so that we could move away from the complicated procedure for disambiguation we had in place before.
Previously, the checker performed really badly on some inputs and had no good story for graceful degradation in these situations. These situations should occur much less frequently now and degradation happens much more smoothly, while still producing useful, sound results (see
-fmax-pmcheck-models=⟨n⟩).
3.2.2. Compiler¶
The
LLVM backendof this release is to be used with LLVM 9.(x86) Native code generator support for legacy x87 floating point coprocessor has been removed. From this point forth GHC will only support floating point via SSE2.
Add new flags
-Wunused-record-wildcardsand-Wredundant-record-wildcardswhich warn users when they have redundant or unused uses of a record wildcard match.Calls to
memsetandmemcpyare now unrolled more aggressively and the produced code is more efficient on x86-64 with added support for 64-bitMOVs. In particular,setByteArray#andcopyByteArray#calls that were not optimized before, now will be. See #16052.When loading modules that use
UnboxedTuplesorUnboxedSumsinto GHCi, it will now automatically enable-fobject-codefor these modules and all modules they depend on. Before this change, attempting to load these modules into the interpreter would just fail, and the only convenient workaround was to enable-fobject-codefor all modules. See the GHCi FAQ for further details.The eventlog now contains events for biographical and retainer profiling. The biographical profiling events all appear at the end of the eventlog but the sample start event contains a timestamp of when the census occurred. The retainer profiling events are emitted using the standard events.
The eventlog now records the cost centre stack on each profiler sample. This enables the
.proffile to be partially reconstructed from the eventlog.Add new flag
-fkeep-goingwhich makes the compiler continue as far as it can despite errors.Deprecated flag
-fwarn-hi-shadowingbecause it was not implemented correctly, and appears to be largely unused. This flag will be removed in a later version of GHC.Windows bindist has been updated to GCC 9.2 and binutils 2.32. These binaries have been patched to no longer have have the
MAX_PATHlimit. Windows users should no longer have any issues with long path names.Introduce
DynFlagsplugins, that allow users to modidy theDynFlagsthat GHC is going to use when processing a set of files, from plugins. They can be used for applying tiny configuration changes, registering hooks and much more. See the user guide for more details as well as an example.Deprecated flag
-fmax-pmcheck-iterationsin favor of-fmax-pmcheck-models=⟨n⟩, which uses a completely different mechanism.GHC now writes
.ofiles atomically, resulting in reduced chances of truncated files when a build is cancelled or the computer crashes.This fixes numerous bug reports in Stack and Cabal where GHC was not able to recover from such situations by itself and users reported having to clean the build directory.
Other file types are not yet written atomically. Users that observe related problems should report them on GHC issue #14533. This fix is part of the Stack initiative to get rid of persistent build errors due to non-atomic file writes across the Haskell tooling ecosystem.
3.2.3. GHC API¶
GHC’s runtime linker no longer uses global state. This allows programs that use the GHC API to safely use multiple GHC sessions in a single process, as long as there are no native dependencies that rely on global state.
In the process of making GHC’s codebase more modular, many modules have been renamed to better reflect the different phases of the compiler. See #13009. Programs that rely on the previous GHC API may use the ghc-api-compat package to make the transition to the new interface easier. The renaming process is still going on so you must expect other similar changes in the next major release.
3.2.4. GHCi¶
Added a command
:instancesto show the class instances available for a type.Added new debugger commands
:disableand:enableto disable and re-enable breakpoints.Improved command name resolution with option
!. For example,:k!resolves to:kind!.
3.2.5. Runtime system¶
The runtime system linker now marks loaded code as non-writable (see #14069) on all tier-1 platforms. This is necesaary for out-of-the-box compatibility with OpenBSD and macOS Catalina (see #17353)
The RTS API now exposes an interface to configure
EventLogWriters, allowing eventlog data to fed to sinks other than.eventlogfiles.A new
+RTSflag--disable-delayed-os-memory-returnwas added to make for accurate resident memory usage of the program as shown in memory usage reporting tools (e.g. theRSScolumn intopandhtop).This makes it easier to check the real memory usage of Haskell programs.
Using this new flag is expected to make the program slightly slower.
Without this flag, the (Linux) RTS returns unused memory “lazily” to the OS. This has making the memory available to other processes while also allowing the RTS to re-use the memory very efficiently (without zeroing pages) in case it needs it again, but common tools will incorrectly show such memory as occupied by the RTS (because they do not process the
LazyFreefield in/proc/PID/smaps).
3.2.6. Template Haskell¶
The
Lifttypeclass is now levity-polymorphic and has aliftTypedmethod. Previously disallowed instances for unboxed tuples, unboxed sums, an primitive unboxed types have also been added. Finally, the code generated byDeriveLifthas been simplified to take advantage of expression quotations.Using
TupleT 1,TupE [exp], orTupP [pat]will now produce unary tuples (i.e., involving theUnittype fromGHC.Tuple) instead of silently dropping the parentheses. This brings Template Haskell’s treatment of boxed tuples in line with that of unboxed tuples, asUnboxedTupleT`, ``UnboxedTupE, andUnboxedTupPalso produce unary unboxed tuples (i.e.,Unit#) when applied to only one argument.GHC’s constraint solver now solves constraints in each top-level group sooner. This has practical consequences for Template Haskell, as TH splices necessarily separate top-level groups. For example, the following program would compile in previous versions of GHC, but not in GHC 8.10:
data T = MkT tStr :: String tStr = show MkT $(return []) instance Show T where show MkT = "MkT"
This is because each top-level group’s constraints are solved before moving on to the next, and since the top-level group for
tStrappears before the top-level group that defines aShow Tinstance, GHC 8.10 will throw an error about a missingShow Tinstance in the expressionshow MkT. The issue can be fixed by rearranging the order of declarations. For instance, the following will compile:data T = MkT instance Show T where show MkT = "MkT" $(return []) tStr :: String tStr = show MkT
TH splices by default don’t generate warnings anymore. For example,
$([d| f :: Int -> void; f x = case x of {} |])used to generate a pattern-match exhaustivity warning, which now it doesn’t. The user can activate warnings for TH splices with-fenable-th-splice-warnings. The reason for opt-in is that the offending code might not have been generated by code the user has control over, for example thesingletonsorlenslibrary.
3.2.7. ghc-prim library¶
Add new
bitReverse#primops that, for aWordof 8, 16, 32 or 64 bits, reverse the order of its bits e.g.0b110001becomes0b100011. These primitives use optimized machine instructions when available.
3.2.8. ghc library¶
3.2.9. base library¶
3.2.10. Build system¶
Countless bug fixes in the new Hadrian build system
Hadrian now supports a simple key-value configuration language, eliminating the need for users to use Haskell to define build configuration. This should simplify life for packagers and users alike. See #16769 and the documentation in
hadrian/doc/user-settings.md.
3.3. Included libraries¶
The package database provided with this distribution also contains a number of packages other than GHC itself. See the changelogs provided with these packages for further change information.
| Package | Version | Reason for inclusion | 
|---|---|---|
ghc  | 
8.10.1 | The compiler itself  | 
Cabal  | 
3.2.0.0 | Dependency of   | 
Win32  | 
2.6.1.0 | Dependency of   | 
array  | 
0.5.4.0 | Dependency of   | 
base  | 
4.14.0.0 | Core library  | 
binary  | 
0.8.8.0 | Dependency of   | 
bytestring  | 
0.10.10.0 | Dependency of   | 
containers  | 
0.6.2.1 | Dependency of   | 
deepseq  | 
1.4.4.0 | Dependency of   | 
directory  | 
1.3.6.0 | Dependency of   | 
exceptions  | 
0.10.4 | Dependency of   | 
filepath  | 
1.4.2.1 | Dependency of   | 
ghc-boot-th  | 
8.10.1 | Internal compiler library  | 
ghc-boot  | 
8.10.1 | Internal compiler library  | 
ghc-compact  | 
0.1.0.0 | Core library  | 
ghc-heap  | 
8.10.1 | GHC heap-walking library  | 
ghc-prim  | 
0.6.1 | Core library  | 
ghci  | 
8.10.1 | The REPL interface  | 
haskeline  | 
0.8.0.0 | Dependency of   | 
hpc  | 
0.6.1.0 | Dependency of   | 
integer-gmp  | 
1.0.3.0 | Core library  | 
libiserv  | 
8.10.1 | Internal compiler library  | 
mtl  | 
2.2.2 | Dependency of   | 
parsec  | 
3.1.14.0 | Dependency of   | 
pretty  | 
1.1.3.6 | Dependency of   | 
process  | 
1.6.8.2 | Dependency of   | 
stm  | 
2.5.0.0 | Dependency of   | 
template-haskell  | 
2.16.0.0 | Core library  | 
terminfo  | 
0.4.1.4 | Dependency of   | 
text  | 
1.2.3.2 | Dependency of   | 
time  | 
1.9.3 | Dependency of   | 
transformers  | 
0.5.6.2 | Dependency of   | 
unix  | 
2.7.2.2 | Dependency of   | 
xhtml  | 
3000.2.2.1 | Dependency of   |