search for: taemin

Displaying 8 results from an estimated 8 matches for "taemin".

Did you mean: tadmin
2011 Sep 22
2
[LLVMdev] Getting number of "unnamed temporory"
Hello, I am trying to print out output name of "unnamed temporary". For instance, for %3 = add i32 %21, i32 %index.01, I would like to print out %3. Can anybody please let me know how I can get it? Thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110921/56a6991a/attachment.html>
2012 Jul 02
2
[LLVMdev] Alternative of Loop::getTripCount?
I found out that Loop::getTripCount method is obsolete in LLVM 3.1 Is there an alternative? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120702/ea6ca4e6/attachment.html>
2012 Jul 03
0
[LLVMdev] Alternative of Loop::getTripCount?
Hi Taemin, On 03/07/2012 01:53, Taemin Kim wrote: > I found out that Loop::getTripCount method is obsolete in LLVM 3.1 > Is there an alternative? I use getSmallConstantTripCount() to get loop trip counts using the ScalarEvolution analysis pass. See include/llvm/Analysis/ScalarEvolution.h for a deta...
2010 Oct 13
1
[LLVMdev] Compile or link error
..../i686-pc-cygwin/bin/ld:/cygdrive/c/ llvm/runtime/libprofile/Debug+Asserts/exported_symbols.lst:2: syntax error collect2: ld returned 1 exit status make: *** [/cygdrive/c/llvm/Debug+Asserts/bin/profile_rt.dll] Error 1 Can anybody please help me generate the shared library successfully? Thank you, Taemin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20101013/1f3dcc22/attachment.html>
2011 Sep 22
0
[LLVMdev] Getting number of "unnamed temporory"
Just forwarding it to the list. On Wed, Sep 21, 2011 at 10:43 PM, Taemin Kim <taemin0712 at gmail.com> wrote: > It works. =) Thank you very much. > Taemin > > On Wed, Sep 21, 2011 at 6:16 PM, Douglas do Couto Teixeira > <douglasdocouto at gmail.com> wrote: >> >> You can run the instnamer pass. So all instructions will get a name. &...
2010 Oct 11
1
[LLVMdev] Invoking LLVM front-end
...s passes into the CodeGen. You may create custom headers with > your data structures and format your code accordingly, or you may just > hook into the first and only code gen pass for you mock machine. > > My 2 cents, > Jeff Kunkel > > > > On Mon, Oct 11, 2010 at 5:42 PM, Taemin Kim <taemin0712 at gmail.com> wrote: >> Hello LLVMers, >> >> I am developing hardware generation tool which converts C/C++ application to >> hardware which is not a Pass but a separate project. I am going to use LLVM >> as front-end optimization tool. I am curiou...
2012 Jun 19
0
[LLVMdev] 64-bit lli can't run 32-bit bitcode?
Hello, I am trying to run 32-bit bitcode with lli built with 64bit configuration. But it always crashes without any messages when I try to run 32bit bitcode. If anyone experienced same situation and have some clues to resolve, can you please share? FYI, I am using lli in llvm-3.0 Thanks, Taemin -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120619/719ef846/attachment.html>
2010 Oct 11
0
[LLVMdev] Invoking LLVM front-end
Hello LLVMers, I am developing hardware generation tool which converts C/C++ application to hardware which is not a Pass but a separate project. I am going to use LLVM as front-end optimization tool. I am curious how I can invoke the LLVM front-end optimziations and then, get the pointer of LLVM IR data generated by the front-end. I would like to perform some optimziations on the IR. Can anybody