[Git][ghc/ghc][wip/marge_bot_batch_merge_job] 17 commits: Add -fbreak-points to control breakpoint insertion

Marge Bot (@marge-bot) gitlab at gitlab.haskell.org
Sun Jul 2 14:34:32 UTC 2023



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


Commits:
7ced40aa by Torsten Schmits at 2023-07-02T10:33:48-04:00
Add -fbreak-points to control breakpoint insertion

Rather than statically enabling breakpoints only for the interpreter,
this adds a new flag.

Tracking ticket: #23057

MR: !10466

- - - - -
6cb46e73 by Ben Gamari at 2023-07-02T10:33:49-04:00
rts: Ensure that pinned allocations respect block size

Previously, it was possible for pinned, aligned allocation requests to
allocate beyond the end of the pinned accumulator block. Specifically,
we failed to account for the padding needed to achieve the requested
alignment in the "large object" check. With large alignment requests,
this can result in the allocator using the capability's pinned object
accumulator block to service a request which is larger than
`PINNED_EMPTY_SIZE`.

To fix this we reorganize `allocatePinned` to consistently account for
the alignment padding in all large object checks. This is a bit subtle
as we must handle the case of a small allocation request filling the
accumulator block, as well as large requests.

Fixes #23400.

- - - - -
6febb594 by Ben Gamari at 2023-07-02T10:33:49-04:00
testsuite: Add test for #23400

- - - - -
f96d30b1 by Ben Gamari at 2023-07-02T10:33:51-04:00
ghc-heap: Support for BLOCKING_QUEUE closures

- - - - -
6640031a by Ben Bellick at 2023-07-02T10:33:55-04:00
Add some structured diagnostics in Tc/Validity.hs

This addresses the work of ticket #20118
Created the following constructors for TcRnMessage
 - TcRnInaccessibleCoAxBranch
 - TcRnPatersonCondFailure

- - - - -
31722a38 by Moisés Ackerman at 2023-07-02T10:34:01-04:00
Add failing test case for #23492

- - - - -
6d305860 by Moisés Ackerman at 2023-07-02T10:34:01-04:00
Use generated src span for catch-all case of record selector functions

This fixes #23492. The problem was that we used the real source span
of the field declaration for the generated catch-all case in the
selector function, in particular in the generated call to
`recSelError`, which meant it was included in the HIE output. Using
`generatedSrcSpan` instead means that it is not included.

- - - - -
9bd89e59 by Moisés Ackerman at 2023-07-02T10:34:01-04:00
Introduce genLHsApp and genLHsLit helpers in GHC.Rename.Utils

- - - - -
59b6409d by Moisés Ackerman at 2023-07-02T10:34:01-04:00
Construct catch-all default case using helpers

GHC.Rename.Utils concrete helpers instead of wrapGenSpan + HS AST constructors

- - - - -
ce0246bc by Ryan Hendrickson at 2023-07-02T10:34:07-04:00
Add regression test for #23549

- - - - -
6f1a2334 by Alexis King at 2023-07-02T10:34:18-04:00
perf tests: Increase default stack size for MultiLayerModules

An unhelpfully small stack size appears to have been the real culprit
behind the metric fluctuations in #19293. Debugging metric decreases
triggered by !10729 helped to finally identify the problem.

Metric Decrease:
    MultiLayerModules
    MultiLayerModulesTH_Make
    T13701
    T14697

- - - - -
cb6cad46 by Bryan Richter at 2023-07-02T10:34:18-04:00
Add missing void prototypes to rts functions

See #23561.

- - - - -
2e8e781b by Ben Gamari at 2023-07-02T10:34:18-04:00
gitlab-ci: Refactor compilation of gen_ci

Flakify and document it, making it far less sensitive to the build
environment.

- - - - -
6ee8add8 by Ben Gamari at 2023-07-02T10:34:19-04:00
testsuite: Update documentation
- - - - -
aa25485b by Gregory Gerasev at 2023-07-02T10:34:23-04:00
Better error for data deriving of type synonym/family. Closes #23522

- - - - -
b9c9db37 by Dave Barton at 2023-07-02T10:34:27-04:00
Fix some broken links and typos

- - - - -
7daf27c0 by Ben Gamari at 2023-07-02T10:34:28-04:00
compiler: Make OccSet opaque

- - - - -


30 changed files:

- .gitignore
- .gitlab-ci.yml
- + .gitlab/generate-ci/LICENSE
- + .gitlab/generate-ci/README.mkd
- + .gitlab/generate-ci/flake.lock
- + .gitlab/generate-ci/flake.nix
- .gitlab/gen_ci.hs → .gitlab/generate-ci/gen_ci.hs
- + .gitlab/generate-ci/generate-ci.cabal
- + .gitlab/generate-ci/generate-job-metadata
- + .gitlab/generate-ci/generate-jobs
- − .gitlab/generate_job_metadata
- − .gitlab/generate_jobs
- compiler/GHC/Driver/Backend.hs
- compiler/GHC/Driver/Config/HsToCore/Ticks.hs
- compiler/GHC/Driver/Flags.hs
- compiler/GHC/Driver/Session.hs
- compiler/GHC/HsToCore.hs
- compiler/GHC/Rename/Utils.hs
- compiler/GHC/Tc/Errors/Ppr.hs
- compiler/GHC/Tc/Errors/Types.hs
- compiler/GHC/Tc/Gen/HsType.hs
- compiler/GHC/Tc/TyCl/Utils.hs
- compiler/GHC/Tc/Utils/TcType.hs
- compiler/GHC/Tc/Validity.hs
- compiler/GHC/Types/Error/Codes.hs
- compiler/GHC/Types/Name/Occurrence.hs
- docs/users_guide/debug-info.rst
- docs/users_guide/exts/gadt.rst
- docs/users_guide/exts/pragmas.rst
- docs/users_guide/exts/type_families.rst


The diff was not included because it is too large.


View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/587a73021d8a19145ffb55c5acd46d1f2c70312d...7daf27c0c77029e58e96a4f2b9b39f9487ae0fdd

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/587a73021d8a19145ffb55c5acd46d1f2c70312d...7daf27c0c77029e58e96a4f2b9b39f9487ae0fdd
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/20230702/d7f944f2/attachment-0001.html>


More information about the ghc-commits mailing list