Displaying 9 results from an estimated 9 matches for "bestandy".
Did you mean:
bestand
2012 Sep 25
2
[LLVMdev] Inline ASM Problem
Sorry that I have implemented nothing for it. aget is not my own project which is a public project of paralell "wget". I only want to use it as a common benchmark.
Do I need to implement anything for it?
Thank you
BestAndy
Hi Andy,
On 25/09/12 12:10, Zhoujinguo wrote:
>
> Thank you for replying.
>
> The target is "aget" which is attached. The compiling shell is also attached.
since this seems to be your own custom target I ask: did you implement an asm
parser for your target?
Best wishes, Du...
2012 Sep 18
0
[LLVMdev] Problems on getting UNREACHABLE executed
...li 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 attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120918/3c2fa035/attachment.html>
2012 Sep 25
0
[LLVMdev] Inline ASM Problem
Hi Andy,
On 25/09/12 12:10, Zhoujinguo wrote:
>
> Thank you for replying.
>
> The target is "aget" which is attached. The compiling shell is also attached.
since this seems to be your own custom target I ask: did you implement an asm
parser for your target?
Best wishes, Duncan.
>
> Best
> Andy
>
>
> > If I use "-use-mcjit" argument, the
2012 Sep 18
0
[LLVMdev] Problems on getting UNREACHABLE executed
Dear Ciao, Duncan,
Thank you for replying. I tried and the error goes away. But there comes a new error:
LLVM ERROR: Unknown object format!
How can I solve this problem?
Thank you!
BestAndy
--- 12年9月18日,周二, Duncan Sands <baldrick at free.fr> 写道:
发件人: Duncan Sands <baldrick at free.fr>
主题: Re: [LLVMdev] Problems on getting UNREACHABLE executed
收件人: llvmdev at cs.uiuc.edu
日期: 2012年9月18日,周二,下午4:02
Hi Andy,
> I am currently using llvm to compile memcache to get the bitco...
2012 Sep 25
2
[LLVMdev] Inline ASM Problem
Dear Ciao, Duncan,
I am using linux--Intel X86-64. Do I need to implement an asm parser for LLVM JIT myself or there exists some tools for it? Thank you.
BestAndy
Hi Andy,
On 25/09/12 14:19, Zhoujinguo wrote:
> Sorry that I have implemented nothing for it.
inline asm won't work without an asm parser, which is something that knows how
to turn assembler strings like "mov %eax, %ebx" into opcodes, i.e. the numbers
which, when placed into memo...
2012 Sep 25
2
[LLVMdev] Inline ASM Problem
Thank you for replying.
The target is "aget" which is attached. The compiling shell is also attached.
Best
Andy
> If I use "-use-mcjit" argument, the error message changes to "LLVM ERROR:
> Inline asm not supported by this streamer because we don't have an asm parser
> for this target"
What's your target? Please attach your example code so
2012 Sep 18
2
[LLVMdev] Problems on getting UNREACHABLE executed
Hi Andy,
> I am currently using llvm to compile memcache to get the bitcode. I simply
> change all the "gcc -c" command to "clang -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:
>
>
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
2012 Sep 25
0
[LLVMdev] Inline ASM Problem
Hi Andy,
On 25/09/12 14:19, Zhoujinguo wrote:
> Sorry that I have implemented nothing for it.
inline asm won't work without an asm parser, which is something that knows how
to turn assembler strings like "mov %eax, %ebx" into opcodes, i.e. the numbers
which, when placed into memory, cause the processor to execute the
"mov %eax, %ebx" operation. After all, an