Displaying 1 result from an estimated 1 matches for "set_xxx_opt".
2008 May 26
2
[LLVMdev] Making optimization passes do less
...functionality. This approach could be useful, but
I can't really see how it would work out yet.
* Add options to the current passes. I could add an option to the current
passes to make them do what I want (either using an option to
createXXXPass() and the constructor, or perhaps using a set_XXX_option()
methode or something). This might work for SimplifyCFG, since that option
could be made a bit more generic, such as "Don't move instructions between
blocks" (leaving SimplifyCFG free to merge blocks whenever appropriate).
For InstructionCombining this is harder, since ou...