Skip to content
Snippets Groups Projects
This project is mirrored from https://gitlab.haskell.org/ghc/ghc.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Nov 30, 2023
  2. Nov 29, 2023
  3. Nov 28, 2023
  4. Nov 27, 2023
    • Alan Zimmerman's avatar
      EPA: Remove SrcSpanAnn · 4e5ff6a4
      Alan Zimmerman authored and Marge Bot's avatar Marge Bot committed
      Now that we only have a single constructor for EpAnn, And it uses a
      SrcSpan for its location, we can do away with SrcSpanAnn completely.
      It only existed to wrap the original SrcSpan in a location, and
      provide a place for the exact print annotation.
      
      For darwin only:
      Metric Increase:
          MultiLayerModulesTH_OneShot
      
      Updates haddock submodule
      4e5ff6a4
    • ARATA Mizuki's avatar
      x86: Don't require -mavx2 when using 256-bit floating-point SIMD primitives · 7d9a2e44
      ARATA Mizuki authored and Marge Bot's avatar Marge Bot committed
      Fixes #24222
      7d9a2e44
    • Matthew Pickering's avatar
      testsuite: Add mechanism to collect generic metrics · b5213542
      Matthew Pickering authored and Marge Bot's avatar Marge Bot committed
      * Generalise the metric logic by adding an additional field which
        allows you to specify how to query for the actual value. Previously
        the method of querying the baseline value was abstracted (but always
        set to the same thing).
      
      * This requires rejigging how the stat collection works slightly but now
        it's more uniform and hopefully simpler.
      
      * Introduce some new "generic" helper functions for writing generic
        stats tests.
      
        - collect_size ( deviation, path )
          Record the size of the file as a metric
      
        - stat_from_file ( metric, deviation, path )
          Read a value from the given path, and store that as a metric
      
        - collect_generic_stat ( metric, deviation, get_stat)
          Provide your own `get_stat` function, `lambda way: <Int>`, which
          can be used to establish the current value of the metric.
      
        - collect_generic_stats ( metric_info ):
          Like collect_generic_stat but provide the whole dictionary of metric
          definitions.
      
          { metric: {
              deviation: <Int>
              current: lambda way: <Int>
              } }
      
      * Introduce two new "size" metrics for keeping track of build products.
          - `size_hello_obj` - The size of `hello.o` from compiling hello.hs
          - `libdir` - The total size of the `libdir` folder.
      
      * Track the number of modules in the AST tests
         - CountDepsAst
         - CountDepsParser
      
      This lays the infrastructure for #24191 #22256 #17129
      b5213542
  5. Nov 26, 2023
    • Vladislav Zavialov's avatar
      Update Note [hsScopedTvs and visible foralls] · da863d15
      Vladislav Zavialov authored and Marge Bot's avatar Marge Bot committed
      The Note was written before GHC gained support for visible forall in
      types of terms. Rewrite a few sentences and use a better example.
      da863d15
    • Vladislav Zavialov's avatar
      Term variable capture (#23740) · d1bf25c7
      Vladislav Zavialov authored and Marge Bot's avatar Marge Bot committed
      This patch changes type variable lookup rules (lookupTypeOccRn) and
      implicit quantification rules (filterInScope) so that variables bound
      in the term namespace can be captured at the type level
      
        {-# LANGUAGE RequiredTypeArguments #-}
        f1 x = g1 @x                -- `x` used in a type application
        f2 x = g2 (undefined :: x)  -- `x` used in a type annotation
        f3 x = g3 (type x)          -- `x` used in an embedded type
        f4 x = ...
          where g4 :: x -> x        -- `x` used in a type signature
                g4 = ...
      
      This change alone does not allow us to accept examples shown above,
      but at least it gets them past the renamer.
      d1bf25c7
    • Mario's avatar
      Bumped the upper bound of text to <2.2 · 471b2672
      Mario authored and Marge Bot's avatar Marge Bot committed
      471b2672
    • Alan Zimmerman's avatar
      EPA: Remove EpAnnNotUsed · 7902ebf8
      Alan Zimmerman authored and Marge Bot's avatar Marge Bot committed
      We no longer need the EpAnnNotUsed constructor for EpAnn, as we can
      represent an unused annotation with an anchor having a EpaDelta of
      zero, and empty comments and annotations.
      
      This simplifies code handling annotations considerably.
      
      Updates haddock submodule
      
      Metric Increase:
          parsing001
      7902ebf8
    • Vladislav Zavialov's avatar
      Add name for -Wdeprecated-type-abstractions (#24154) · 3ede659d
      Vladislav Zavialov authored and Marge Bot's avatar Marge Bot committed
      This warning had no name or flag and was triggered unconditionally.
      Now it is part of -Wcompat.
      3ede659d
  6. Nov 24, 2023
    • Alan Zimmerman's avatar
      EPA: Remove parenthesizeHsType · 34d86315
      Alan Zimmerman authored and Marge Bot's avatar Marge Bot committed
      This is called from PostProcess.hs, and adds spurious parens.
      With the looser version of exact printing we had before we could
      tolerate this, as they would be swallowed by the original at the same
      place.
      
      But with the next change (remove EpAnnNotUsed) they result in
      duplicates in the output.
      
      For Darwin build:
      
      Metric Increase:
          MultiLayerModulesTH_OneShot
      34d86315
    • Andreas Klebinger's avatar
      Fix FMA primops generating broken assembly on x86. · fa576eb8
      Andreas Klebinger authored and Marge Bot's avatar Marge Bot committed
      `genFMA3Code` assumed that we had to take extra precations to avoid overwriting
      the result of `getNonClobberedReg`. One of these special cases caused a bug resulting
      in broken assembly.
      
      I believe we don't need to hadle these cases specially at all, which means this MR simply
      deletes the special cases to fix the bug.
      
      Fixes #24160
      fa576eb8
  7. Nov 23, 2023
    • Alan Zimmerman's avatar
      EPA: empty tup_tail has noAnn · d2733a05
      Alan Zimmerman authored and Marge Bot's avatar Marge Bot committed
      In Parser.y, the tup_tail rule had the following option
                | {- empty -} %shift   { return [Left noAnn] }
      
      Once this works through PostProcess.hs, it means we add an extra
      Missing constructor if the last item was a comma.
      
      Change the annotation type to a Bool to indicate this, and use the
      EpAnn Anchor for the print location for the others.
      d2733a05
    • BinderDavid's avatar
      Unify the hpc testsuites · 121c9ab7
      BinderDavid authored and Marge Bot's avatar Marge Bot committed
      The hpc testsuite was split between testsuite/tests/hpc
      and the submodule libraries/hpc/test. This commit unifies
      the two testsuites in the GHC repository in the directory
      testsuite/tests/hpc.
      121c9ab7
  8. Nov 22, 2023
  9. Nov 21, 2023
  10. Nov 20, 2023
  11. Nov 18, 2023
    • Alan Zimmerman's avatar
      EPA: Replace Monoid with NoAnn · 615441ef
      Alan Zimmerman authored and Marge Bot's avatar Marge Bot committed
      Remove the final Monoid instances in the exact print infrastructure.
      
      For Windows CI
      
      Metric Decrease:
          T5205
      615441ef
    • Sven Tennie's avatar
      AArch64: Remove unused instructions · 856e0a4e
      Sven Tennie authored and Marge Bot's avatar Marge Bot committed
      As these aren't ever emitted, we don't even know if they work or will
      ever be used. If one of them is needed in future, we may easily re-add
      it.
      
      Deleted instructions are:
      - CMN
      - ANDS
      - BIC
      - BICS
      - EON
      - ORN
      - ROR
      - TST
      - STP
      - LDP
      - DMBSY
      856e0a4e
  12. Nov 17, 2023
  13. Nov 16, 2023
    • Krzysztof Gogolewski's avatar
      Fix IPE test · 3e606230
      Krzysztof Gogolewski authored and Marge Bot's avatar Marge Bot committed
      A helper function was defined in a different module than used.
      To reproduce: ./hadrian/build test --test-root-dirs=testsuite/tests/rts/ipe
      3e606230
    • Sylvain Henry's avatar
      Fix unusable units and module reexport interaction (#21097) · cee81370
      Sylvain Henry authored and Marge Bot's avatar Marge Bot committed
      This commit fixes an issue with ModUnusable introduced in df0f148f.
      
      In mkUnusableModuleNameProvidersMap we traverse the list of unusable
      units and generate ModUnusable origin for all the modules they contain:
      exposed modules, hidden modules, and also re-exported modules. To do
      this we have a two-level map:
      
        ModuleName -> Unit:ModuleName (aka Module) -> ModuleOrigin
      
      So for each module name "M" in broken unit "u" we have:
        "M" -> u:M -> ModUnusable reason
      
      However in the case of module reexports we were using the *target*
      module as a key. E.g. if "u:M" is a reexport for "X" from unit "o":
         "M" -> o:X -> ModUnusable reason
      
      Case 1: suppose a reexport without module renaming (u:M -> o:M) from
      unusable unit u:
         "M" -> o:M -> ModUnusable reason
      
      Here it's claiming that the import of M is unusable because a reexport
      from u is unusable. But if unit o isn't unusable we could also have in
      the map:
         "M" -> o:M -> ModOrigin ...
      
      Issue: the Semigroup instance of ModuleOrigin doesn't handle the case
      (ModUnusable <> ModOrigin)
      
      Case 2: similarly we could have 2 unusable units reexporting the same module
      without renaming, say (u:M -> o:M) and (v:M -> o:M) with u and v
      unusable. It gives:
      
        "M" -> o:M -> ModUnusable ... (for u)
        "M" -> o:M -> ModUnusable ... (for v)
      
      Issue: the Semigroup instance of ModuleOrigin doesn't handle the case
      (ModUnusable <> ModUnusable).
      
      This led to #21097, #16996, #11050.
      
      To fix this, in this commit we make ModUnusable track whether the module
      used as key is a reexport or not (for better error messages) and we use
      the re-export module as key. E.g. if "u:M" is a reexport for "o:X" and u
      is unusable, we now record:
      
          "M" -> u:M -> ModUnusable reason reexported=True
      
      So now, we have two cases for a reexport u:M -> o:X:
         - u unusable: "M" -> u:M -> ModUnusable ... reexported=True
         - u usable:   "M" -> o:X -> ModOrigin   ... reexportedFrom=u:M
      
      The second case is indexed with o:X because in this case the Semigroup
      instance of ModOrigin is used to combine valid expositions of a module
      (directly or via reexports).
      
      Note that module lookup functions select usable modules first (those who
      have a ModOrigin value), so it doesn't matter if we add new ModUnusable
      entries in the map like this:
      
        "M" -> {
          u:M -> ModUnusable ... reexported=True
          o:M -> ModOrigin ...
        }
      
      The ModOrigin one will be used. Only if there is no ModOrigin or
      ModHidden entry will the ModUnusable error be printed. See T21097 for an
      example printing several reasons why an import is unusable.
      cee81370
    • Simon Peyton Jones's avatar
      Second fix to #24083 · 2776920e
      Simon Peyton Jones authored and Marge Bot's avatar Marge Bot committed
      My earlier fix turns out to be too aggressive for data/type families
      
      See wrinkle (DTV1) in Note [Disconnected type variables]
      2776920e
Loading