search for: irwithin

Displaying 3 results from an estimated 3 matches for "irwithin".

Did you mean: varwithin
2009 May 10
2
[LLVMdev] llvm to x86 IR conversion
Hi, I am running a basic block pass (and iterating through each instruction). Is it possible to convert the basic block instruction form llvm IR to x86 IRWITHIN the path ? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090510/9c636a9a/attachment.html>
2009 May 10
0
[LLVMdev] llvm to x86 IR conversion
On Sun, May 10, 2009 at 15:17, Rotem Varon <varonrotem at gmail.com> wrote: > I am running a basic block pass (and iterating through each instruction). > Is it possible to convert the basic block instruction form llvm IR to x86 IR > WITHIN the path ? > It seems to me that phi nodes would mean that you can't convert any unit smaller than a function to native code. ~ Scott
2009 May 10
1
[LLVMdev] llvm to x86 IR conversion
Hi, I believe that my question isn't clear. So, please let me rephrase : I am running a basic block pass (and iterating through each instruction). Is it possible to convert the basic block instruction form llvm IR to x86 IRWITHIN the path ? I mean: is LLVM API exists for this purpose ? Again, thanks. On Sun, May 10, 2009 at 10:30 PM, me22 <me22.ca at gmail.com> wrote: > On Sun, May 10, 2009 at 15:17, Rotem Varon <varonrotem at gmail.com> wrote: > > I am running a basic block pass (and iterating thro...