Displaying 3 results from an estimated 3 matches for "release_14".
Did you mean:
release_19
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 wonder if this code is no longer supported.
Thanks!
M.
-------------- next part --------------
An HTML att...
2015 Mar 11
5
[LLVMdev] Customize Standard C Library Using LLVM (to support llvm backend optimization)
...bly/binary that runs properly on arm gnu
linux (I use qemu-arm and gem5 to simulate it). Now I want to do the same
thing on standard c library, but here are problems.
Problems:
According to:
http://article.gmane.org/gmane.comp.compilers.llvm.devel/77025
https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_14/docs/OpenProjects.html#glibc
compiling glibc using llvm may not be a proper option. On the other hand,
according to:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2012-January/047088.html
llvm could be able to compile newlib, thus people consider newlib as an
alternative. However, according to:
ht...
2004 Dec 10
1
[LLVMdev] Building llvm and cfrontend under cygwin
Hi Chris,
> Also note, LLVM 1.4 will be released in the next few days, so if
waiting is
> an option, you might choose to do so.
Alright, I've got llvm and llvm-gcc from RELEASE_14 cvs and tried
building it under cygwin.
1) The first problem is with llvm in SysUtils.c:
int executeProgram(const char *filename, char *const argv[], char *const
envp[])
{
................
execveTy execvePtr = (execveTy) dlsym(RTLD_NEXT, "execve");
.....
}
RTLD_NEXT is not defined in...