Displaying 4 results from an estimated 4 matches for "timedrun".
Did you mean:
timed_run
2012 Sep 18
2
[LLVMdev] Problems on getting UNREACHABLE executed
...uot;.o" to
> ".bc". And all gcc link command to llvm-ld. By these means, I successfully get
> the bitcode file, but when I run it using "lli", it fails with the error:
>
> UNREACHABLE executed!
> 0 lli 0x087c2cab
> Stack dump:
> 0. Program arguments lli timedrun.bc
> 1. Running Pass 'X86 Machine Code Emitter' on function @main
> aborted
>
> I encountered the same error when executing other executables in the project.
> Why does this happen? Is there any suggestions to get rid of such problem?
this probably means that the bitcode con...
2012 Sep 18
0
[LLVMdev] Problems on getting UNREACHABLE executed
...ang -emit-llvm -c", and output ".o" to ".bc". And all gcc link command to llvm-ld. By these means, I successfully get the bitcode file, but when I run it using "lli", it fails with the error:
UNREACHABLE executed!0 lli 0x087c2cabStack dump:0. Program arguments lli timedrun.bc1. Running Pass 'X86 Machine Code Emitter' on function @mainaborted
I encountered the same error when executing other executables in the project. Why does this happen? Is there any suggestions to get rid of such problem?
Thank you
BestAndy
-------------- next part --------------
An HTML...
2012 Sep 18
0
[LLVMdev] Problems on getting UNREACHABLE executed
...uot;.o" to
> ".bc". And all gcc link command to llvm-ld. By these means, I successfully get
> the bitcode file, but when I run it using "lli", it fails with the error:
>
> UNREACHABLE executed!
> 0 lli 0x087c2cab
> Stack dump:
> 0. Program arguments lli timedrun.bc
> 1. Running Pass 'X86 Machine Code Emitter' on function @main
> aborted
>
> I encountered the same error when executing other executables in the project.
> Why does this happen? Is there any suggestions to get rid of such problem?
this probably means that the bitcode con...
2012 Apr 07
3
[LLVMdev] Problems on getting the OPT resultant bitcode
Hi,
I want to write a piece of code to instrument c++ programs. I have finished writing the pass, but I do not know how to get the resultant bitcode
I ran OPT with the following arguments:
opt -basiccg -basicaa -load /home/andy/llvm-3.0.src/Release/lib/InstTest.so -InstTest </home/andy/llvm-3.0.src/workspace/threadTest/Debug/threadTest.bc> -o=</home/andy/output/out.bc> /dev/null