如何在 FreeBSD 下获取内核函数及其 addresses/sizes 或符号 table 的列表?

How to get a list of kernel functions and their addresses/sizes, or symbol table under FreeBSD?

如果我想获得 Linux 用户空间下的 "nm -S program" 内核函数名称、地址和大小,我可以为 FreeBSD 内核做些什么?来源可以是来自文件的静态或来自内存的动态。

好像Linux有符号table叫"System.map",FreeBSD有没有相应的符号,或者我还能做什么?

nm -S /boot/kernel/kernel.符号,也许?