[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 08:39:05 UTC 2023



Marge Bot pushed to branch wip/marge_bot_batch_merge_job at Glasgow Haskell Compiler / GHC


Commits:
f1af3ed7 by Ben Gamari at 2023-12-28T03:38:41-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.

- - - - -
455181b5 by Ben Gamari at 2023-12-28T03:38:41-05:00
codeGen: Use relaxed accesses in ticky bumping

- - - - -
67a5ede6 by Ben Gamari at 2023-12-28T03:38:41-05:00
base: use atomic write when updating timer manager

- - - - -
ece7e5ed by Ben Gamari at 2023-12-28T03:38:41-05:00
Use relaxed atomics to manipulate TSO status fields

- - - - -
ef04c801 by Ben Gamari at 2023-12-28T03:38:41-05:00
rts: Add necessary barriers when manipulating TSO owner

- - - - -
fdf6e91e by Ben Gamari at 2023-12-28T03:38:41-05:00
rts: Use `switch` to branch on why_blocked

This is a semantics-preserving refactoring.

- - - - -
214e8ba3 by Ben Gamari at 2023-12-28T03:38:41-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.

- - - - -
093eb907 by Ben Gamari at 2023-12-28T03:38:41-05:00
rts: Fix data race in threadPaused

This only affects an assertion in the debug RTS and only needs relaxed
ordering.

- - - - -
30f4c187 by Ben Gamari at 2023-12-28T03:38:41-05:00
rts: Fix data race in threadStatus#

- - - - -
dc657ff1 by Ben Gamari at 2023-12-28T03:38:41-05:00
rts: Fix data race in Interpreter's preemption check

- - - - -
b79764f5 by Ben Gamari at 2023-12-28T03:38:41-05:00
rts/Messages: Fix data race

- - - - -
70e6ba09 by Ben Gamari at 2023-12-28T03:38:41-05:00
rts/Prof: Fix data race

- - - - -
91d4fe1a by Ben Gamari at 2023-12-28T03:38:41-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.

- - - - -
33c60f4f by Ben Gamari at 2023-12-28T03:38:41-05:00
codeGen: Use relaxed-read in closureInfoPtr

- - - - -
28ef73f5 by Ben Gamari at 2023-12-28T03:38:41-05:00
STM: Use acquire loads when possible

Full sequential consistency is not needed here.

- - - - -
9d65fe8d by Ben Gamari at 2023-12-28T03:38:41-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.

- - - - -
3b39a442 by Ben Gamari at 2023-12-28T03:38:41-05:00
rts: Fix data races in profiling timer

- - - - -
e9f526c9 by Ben Gamari at 2023-12-28T03:38:41-05:00
Add Note [C11 memory model]

- - - - -
aa1365d4 by Ben Gamari at 2023-12-28T03:38:42-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.

- - - - -
83768893 by Xiaoyan Ren at 2023-12-28T03:38:45-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/116780576bda7ffeeed7a160e58b79a999815e80...837688937ec99d45244ab6b25612671973779cfe

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/116780576bda7ffeeed7a160e58b79a999815e80...837688937ec99d45244ab6b25612671973779cfe
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/130bec64/attachment-0001.html>


More information about the ghc-commits mailing list