similar to: LLVM 2.6 Release!

Displaying 20 results from an estimated 2000 matches similar to: "LLVM 2.6 Release!"

2010 Apr 27
0
LLVM 2.7 Release!
Hi LLVM Friends, Fans, Followers and Fanatics, LLVM 2.7 is live! You can download it here: http://llvm.org/releases/ and read about it here: http://llvm.org/releases/2.7/docs/ReleaseNotes.html This release includes approximately 6 months of development that provide major enhancements and new features over the LLVM 2.6 release. This includes significantly better generated code, improvements to
2010 Oct 06
0
LLVM 2.8 Release!
Hi LLVM Friends, Fans, Followers and Fanatics, LLVM 2.8 is live! You can download it here: http://llvm.org/releases/ and read about it here: http://llvm.org/releases/2.8/docs/ReleaseNotes.html This release includes approximately 6 months of development that provide major enhancements and new features over the LLVM 2.7 release. LLVM 2.8 includes broad improvements in the core LLVM project and
2009 Oct 12
1
[LLVMdev] current state of building analysis passes out-of-tree with llvm-config?
Hi, what's the current state of being able to build simple analysis passes out-of-tree against only llvm headers and libraries with llvm-config? I see that clang and klee do not use llvm-config but for example rubinius does. Should both approaches be documented? Currently for example docs/WritingAnLLVMPass.html says "you need to create a new directory somewhere in the LLVM source
2011 Apr 07
0
LLVM 2.9 Release!
Hi LLVM Friends, Fans, Followers and Fanatics, LLVM 2.9 is out, get it while it is fresh and steaming! http://llvm.org/releases/ and read about it here: http://llvm.org/releases/2.9/docs/ReleaseNotes.html This release includes 6 months of development that provide major enhancements and new features over the LLVM 2.8 release. LLVM 2.9 includes much better optimization and code generation than
2009 Oct 08
0
[LLVMdev] [2.6] attention llvm users
Hi All, I'm preparing the 2.6 release notes, and need help from people that would like their projects to be listed in the "External Projects Using LLVM 2.6" section. Please either directly commit (and remove "UPDATE") or email me a blurb for the release notes for your project. Unless I hear from the projects, Pure, LDC, Roadsend PHP will be removed. Send me an
2011 Dec 01
0
LLVM 3.0 Release!
Hello LLVM People, Welcome to LLVM 3.0! Get it here: http://llvm.org/releases/ or read about it: http://llvm.org/releases/3.0/docs/ReleaseNotes.html This release represents approximately 6 months of development over LLVM 2.9, and delivers a large number of improvements. Some of the bigger leaps include a new register allocator (which can provide substantial performance improvements in
2012 May 22
0
LLVM 3.1 Release!
Hello LLVM People, Welcome to LLVM 3.1! Get it here: http://llvm.org/releases/ or read about it: http://llvm.org/releases/3.1/docs/ReleaseNotes.html This release represents approximately 6 months of development over LLVM 3.0, delivers a vast range of improvements and new features. Some of the most visible features include greatly expanded C++'11 support in Clang (including lambdas,
2011 May 18
1
[LLVMdev] Overflows and optimizations
Hi, We have a problem concerning LLVM optimizations and overflows in MacRuby. I reduced that to the following (architecture x86-64): $ cat e.c #include <stdio.h> long foo(void); int main() { const long a = foo(); const long b = foo(); const long res = a * b; fprintf(stderr, "0x%lx 0x%lx 0x%lx 0x%lx\n", res, a, b, res / a); return 0; } $ cat e2.c long
2009 Mar 03
0
LLVM 2.5 Release!
Hi Everyone, LLVM 2.5 is live: you can download it here: http://llvm.org/releases/ and read about it here: http://llvm.org/releases/2.5/docs/ReleaseNotes.html LLVM 2.5 includes an amazing collection of bug fixes, performance improvements (both in the compiler itself and in the generated code) and new features. Some highlights include a new XCore backend, significantly improved llvm-gcc
2014 Sep 05
0
LLVM 3.5 Release!
LLVM 3.5 is now available! Get it here: http://llvm.org/releases/ or read the release notes here: http://llvm.org/releases/3.5.0/docs/ReleaseNotes.html http://llvm.org/releases/3.5.0/tools/clang/docs/ReleaseNotes.html This is a great new release with a whole host of new features. The LLVM optimizer and backend sees continued performance improvement and compile time improvements, as well as
2008 Jun 01
3
rbx gem
Hello. Some time ago I committed a Rubinius assembly-based HTTP parser generated from Ragel to the Rubinius git repository. Yesterday I made a Mongrel gem which installs and works on Rubinius. This basically involved commenting out anything to do with fastthread or the http11 C extension. If there''s interest in releasing a Rubinius-targeted gem, I can make changes to the Rakefile to
2010 Jun 17
3
unicorn 1.0.0 - yes, this is a real project
Unicorn is an HTTP server for Rack applications designed to only serve fast clients on low-latency, high-bandwidth connections and take advantage of features in Unix/Unix-like kernels. Slow clients should only be served by placing a reverse proxy capable of fully buffering both the the request and response in between Unicorn and slow clients. * http://unicorn.bogomips.org/ * mongrel-unicorn at
2009 Sep 15
0
HTTP parser C extension should be Rubinius-compatible
Hi all, I''ve just pushed out some changes to the C HTTP parser that should make it compatible with a recent Rubinius[1] using the C API. While I got the http_parser and http_parser_ng tests to pass with the new changes, most of the other tests that use pure Ruby actually failed(!). If anybody wants to pick up where I left off (even if it''s to properly report bugs to the
2013 Jan 14
0
[LLVMdev] Memory clean for applications using LLVM for JIT compilation
On Mon, Jan 14, 2013 at 4:56 AM, Dirkjan Bussink <d.bussink at gmail.com>wrote: > Hello all, > > I've already bothered people on IRC with this question and it was > recommended to ask it here. > > First of all, some context. In Rubinius (http://rubini.us/, > http://github.com/rubinius/rubinius) we use LLVM for our JIT. We create > LLVM IR using the C++ API and
2009 Oct 09
0
[LLVMdev] Is ExecutionEngine always meant to be a singleton?
On Oct 8, 2009, at 9:19 AM, Kenneth Uildriks wrote: > Right now, on X86, creating multiple ExecutionEngines in the same > process causes an assertion. > Yes. This is by design. > If it's supposed to always be a singleton, should there be a way to > get the process's ExecutionEngine instance? > I can't see why. You could make a server to process llvm code. >
2013 Jun 06
0
[LLVMdev] klee linker problem
Hi, The klee library directory is determined at compile time and cannot be changed afterwards. Have a look at tools/klee/main.cpp to see how it is computed. I usually use Klee without any install step, right from the build directory. This has never given me the error you see. Hope this helps, Jonas On Wed, Jun 5, 2013 at 5:26 PM, Alexandru Ionut Diaconescu < alexandruionutdiaconescu at
2010 Apr 22
0
[LLVMdev] problem when building coreutil
Hi all, I'm new to llvm and klee. Now I'm trying to build up coreutil with klee. Following the steps online (http://klee.llvm.org/TestingCoreutils.html), I went to step 3 and stuck. When I try to run: klee --libc=uclibc --posix-runtime ./cat.bc -version Error occurred like: klee: error: Cannot find linker input '/lib/libc.a' klee: ModuleUtil.cpp:42: llvm::Module*
2013 Jun 05
2
[LLVMdev] klee linker problem
Hello everyone, I am a novice with KLEE under LLVM. I am trying to build a KLEE project (on a new LLVM environment) and I have the following problem: echo Testing... Testing... echo There should be no assertion fails! There should be no assertion fails! klee -taint=direct taint_direct.o KLEE: output directory = "klee-out-8" klee: error: Cannot find linker input
2015 Dec 15
2
Trouble supressing ASAN reported leaks
Hi, I'm currently trying to find and fix memory leaks (compiling with ``-fsanitize=address``) in the KLEE tool [1] an having found some leaks and I'm having trouble suppressing them. I'm trying to suppress them using the ``-fsanitize-blacklist=blacklist.txt`` option as documented at [2]. I'm using Clang 3.7 ( Arch Linux package 3.7.0-6). The sort of reported leaks I see are ```
2013 Jun 17
0
LLVM 3.3 Release!
LLVM 3.3 is now available! Get it here: http://llvm.org/releases/ or read about it here: http://llvm.org/releases/3.3/docs/ReleaseNotes.html LLVM 3.3 is a big release: it adds new targets for the AArch64 and AMD R600 GPU architectures, adds support for IBM's z/Architecture S390 systems, and major enhancements for the PowerPC backend (including support for PowerPC 2.04/2.05/2.06