Displaying 20 results from an estimated 10000 matches similar to: "[LLVMdev] RE: MinGW Tablegen"
2004 Oct 07
2
[LLVMdev] RE: MinGW Tablegen
Hi
As requested from Paolo, I've sent him the tablegen tool. The tool is able
to compile the td files (given in the makefile) on windows without any
complaints.
Henrik
>From: Paolo Invernizzi <arathorn at fastwebnet.it>
>Date: Thu, 7 Oct 2004 14:27:11 +0200
>
>Hi Henrik,
>
>As you may remember, I'm trying to use the LLVM core tools under Visual
>Studio.
2004 Oct 08
0
[LLVMdev] RE: MinGW Tablegen
Some problems... (or I'm missing something...)
1) asmwriternum seems to be not supported...
scons: Building targets ...
d:/home/arathorn/sandbox/llvm/tblgen.exe -gen-asm-writer -asmwriternum=1
-I llvm\lib\Target\X86 -o tablegen_includes\X86GenIntelAsmWriter.inc
llvm\lib\Target\X86\X86.td llvm\lib\Target\X86\X86InstrInfo.td
llvm\lib\Target\X86\X86RegisterInfo.td llvm\lib\Target\Target.td
2004 Sep 03
0
[LLVMdev] diffs for vc7.1
I can confirm that both are compiled properly:
A)
PHINode *PN;
for (BasicBlock::iterator I = H->begin(); PN = dyn_cast<PHINode>(I);
I++)
....
B)
for (BasicBlock::iterator I = H->begin; isa<PHINode>(I); I++) {
PHINode *PN = cast<PHINode(I);
....
}
I'll make a patch for whatever solution do you prefer (this problem is
a showstopper for more than a dozen
2004 Sep 07
2
[LLVMdev] diffs for vc7.1
On Fri, 3 Sep 2004, Paolo Invernizzi wrote:
> I can confirm that both are compiled properly:
Ok.
> for (BasicBlock::iterator I = H->begin; isa<PHINode>(I); I++) {
> PHINode *PN = cast<PHINode(I);
> ....
> }
>
> I'll make a patch for whatever solution do you prefer (this problem is
> a showstopper for more than a dozen files...)
I prefer this
2004 Sep 24
1
[LLVMdev] Little win32/Signals.cpp patch
On Fri, Sep 24, 2004 at 05:32:08PM +0200, Paolo Invernizzi wrote:
> Jeff Cohen wrote:
>
> ><algorithm> works too.
> >
> >
> For std::remove yes... but...
>
> d:\home\arathorn\sandbox\llvm\llvm\lib\System\platform\Signals.cpp(179)
> : error C2065: 'stderr' : undeclared identifier
>
2005 Mar 10
0
[LLVMdev] Patches for MinGW Build instructions
On Thu, Mar 10, 2005 at 01:59:12PM +0100, Henrik Bach wrote:
> Here is my second try to document, how to build the llvm system for
> MinGW on Windows.
Thanks, Henrik! Here are some comments on your document:
> Overview
Does not mention the status of the CFE on MinGW.
> Software on Windows
If something is a list, use the HTML <ol> or <ul> tags and make it into
a real
2005 Apr 21
5
[LLVMdev] Trailing whitespace removal (important for CVS users!)
Dear LLVMers,
If you live on the bleeding edge (i.e. CVS version), please read!
On Wed, Apr 20, 2005 at 12:12:54PM +0200, Markus F.X.J. Oberhumer wrote:
> Do you really want external patches for this ? A simple Perl script
> that runs on all *.h and *.cpp files, and a local commit from your
> side would be much simpler.
I'm in the process of doing just this as we speak. What this
2004 Sep 03
2
[LLVMdev] diffs for vc7.1
On Fri, Sep 03, 2004 at 03:01:01PM -0500, Anshu Dasgupta wrote:
> ><snip>
> >for (BasicBlock::iterator I = Dest->begin(); PHINode *PN =
> >dyn_cast<PHINode>(I); ++I)
> > visitPHINode(*PN);
> ><snip>
> >
> >build_vc71\lib\Transforms\Scalar\SCCP.cpp(202) : error C2275:
> >'llvm::PHINode' : illegal use of this type as
2004 Dec 30
2
[LLVMdev] getDirectoryContents and renameFile needs to be implemented in Win32/Path.cpp
Hi Jeff,
We need to get getDirectoryContents and renameFile implemented from
Unix/Path.cpp in Win32/Path.cpp, otherwise I can't get llvm-ar linked.
Henrik.
=============================================================
Henrik Bach
Open Source Developer
e-mail: henrik_bach_llvm at hotmail.com
=============================================================
Got Freedom?
Software Freedom Day
2004 May 13
0
[LLVMdev] new project: LLVM-TV
Hi LLVM hackers,
We'd like to call your attention to a spiffy new visualization tool
for LLVM which we developed for a class project, which has just come
to fruition. We call it LLVM-TV (the "Transformation Visualizer").
You're welcome to try it out -- it should build just fine on Linux or
Mac OS X using a current CVS version of LLVM. Or, if you don't want
to go to the
2005 Jun 03
1
[LLVMdev] Randomizing Functions & Global variables
Ms Brukman,
Thanks for your reply.Just clarifying my question.I actually wanted to randomize the static layout of function code in the executable file.Sorry for writing in confusing manner.
T
Misha Brukman <brukman at cs.uiuc.edu> wrote:
On Thu, Jun 02, 2005 at 02:12:22PM -0700, Tanu Sharma wrote:
> By randomization of functions I mean the manner in whch they are
> called , so
2004 Nov 08
0
[LLVMdev] I need some output and log files to trace down why mybuild fails
Hi Misha,
Files downloaded.
Thank you very much.
Henrik.
From: Misha Brukman <brukman at uiuc.edu>
Date: Mon, 8 Nov 2004 11:17:25 -0600
On Sat, Nov 06, 2004 at 09:35:47AM +0100, Henrik Bach wrote:
> Would some one be so kind to catch the output when configuring and
building
> the CFE together with the log files produced?
http://misha.brukman.net/code/llvm/logs/
The
2004 Aug 21
1
[LLVMdev] Can't get llvmg++ to work
On Sat, 21 Aug 2004 18:36:08 -0500
Misha Brukman <brukman at uiuc.edu> wrote:
> On Sat, Aug 21, 2004 at 04:15:49PM -0700, Jeff Cohen wrote:
> > I don't know if it's under cvs. It's the "getting started" page
> > (http://llvm.cs.uiuc.edu/docs/GettingStarted.html) in section
> > "Getting Started Quickly (A Summary)". But careful reading
2005 Feb 18
1
[LLVMdev] questions about installing llvm
It works. Thanks!
However, although the configuration and installation process doesn't report
any error/warning, the llvmc cannot work. It just says: Unexpected unknown
exception occurred :(
Do you have any clue about that?
Feng
-----Original Message-----
From: Misha Brukman [mailto:brukman at uiuc.edu]
Sent: Thursday, February 17, 2005 2:00 PM
To: LLVM Developers Mailing List
Cc:
2004 Sep 24
1
[LLVMdev] Little win32/Signals.cpp patch
Sigh... take it up with Microsoft.
On Fri, 24 Sep 2004 12:06:36 -0500
Misha Brukman <brukman at uiuc.edu> wrote:
> On Fri, Sep 24, 2004 at 09:38:44AM -0700, Jeff Cohen wrote:
> > Here's the patch to Signals.cpp. assuming that stdio.h is acceptable
> > (can't imagine it won't work).
>
> We prefer #include <cstdio>, since this is C++ after all. :)
>
2004 Oct 07
0
[LLVMdev] problem with lli (llvm 1.3)
On Thu, Oct 07, 2004 at 06:46:18PM -0400, Shukang Zhou wrote:
> Thanks Misha. I tried the "gcc -dM -E /tmp/file.c | grep __sparcv9"
> but there was no output. Maybe this is the probelm, I do have
>
> CXX = g++ -mcpu=v9
> CC := gcc -mcpu=v9
>
> in the Makefile.config. Do I need to add -m64 as well? Thanks.
Just run the test that I mentioned before:
> On Thu, 7
2004 Sep 24
3
[LLVMdev] Little win32/Signals.cpp patch
Here's the patch to Signals.cpp. assuming that stdio.h is acceptable
(can't imagine it won't work).
On Fri, 24 Sep 2004 09:29:05 -0700
Jeff Cohen <jeffc at jolt-lang.org> wrote:
> Uh... this may be a silly question, but why can't you include <stdio.h>?
> It'd be much better than <iostream>.
>
> Anyway, I think I'll try this weekend to come
2005 Mar 16
2
[LLVMdev] Dynamic Creation of a simple program
Hi Misha,
Thanks for your answer
I was doing this:
========================
BasicBlock *BBlock = new BasicBlock("entry", MyFunc);
...
Value *Zero = ConstantSInt::get(Type::IntTy, 0);
Value *UZero = ConstantUInt::get(Type::UIntTy, 0);
MallocInst* mi = new MallocInst( STyStru );
mi->setName("tmp.0");
BBlock->getInstList().push_back( mi );
2004 Dec 04
1
[LLVMdev] Thank you for your acknowlegdement
Hi Chris and Vikram,
Thank you for your acknowlegdement of my and the other external contributors
work, in your latest presentation of LLVM on Compiler Research
Infrastructures: "The LLVM Compiler Framework and Infrastructure Tutorial",
albeit we have done a little (except Reid) compared with you true unsung
heroes at the LLVM team.
Henrik
2004 Dec 14
1
[LLVMdev] Patch to Path.cpp
Hi,
To link gccld it needs this patch to Path.cpp, too.
Henrik.
=============================================================
Henrik Bach
Open Source Developer
e-mail: henrik_bach_llvm at hotmail.com
=============================================================
Got Freedom?
Software Freedom Day 2004 - 28th of August
http://www.softwarefreedomday.org/