in reply to Get List of modules/files where subroutine is used

If you are on an Unix system you could use
find . | xargs grep -n "Any string you want to find in files"
That will give you output in the following format:
./folder/folder/file: line number: line containing "string"

Of course in your case you would use the name of your subroutine as the string.