Displaying 3 results from an estimated 3 matches for "0c7ab201".
2011 Mar 24
0
[LLVMdev] Make PPC JIT support inline assembly?
Hi 陳韋任,
> It seems PPC JIT does not recognize inline assembly.
> For example, when I give LLVM IR belows to PPC JIT,
>
> %0 = tail call i32* asm "", "={r10}"() nounwind ;<i32*> [#uses=1]
>
> it complaints that inline assembly is not a supported
> instruction. x86 JIT works fine, however.
I'm surprised this worked with the x86 JIT - I
2011 Mar 24
1
[LLVMdev] Make PPC JIT support inline assembly?
...> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110324/0c7ab201/attachment.html>
2011 Mar 24
3
[LLVMdev] Make PPC JIT support inline assembly?
Hi, all
It seems PPC JIT does not recognize inline assembly.
For example, when I give LLVM IR belows to PPC JIT,
%0 = tail call i32* asm "", "={r10}"() nounwind ; <i32*> [#uses=1]
it complaints that inline assembly is not a supported
instruction. x86 JIT works fine, however.
Is there a reason that makes PPC JIT not support inline
assembly?
Currently, we