search for: tynarex

Displaying 4 results from an estimated 4 matches for "tynarex".

2009 Mar 04
1
[LLVMdev] Control Data Flow Graph (CDFG)
...LLVM Developers Mailing List <llvmdev at cs.uiuc.edu> > Message-ID: >        <645d868c0903022114k43d69187h13b4dcddd6b30d3a at mail.gmail.com> > Content-Type: text/plain; charset="iso-8859-1" > > Hi Wenhao, > > On Mon, Mar 2, 2009 at 8:42 PM, Wenhao Jia <tynarex at gmail.com> wrote: > > > > > Does anyone know any tool that can help generate a control/data flow graph > > (CDFG) for LLVM IR programs? > > > > > > Are you referring to a CDFG as used in architectural/behavioral synthesis, > or are you interested in a...
2009 Mar 03
1
[LLVMdev] Control Data Flow Graph (CDFG)
Hi, Does anyone know any tool that can help generate a control/data flow graph (CDFG) for LLVM IR programs? The opt -view-cfg and related commands can visualize a program as a control flow graph. But how can I embody data flow information into that graph? Your help will be greatly appreciated! Thanks, Wenhao Jia -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Oct 07
1
[LLVMdev] Use LoopInfo in a non-pass class such as ProfileInfoLoader?
Hi everyone, I'm adding loop profiling to LLVM built-in profiler. I'm just wondering in a class that's not a pass, such as ProfileInfoLoader, how can I get information produced by passes such as LoopInfo and DominatorTree? In other words, ProfileInfoLoader is not a pass, so it can't call AnalysisUsage::addRequired and AnalysisUsage::getAnalysisUsage directly. Then how can it know
2009 May 13
2
[LLVMdev] Loop-carried Dependence
Hi, Does anyone know if there is any existing code I can use to do a loop-carried dependence analysis for LLVM IR programs? I searched the mailing-list archive and it seems like someone planned to implement a loop dependence analysis pass in March. I'm just wondering if this project is ongoing/finished or if there is other projects that may have the code I'm interested in. Thanks!