search for: functionpass2

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

Did you mean: functionpass
2013 Feb 23
1
[LLVMdev] One question about two passes interaction
Hi all, I am trying to run a case as follows: FunctionPass1: try to get all function's names and store them to a global array FunctionPass2: get information from the global array In FunctionPass2, I use getAnalysisUsage() to set that to run FunctionPass2, FunctionPass1 should be executed first. But according to the running result, I found that these two passes are executing at the same time, which means After FunctionPass1 iterate on...
2013 Feb 23
1
[LLVMdev] One question about two passes interaction
...1:37 AM, Robert Sandra <robert.sandra0712 at gmail.com <http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev>>wrote: >* Hi all,*>**>* I am trying to run a case as follows:*>**>* FunctionPass1: try to get all function's names and store them to a global*>* array*>* FunctionPass2: get information from the global array*>* In FunctionPass2, I use getAnalysisUsage() to set that to run*>* FunctionPass2, FunctionPass1 should be executed first.*>**>* But according to the running result, I found that these two passes are*>* executing at the same time,*>* which m...