search for: skippass

Displaying 1 result from an estimated 1 matches for "skippass".

2018 Jun 06
2
Porting OptBisect to 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 skipFunction()/Module()/... function under pass.h to check if -opt-bisect is set and how much is counter accumulating. Seems all passes come from the structure PassInfoMixin API, and I see name() function...