Skip to content
Snippets Groups Projects
  1. Jun 27, 2019
  2. Jun 26, 2019
  3. Jun 25, 2019
  4. Jun 24, 2019
  5. Jun 23, 2019
    • Ryan Scott's avatar
      Refactor UnliftedNewtypes-relation kind signature validity checks · 9bbcc3be
      Ryan Scott authored and Marge Bot's avatar Marge Bot committed
      This fixes three infelicities related to the programs that are
      (and aren't) accepted with `UnliftedNewtypes`:
      
      * Enabling `UnliftedNewtypes` would permit newtypes to have return
        kind `Id Type`, which had disastrous results (i.e., GHC panics).
      * Data family declarations ending in kind `TYPE r` (for some `r`)
        weren't being accepted if `UnliftedNewtypes` wasn't enabled,
        despite the GHC proposal specifying otherwise.
      * GHC wasn't warning about programs that _would_ typecheck if
        `UnliftedNewtypes` were enabled in certain common cases.
      
      As part of fixing these issues, I factored out the logic for checking
      all of the various properties about data type/data family return
      kinds into a single `checkDataKindSig` function. I also cleaned up
      some of the formatting in the existing error message that gets
      thrown.
      
      Fixes #16821, fixes #16827, and fixes #16829.
      9bbcc3be
    • Ben Gamari's avatar
      ghci: Load static objects in batches · 5a502cd1
      Ben Gamari authored and Marge Bot's avatar Marge Bot committed
      Previously in the case where GHC was dynamically linked we would load
      static objects one-by-one by linking each into its own shared object and
      dlopen'ing each in order. However, this meant that the link would fail
      in the event that the objects had cyclic symbol dependencies.
      
      Here we fix this by merging each "run" of static objects into a single
      shared object and loading this.
      
      Fixes #13786 for the case where GHC is dynamically linked.
      5a502cd1
    • Ben Gamari's avatar
      testsuite: Test for #13786 · ade3db53
      Ben Gamari authored and Marge Bot's avatar Marge Bot committed
      ade3db53
  6. Jun 22, 2019
    • Ben Gamari's avatar
      testsuite: Add caf_crash testcase · 1f2fff89
      Ben Gamari authored and Marge Bot's avatar Marge Bot committed
      1f2fff89
    • Ben Gamari's avatar
      rts: Reset STATIC_LINK field of reverted CAFs · b0d6bf2a
      Ben Gamari authored and Marge Bot's avatar Marge Bot committed
      When we revert a CAF we must reset the STATIC_LINK field lest the GC
      might ignore the CAF (e.g. as it carries the STATIC_FLAG_LIST flag) and
      will consequently overlook references to object code that we are trying
      to unload. This would result in the reachable object code being
      unloaded. See Note [CAF lists] and Note [STATIC_LINK fields].
      
      This fixes #16842.
      
      Idea-due-to: Phuong Trinh <lolotp@fb.com>
      b0d6bf2a
Loading