Displaying 4 results from an estimated 4 matches for "assistds".
Did you mean:
assist
2015 Oct 13
2
Compiling SAFECode poolalloc in cygwin create different libraries compared to linux.
Hi,
On Linux I observed
[root at localhost poolalloc]# find . -name *.a
./Release+Asserts/lib/LLVMDataStructure.a
./Release+Asserts/lib/poolalloc.a
./Release+Asserts/lib/AssistDS.a
./Release+Asserts/lib/libpoolalloc_fl_rt.a
./Release+Asserts/lib/libpoolalloc_rt.a
./Release+Asserts/lib/libpa_pre_rt.a
./Release+Asserts/lib/libcount.a
On cygwin I observed
kpawar at KPAWAR-LT ~/SAFECode/LLVM_SRC/llvm/projects/poolalloc
$ find . -name *.a
./Release+Asserts/lib/libAssistDS.a
....
2016 Apr 27
2
Building and Invoking DSA or Pool Alloc
...ease_32 llvm
cd llvm/projects
svn co http://llvm.org/svn/llvm-project/poolalloc/branches/release_32 poolalloc
2) Was able to build the binaries and libraries
../rel_32/build_rel/projects/poolalloc/Release+Asserts/lib
-rw-rw-r-- 1 sumani sumani 987956 Apr 15 15:56 AssistDS.a
-rwxrwxr-x 1 sumani sumani 508376 Apr 15 15:56 AssistDS.so
-rw-rw-r-- 1 sumani sumani 2648 Apr 15 15:56 libcount.a
-rwxrwxr-x 1 sumani sumani 8539 Apr 15 15:56 libcount.so
-rw-rw-r-- 1 sumani sumani 6514 Apr 15 15:56 libpa_pre_rt.a
-rw-rw-r-- 1 sumani sumani 13526 Apr 15 15:56 libpool...
2015 Oct 14
2
Compiling SAFECode poolalloc in cygwin create different libraries compared to linux.
...:16 PM, John Criswell <jtcriswel at gmail.com> wrote:
> Dear Kiran,
>
> Which version of LLVM/SAFECode are you using? Is it LLVM 3.2?
>
> I'm guessing that you're using LLVM 3.2 and trying to compile
> safecode/tools/LTO (that's the only component that links in AssistDS.a).
> You could try changing the following line:
>
> $(PROJ_OBJ_ROOT)/$(BuildMode)/lib/libAssistDS.a:
> $(POOLALLOC_OBJDIR)/$(BuildMode)/lib/AssistDS.a
>
> ... to:
>
> $(PROJ_OBJ_ROOT)/$(BuildMode)/lib/libAssistDS.a:
> $(POOLALLOC_OBJDIR)/$(BuildMode)/lib/libAssistDS.a
&g...
2012 Apr 22
1
[LLVMdev] How to use -ds-aa in llvm
Dear all,
I'm a new user of LLVM. I'm trying to use DSA alias
analysis in LLVM. I compiled llvm 3.0 and poolalloc (checkout
from svn). I get the following lib in the ${poolalloc}/Release/lib/ :
AssistDS.so
libcount.so
libpoolalloc_rt.so
LLVMDataStructure.so
poolalloc.so
I tried to load all of them and do analysis by
opt -load ${poolalloc}/Release/lib/<lib_name.so> -ds-aa -print-alias-sets Example.bc
However, I still get error message "opt: Unknown command line argument '-ds-aa...