search for: stdstack

Displaying 16 results from an estimated 16 matches for "stdstack".

Did you mean: ist_stack
2012 Jun 29
2
[LLVMdev] Problem compiling with clang + gold plugin: no archive symbol table
29.06.2012, 12:17, "ryan" <stdstack at gmail.com>: > I tried some other configurations. Now with llvm 3.0 + clang 3.0, and expoert CC to be clang -flto -use-gold-plugin,and other ENV variables. > Good news is the "no archive symbol error message" is gone, but bad news is new error messages appear Why are you using...
2013 Feb 07
2
[LLVMdev] CostModelAnalysis for 3.0 release
...argetTransformInfo analysis. I also > wanted to mention that only _lowering_ passes (target-specific optimization > passes) may use TTI and the cost model. Higher-level canonicalization > passes should not use it. > > Thanks, > Nadav > > On Feb 6, 2013, at 1:26 AM, ryan <stdstack at gmail.com> wrote: > > > Hi All, > > I wanted to do some basic cost estimation of Instruction/BB. There're > CostModelAnalysis and CodeMetrics available in 3.1 and 3.2 releases. > > I've been using 3.0 for a while. I'm wondering whether similar analysis >...
2012 Jun 29
0
[LLVMdev] Problem compiling with clang + gold plugin: no archive symbol table
...least this combination passed the previously failed step, but got stuck in later ones. Also my GCC is still 4.5, so llvm 3.0 is not that outdated? Regards, Ryan On Fri, Jun 29, 2012 at 2:07 AM, Konstantin Tokarev <annulen at yandex.ru>wrote: > > 29.06.2012, 12:17, "ryan" <stdstack at gmail.com>: > > I tried some other configurations. Now with llvm 3.0 + clang 3.0, and > expoert CC to be clang -flto -use-gold-plugin,and other ENV variables. > > Good news is the "no archive symbol error message" is gone, but bad news > is new error messages appea...
2013 Feb 07
0
[LLVMdev] CostModelAnalysis for 3.0 release
On Feb 7, 2013, at 3:17 PM, ryan <stdstack at gmail.com> wrote: > Thanks a lot for the reply, Nadav! > I see that using the cost model in target-independent analysis is not good. But I really like the idea of having instruction > cost estimation available. Also the reason I can't directly move to 3.2 code base is that it f...
2012 Jun 29
0
[LLVMdev] Problem compiling with clang + gold plugin: no archive symbol table
...er at 827534 is not an ELF > object Searched a related thread(where the failed test case have similar error message) in: http://www.mail-archive.com/libtool at gnu.org/msg12034.html I'm wondering if that issue has been resolved? Best regards, Ryan On Thu, Jun 28, 2012 at 3:18 PM, ryan <stdstack at gmail.com> wrote: > Thanks for replying! > I didn't install the new binutils to system directory in case it messes > thing up. > For ranlib, from the error message, it seems to be the reason. But even I > export > RANLIB=/bin/true, clean the code and rebuild, it still f...
2013 Feb 07
0
[LLVMdev] CostModelAnalysis for 3.0 release
...to LLVM3.0 because it uses the new TargetTransformInfo analysis. I also wanted to mention that only _lowering_ passes (target-specific optimization passes) may use TTI and the cost model. Higher-level canonicalization passes should not use it. Thanks, Nadav On Feb 6, 2013, at 1:26 AM, ryan <stdstack at gmail.com> wrote: > Hi All, > I wanted to do some basic cost estimation of Instruction/BB. There're CostModelAnalysis and CodeMetrics available in 3.1 and 3.2 releases. > I've been using 3.0 for a while. I'm wondering whether similar analysis can be done in the old 3.0 r...
2013 Feb 06
2
[LLVMdev] CostModelAnalysis for 3.0 release
Hi All, I wanted to do some basic cost estimation of Instruction/BB. There're CostModelAnalysis and CodeMetrics available in 3.1 and 3.2 releases. I've been using 3.0 for a while. I'm wondering whether similar analysis can be done in the old 3.0 release, e.g. back porting the implementation. Thank you! Best, Ryan -------------- next part -------------- An HTML attachment was
2012 Jun 28
2
[LLVMdev] Problem compiling with clang + gold plugin: no archive symbol table
Thanks for replying! I didn't install the new binutils to system directory in case it messes thing up. For ranlib, from the error message, it seems to be the reason. But even I export RANLIB=/bin/true, clean the code and rebuild, it still fails with the same message. I created a symlink in /usr/lib/bfd-plugins as suggested in http://lists.cs.uiuc.edu/pipermail/llvmdev/2010-March/030101.html.
2013 Feb 08
2
[LLVMdev] CostModelAnalysis for 3.0 release
On Thu, Feb 7, 2013 at 3:23 PM, Nadav Rotem <nrotem at apple.com> wrote: > > On Feb 7, 2013, at 3:17 PM, ryan <stdstack at gmail.com> wrote: > > > Thanks a lot for the reply, Nadav! > > I see that using the cost model in target-independent analysis is not > good. But I really like the idea of having instruction > > cost estimation available. Also the reason I can't directly move to 3.2...
2013 Feb 08
0
[LLVMdev] CostModelAnalysis for 3.0 release
On Thu, Feb 07, 2013 at 04:07:38PM -0800, ryan wrote: > On Thu, Feb 7, 2013 at 3:23 PM, Nadav Rotem <nrotem at apple.com> wrote: > > > > > On Feb 7, 2013, at 3:17 PM, ryan <stdstack at gmail.com> wrote: > > > > > Thanks a lot for the reply, Nadav! > > > I see that using the cost model in target-independent analysis is not > > good. But I really like the idea of having instruction > > > cost estimation available. Also the reason I can...
2012 Jul 01
0
[LLVMdev] LD_LIBRARY_PATH precedence problem
Hi All, This is encountered when compiling llvm-gcc-4.2 (yeah, it's deprecated, but still want to play with it :)). I compiled an old gcc(4.2.1) in my home directory and set the bin to PATH to work with it. llvm-gcc compilation failed with the following: llvm-gcc/obj/./gcc/cc1: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.9' not found. So seems it didn't try to search the library
2012 Jul 09
0
[LLVMdev] Run pass on a particular Function or Module object
Hi, This question may be bit dumb. But I couldn't find it in the doc. Can I call instantiated a Pass and call methods like runOnFunction on a single Function object that I want to look at ? Or I have to use opt and then loop until that function? Thanks Ryan -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Jan 28
0
[LLVMdev] Purpose and usage of INITIALIZE_PASS_*
Hi All, Looking at the code of MemDepPrinter.cpp, I saw the char MemDepPrinter::ID = 0; > INITIALIZE_PASS_BEGIN(MemDepPrinter, "print-memdeps", > "Print MemDeps of function", false, true) > INITIALIZE_PASS_DEPENDENCY(MemoryDependenceAnalysis) > INITIALIZE_PASS_END(MemDepPrinter, "print-memdeps", > "Print MemDeps of function", false, true)
2012 Jun 22
2
[LLVMdev] Compile error of latest Dragonegg on Ubuntu with GCC 4.5
Hi, When I tried to compile Dragonegg using the SVN trunk code, I encountered failure with error message: In file included from > /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/plugin/include/rtl.h:28:0, > from /home/xxx/llvm/dragonegg/src/Convert.cpp:63: > /usr/lib/i386-linux-gnu/gcc/i686-linux-gnu/4.5.2/plugin/include/real.h:27:18: > fatal error: mpfr.h: No such
2012 Jun 22
1
[LLVMdev] Compile error of latest Dragonegg on Ubuntu with GCC 4.5
Yest. thanks. I just resolved this error by installing MPFR, MPC and GMP(by the way, these are not listed as prerequisites in the website.). But other errors come: /home/xxx/llvm/tools/dragonegg/src/TypeConversion.cpp: In function > ‘llvm::FunctionType* ConvertArgListToFnType(tree_node*, > llvm::ArrayRef<tree_node*>, tree_node*, bool, llvm::CallingConv::ID&, >
2012 Jun 28
2
[LLVMdev] Problem compiling with clang + gold plugin: no archive symbol table
Hi, I build llvm with gold plugin, clang and the binutils(and it's put into the PATH) with plugins support. ld.gold is renamed to ld. A quick test of clang -flto -O0 hello.c can succeed. But when I try to export CC="clang -v -flto" and compile MySQL, it failed in the linking with the following error message: "/home/ryan/binutils/bin/ld" -export-dynamic -z relro