├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── LICENSE ├── LICENSE.LIBRARY ├── LICENSE.README ├── Makefile.am ├── NEWS ├── README ├── README.OSX ├── TODO ├── bootstrap ├── config └── Doxyfile ├── configure.ac ├── configure.osx ├── doc ├── doxy_input │ ├── faq.dox │ ├── getting_started.dox │ ├── groups.dox │ ├── howto.dox │ ├── main.dox │ └── tutorials.dox ├── examples │ ├── binutils_mgr.c │ └── cflow_callback.c └── man │ └── opdis.1 ├── opdis ├── insn_buf.c ├── insn_buf.h ├── metadata.h ├── model.c ├── model.h ├── opdis.c ├── opdis.h ├── tree.c ├── tree.h ├── types.c ├── types.h ├── x86_decoder.c └── x86_decoder.h ├── src ├── asm_format.c ├── asm_format.h ├── job_list.c ├── job_list.h ├── main.c ├── map.c ├── map.h ├── sym.c ├── sym.h ├── target_list.c └── target_list.h └── test ├── disasm_bfd.c ├── disasm_cflow.c ├── disasm_linear.c ├── howto_callbacks.c └── tree_test.c /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.LIBRARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/LICENSE.LIBRARY -------------------------------------------------------------------------------- /LICENSE.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/LICENSE.README -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/README -------------------------------------------------------------------------------- /README.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/README.OSX -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/TODO -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/bootstrap -------------------------------------------------------------------------------- /config/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/config/Doxyfile -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/configure.ac -------------------------------------------------------------------------------- /configure.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/configure.osx -------------------------------------------------------------------------------- /doc/doxy_input/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/doxy_input/faq.dox -------------------------------------------------------------------------------- /doc/doxy_input/getting_started.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/doxy_input/getting_started.dox -------------------------------------------------------------------------------- /doc/doxy_input/groups.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/doxy_input/groups.dox -------------------------------------------------------------------------------- /doc/doxy_input/howto.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/doxy_input/howto.dox -------------------------------------------------------------------------------- /doc/doxy_input/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/doxy_input/main.dox -------------------------------------------------------------------------------- /doc/doxy_input/tutorials.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/doxy_input/tutorials.dox -------------------------------------------------------------------------------- /doc/examples/binutils_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/examples/binutils_mgr.c -------------------------------------------------------------------------------- /doc/examples/cflow_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/examples/cflow_callback.c -------------------------------------------------------------------------------- /doc/man/opdis.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/doc/man/opdis.1 -------------------------------------------------------------------------------- /opdis/insn_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/insn_buf.c -------------------------------------------------------------------------------- /opdis/insn_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/insn_buf.h -------------------------------------------------------------------------------- /opdis/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/metadata.h -------------------------------------------------------------------------------- /opdis/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/model.c -------------------------------------------------------------------------------- /opdis/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/model.h -------------------------------------------------------------------------------- /opdis/opdis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/opdis.c -------------------------------------------------------------------------------- /opdis/opdis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/opdis.h -------------------------------------------------------------------------------- /opdis/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/tree.c -------------------------------------------------------------------------------- /opdis/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/tree.h -------------------------------------------------------------------------------- /opdis/types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/types.c -------------------------------------------------------------------------------- /opdis/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/types.h -------------------------------------------------------------------------------- /opdis/x86_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/x86_decoder.c -------------------------------------------------------------------------------- /opdis/x86_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/opdis/x86_decoder.h -------------------------------------------------------------------------------- /src/asm_format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/asm_format.c -------------------------------------------------------------------------------- /src/asm_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/asm_format.h -------------------------------------------------------------------------------- /src/job_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/job_list.c -------------------------------------------------------------------------------- /src/job_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/job_list.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/main.c -------------------------------------------------------------------------------- /src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/map.c -------------------------------------------------------------------------------- /src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/map.h -------------------------------------------------------------------------------- /src/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/sym.c -------------------------------------------------------------------------------- /src/sym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/sym.h -------------------------------------------------------------------------------- /src/target_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/target_list.c -------------------------------------------------------------------------------- /src/target_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/src/target_list.h -------------------------------------------------------------------------------- /test/disasm_bfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/test/disasm_bfd.c -------------------------------------------------------------------------------- /test/disasm_cflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/test/disasm_cflow.c -------------------------------------------------------------------------------- /test/disasm_linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/test/disasm_linear.c -------------------------------------------------------------------------------- /test/howto_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/test/howto_callbacks.c -------------------------------------------------------------------------------- /test/tree_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThoughtGang/opdis/HEAD/test/tree_test.c --------------------------------------------------------------------------------