search for: sxl463

Displaying 5 results from an estimated 5 matches for "sxl463".

Did you mean: 0x0463
2016 Dec 15
0
How to get the value for casting in a bitcast instruction more efficiently?
I guess I didn't understand your question, my point was that the operand, in your example, inherits from value class, it already is a value, most everything in IR is a value. -Ryan On Thu, Dec 15, 2016 at 3:10 PM, Shen Liu <sxl463 at cse.psu.edu> wrote: > Hi Ryan, > > Thanks for your reply! Yes i can use llvm::Use.get() API to do this, i > just want to know whether there's a better way(e.g. an existed API like > getValue()) to make my code look more professional. > > On Thu, Dec 15, 2016 at 2:58...
2017 Oct 22
2
Replace "while" "for" loops with "If-Else"
Hi weiren, Thanks for your suggestion! Yes, I am trying to do this "nested flattening". It seems that I need a post-dominator tree-based algorithm to flatten the nested loops from the innermost to the outermost, level by level. Is there any feature already existed in LLVM tools? Or similar? On Sun, Oct 22, 2017 at 2:31 AM, 陳韋任 <chenwj.cs97g at g2.nctu.edu.tw> wrote: > If
2017 Jan 16
2
LLVM JIT query
Sir, I am working on a project to provide LLVM JIT support for a specific processor architecture. I have an overall idea about llvm. Please guide where to start from a practical or implementation view point. Regards, Siddharth -------------- next part -------------- An HTML attachment was scrubbed... URL:
2017 Apr 19
2
RPC on LLVM IR: any example programs for this?
Hi Lang, Thanks for your reply! It seems that the code of ORC has been changed a lot these months. Actually what I wanted to see then was quite simple, Let's say we have two modules M1.bc and M2.bc, and in M1 we want to call function foo(defined in M2.bc)with the function type int foo(float, char*){...} what basic steps do I need to do to make M1.bc call foo remotely? BTW, does the
2016 Dec 15
0
How to get the value for casting in a bitcast instruction more efficiently?
This might help: http://llvm.org/docs/ProgrammersManual.html#the-value-class Or maybe I'm misunderstanding what you mean by "efficient way to get the value". When you say 'value', I'm assuming you mean the class. In your case, AllocaInst inherits from value. -Ryan On Thu, Dec 15, 2016 at 10:24 AM, Shen Liu via llvm-dev < llvm-dev at lists.llvm.org> wrote: >