Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] llvm-tv"
2012 Jun 05
0
[LLVMdev] llvm-tv
On 6/1/12 7:33 PM, AbhishekR wrote:
> I am trying to compile llvm-tv as per the instructions from the link -
> http://llvm.org/svn/llvm-project/television/trunk/README.txt
>
> The poolalloc doesn't seem to be in synch with the llvm svn version
> mentioned (78786). It is giving lot of errors during compilation. I
> fixed a few of them by bringing in functions/header files
2012 Jun 06
3
[LLVMdev] llvm-tv
Thanks John. I verified that and poolalloc builds with LLVM 3.0. I used
clang for compiling wxWidgets, LLVM 3.0 and poolalloc.
But llvm-tv build still gives build error. I take it that llvm-tv is still
incompatible with these versions of poolalloc and LLVM 3.0. I think the
code is manageable - couple of files in lib,include and some 30 odd small
files in tools directory. I'll have a look at
2012 Jun 06
2
[LLVMdev] llvm-tv
I fixed most of the errors.
There is a weird error I am seeing and seems to be some incompatibility in
expanding macros between FileSystem.h in LLVM and intl.h in wxWidgets. Any
idea how to fix this?
In file included from
/home/arhishee/work/llvm-tv/llvm-tv/tools/llvm-tv/GraphDrawer.cpp:4:
In file included from
/home/arhishee/work/llvm-tv/llvm30/include/llvm/Support/FileUtilities.h:18:
In file
2012 Jun 06
0
[LLVMdev] llvm-tv
On 6/5/12 7:45 PM, AbhishekR wrote:
> Thanks John. I verified that and poolalloc builds with LLVM 3.0. I
> used clang for compiling wxWidgets, LLVM 3.0 and poolalloc.
>
> But llvm-tv build still gives build error. I take it that llvm-tv is
> still incompatible with these versions of poolalloc and LLVM 3.0. I
> think the code is manageable - couple of files in lib,include and
2012 Jun 06
0
[LLVMdev] llvm-tv
I fixed all the other build errors. This is the only one pending.
On Tue, Jun 5, 2012 at 8:33 PM, AbhishekR <abhishekr1982 at gmail.com> wrote:
> I fixed most of the errors.
>
> There is a weird error I am seeing and seems to be some incompatibility in
> expanding macros between FileSystem.h in LLVM and intl.h in wxWidgets. Any
> idea how to fix this?
>
> In file
2012 Jun 02
0
[LLVMdev] DFG of machine functions
I tried debugging it and the issue seems to be in the implementation of
MachineInstrIterator.h and the way it interacts with GraphWriter.h
functions. I found this by replacing the ( template <> struct
GraphTraits<MCDFGraph<MachineFunction*> >) with a similar MCDFGraph based
template of CFG similar to the one in MachineFunction.h (similarly
replacing the DOTGraphTraits with the
2012 May 31
2
[LLVMdev] DFG of machine functions
Hi,
I am trying to generate the DFG of machine functions.
Initially, I added a pass to generate the DFG of LLVM IR functions. This
was based on the mail thread -
http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-September/025582.html. This
pass worked fine and I was able to generate DFG of LLVM IR functions.
Later, I ported the DFG pass code for machine functions. I ported the
InstIterator.h
2012 May 14
4
[LLVMdev] [SafeCode] Unable to build the LLVM from trunk
Hi All ,
Was trying to build the LLVM src from
http://llvm.org/svn/llvm-project/llvm/branches/release_30 ,But unable to
build the same and clang poped up with below error .
llvm[1]: Compiling IntervalMap.cpp for Debug build
In file included from
/root/projects/safecode/llvm/lib/Support/IntervalMap.cpp:14:
/root/projects/safecode/llvm/include/llvm/ADT/IntervalMap.h:1980:32: error:
use
2012 May 14
2
[LLVMdev] [cfe-dev] [SafeCode] Unable to build the LLVM from trunk
On Mon, May 14, 2012 at 4:39 PM, John Criswell <criswell at illinois.edu>wrote:
> On 5/14/12 4:32 AM, Umesh Kalappa wrote:
>
> Hi All ,
>
> Was trying to build the LLVM src from
> http://llvm.org/svn/llvm-project/llvm/branches/release_30 ,But unable to
> build the same and clang poped up with below error .
>
>
> First, it sounds like you're building LLVM
2012 Oct 30
1
[LLVMdev] Program Dependence Graph (PDG) in LLVM
Hi,
Is there a way to use LLVM to build the visual representation of program
dependence graph (PDG) of a routine/program?
>From looking at
https://llvm.org/svn/llvm-project/poolalloc/branches/release_14/lib/DSA/PgmDependenceGraph.cpp,
it looks like there is an incomplete implementation of PDG in LLVM.
However, when I search within LLVM3.0 package, I don't find the .cpp/h
code. So, I also
2012 May 15
0
[LLVMdev] [cfe-dev] [SafeCode] Unable to build the LLVM from trunk
Thank you all for the responses,
John,
My Bad here you go
clang version 3.2 (trunk)
Target: i386-pc-linux-gnu
Thread model: posix
[root at localhost opensrc]# cat /etc/centos-release
CentOS release 6.2 (Final)
Matthieu,
Thanks for the fix and let me try again with latest trunk.
~Umesh
On Mon, May 14, 2012 at 10:34 PM, Matthieu Monrocq <
2012 May 14
0
[LLVMdev] [cfe-dev] [SafeCode] Unable to build the LLVM from trunk
On 5/14/12 4:32 AM, Umesh Kalappa wrote:
> Hi All ,
>
> Was trying to build the LLVM src from
> http://llvm.org/svn/llvm-project/llvm/branches/release_30 ,But unable
> to build the same and clang poped up with below error .
First, it sounds like you're building LLVM 3.0, Poolalloc, and SAFECode
with an unmodified version of clang. Is this correct? If so, which
version of
2009 Aug 13
2
[LLVMdev] Graphviz and LLVM-TV
Chris Lattner wrote:
On Aug 13, 2009, at 8:56 AM, Ioannis Nousias wrote:
> Hi
>
> I'm trying to get a graphviz output (DOT) of a code I'm compiling. I
> want to see the DFG/CFG of the LLVM assembly, how the operations are
> chained together. The documentation mentions something about calling
> certain methods from within gdb, but isn't there some option when
>
2009 Aug 18
0
[LLVMdev] Graphviz and LLVM-TV
On Thu, Aug 13, 2009 at 12:17 PM, Ioannis Nousias <
ioannis.nousias at googlemail.com> wrote:
> >> Also, LLVM-TV seems outdated. I've tried to compile it with 2.5 LLVM and
> >> got various errors due to API changes. Tried to correct them, but got
> >> overwhelmed. Has the project been abandoned?
> >
> > Yes, it is really really old and abandoned.
2009 Aug 18
1
[LLVMdev] Graphviz and LLVM-TV
On Tue, Aug 18, 2009 at 10:45 AM, Misha Brukman <brukman at gmail.com> wrote:
> On Thu, Aug 13, 2009 at 12:17 PM, Ioannis Nousias <
> ioannis.nousias at googlemail.com> wrote:
>
>> >> Also, LLVM-TV seems outdated. I've tried to compile it with 2.5 LLVM
>> and
>> >> got various errors due to API changes. Tried to correct them, but got
>>
2010 Oct 17
1
[LLVMdev] LLVM-TV installation problem
Hi,
Does any body use LLVM_TV?
I want to install LLVM-TV but when i follow the installation instruction(https://llvm.org/svn/llvm-project/television/trunk/docs/UserGuide.html) there isn't "wxwindows" in lib directory, how can i install that?
Thanks
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2010 Sep 09
2
[LLVMdev] install llvm-tv on ubuntu
Does anybody install llvm-tv on ubuntu9.04? please share how to do it. Thanks very much!
My problem is as followed:
I follow the instruction of README in source of llvm-tv.
First, I installe wxWidgets and graphviz, and then download the source of llvm from http://llvm.org/svn/llvm-project/llvm/trunk and download poolalloc from http://llvm.org/svn/llvm-project/poolalloc/trunk. Second, I compile
2012 Mar 05
2
[LLVMdev] installing llvm from source, make check-all fails on llvm::transforms and clang:preprocessor
I downloaded via svn the release_30 and current version code. I am on x86_64
GNU/Linux, I am compiling with gcc 4.4.6
I compiled release_30 with
make ENABLE_OPTIMIZED=0 OPTIMIZE_OPTION=-O0
and current release with
make
In both cases, when I
make check-all
I get :
FAIL: Clang :: Preprocessor/macro_paste_c_block_comment.c (2562 of 9598)
******************** TEST 'Clang ::
2011 Oct 15
4
[LLVMdev] LLVM 3.0 Has Been Branched
The LLVM 3.0 release branch has been tagged. You may now commit patches at your leisure.
Thank you for keeping the ToT healthy!
-bw
2012 Mar 06
0
[LLVMdev] installing llvm from source, make check-all fails on llvm::transforms and clang:preprocessor
Hi Simona, these failures are due to the name of the path to LLVM/clang, see
below.
> /scratch/user/download/release_30/build/Debug/bin/clang -cc1 -internal-isystem
> /scratch/user/download/release_30/build/Debug/bin/../lib/clang/3.0/include
> /scratch/user/download/release_30/llvm/tools/clang/test/Preprocessor/macro_paste_c_block_comment.c
>
>
> -Eonly 2>&1 | not grep