Displaying 20 results from an estimated 8000 matches similar to: "[LLVMdev] AST access"
2005 Aug 27
4
[LLVMdev] unoptimised LLVM, not in SSA form
Hi,
I am interested in obtaining LLVM IR without any optimization performed on
it.( IR obtained from cfrontend's AST). Is this LLVM IR in SSA form?
Secondly, I want to make a transformation on this unoptimized IR, and convert
it back to C. I believe llc -c does that.
Thirdly, is it possible to use LLVM tool suite on LLVM IR that's not in SSA
form, if we have such LLVM so.
2004 Mar 22
2
[LLVMdev] Compilation problem with 1.2 release
Well, I compiled release but it gave error while making png library.
The inclusion of zlib.h in the file png.h cannot locate file zlib.h.
If you change the inclusion to
include "../zlib/zlib.h" instead of just "zlib.h" in png.h
then compilation succeeds.
regards,
2004 Mar 22
2
[LLVMdev] Compilation problem with 1.2 release
Well, I compiled release but it gave error while making png library.
The inclusion of zlib.h in the file png.h cannot locate file zlib.h.
If you change the inclusion to
include "../zlib/zlib.h" instead of just "zlib.h" in png.h
then compilation succeeds.
regards,
2016 Mar 23
4
Building ModulePass independiently on win32
Hi,
I have written a ModulePass (c++ code) that does transformation to LLVM bytecode. How do I build,compile and run it on windows.
a) I need Win32 LLVM tools. (so I downloaded)b) How do I build the dll( modulepass) so that I can pass it to optimizer or other llvm tool.c) To test, I need to compile a test C code, emit llvm intermediate code and pass it to optimizer so that it can run my
2003 Dec 07
2
[LLVMdev] Can you hint on solution to following problem
gccld: Cannot find linker input file 'crtend.o
I have set the LLVM_LIB_SEARCH_PATH
ls -l $LLVM_LIB_SEARCH_PATH
total 104
-rw-r--r-- 1 muj20 muj20 12788 Dec 7 17:05 crtend.o
-rw-r--r-- 1 muj20 muj20 1984 Dec 7 17:05 libc.bc
-rw-r--r-- 1 muj20 muj20 120 Dec 7 17:05 libcurses.bc
2005 Oct 19
2
[R-gui] R GUI considerations (was: R, Wine, and multi-threadedness)
>>>>> "K" == Kasper Daniel Hansen <khansen at stat.Berkeley.EDU> writes:
K> On Oct 19, 2005, at 3:43 PM, Jeffrey J. Hallman wrote:
K> <SNIP>
>> Think about it. Once you have a basic math package that can handle
>> matrix
>> programming and various mathematical functions, building the various
>> statistical modeling
2004 Mar 19
1
[LLVMdev] LLVM for research
Chris,
I am thinking of using LLVM as a platform to carry out my research in using
static analsis for program security and safety/system biology. What I look
forward from you in response to this mail is the availability of support and
commitment by your team in continuing LLVM.
Secondly, in addition to the application of LLvM mention on website, do you
know other poeple using LLVM..
2003 Dec 06
2
[LLVMdev] Important change to LLVM makefiles
Please read this if you're working out of LLVM CVS:
I just checked in a change to the makefiles to stop using -fshort-enum
when building LLVM. This flag enables a trivial optimization, but causes
the code generated by the G++ compiler to not match the standard C++ ABI.
Because of this, the presence of the flag makes it more difficult to link
LLVM libraries to external source bases, and it
2003 Dec 07
0
[LLVMdev] Important change to LLVM makefiles
I have recently built the LLVM suite .. The problem is when I run
llvmgcc( after setting alias to $LLVM )
gcc: installation problem, cannot exec `gccld': No such file or directory
the LLVM_LIB_SEARCH_PATH=..
is set to LLVMGCCDIR/bytecode-libs
Any idea
2004 Mar 27
1
[LLVMdev] verification
What are the different properties( well formedness of the intermediate code,
or other),if any that are verified by the verification phase in the LLVM.
2005 Aug 29
1
[LLVMdev] getCalledFunction
Hi,
The getCalledFunction on CallInst is returning NULL, although it is (directly)
calling a function, which is defined in the same file.
----------------------
if (CallInst* callInst = dyn_cast<CallInst>(&inst))
{
std::cerr<<callInst->getCalledFunction();
}
-----------------------
When
------------------
std::cerr<<*callInst
----------------
the
2005 Dec 03
2
[LLVMdev] garbage collection
Hi,
We are working on a project to improve garbage collection
using pool allocation in llvm. Has anybody implemented any
garbage collection algorithm in llvm? There is an incomplete
semispace GC implementation in llvm. It will be of great help,
if somebody has a complete GC implementation.
Regards,
Swarup.
*************************************
Swarup Kumar Sahoo
Thomas M. Siebel Center for
2005 Dec 05
0
[LLVMdev] optimization question
I tried to optimize the following code using opt -load-vn -sccp -dcse, but no
effect. The loading and storing of unique should be removed, and branch should
be statically evaluated.
Any suggestions?
The code:
%tmp.0 = call int %acquireLock( ) ; <int> [#uses=0]
store int 1, int* %unique
%load = load int* %unique ; <int> [#uses=1]
%Set = seteq int 1, %load ; <bool> [#uses=1]
2004 Nov 07
0
[LLVMdev] LLVM IR immediately from frontend
Perhaps I am missing some link. Need a bit clarification.
For the C language,
I want to access the LLVM code immediately generated by
llvmgcc(cfrontend/bin/gcc) before it undergoes any further transformation or
optimization.
1) Are there any libraries that enable me to parse C code and create the
Module instance.
2) If answer to 1) is no, then is there some other way to create Module
2005 Aug 27
1
[LLVMdev] llc problem
I got the following error in 1.5 release. As far as installation is concerned,
everything went fine.
llc hello.bc -o hello.bs
llc((anonymous namespace)::PrintStackTrace()+0x17)[0xd435f1]
llc((anonymous namespace)::SignalHandler(int)+0xbd)[0xd437ff]
/lib64/tls/libc.so.6[0x3ff522e410]
llc(llvm::Type::isFirstClassType() const+0x13)[0x8fc38d]
llc(llvm::FunctionType::FunctionType(llvm::Type const*,
2003 Dec 17
3
[LLVMdev] pass position
Suppose, I have a Pass1 implemented as a subclass of Pass, with source code in
the directory of llvm source base( transform/analyze )
I can run that pass through opt on the bytecode emitted by gcc frontend
through opt tool. However, I want that Pass1 to be the part of the actual GCC
compiler. I want to know how I can position Pass1 among other passes
/optimizations/ code generations.
e.g if
2008 Jan 04
5
I need arguments pro-S-PLUS and against SAS...
I need arguments pro-S-PLUS and against SAS for a meeting I will
have next week. S-Plus is (90 - 99)% compatible with R, so using
S-Plus will make things much easier for everyone. But I can't use
this argument. What other arguments could I use?
Alberto Monteiro
2005 Oct 15
6
R GUI considerations (was: R, Wine, and multi-threadedness)
Hello,
Following a discussion initiated on r-devel, that mentions SciViews-R
and other GUIs issues for R, I would like to make comments (and would be
happy if these comments would initiate interesting initiatives).
A big, big problem with SciViews-R is that a part of it is written in
Visual Basic 6, a M$$$$ language, not supported any more, buggy, non
transposable to other platforms, etc,
2015 Jan 23
3
Multiple attributes
Ho Mourik
Thanks for your reply, any other attribute which we can duplicate?
Br.
Umar
On Fri, Jan 23, 2015 at 1:47 PM, mourik jan heupink - merit <
heupink at merit.unu.edu> wrote:
> Hi,
>
> In AD, the attribute mail can only exist once.
>
> MJ
>
> On 01/23/2015 05:27 AM, Umar Draz wrote:
>
>> Hi All
>>
>> I am tying to create a user in SAMBA 4
2015 Jan 23
2
Multiple attributes
Hi All
I am tying to create a user in SAMBA 4 AD with ldapadd, but its not allow
me to add multiple mail attributes, here is my ldif of user.
dn: CN=ayesha,CN=Users,DC=samba4pdc,DC=net
objectClass: top
objectClass: person
objectClass: organizationalPerson
objectClass: user
cn: ayesha
name: ayesha
sAMAccountName: ayesha
userPrincipalName: Ayesha Umar
objectCategory: