Hey, first of all I wanted to thank you for creating such a great tool and for making it available on your web.
Sometimes when browsing code I come across undefined symbols which I believe could be defined. Assembly files such as arch/x86/entry/entry_64.S are a good example, where they tend to fall into one of these categories:
I know that #151 and #235 implemented the code required to process ENTRY and SYSCALL_DEFINE* definitions. Could it be possible to do the same for some of these?
It does appear a bit hacky and inefficient to add a pass for each of the definition methods involved, but I don't know if there's a better way of doing it short of creating a custom parsers for ctags.
Hey, first of all I wanted to thank you for creating such a great tool and for making it available on your web.
Sometimes when browsing code I come across undefined symbols which I believe could be defined. Assembly files such as arch/x86/entry/entry_64.S are a good example, where they tend to fall into one of these categories:
SYM_INNER_LABELmacro.SYM_CODE_START.I know that #151 and #235 implemented the code required to process
ENTRYandSYSCALL_DEFINE*definitions. Could it be possible to do the same for some of these?It does appear a bit hacky and inefficient to add a pass for each of the definition methods involved, but I don't know if there's a better way of doing it short of creating a custom parsers for ctags.