Displaying 4 results from an estimated 4 matches for "012315".
Did you mean:
512315
2012 Apr 18
2
[LLVMdev] how to get path profile information ?
Dear all,
I have already checked some related posted messages, such as:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-January/012315.html and
http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-February/012466.html
After getting rid of some error messages, I was able to run the following
commands:
1) opt -insert-path-profiling matmul.bc -o matmul.pp.bc
2) lli -load ../llvm_build/Debug+Asserts/lib/libprofile_rt.so matmul.pp.bc
(gen...
2012 Apr 18
0
[LLVMdev] how to get path profile information ?
...of erkan diken [erkandiken at gmail.com]
Sent: Wednesday, 18 April, 2012 5:15:42 PM
To: llvmdev at cs.uiuc.edu
Subject: [LLVMdev] how to get path profile information ?
Dear all,
I have already checked some related posted messages, such as:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-January/012315.html and
http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-February/012466.html
After getting rid of some error messages, I was able to run the following commands:
1) opt -insert-path-profiling matmul.bc -o matmul.pp.bc
2) lli -load ../llvm_build/Debug+Asserts/lib/libprofile_rt.so matmul.pp.bc (gen...
2008 Feb 07
2
[LLVMdev] Problems with instrumentation
Hi,
I'm trying to instrument llvm bytecodes using opt. I performed the following
commands:
llvm-gcc -g -emit-llvm test.c -c -o test.bc
opt -insert-edge-profiling test.bc -o output.bc
llc output.bc -o output.s
gcc output.s -o test.out
However, it can't find symbol llvm_start_edge_profiling.
/tmp/ccw7GH4c.o: In function `main':
/home/raul/LLVM/tests//test.c:8: undefined reference
2008 Feb 07
0
[LLVMdev] Problems with instrumentation
...ly. To build it, please, run
make in the $LLVMOBJDIR/runtime directory. If it complains about
LLVMGCCDIR not set, it means you have to reconfigure LLVM with
--enable-llvmgccdir option.
You may also find some useful information in this thread:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-January/012315.html
-Wojtek