Displaying 1 result from an estimated 1 matches for "skipregion".
2018 Jun 06
2
Porting OptBisect to New Pass Manager
...now may also create label on
each pass to determine it is skippable or not, and then do the check at
pass manager level.
3. No region/basicblock/callgraphscc pass support for new pass manager?
In legacy pass manager, OptBisect will be checked by skip() function on
certain types of passes. like skipRegion(), skipBasicBlocks().
But I did not see implementations of the passes I mentioned above in
new passes. So any plan to have them any more?
4. Is PassInfoMixin the right place to put skipPass() function?
The OptBisect works like this: At the beginning of each pass runs, it will
call a skipFuncti...