Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reinier Maas
GHC
Commits
9d34f454
Commit
9d34f454
authored
3 years ago
by
Ben Gamari
Committed by
Marge Bot
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
users guide: Various other cleanups
parent
3339ed49
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
docs/users_guide/9.0.1-notes.rst
+26
-9
26 additions, 9 deletions
docs/users_guide/9.0.1-notes.rst
docs/users_guide/using-optimisation.rst
+0
-1
0 additions, 1 deletion
docs/users_guide/using-optimisation.rst
with
26 additions
and
10 deletions
docs/users_guide/9.0.1-notes.rst
+
26
−
9
View file @
9d34f454
...
...
@@ -6,6 +6,7 @@ Version 9.0.1
The significant changes to the various parts of the compiler are listed in the
following sections.
The :ghc-flag:`LLVM backend <-fllvm>` of this release is to be used with LLVM 9.
Highlights
----------
...
...
@@ -37,25 +38,33 @@ Highlights
f True = 1
f x = ... case x of { False -> 2; True -> 3 } ...
GHC is now able to detect the case alt returning
3
as redundant.
GHC is now able to detect the case alt
ernative
returning
``3``
as redundant.
- Some more performance improvements in edge cases.
* Windows: Use the large address
space allocator.
* Windows: Use the large address
-
space allocator.
This improves runtime but causes increased memory usage on Windows versions
older than Win 8.1/Server 2012.
* Windows: New IO Manager.
A new I/O manager (WinIO) is now available as a community technical preview which is designed to allow experimentation and
bootstrapping of third-party packages such as Network. The new I/O manager is off by default and can be enabled with the
RTS flag ``--io-manager=native``. Currently the I/O manager is *unoptimized* and is focused more on correctness. There is also
no support for pipes and sockets. These will be added in the next release. `*see more* <https://www.youtube.com/watch?v=kgNh5mdZ1xw>`__.
* Big-number support
- GHC now relies on a new
"
ghc-bignum
"
package to provide Integer/Natural
- GHC now relies on a new
``
ghc-bignum
``
package to provide Integer/Natural
implementations. This package supports the following backends:
- gmp: adapted from integer-gmp package that was used before
- native: new Haskell implementation, faster than integer-simple which is
not used anymore
- gmp: adapted from integer-gmp package that was used before
- native: new Haskell implementation, faster than ``integer-simple`` which is
not used anymore
- All backends now use the same representation for big numbers (the one that
was previously used only by integer-gmp). It led to several compiler
was previously used only by
``
integer-gmp
``
). It led to several compiler
simplifications, performance improvements and bug fixes (e.g.
:ghc-ticket:`15262`, :ghc-ticket:`15286`).
...
...
@@ -63,10 +72,10 @@ Highlights
deterministic results so that they can be tested one against the other (they
can only differ in performance). As a consequence, some functions that were
only provided by integer-gmp (prime test, secure powmod, etc.) are no longer
provided by ghc-bignum. Note that other packages (e.g. hgmp) provide these
provided by ghc-bignum. Note that other packages (e.g.
``
hgmp
``
) provide these
functions.
- For now GHC still doesn't allow dynamic selection of the ghc-bignum backend
- For now GHC still doesn't allow dynamic selection of the
``
ghc-bignum
``
backend
to use.
* Breaking change: Template Haskell splices now act as separation points
...
...
@@ -237,6 +246,10 @@ Language
as ``f (-123)``, but ``x-123`` as ``(-) x 123``. Before this amendment,
:extension:`NegativeLiterals` caused ``x-123`` to be parsed as ``x(-123)``.
* GHC now requires whitespace between infix operators and their arguments in
some cases where it was not previously necessary as the result of the
:ref:`whitespace-sensitive operator parsing proposal <https://github.com/ghc-proposals/ghc-proposals/pull/229>`.
Compiler
~~~~~~~~
...
...
@@ -258,6 +271,10 @@ Compiler
GHCi
~~~~
- GHCi prompt no longer lists loaded modules.
The previous behavior can be restored with ``:set prompt "%s> "``
and ``:set prompt-cont "%s| "``.
- The ``:script`` command now allows for file names that contain spaces to
passed as arguments: either by enclosing the file names in double quotes or by
escaping spaces in file names with a backslash. (:ghc-ticket:`18027`)
...
...
This diff is collapsed.
Click to expand it.
docs/users_guide/using-optimisation.rst
+
0
−
1
View file @
9d34f454
...
...
@@ -1532,4 +1532,3 @@ by saying ``-fno-wombat``.
is used. You can disable the second approach entirely by setting the
threshold to 0.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment