Skip to content
Snippets Groups Projects
  1. Nov 09, 2023
  2. Nov 07, 2023
  3. Nov 06, 2023
  4. Nov 05, 2023
  5. Nov 03, 2023
    • Vladislav Zavialov's avatar
      T2T in Expressions (#23738) · 0dfb1fa7
      Vladislav Zavialov authored and Marge Bot's avatar Marge Bot committed
      This patch implements the T2T (term-to-type) transformation in
      expressions. Given a function with a required type argument
      	vfun :: forall a -> ...
      
      the user can now call it as
      	vfun (Maybe Int)
      
      instead of
      	vfun (type (Maybe Int))
      
      The Maybe Int argument is parsed and renamed as a term (HsExpr), but then
      undergoes a conversion to a type (HsType).
      See the new function expr_to_type in compiler/GHC/Tc/Gen/App.hs
      and Note [RequiredTypeArguments and the T2T mapping]
      
      Left as future work: checking for puns.
      0dfb1fa7
    • Jaro Reinders's avatar
      Add NCG support for common 64bit operations to the x86 backend. · 6755d833
      Jaro Reinders authored and Andreas Klebinger's avatar Andreas Klebinger committed
      These used to be implemented via C calls which was obviously quite bad
      for performance for operations like simple addition.
      
      Co-authored-by: Andreas Klebinger
      6755d833
  6. Nov 02, 2023
    • Matthew Pickering's avatar
      Compatibility with 9.8.1 as boot compiler · ef3d20f8
      Matthew Pickering authored and Marge Bot's avatar Marge Bot committed
      This fixes several compatability issues when using 9.8.1 as the boot
      compiler.
      
      * An incorrect version guard on the stack decoding logic in ghc-heap
      * Some ghc-prim bounds need relaxing
      * ghc is no longer wired in, so we have to remove the -this-unit-id ghc
        call.
      
      Fixes #24077
      ef3d20f8
    • Matthew Pickering's avatar
      ci: Add 9.8.1 bootstrap testing job · 00b9b8d3
      Matthew Pickering authored and Marge Bot's avatar Marge Bot committed
      00b9b8d3
    • Matthew Pickering's avatar
      hadrian: Update bootstrap plans (9.4.6, 9.4.7, 9.6.2, 9.6.3, 9.8.1) · 362cc693
      Matthew Pickering authored and Marge Bot's avatar Marge Bot committed
      Updating the bootstrap plans with more recent GHC versions.
      362cc693
    • Rodrigo Mesquita's avatar
      Fix in docs regarding SSymbol, SNat, SChar (#24119) · 03e82511
      Rodrigo Mesquita authored and Marge Bot's avatar Marge Bot committed
      03e82511
    • Alan Zimmerman's avatar
      EPA: Use full range for Anchor · 81fb8885
      Alan Zimmerman authored and Marge Bot's avatar Marge Bot committed
      This change requires a series of related changes, which must all land
      at the same time, otherwise all the EPA tests break.
      
      * Use the current Anchor end as prior end
      
        Use the original anchor location end as the source of truth for
        calculating print deltas.
      
        This allows original spacing to apply in most cases, only changed
        AST items need initial delta positions.
      
      * Add DArrow to TrailingAnn
      
      * EPA Introduce HasTrailing in ExactPrint
      
         Use [TrailingAnn] in enterAnn and remove it from
         ExactPrint (LocatedN RdrName)
      
      * In HsDo, put TrailingAnns at top of LastStmt
      
      * EPA: do not convert comments to deltas when balancing.
      
      * EPA: deal with fallout from getMonoBind
      
      * EPA fix captureLineSpacing
      
      * EPA print any comments in the span before exiting it
      
      * EPA: Add comments to AnchorOperation
      
      * EPA: remove AnnEofComment, it is no longer used
      
      Updates Haddock submodule
      81fb8885
  7. Nov 01, 2023
    • Sylvain Henry's avatar
      JS: fix FFI "wrapper" and "dynamic" · 575d7690
      Sylvain Henry authored and Marge Bot's avatar Marge Bot committed
      Fix codegen and helper functions for "wrapper" and "dynamic" foreign
      imports.
      
      Fix tests:
      - ffi006
      - ffi011
      - T2469
      - T4038
      
      Related to #22363
      575d7690
    • Ryan Scott's avatar
      More robust checking for DataKinds · 9f9c9227
      Ryan Scott authored and Marge Bot's avatar Marge Bot committed
      As observed in #22141, GHC was not doing its due diligence in catching code
      that should require `DataKinds` in order to use. Most notably, it was allowing
      the use of arbitrary data types in kind contexts without `DataKinds`, e.g.,
      
      ```hs
      data Vector :: Nat -> Type -> Type where
      ```
      
      This patch revamps how GHC tracks `DataKinds`. The full specification is
      written out in the `DataKinds` section of the GHC User's Guide, and the
      implementation thereof is described in `Note [Checking for DataKinds]` in
      `GHC.Tc.Validity`. In brief:
      
      * We catch _type_-level `DataKinds` violations in the renamer. See
        `checkDataKinds` in `GHC.Rename.HsType` and `check_data_kinds` in
        `GHC.Rename.Pat`.
      
      * We catch _kind_-level `DataKinds` violations in the typechecker, as this
        allows us to catch things that appear beneath type synonyms. (We do *not*
        want to do this in type-level contexts, as it is perfectly fine for a type
        synonym to mention something that requires DataKinds while still using the
        type synonym in a module that doesn't enable DataKinds.) See `checkValidType`
        in `GHC.Tc.Validity`.
      
      * There is now a single `TcRnDataKindsError` that classifies all manner of
        `DataKinds` violations, both in the renamer and the typechecker. The
        `NoDataKindsDC` error has been removed, as it has been subsumed by
        `TcRnDataKindsError`.
      
      * I have added `CONSTRAINT` is `isKindTyCon`, which is what checks for illicit
        uses of data types at the kind level without `DataKinds`. Previously,
        `isKindTyCon` checked for `Constraint` but not `CONSTRAINT`. This is
        inconsistent, given that both `Type` and `TYPE` were checked by `isKindTyCon`.
        Moreover, it thwarted the implementation of the `DataKinds` check in
        `checkValidType`, since we would expand `Constraint` (which was OK without
        `DataKinds`) to `CONSTRAINT` (which was _not_ OK without `DataKinds`) and
        reject it. Now both are allowed.
      
      * I have added a flurry of additional test cases that test various corners of
        `DataKinds` checking.
      
      Fixes #22141.
      9f9c9227
    • Matthew Pickering's avatar
      ci: Run aarch64 llvm backend job with "LLVM backend" label · 5b0392e0
      Matthew Pickering authored and Marge Bot's avatar Marge Bot committed
      This brings it into line with the x86 LLVM backend job.
      5b0392e0
    • Ben Gamari's avatar
      gitlab-ci: Bump LLVM bootstrap jobs to Debian 12 · 73c191c0
      Ben Gamari authored and Marge Bot's avatar Marge Bot committed
      As the Debian 10 images have too old an LLVM.
      
      Addresses #24056.
      73c191c0
    • Krzysztof Gogolewski's avatar
      Fix pretty-printing of type family dependencies · 49f69f50
      Krzysztof Gogolewski authored and Marge Bot's avatar Marge Bot committed
      "where" should be after the injectivity annotation.
      49f69f50
    • Krzysztof Gogolewski's avatar
      docs: fix ScopedTypeVariables example (#24101) · 7a90020f
      Krzysztof Gogolewski authored and Marge Bot's avatar Marge Bot committed
      The previous example didn't compile.
      
      Furthermore, it wasn't demonstrating the point properly.
      I have changed it to an example which shows that 'a' in the signature
      must be the same 'a' as in the instance head.
      7a90020f
  8. Oct 31, 2023
  9. Oct 28, 2023
  10. Oct 27, 2023
  11. Oct 26, 2023
  12. Oct 24, 2023
    • Cheng Shao's avatar
      testsuite: increase timeout of ghc-api tests for wasm32 · 07ab5cc1
      Cheng Shao authored and Marge Bot's avatar Marge Bot committed
      ghc-api tests for wasm32 are more likely to timeout due to the large
      wasm module sizes, especially when testing with wasm native tail
      calls, given wasmtime's handling of tail call opcodes are suboptimal
      at the moment. It makes sense to increase timeout specifically for
      these tests on wasm32. This doesn't affect other targets, and for
      wasm32 we don't increase timeout for all tests, so not to risk letting
      major performance regressions slip through the testsuite.
      07ab5cc1
    • Josh Meredith's avatar
      4d075924
  13. Oct 23, 2023
Loading