Displaying 5 results from an estimated 5 matches for "lllvmdatastructure".
Did you mean:
llvmdatastructure
2005 Apr 02
2
[LLVMdev] Running Pool Allocated programs
...ATED FROM ***
MaxHeapSize = 0.062500KB HeapSizeAtExit = 0.062500KB NOTE: only valid if using
Heuristic=AllPools and no bumpptr/realloc!
====================
I have tried to link the program with the Analysis and with Datastructure libs:
llvm-gcc -o test test.opt.bc -lpoolalloc -lpoolalloc_rt -lLLVMDataStructure -lLLVMAnalysis
But I am still receiving the error.
Another question, I do not want to use the bump ptr optimization, and I suppose that the right
heuristic for that is AllNodes? But if I want to use it, what is the right heuristic?
Also, if I want to use the Pointer Compression, I suppose that...
2005 Apr 02
0
[LLVMdev] Running Pool Allocated programs
...of the
runtime library. If you rebuild the FL2Allocator with 'make
ENABLE_OPTIMIZED=1' and link with the result, you shouldn't get this.
> I have tried to link the program with the Analysis and with Datastructure libs:
> llvm-gcc -o test test.opt.bc -lpoolalloc -lpoolalloc_rt -lLLVMDataStructure -lLLVMAnalysis
> But I am still receiving the error.
You should only need -lpoolalloc_rt.
For the record, I usually do (effectively) this to test the pool
allocator:
llvm-gcc *.c -o program # compile&link whole prog with LLVM
opt -load ... -poolalloc program.bc ... -o program.pa....
2005 Apr 03
2
[LLVMdev] Running Pool Allocated programs
...ary. If you rebuild the FL2Allocator with 'make
> ENABLE_OPTIMIZED=1' and link with the result, you shouldn't get this.
>
> > I have tried to link the program with the Analysis and with Datastructure libs:
> > llvm-gcc -o test test.opt.bc -lpoolalloc -lpoolalloc_rt -lLLVMDataStructure -lLLVMAnalysis
> > But I am still receiving the error.
>
> You should only need -lpoolalloc_rt.
>
> For the record, I usually do (effectively) this to test the pool
> allocator:
>
> llvm-gcc *.c -o program # compile&link whole prog with LLVM
> opt -load...
2005 Apr 03
0
[LLVMdev] Running Pool Allocated programs
...rebuild the FL2Allocator with 'make
>> ENABLE_OPTIMIZED=1' and link with the result, you shouldn't get this.
>>
>>> I have tried to link the program with the Analysis and with Datastructure libs:
>>> llvm-gcc -o test test.opt.bc -lpoolalloc -lpoolalloc_rt -lLLVMDataStructure -lLLVMAnalysis
>>> But I am still receiving the error.
>>
>> You should only need -lpoolalloc_rt.
>>
>> For the record, I usually do (effectively) this to test the pool
>> allocator:
>>
>> llvm-gcc *.c -o program # compile&link whole pr...
2005 Apr 03
1
[LLVMdev] Running Pool Allocated programs
...cator with 'make
> >> ENABLE_OPTIMIZED=1' and link with the result, you shouldn't get this.
> >>
> >>> I have tried to link the program with the Analysis and with Datastructure libs:
> >>> llvm-gcc -o test test.opt.bc -lpoolalloc -lpoolalloc_rt -lLLVMDataStructure -lLLVMAnalysis
> >>> But I am still receiving the error.
> >>
> >> You should only need -lpoolalloc_rt.
> >>
> >> For the record, I usually do (effectively) this to test the pool
> >> allocator:
> >>
> >> llvm-gcc *.c -o pro...