[Git][ghc/ghc][ghc-9.8] 7 commits: Bump unix submodule to 2.8.6.0
Ben Gamari (@bgamari)
gitlab at gitlab.haskell.org
Sat Nov 23 14:55:23 UTC 2024
Ben Gamari pushed to branch ghc-9.8 at Glasgow Haskell Compiler / GHC
Commits:
e6cc8610 by Ben Gamari at 2024-11-19T11:53:29-05:00
Bump unix submodule to 2.8.6.0
- - - - -
ea2ea2d5 by Ben Gamari at 2024-11-19T16:54:17-05:00
ghci: Don't rely on Uniques in BRK_FUN
This is a partial backport of the treatment given to modules names in
!10448, removing the dependence of BRK_FUN on the representation of
`Unique`.
- - - - -
f4f6c1cd by Jaro Reinders at 2024-11-19T16:54:17-05:00
Refactor Unique to be represented by Word64
In #22010 we established that Int was not always sufficient to store all
the uniques we generate during compilation on 32-bit platforms. This
commit addresses that problem by using Word64 instead of Int for
uniques.
The core of the change is in GHC.Core.Types.Unique and
GHC.Core.Types.Unique.Supply. However, the representation of uniques is
used in many other places, so those needed changes too. Additionally, the RTS
has been extended with an atomic_inc64 operation.
One major change from this commit is the introduction of the Word64Set and
Word64Map data types. These are adapted versions of IntSet and IntMap
from the containers package. These are planned to be upstreamed in the
future.
As a natural consequence of these changes, the compiler will be a bit
slower and take more space on 32-bit platforms. Our CI tests indicate
around a 5% residency increase.
Metric Increase:
CoOpt_Read
CoOpt_Singletons
LargeRecord
ManyAlternatives
ManyConstructors
MultiComponentModules
MultiComponentModulesRecomp
MultiLayerModulesTH_OneShot
RecordUpdPerf
T10421
T10547
T12150
T12227
T12234
T12425
T12707
T13035
T13056
T13253
T13253-spj
T13379
T13386
T13719
T14683
T14697
T14766
T15164
T15703
T16577
T16875
T17516
T18140
T18223
T18282
T18304
T18698a
T18698b
T18923
T1969
T19695
T20049
T21839c
T3064
T3294
T4801
T5030
T5321FD
T5321Fun
T5631
T5642
T5837
T6048
T783
T8095
T9020
T9198
T9233
T9630
T9675
T9872a
T9872b
T9872b_defer
T9872c
T9872d
T9961
TcPlugin_RewritePerf
UniqLoop
WWRec
hard_hole_fits
(cherry picked from commit 9edcb1fb02d799acd4a7d0c145796aecb6e54ea3)
- - - - -
1db0547d by Ben Gamari at 2024-11-20T08:59:37-05:00
hadrian: Accept unused imports in filepath
As noted in filepath#241 [1], `filepath-1.4.301.0` is not
`-Werror`-clean.
[1] https://github.com/haskell/filepath/issues/241
- - - - -
88d2ee34 by Ben Gamari at 2024-11-20T10:51:55-05:00
rel-notes: Note backport of #22010
- - - - -
e267aa7f by Ben Gamari at 2024-11-20T18:19:58-05:00
hadrian-ghci-multi: Pass -this-package-name in unit response files
As noted in #25509, the `-this-package-name` must be passed for each
package to ensure that GHC can response references to the packages'
exposed modules via package-qualified imports. Fix this.
Closes #25509.
- - - - -
1b2f40f9 by Ben Gamari at 2024-11-22T13:12:51-05:00
testsuite: Bump compile timeout of T22744
This has failed repeatedly on Darwin.
- - - - -
21 changed files:
- compiler/GHC/Builtin/Uniques.hs
- compiler/GHC/ByteCode/Asm.hs
- compiler/GHC/ByteCode/Instr.hs
- compiler/GHC/ByteCode/Types.hs
- compiler/GHC/Cmm/CommonBlockElim.hs
- compiler/GHC/Cmm/Dataflow/Collections.hs
- compiler/GHC/Cmm/Dataflow/Label.hs
- compiler/GHC/Cmm/Dominators.hs
- compiler/GHC/Cmm/LRegSet.hs
- compiler/GHC/Cmm/Sink.hs
- compiler/GHC/CmmToAsm/CFG.hs
- compiler/GHC/CmmToAsm/CFG/Dominators.hs
- compiler/GHC/CmmToAsm/Wasm/Asm.hs
- compiler/GHC/CmmToAsm/Wasm/FromCmm.hs
- compiler/GHC/CmmToAsm/Wasm/Types.hs
- compiler/GHC/CmmToLlvm/Base.hs
- compiler/GHC/Core/Opt/Monad.hs
- compiler/GHC/Core/Opt/Pipeline.hs
- compiler/GHC/Core/Opt/Simplify/Monad.hs
- compiler/GHC/Data/Graph/UnVar.hs
- + compiler/GHC/Data/Word64Map.hs
The diff was not included because it is too large.
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/f0ab92045f7d191ca9966f65f1d573884370f9db...1b2f40f996640a528c2039ec51cacc5b8c305f89
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/f0ab92045f7d191ca9966f65f1d573884370f9db...1b2f40f996640a528c2039ec51cacc5b8c305f89
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20241123/fc0cf473/attachment.html>
More information about the ghc-commits
mailing list