search for: rdpatel

Displaying 2 results from an estimated 2 matches for "rdpatel".

Did you mean: dpatel
2012 Nov 24
1
[LLVMdev] profiling basic block frequency in LLVM3.1
...s an inconsistent profiling information.   Please, anyone help me to figure out where I'm doing wrong? ---------------------------------------------------------------------------------------------------------------------------------------------- Following commands are used for this profiling.   rdpatel55 at ubuntu:~/RDPATEL/LLVM3.1/RDSampleCode/test$ clang -O0 -emit-llvm -c -otest1.o test1.c rdpatel55 at ubuntu:~/RDPATEL/LLVM3.1/RDSampleCode/test$ opt -disable-opt -insert-edge-profiling -o test1.o.inst test1.o rdpatel55 at ubuntu:~/RDPATEL/LLVM3.1/RDSampleCode/test$ lli -O0 -fake-argv0 'test1...
2012 Nov 18
1
[LLVMdev] Basic Block Frequency counting in LLVM 2.9
Dear All, I'm using LLVM2.9 for profiling basic block frequency. I'm using following commands. rdpatel55 at ubuntu:~$ llvm-gcc -emit-llvm -O0 -c -o adpcm.bc adpcm.c rdpatel55 at ubuntu:~$ llvm-gcc -emit-llvm -O0 -c -o rawcaudio.bc rawcaudio.c rdpatel55 at ubuntu:~$ llvm-link -o main.bc rawcaudio.bc adpcm.bc rdpatel55 at ubuntu:~$ opt -q -f -insert-edge-profiling -o main.inst main.bc rdpatel55 at...