search for: runonfunciton

Displaying 2 results from an estimated 2 matches for "runonfunciton".

2009 Aug 21
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
...module, > before Pass2's runOnFunction is called the first time. Not impossible at all. I assume that Pass1 is your pass, just make the "Pass1::runOnFunction" method do everything you need. If Pass2 ends up calling pass1 in various ways that require it to do things after its runonfunciton is complete, just make pass1 "transitively depend on" memdep, and give pass1 an update interface that is a superset of what memdep needs. -Chris
2009 Aug 21
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Chris Lattner schrieb: > > On Aug 20, 2009, at 11:44 AM, Marc Brünink wrote: > >> Hi, >> >> I do have a FunctionPass that does change the code. This FunctionPass >> requires another FunctionPass which performs all the necessary analyses. >> This AnalysisPass again requires MemoryDependenceAnalysis. >> >> The problem is, that I would like