search for: passneeds

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

2007 Feb 22
2
[LLVMdev] opt -verify
I am writing an interprocedural compiler pass. Because the passneeds information from a FunctionPass, e.g., the post-dominance frontier (PDF), and because a ModulePass is not permitted to require a FunctionPass, I am forced to make my pass a FunctionPass and do majority of its work in the doFinalization() method. When I run "opt -mypass -verify -o code2.bc...
2007 Feb 22
3
[LLVMdev] opt -verify
...ortProcessAction option. verifyModule() returns false, but does not abort and does not print out any information about what caused the verification to fail. Chris Lattner wrote: > On Wed, 21 Feb 2007, Ryan M. Lefever wrote: >> I am writing an interprocedural compiler pass. Because the passneeds >> information from a FunctionPass, e.g., the post-dominance frontier >> (PDF), and because a ModulePass is not permitted to require a >> FunctionPass, I am forced to make my pass a FunctionPass and do majority >> of its work in the doFinalization() method. > > ok &gt...
2007 Feb 22
0
[LLVMdev] opt -verify
...returns false, but does not > abort and does not print out any information about what caused the > verification to fail. > > Chris Lattner wrote: > >>On Wed, 21 Feb 2007, Ryan M. Lefever wrote: >> >>>I am writing an interprocedural compiler pass. Because the passneeds >>>information from a FunctionPass, e.g., the post-dominance frontier >>>(PDF), and because a ModulePass is not permitted to require a >>>FunctionPass, I am forced to make my pass a FunctionPass and do majority >>>of its work in the doFinalization() method. >&...
2007 Feb 22
0
[LLVMdev] opt -verify
On Wed, 21 Feb 2007, Ryan M. Lefever wrote: > I am writing an interprocedural compiler pass. Because the passneeds > information from a FunctionPass, e.g., the post-dominance frontier > (PDF), and because a ModulePass is not permitted to require a > FunctionPass, I am forced to make my pass a FunctionPass and do majority > of its work in the doFinalization() method. ok > When I run "opt -m...
2007 Feb 22
1
[LLVMdev] opt -verify
...es not print out any information about what caused the >>verification to fail. >> >>Chris Lattner wrote: >> >> >>>On Wed, 21 Feb 2007, Ryan M. Lefever wrote: >>> >>> >>>>I am writing an interprocedural compiler pass. Because the passneeds >>>>information from a FunctionPass, e.g., the post-dominance frontier >>>>(PDF), and because a ModulePass is not permitted to require a >>>>FunctionPass, I am forced to make my pass a FunctionPass and do majority >>>>of its work in the doFinalization...