search for: bestandi

Displaying 9 results from an estimated 9 matches for "bestandi".

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
2012 Sep 18
0
[LLVMdev] Problems on getting UNREACHABLE executed
Hi, 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: UNREACHABLE executed!0 lli
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 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,
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