[Git][ghc/ghc][wip/marge_bot_batch_merge_job] 20 commits: cmm: Introduce MO_RelaxedRead
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Thu Dec 28 10:01:18 UTC 2023
Marge Bot pushed to branch wip/marge_bot_batch_merge_job at Glasgow Haskell Compiler / GHC
Commits:
1a73bed5 by Ben Gamari at 2023-12-28T05:01:03-05:00
cmm: Introduce MO_RelaxedRead
In hand-written Cmm it can sometimes be necessary to atomically load
from memory deep within an expression (e.g. see the `CHECK_GC` macro).
This MachOp provides a convenient way to do so without breaking the
expression into multiple statements.
- - - - -
b30d46d9 by Ben Gamari at 2023-12-28T05:01:03-05:00
codeGen: Use relaxed accesses in ticky bumping
- - - - -
c6fcc146 by Ben Gamari at 2023-12-28T05:01:03-05:00
base: use atomic write when updating timer manager
- - - - -
91354f41 by Ben Gamari at 2023-12-28T05:01:03-05:00
Use relaxed atomics to manipulate TSO status fields
- - - - -
b3775128 by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Add necessary barriers when manipulating TSO owner
- - - - -
d46b7d9b by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Use `switch` to branch on why_blocked
This is a semantics-preserving refactoring.
- - - - -
0c688c0a by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Fix synchronization on thread blocking state
We now use a release barrier whenever we update a thread's blocking
state. This required widening StgTSO.why_blocked as AArch64 does not
support atomic writes on 16-bit values.
- - - - -
ee36e08d by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Fix data race in threadPaused
This only affects an assertion in the debug RTS and only needs relaxed
ordering.
- - - - -
954b7282 by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Fix data race in threadStatus#
- - - - -
34c2ee01 by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Fix data race in Interpreter's preemption check
- - - - -
af4489a1 by Ben Gamari at 2023-12-28T05:01:03-05:00
rts/Messages: Fix data race
- - - - -
8e69fe59 by Ben Gamari at 2023-12-28T05:01:03-05:00
rts/Prof: Fix data race
- - - - -
a22e2b69 by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Use relaxed ordering on dirty/clean info tables updates
When changing the dirty/clean state of a mutable object we needn't have
any particular ordering.
- - - - -
d5fa75d1 by Ben Gamari at 2023-12-28T05:01:03-05:00
codeGen: Use relaxed-read in closureInfoPtr
- - - - -
35683616 by Ben Gamari at 2023-12-28T05:01:03-05:00
STM: Use acquire loads when possible
Full sequential consistency is not needed here.
- - - - -
7c770880 by Ben Gamari at 2023-12-28T05:01:03-05:00
rts: Use fence rather than redundant load
Previously we would use an atomic load to ensure acquire ordering.
However, we now have `ACQUIRE_FENCE_ON`, which allows us to express this
more directly.
- - - - -
63d7b0c3 by Ben Gamari at 2023-12-28T05:01:04-05:00
rts: Fix data races in profiling timer
- - - - -
0d4bfb9d by Ben Gamari at 2023-12-28T05:01:04-05:00
Add Note [C11 memory model]
- - - - -
acc2d715 by Ben Gamari at 2023-12-28T05:01:04-05:00
genSym: Reimplement via CAS on 32-bit platforms
Previously the remaining use of the C implementation on 32-bit platforms
resulted in a subtle bug, #24261. This was due to the C object (which
used the RTS's `atomic_inc64` macro) being compiled without `-threaded`
yet later being used in a threaded compiler.
Side-step this issue by using the pure Haskell `genSym` implementation on
all platforms. This required implementing `fetchAddWord64Addr#` in terms
of CAS on 64-bit platforms.
- - - - -
04c8eba9 by Xiaoyan Ren at 2023-12-28T05:01:06-05:00
Do not color the diagnostic code in error messages (#24172)
- - - - -
30 changed files:
- compiler/GHC/Cmm/Expr.hs
- compiler/GHC/Cmm/Info.hs
- compiler/GHC/Cmm/MachOp.hs
- compiler/GHC/Cmm/Parser.y
- compiler/GHC/Cmm/ThreadSanitizer.hs
- compiler/GHC/CmmToAsm/AArch64/CodeGen.hs
- compiler/GHC/CmmToAsm/PPC/CodeGen.hs
- compiler/GHC/CmmToAsm/Wasm/FromCmm.hs
- compiler/GHC/CmmToAsm/X86/CodeGen.hs
- compiler/GHC/CmmToC.hs
- compiler/GHC/CmmToLlvm/CodeGen.hs
- compiler/GHC/StgToCmm/Ticky.hs
- compiler/GHC/StgToCmm/Utils.hs
- compiler/GHC/Types/Error.hs
- compiler/GHC/Types/Unique/Supply.hs
- compiler/cbits/genSym.c
- compiler/jsbits/genSym.js
- libraries/base/src/GHC/Event/Thread.hs
- rts/Exception.cmm
- rts/HeapStackCheck.cmm
- rts/Interpreter.c
- rts/Messages.c
- rts/PrimOps.cmm
- rts/Proftimer.c
- rts/RaiseAsync.c
- rts/STM.c
- rts/Schedule.c
- rts/StgMiscClosures.cmm
- rts/StgStartup.cmm
- rts/ThreadPaused.c
The diff was not included because it is too large.
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/837688937ec99d45244ab6b25612671973779cfe...04c8eba9c8625ee7feadab58fc31b79c452dadca
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/837688937ec99d45244ab6b25612671973779cfe...04c8eba9c8625ee7feadab58fc31b79c452dadca
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/20231228/f4c431f1/attachment.html>
More information about the ghc-commits
mailing list