Displaying 4 results from an estimated 4 matches for "unkknown".
Did you mean:
unknown
2011 May 09
4
[LLVMdev] Path profiling command
...ath
4. Run program to get profile info
./foo_path –llvmprof-out
5. Create path count map from raw data
opt –path-profile-loader-file =llvmprof.out –path-profile-loader foo_path.bc
–o path.out
6. Load Profile info:
llvm-prof path.out
The error message from llvm-prof is: llvm-prof: Unkknown packet #5
Could you explain me the error message?
Are there errors in the command chain?
What is the format of file llvmprof.out? Is it possible to read llvmprof.out
from command llvm-prof by ignoring step 5?
What is the purpose of command in step 5?
Thanks so much
Linh
-------------- nex...
2011 May 10
0
[LLVMdev] Path profiling command
..."regular" profiling code. So I'm only guessing in case there is not
other answer.
On 9 May 2011 20:19, Andrew Trick <atrick at apple.com> wrote:
>
> On May 9, 2011, at 3:36 AM, Linh Ho Tran wrote:
>
> [...]
>
> The error message from llvm-prof is: llvm-prof: Unkknown packet #5
>
> Could you explain me the error message?
>
> Are there errors in the command chain?
>
> What is the format of file llvmprof.out? Is it possible to read
> llvmprof.out from command llvm-prof by ignoring step 5?
>
> What is the purpose of command in step 5?
M...
2011 May 11
0
[LLVMdev] Path profiling command
..."regular" profiling code. So I'm only guessing in case there is not
other answer.
On 9 May 2011 20:19, Andrew Trick <atrick at apple.com> wrote:
>
> On May 9, 2011, at 3:36 AM, Linh Ho Tran wrote:
>
> [...]
>
> The error message from llvm-prof is: llvm-prof: Unkknown packet #5
>
> Could you explain me the error message?
>
> Are there errors in the command chain?
>
> What is the format of file llvmprof.out? Is it possible to read
> llvmprof.out from command llvm-prof by ignoring step 5?
>
> What is the purpose of command in step 5?
M...
2013 Apr 01
1
[LLVMdev] path profile result with LLVM
I want to get path profiling information with LLVM.
LLVM provides methods for path profiling.I also get the llvmprof.out
successfully. So I want to output the result.With llvm-prof ,I get the
error:llvm-prof: Unkknown packet #5.
So I have to write my own pass to output the path profiling result,the
following is my kernel codes:
////////////////////////////////////////////////////////////////////////////////////
bool PathProfileOutput::runOnModule(Module &M) {
PathProfileInfo& pathP...