One of the methods you can use is to take a list of obsolete functions that are being removed, and grep for them. The small fu script is very important for such things.
Suppose you have a deprecated.txt file with deprecated function names, one per line:
for func in `cat deprecated.txt` do grep -R $func /path/to/src done
This will tell you all instances of deprecated functions that you use.
source share