| Commit message (Expand) | Author | Age | Files | Lines |
* | Warn about using quick with profilingwip/leif/hadrian-notes | Leif Metcalf | 2021-01-25 | 1 | -3/+4 |
* | Remove ioManager{Start,Die,Wakeup} from IOManager.h | Duncan Coutts | 2021-01-25 | 6 | -15/+34 |
* | Add a common wakeupIOManager hook | Duncan Coutts | 2021-01-25 | 3 | -1/+33 |
* | Replace a ioManagerDie call with stopIOManager | Duncan Coutts | 2021-01-25 | 2 | -1/+14 |
* | Replace a direct call to ioManagerStartCap with a new hook | Duncan Coutts | 2021-01-25 | 3 | -3/+48 |
* | Move hooks for I/O manager startup / shutdown into IOManager.{c,h} | Duncan Coutts | 2021-01-25 | 3 | -20/+88 |
* | Move ioManager{Start,Wakeup,Die} to internal IOManager.h | Duncan Coutts | 2021-01-25 | 7 | -14/+16 |
* | Move setIOManagerControlFd from Capability.c to IOManager.c | Duncan Coutts | 2021-01-25 | 2 | -17/+17 |
* | Start to centralise the I/O manager hooks from other bits of the RTS | Duncan Coutts | 2021-01-25 | 3 | -0/+47 |
* | Rename includes/rts/IOManager.h to IOInterface.h | Duncan Coutts | 2021-01-25 | 5 | -4/+4 |
* | Move win32/IOManager to win32/MIOManager | Duncan Coutts | 2021-01-25 | 7 | -7/+7 |
* | CoreToStg.Prep: Speculative evaluation | Sebastian Graf | 2021-01-23 | 1 | -7/+24 |
* | Track the dependencies of `GHC.Hs.Expr.Types` | John Ericson | 2021-01-23 | 9 | -57/+326 |
* | Separate AST from GhcPass (#18936) | John Ericson | 2021-01-23 | 37 | -6201/+7287 |
* | Add _validatebuild to .gitignore | Cheng Shao | 2021-01-23 | 1 | -0/+1 |
* | Bignum: add Natural constant folding rules (#15821) | Sylvain Henry | 2021-01-23 | 22 | -523/+1056 |
* | FiniteBits for some newtype instances, notes on why | Koz Ross | 2021-01-23 | 1 | -7/+25 |
* | Add headers for Data.Bits documentation | Koz Ross | 2021-01-23 | 1 | -2/+3 |
* | Add @since annotations for And, Ior, Xor, Iff type class instances | Koz Ross | 2021-01-23 | 1 | -9/+45 |
* | Implement #15993 | Koz Ross | 2021-01-23 | 6 | -648/+800 |
* | Make matchableGivens more reliably correct. | Richard Eisenberg | 2021-01-23 | 18 | -177/+282 |
* | Remove legacy comment in validate script | Cheng Shao | 2021-01-22 | 1 | -3/+0 |
* | Make DmdAnalOpts a newtype | Andreas Klebinger | 2021-01-22 | 2 | -3/+3 |
* | Force inlining of deRefStablePtr to silence warnings | Andreas Klebinger | 2021-01-22 | 1 | -2/+2 |
* | Enhance nested TransCo pretty-printing | Sylvain Henry | 2021-01-22 | 1 | -2/+5 |
* | Optimize some rts_mk/rts_get functions in RtsAPI.c | Cheng Shao | 2021-01-22 | 1 | -26/+43 |
* | CmmToC: Fix translation of Cmm literals to word sized literals | Stefan Schulze Frielinghaus | 2021-01-22 | 1 | -5/+7 |
* | Change replicateM doctest example | Oleg Grenrus | 2021-01-22 | 1 | -4/+13 |
* | gitlab-ci: Fix perf metric pushing | Ben Gamari | 2021-01-22 | 1 | -1/+1 |
* | LLVM: fix sized shift primops (#19215) | Sylvain Henry | 2021-01-22 | 1 | -10/+20 |
* | Core: introduce Alt/AnnAlt/IfaceAlt datatypes | Sylvain Henry | 2021-01-22 | 54 | -266/+281 |
* | Enhance Data instance generation | Sylvain Henry | 2021-01-22 | 3 | -12/+19 |
* | Test constant folding for sized types | John Ericson | 2021-01-22 | 7 | -0/+393 |
* | Add missing fixed-sized primops and constant folding | John Ericson | 2021-01-22 | 4 | -38/+488 |
* | Cleanup primop constant folding rules in a few ways | John Ericson | 2021-01-22 | 2 | -28/+29 |
* | C-- shift amount is always native size, not shiftee size | John Ericson | 2021-01-22 | 1 | -2/+2 |
* | Add 32-bit ops to T file I forgot to add before | John Ericson | 2021-01-22 | 1 | -5/+10 |
* | Fix tests relying on same-line diagnostic ordering | Alfredo Di Napoli | 2021-01-22 | 17 | -77/+90 |
* | Parameterise Messages over e | Alfredo Di Napoli | 2021-01-22 | 22 | -171/+275 |
* | Fix error recovery in solveEqualities | Simon Peyton Jones | 2021-01-22 | 10 | -32/+139 |
* | ghc-heap: Allow more control about decoding CCS fields | Matthew Pickering | 2021-01-22 | 5 | -15/+34 |
* | Factorize and document binder collect functions | Sylvain Henry | 2021-01-22 | 19 | -266/+284 |
* | Arrows: collect evidence binders | Sylvain Henry | 2021-01-22 | 3 | -3/+100 |
* | dataToTag#: Avoid unnecessary entry | Ben Gamari | 2021-01-22 | 1 | -18/+21 |
* | Use pointer tag in dataToTag# | Ben Gamari | 2021-01-22 | 1 | -7/+35 |
* | When deriving Eq always use tag based comparisons for nullary constructors | Andreas Klebinger | 2021-01-22 | 5 | -220/+174 |
* | Fix wrong comment about UnitState | Sylvain Henry | 2021-01-22 | 1 | -5/+1 |
* | Correct documentation in System.Mem.Weak | Cheng Shao | 2021-01-19 | 1 | -17/+11 |
* | Rectify Haddock typos for the Functor class | Hécate | 2021-01-18 | 1 | -4/+5 |
* | Add examples for Complex, (,,) and (,,,) Eq2 etc instances | Oleg Grenrus | 2021-01-18 | 1 | -0/+51 |