Displaying 3 results from an estimated 3 matches for "newbh".
Did you mean:
newbb
2011 Mar 02
3
[LLVMdev] Compile C files to one .bc file
Hi
I'm trying to compile the "bh" C program from the Olden benchmark to one bc file.
# compile source files into an LLVM bitcode file
llvm-gcc -emit-llvm -c args.c -o args.bc -w -DTORONTO
llvm-gcc -emit-llvm -c newbh.c -o newbh.bc -w -DTORONTO
llvm-gcc -emit-llvm -c util.c -o util.bc -w -DTORONTO
llvm-gcc -emit-llvm -c walksub.c -o walksub.bc -w -DTORONTO
# To link files together using llvm-ld
llvm-ld -o bh.bc newbh.bc args.bc util.bc walksub.bc -lm
But when I try to run my pass over bh.bc file or just compil...
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan,
Sorry for the delay. It's great that you are working on MergeFunctions
as well and I agree, we should definitely try to combine our efforts to
improve MergeFunctions.
Just to give you some context, the pass (with the similar function
merging patch) is already being used in a production setting. From my
point of view, it would be better if we focus on improving its
capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
....01 13705 0 0.01 13705
nbench0.ll 15 99749 0 0.02 99733 0 0.02 99733
nbench1.ll 66 433216 0 0.05 433200 0 0.04 433200
n-body.ll 4 27716 0 0.01 27692 0 0.01 27692
negamax.ll 4 187684 0 0.02 187665 0 0.02 187665
nestedloop.ll 2 7958 0 0.01 7939 0 0.01 7939
neural.ll 12 88340 0 0.02 88314 0 0.01 88314
newbh.ll 30 205828 0 0.02 205810 0 0.02 205810
newmdct.ll 5 165314 0 0.02 165283 0 0.03 165283
neworient.ll 1 18392 0 0.01 18359 0 0.01 18359
newton.ll 1 5663 0 0.01 5634 0 0.01 5634
newvor.ll 32 132156 0 0.02 132133 0 0.02 131127
node.ll 2 6852 0 0.01 6829 0 0.01 6829
nonterminal.ll 3 8374 0 0.01 8358 0...