Displaying 20 results from an estimated 3000 matches similar to: "ANN: HaLVM 1.0: the Haskell Lightweight Virtual Machine"
2013 Jan 30
0
[PATCH] build: Fix haskell dependencies and parallel build
Without this change all the tests in the haskell bindings are rebuilt
every time. The primary motivation for this change is to fix this.
The fix for the above also allows parallel builds to be re-enabled.
---
haskell/Makefile.am | 56 +++++++++++++++++++++++++++++++++++++++--------------
1 file changed, 41 insertions(+), 15 deletions(-)
diff --git a/haskell/Makefile.am b/haskell/Makefile.am
2010 Feb 21
0
[LLVMdev] glasgow haskell appears to be adopting LLVM
Just to correct, the GCC back-end isn't being depreciated in favour of
the LLVM back-end (as much as I would to claim it was). The GCC back-end
has been on the list of things GHC developers wanted to remove for a
while now and the larger reason its being done now is that SSE support
has recently been added to the native code generator, fixing one of the
last advantages the C back-end had.
2010 Feb 22
2
[LLVMdev] glasgow haskell appears to be adopting LLVM
Hi David,
Your paper is linked on an LLVM site, but I can't give you the url as we are
currently down for maintenance. If I remember correctly it was under "recent papers"
off of the home site.
Garrison
On Feb 21, 2010, at 18:55, David Terei wrote:
> Just to correct, the GCC back-end isn't being depreciated in favour of
> the LLVM back-end (as much as I would to claim
2010 Feb 22
0
[LLVMdev] glasgow haskell appears to be adopting LLVM
On Feb 21, 2010, at 4:53 PM, Garrison Venn wrote:
> Hi David,
>
> Your paper is linked on an LLVM site, but I can't give you the url as we are
> currently down for maintenance. If I remember correctly it was under "recent papers"
> off of the home site.
It's here:
http://llvm.org/pubs/2009-10-TereiThesis.html
-Chris
>
> Garrison
>
> On Feb 21,
2010 Feb 20
2
[LLVMdev] glasgow haskell appears to be adopting LLVM
On Feb 19, 2010, at 13:09, Chris Lattner wrote:
> On Feb 19, 2010, at 11:33 AM, james woodyatt wrote:
>>
>> Let us all now give a warm welcome to our new Haskell comrades!
>
> Very nice, care to add a GHC entry to the LLVM Users page?
I'll prepare a patch that could be applied when the merge is formally released by the GHC developers.
—
j h woodyatt <jhw at
2010 Feb 19
0
[LLVMdev] glasgow haskell appears to be adopting LLVM
On Feb 19, 2010, at 11:33 AM, james woodyatt wrote:
> everyone--
>
> File this under Advocacy.
>
> See this thread <http://www.haskell.org/pipermail/glasgow-haskell-users/2010-February/018425.html> for more information, but the short summary is that they're deprecating their old "compile to GCC" backend in favor of David Terei's new LLVM backend.
2010 Feb 19
5
[LLVMdev] glasgow haskell appears to be adopting LLVM
everyone--
File this under Advocacy.
See this thread <http://www.haskell.org/pipermail/glasgow-haskell-users/2010-February/018425.html> for more information, but the short summary is that they're deprecating their old "compile to GCC" backend in favor of David Terei's new LLVM backend. They're still planning for their C-- backend to be the primary backend for native
2006 Aug 10
1
pandoc - an implementation of Markdown in Haskell
I've just released an early version of a Markdown implementation in
Haskell (using the Parsec parser combinator library). pandoc converts
Markdown to HTML, LaTeX, reStructuredText, rich text format, and S5 HTML
slide shows. It partially converts HTML, LaTeX, and reStructuredText
to Markdown. It also makes it easy to include LaTeX math on HTML pages,
using Peter Jipsen's ASCIIMathML.js.
2012 Jun 29
1
[LLVMdev] Request for merge: GHC/ARM calling convention.
On 06/29/12 11:12 PM, Renato Golin wrote:
> On 29 June 2012 17:46, Karel Gardas<karel.gardas at centrum.cz> wrote:
>> Yes and no. Shortly: original GHC/ARM/LLVM port was done by Stephen on
>> ARMv5/Qemu IIRC. I've later added whole VFP support and ARMv7 support. The
>> code in GHC is properly #ifdefed, so if there is no VFP available on pre
>> ARMv6, then
2017 Oct 10
2
Make LLD output COFF relocatable object file (like ELF's -r does). How much work is required to implement this?
TL;DR:
I'm trying to evaluate if LLD can be used with GHC (Glasgow Haskell
Compiler) on Windows.
Haskell binary code is usually deployed in "packages". A package
typically provides static library(ies) and optionally – shared
library(ies) and/or prelinked ('ld -r') object file. The latter is the
best way to satisfy GHC runtime linker, since it requires no separate
2006 Dec 05
0
HOgg 0.2.0 Released
HOgg 0.2.0 Released
-------------------
The HOgg package provides a commandline tool for manipulating Ogg files,
and a corresponding Haskell library.
http://snapper.kfish.org/~conrad/software/hogg/
This is the initial public release. The focus is on correctness of Ogg
parsing and production. The capabilities of the hogg commandline tool are
roughly on par with those of the oggz* tools[0],
2011 Jun 16
3
[LLVMdev] ARM support status (GHC/ARM new calling convention)
Hello,
I'm working on implementing GHC specific call convention into LLVM 2.9.
I've chosen LLVM 2.9 as a kind of stable reference point and I would
like to know how mature is ARM code generation chain inside this
release. I've had a hope that perhaps Apple as a main sponsor of LLVM is
using LLVM for their ARM based iOS software development, but I'm not
sure if I'm right
2002 Sep 27
0
Undefined reference in R-1.5.1 under Mac OS X 10.2.1 Jaguar
Hi
I installed R-1.5.1 on a Mac G4 under OS X 10.2.1 Jaguar, which
requires X11.
Then I got this while trying to run XDarwin I downloaded from Fink:
---
[YonedaK-mac4:~] yoneda% startx -- -quartz
...
dyld: xterm Undefined symbols:
xterm undefined reference to _tgetent expected to be defined in
/usr/lib/libSystem.B.dylib
xterm undefined reference to _tgetstr expected to be defined in
2012 Jun 29
0
[LLVMdev] Request for merge: GHC/ARM calling convention.
On 29 June 2012 17:46, Karel Gardas <karel.gardas at centrum.cz> wrote:
> Yes and no. Shortly: original GHC/ARM/LLVM port was done by Stephen on
> ARMv5/Qemu IIRC. I've later added whole VFP support and ARMv7 support. The
> code in GHC is properly #ifdefed, so if there is no VFP available on pre
> ARMv6, then it's not used. ie. GHC STG floating points regs are then
>
2007 Dec 07
0
HOgg 0.3.0 Released
HOgg 0.3.0 Released
-------------------
The HOgg package provides a commandline tool for manipulating Ogg files,
and a corresponding Haskell library. HOgg is in hackage, or on the web at:
http://www.kfish.org/~conrad/software/hogg/
This is the second public release. The focus is on correctness of Ogg
parsing, production and editing. The capabilities of the hogg commandline
tool are roughly on
2007 Dec 07
0
HOgg 0.3.0 Released
HOgg 0.3.0 Released
-------------------
The HOgg package provides a commandline tool for manipulating Ogg files,
and a corresponding Haskell library. HOgg is in hackage, or on the web at:
http://www.kfish.org/~conrad/software/hogg/
This is the second public release. The focus is on correctness of Ogg
parsing, production and editing. The capabilities of the hogg commandline
tool are roughly on
2012 Jun 29
2
[LLVMdev] Request for merge: GHC/ARM calling convention.
Hi Renato,
On 06/25/12 12:13 AM, Renato Golin wrote:
> Hi Karel,
>
> I understand this patch has already been merged (to 3.0), so don't
> take my question as stopping the merge to head, I'm just making sure I
> got it right... The rest looks correct.
>
> + CCIfType<[v2f64], CCAssignToReg<[Q4, Q5]>>,
> + CCIfType<[f64], CCAssignToReg<[D8, D9,
2008 Dec 23
0
HOgg Release 0.4.1
Here's some instructions for installing hogg on a current Ubuntu 8.10
(or Debian unstable? testing?) system, ie. if you don't already have
haskell's cabal system installed:
$ sudo apt-get install ghc6
$ wget http://hackage.haskell.org/packages/archive/cabal-install/0.6.0/cabal-install-0.6.0.tar.gz
$ tar zxf cabal-install-0.6.0.tar.gz
$ cd cabal-install-0.6.0
$ ./bootstrap.sh
$ cabal
2008 Dec 23
2
HOgg Release 0.4.1
HOgg 0.4.1 Released
-------------------
The HOgg package provides a commandline tool for manipulating Ogg files,
and a corresponding Haskell library. HOgg is in hackage, or on the web at:
http://www.kfish.org/~conrad/software/hogg/
This is the fourth public release. The focus is on correctness of Ogg
parsing, production and editing. The capabilities of the hogg commandline
tool are roughly on
2014 Oct 27
2
[LLVMdev] Out-of-tree passes (Was: LLVM Weekly - #43, Oct 27th 2014)
On Mon, Oct 27, 2014 at 2:59 AM, David Chisnall <David.Chisnall at cl.cam.ac.uk
> wrote:
> On 27 Oct 2014, at 09:33, Alex Bradbury <asb at asbradbury.org> wrote:
>
> > The Haskell community have put together a [proposal for an improved LLVM
> > backend to GHC](
> https://ghc.haskell.org/trac/ghc/wiki/ImprovedLLVMBackend).
> > They intend to ship GHC with its