Displaying 20 results from an estimated 100000 matches similar to: "[LLVMdev] CREDITS.TXT"
2006 Aug 01
1
[LLVMdev] Plz update CREDITS.TXT
Hi all,
The llvm 1.8 release is getting closer. Please update your contributions
in the CREDITS.TXT file as appropriate.
Thanks,
-Chris
--
http://nondot.org/sabre/
http://llvm.org/
2003 Oct 07
0
[LLVMdev] LLVM Status Update
Hi LLVMers,
We're actively working on finishing up the release, which has been
delayed. Last week was dominated by several paper submissions which were
all due at about the same time, so the release fell behind (if you're
interested, the papers are available on the main page). We are currently
shooting for getting the release out the door early next week.
That said, we have made a lot
2007 Apr 05
0
[LLVMdev] Reminder: NewNIghtlyTest.pl
On Thu, 5 Apr 2007, Reid Spencer wrote:
> This is a reminder that the script will change so that tonight's nightly
> test will use the hybrid svn/cvs version. This requires the Date::Parse
> perl module. If you haven't installed it yet, please do so before the
> next run of your nightly test.
Hi Reid,
We didn't have a chance to talk about this much when this came up, but
2007 May 15
1
[LLVMdev] llvm 2.0 release announcement [draft]
On Mon, 14 May 2007, Jeff Cohen wrote:
> Chris Lattner wrote:
>> x. Roman Samoilov contributed a new MSIL backend to LLVM. llc -
>> march=msil will now turn LLVM into MSIL (".net") bytecode. This is still
>> fairly early development with a number of limitations.
> This ought not be advertised to the world. It is not useful for any purpose.
Jeff,
2005 Nov 03
0
[LLVMdev] [DRAFT] Announcement for LLVM 1.6 [DRAFT]
The vector LLVA extension will not be merged into the 1.6 release branch?
It will make me have to merge twice: one for 1.6 and one for vector LLVA.
When do you plan to merge the vector LLVA to the main trunk, please?
On 26/10/05, Chris Lattner <sabre at nondot.org> wrote:
>
> Hi All,
>
> I'm putting together the announcement for the LLVM 1.6 release. Here is
> what I
2006 Nov 20
0
LLVM 1.9 Release!
LLVM 1.9 is available now! Download it here: http://llvm.org/
releases/ or view the release here: http://llvm.org/releases/1.9/docs/
ReleaseNotes.html
This is a huge new release with many improvements, new features,
better codegen, faster compiles, and many bugs fixed. One telling
feature is that LLVM now correctly builds itself and passes all its
regression tests when self-hosted: an
2007 May 23
0
LLVM 2.0 Release
LLVM 2.0 is done! Download it here: http://llvm.org/releases/ or view
the release notes: http://llvm.org/releases/2.0/docs/ReleaseNotes.html
LLVM 2.0 is a great release in many ways. It includes a wide range of new
features, new optimizations, better codegen, and new targets. We were
also able to signficantly revise several core aspects of the LLVM IR and
design (such as the type system
2006 May 08
6
[LLVMdev] New llvmgcc4 snapshot
Hi All,
There's a new snapshot of llvmgcc4 available here:
http://nondot.org/sabre/2006-05-08-llvm-gcc-4.tar.gz
This release includes the various portability fixes contributed on
llvmdev, includes fixes to build with mainline CVS (and, thus, *requires*
mainline CVS), and includes various other bug fixes.
If you're interested, please try it out.
Thanks,
-Chris
--
2007 Aug 10
0
[LLVMdev] c const
On Thu, 9 Aug 2007, Daniel Berlin wrote:
> This certainly doesn't occur in gcc mainline.
> In fact, I improved the error message, and added a error test to gcc
> just yesterday.
Yep, clang reports:
t.c:4:12: error: read-only variable is not assignable
arr[0] = 1;
~~~~~~ ^
1 diagnostic generated.
so this is specific to llvm-gcc somehow.
-Chris
> On 8/9/07, Chris
2006 May 13
0
[LLVMdev] Re: New llvmgcc4 snapshot
Chris Lattner wrote:
>
> Hi All,
>
> There's a new snapshot of llvmgcc4 available here:
>
> http://nondot.org/sabre/2006-05-08-llvm-gcc-4.tar.gz
>
> This release includes the various portability fixes contributed on
> llvmdev, includes fixes to build with mainline CVS (and, thus, *requires*
> mainline CVS), and includes various other bug fixes.
>
> If
2007 May 07
1
[LLVMdev] 1 Week Before 2.0 Branch Creation
I'd definitely be interested in seeing this happen. If you get it
working, I might be able to contribute a build slave as well.
--Owen
On May 6, 2007, at 10:35 PM, Chandler Carruth wrote:
> I don't know if others would be interested as well, but I should be
> able to set it up at least on one of my machines over the summer,
> and on a continuing basis if its found
2005 Mar 12
1
[LLVMdev] GCC 3.4.1 and conflicting types for 'malloc' (2)
I commented this line and it is compiling now:
extern void *malloc ARGS((unsigned));
I hope that will not cause a different kind of problem. What it is zalloc used for?
Thanks
--- Chris Lattner <sabre at nondot.org> wrote:
> On Sat, 12 Mar 2005, xavier wrote:
>
> > It seems that this happened before but I do not know the details:
> >
2007 May 18
1
[LLVMdev] GCC Mainline and GCC 4.3 STL mods
Chris,
I am doing Cygwin builds at the moment so it will not be immediately
attended to.
Do you want it done for 2.0 ?
Or could it be a post 2.0 patch which I suggest as 4.3 branch is not up for
a release too soon ?
Aaron
----- Original Message -----
From: "Chris Lattner" <sabre at nondot.org>
To: "LLVM Developers Mailing List" <llvmdev at cs.uiuc.edu>
Sent:
2005 Mar 12
2
[LLVMdev] GCC 3.4.1 and conflicting types for 'malloc' (2)
Yes, sorry for not mentioning it. I added that header also
Although I suppose that if I am not using Sparc there will be no problem (it's an Itanium 2
machine)
Thanks
--- Chris Lattner <sabre at nondot.org> wrote:
> On Sat, 12 Mar 2005, xavier wrote:
>
> > I commented this line and it is compiling now:
> >
> > extern void *malloc ARGS((unsigned));
> >
2007 Aug 10
2
[LLVMdev] c const
This certainly doesn't occur in gcc mainline.
In fact, I improved the error message, and added a error test to gcc
just yesterday.
On 8/9/07, Chris Lattner <sabre at nondot.org> wrote:
> On Wed, 8 Aug 2007, Nikhil A. Patil wrote:
> > I think I found a bug. I don't know if it's in upstream gcc or llvm-gcc4.
>
> Looks like a bug, please file a bugzilla entry.
>
2007 Jul 04
0
[LLVMdev] Accessing/Loading a new pass
On Wed, 4 Jul 2007, Ben Chambers wrote:
> Ah, I was missing that include/llvm/LinkAllPasses.h change. Thanks!
> Now I have it working, except for the fact that it doesn't seem to
> generate fresh names for things. Or if it does, they're the empty
> string (I suspect it is the latter, since when I create the new
> instruction the empty string is passed in for the name of
2004 May 05
1
[LLVMdev] Open Source Contributions
On Wed, 5 May 2004, Vikram S. Adve wrote:
> Do you have the DS graph dot file for Olden-power?
Here you go:
/home/vadve/lattner/Writings/006-Masters-Thesis/figs/power.dot
-Chris
> --Vikram
> http://www.cs.uiuc.edu/~vadve
> http://llvm.cs.uiuc.edu/
>
> On May 5, 2004, at 11:11 AM, Chris Lattner wrote:
>
> > On Wed, 5 May 2004, Oscar Fuentes wrote:
> >
>
2005 Apr 25
1
[LLVMdev] trig language-like code generator generator
the proposed architecture (chris) doesn't seem to attack the phase
ordering problem. through having independent instruction selection,
instruction scheduling, and register allocation phases faciliate a
modular design, but i believe the phase-coupled code generator
generator high quality code on many architectures. espeically in the
embedded system like a media/dsp processors with very limited
2004 Feb 23
0
[LLVMdev] LLVM
On Tue, 24 Feb 2004, Jingling Xue wrote:
> I understand that LLVM is now available in the public domain.
Yes it is. It can be downloaded from the LLVM releases page here:
http://llvm.cs.uiuc.edu/releases/
> I need to decide which compiler system I will use for my advanced
> compiler course this year.
The current release is 1.1. We are tentatively planning to release 1.2
sometime in
2007 Jul 03
0
[LLVMdev] Question about Constant Expressions
On Tue, 3 Jul 2007, Ben Chambers wrote:
> How hard would it be to compile this pass and add it to the passes
> that opt can run? Is this something I should be able to do relatively
> quickly? What was the name of the file(s) that implemented the pass?
It should be easy, modulo it bitrotting. It is already built as an opt
pass. The filename was LowerConstantExpr.cpp IIRC.
-Chris