- 10 Jul, 2010 2 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- 09 Jul, 2010 3 commits
-
-
Ian Lynagh authored
-
Simon Marlow authored
-
Simon Marlow authored
-
- 08 Jul, 2010 3 commits
-
-
Simon Marlow authored
As discussed on the libraries/haskell-cafe mailing lists http://www.haskell.org/pipermail/libraries/2010-April/013420.html This is a replacement for block/unblock in the asychronous exceptions API to fix a problem whereby a function could unblock asynchronous exceptions even if called within a blocked context. The new terminology is "mask" rather than "block" (to avoid confusion due to overloaded meanings of the latter). In GHC, we changed the names of some primops: blockAsyncExceptions# -> maskAsyncExceptions# unblockAsyncExceptions# -> unmaskAsyncExceptions# asyncExceptionsBlocked# -> getMaskingState# and added one new primop: maskUninterruptible# See the accompanying patch to libraries/base for the API changes.
-
Simon Marlow authored
-
Simon Marlow authored
-
- 16 Jun, 2010 1 commit
-
-
Simon Marlow authored
-
- 08 Jul, 2010 3 commits
-
-
Simon Marlow authored
QueryPerformanceCounter() on Windows gives much better resolution than GetSystemTimeAsFileTime().
-
Sergei Trofimovich authored
I tried to build ghc-6.12.3 and found out FIW part of code does not compile anymore. It uses absent functions under #ifdef. Instead of fixing it I just switched to libffi. Result built successfully and passed 'foreign import wrapper' test I wrote for trac ticket #3516. I didn't try to build -HEAD yet, but this patch only removes code, so it should not make -HEAD worse.
-
Ian Lynagh authored
-
- 07 Jul, 2010 4 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
dterei authored
-
Ian Lynagh authored
-
- 06 Jul, 2010 1 commit
-
-
Ian Lynagh authored
This also means that extsBitmap gets set, whereas is was just being set to 0 before.
-
- 07 Jul, 2010 2 commits
- 06 Jul, 2010 2 commits
-
-
Ian Lynagh authored
-
Ian Lynagh authored
-
- 05 Jul, 2010 5 commits
-
-
dterei authored
This is already handled by the Cmm code generator so LLVM is simply duplicating work. LLVM also doesn't know which ones are actually live so saves them all which causes a fair performance overhead for C calls on x64. We stop llvm saving them across the call by storing undef to them just before the call.
-
dterei authored
-
dterei authored
Patch from Erik de Castro Lopo <erikd@mega-nerd.com>.
-
Simon Marlow authored
-
Simon Marlow authored
To improve performance of the RTS when dynamically linked on x86, I previously disabled -fPIC for certain critical modules (the GC, and a few others). However, build reports suggest that the dynamic linker on OS X doesn't like this, so I'm disabling this optimsation on that platform.
-
- 25 Jun, 2010 1 commit
-
-
amsay@amsay.net authored
'import' syntax is seperate from ':module' syntax
-
- 04 Jul, 2010 2 commits
-
-
Ian Lynagh authored
We no longer support building with a compiler that doesn't come with base 4.
-
Ian Lynagh authored
-
- 01 Jul, 2010 1 commit
-
-
Ian Lynagh authored
-
- 02 Jul, 2010 1 commit
-
-
dterei authored
-
- 01 Jul, 2010 2 commits
-
-
Simon Marlow authored
Noticed by Henrique Ferreiro <hferreiro@udc.es>, thanks!
-
dterei authored
-
- 30 Jun, 2010 2 commits
-
-
Simon Marlow authored
-
dterei authored
LLVM supports creating pointers in two ways, firstly through pointer arithmetic (by casting between pointers and ints) and secondly using the getelementptr instruction. The second way is preferable as it gives LLVM more information to work with. This patch changes a lot of pointer related code from the first method to the getelementptr method.
-
- 25 Jun, 2010 1 commit
-
-
Simon Marlow authored
-
- 29 Jun, 2010 1 commit
-
-
benl@ouroborus.net authored
-
- 28 Jun, 2010 3 commits