search for: rubiano

Displaying 6 results from an estimated 6 matches for "rubiano".

2015 Mar 12
2
[LLVMdev] CFG Customization
...escribe more clearly what you are trying to accomplish, it > would help people give better advice. As I don't have a clear idea of > what you're trying to do, I can't explain the best way to do it. > > Regards, > > John Criswell > > > On 3/12/15 12:41 PM, rubiano wrote: >> Hi all, >> >> I'm discovering LLVM and I want to build a customized CFG with >> customized nodes (here BasicBlocks). >> Simply, the purpose is to enrich CFG with some other informations. >> What is the best way to do that ? >> >> Plea...
2017 Jan 19
2
Loop Invariants Detection questions
On Wed, Jan 18, 2017 at 8:05 PM, Friedman, Eli <efriedma at codeaurora.org> wrote: > On 1/18/2017 2:56 AM, Thomas RUBIANO wrote: > > Ty Eli for your answer. > > On Tue, Jan 17, 2017 at 8:11 PM, Friedman, Eli <efriedma at codeaurora.org> > wrote: > >> On 1/17/2017 7:12 AM, Thomas RUBIANO via llvm-dev wrote: >> >>> Hi all! >>> >>> I'm new here, and would...
2017 Jan 20
2
Loop Invariants Detection questions
...l nsw i32 %1, %2 → I2 simply because the %mul uses %1 as input. But when I dump the dependence "depends(I1,I2,true)" I have nothing… null. Did I forget something? On Thu, Jan 19, 2017 at 8:04 PM, Friedman, Eli <efriedma at codeaurora.org> wrote: > On 1/19/2017 2:16 AM, Thomas RUBIANO wrote: > > > > On Wed, Jan 18, 2017 at 8:05 PM, Friedman, Eli <efriedma at codeaurora.org> > wrote: > >> On 1/18/2017 2:56 AM, Thomas RUBIANO wrote: >> >> Ty Eli for your answer. >> >> On Tue, Jan 17, 2017 at 8:11 PM, Friedman, Eli <efriedma...
2017 Jan 18
2
Loop Invariants Detection questions
Ty Eli for your answer. On Tue, Jan 17, 2017 at 8:11 PM, Friedman, Eli <efriedma at codeaurora.org> wrote: > On 1/17/2017 7:12 AM, Thomas RUBIANO via llvm-dev wrote: > >> Hi all! >> >> I'm new here, and would like to implement my own Loop Invariant Detection >> adding some more information on Quasi-Invariants. >> >> First, is there anything about Quasi-Invariants detection in LLVM I would >> m...
2017 Jan 17
2
Loop Invariants Detection questions
Hi all! I'm new here, and would like to implement my own Loop Invariant Detection adding some more information on Quasi-Invariants. First, is there anything about Quasi-Invariants detection in LLVM I would missed? I've seen LICM using LoopInfo::isLoopInvariant for finding invariants. It seems that this method considers a Value invariant if: - it's an Instruction not presents in the
2015 Mar 12
2
[LLVMdev] CFG Customization
Hi all, I'm discovering LLVM and I want to build a customized CFG with customized nodes (here BasicBlocks). Simply, the purpose is to enrich CFG with some other informations. What is the best way to do that ? Please, tell me if I'm wrong (I'm not familiar enough with c++) but I understand that : - CFG is a GraphTraits<BasicBlock*> - it's not allowed to inherit from