add union-find based phi-class computation

This commit is contained in:
Quentin Carbonneaux 2015-09-25 13:02:39 -04:00
parent 08a2ffe8c4
commit f3bd48945e
3 changed files with 51 additions and 0 deletions

View file

@ -110,6 +110,7 @@ main(int ac, char *av[])
fillpreds(fn);
filllive(fn);
fillcost(fn);
fillphi(fn);
spill(fn);
rega(fn);
goto RPODump;
@ -123,6 +124,7 @@ main(int ac, char *av[])
fillpreds(fn);
filllive(fn);
fillcost(fn);
fillphi(fn);
spill(fn);
rega(fn);
fillrpo(fn);