summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_ctf.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* sick of the CMU, let's make this KNFderaadt2020-10-151-6/+6
* Default to 0 arguments if no symbol has been found in the CTF section.mpi2019-11-121-2/+2
* db_addr_t -> vaddr_tmpi2019-11-071-3/+3
* Pass the correct size to free(9) in the error path of db_ctf_decompress().bluhm2018-08-311-2/+2
* Do not truncate 64bit integers when pretty-printing types.mpi2018-01-091-2/+16
* Remove forward declaration hack now that ctfconv(1) merge them correctly.mpi2017-11-011-8/+1
* return a missing return (was left out of previous)jasper2017-10-131-1/+2
* - use db_printf()jasper2017-10-131-2/+7
* missing prototype for db_ctf_pprintjasper2017-10-111-1/+2
* Skip forward declarations until ctfconv(1) properly merge them withmpi2017-09-121-1/+8
* If you use sys/param.h, you don't need sys/types.hderaadt2017-09-081-3/+2
* use sizeof(variable) instead of sizeof(type) to shorten some codedlg2017-09-061-2/+2
* when pretty printing a pointer, display its value instead of address.dlg2017-09-061-2/+6
* replace the DDB_STRUCT backend for "show struct" with ctf code.dlg2017-09-061-1/+89
* db_ctf_pprintf() doesn't actually support formatting, so s/f$//uwe2017-08-141-6/+6
* Restore "print" in ddb; add "pp[rint]" for pretty-printinguwe2017-08-141-2/+2
* Fall back using db_print_cmd() if no CTF data has been found.mpi2017-08-111-8/+7
* Improve pretty printing of pointers.mpi2017-08-111-7/+39
* Remove debugging leftovers, document functions, bump copyright.mpi2017-08-111-27/+11
* With a CTF kernel, DDB's print command will now pretty-print symbols.mpi2017-08-101-35/+300
* Kill db_sym_t.mpi2017-05-301-2/+2
* Pass the symbol instead of its name when looking for CTF infos.mpi2017-05-291-10/+10
* If a function is not found in the CTF data, do not assume it takes nompi2017-05-281-3/+3
* Merge two functions to lookup ELF sections by name.mpi2017-05-281-27/+2
* Spring cleanup:mpi2017-05-271-151/+61
* Use C99 types.mpi2017-05-091-13/+13
* - inline db_ctf_nsyms() into it's only caller. the value remains cached andjasper2016-09-181-39/+31
* rename ddb/db_ctf.h to sys/ctf.h which is the expected location for the publicjasper2016-09-171-2/+2
* move the .SUNW_ctf section name definition to exec_elf.h and document it in elf(5)jasper2016-09-171-3/+1
* teach ddb(4) about CTF. currently it only loads the CTF and uses it on amd64jasper2016-09-161-0/+385