Opdis 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ChangeLog +2 -0
- data/LICENSE +674 -0
- data/LICENSE.README +8 -0
- data/README +101 -0
- data/examples/array_linear.rb +23 -0
- data/examples/bfd_entry.rb +24 -0
- data/examples/bfd_section.rb +24 -0
- data/examples/bfd_symbol.rb +27 -0
- data/examples/buf_linear.rb +25 -0
- data/examples/decoder.rb +45 -0
- data/examples/file_linear.rb +31 -0
- data/examples/libopcodes_options.rb +11 -0
- data/examples/resolver.rb +191 -0
- data/examples/supported_architectures.rb +11 -0
- data/examples/visited_handler.rb +61 -0
- data/examples/x86_decoder.rb +46 -0
- data/lib/Opdis.rb +123 -0
- data/module/Arch.c +364 -0
- data/module/Arch.h +37 -0
- data/module/Callbacks.c +266 -0
- data/module/Callbacks.h +43 -0
- data/module/Model.c +1275 -0
- data/module/Model.h +230 -0
- data/module/Opdis.c +850 -0
- data/module/Opdis.h +89 -0
- data/module/extconf.rb +126 -0
- data/module/rdoc_input/Callbacks.rb +143 -0
- data/module/rdoc_input/Model.rb +636 -0
- data/module/rdoc_input/Opdis.rb +253 -0
- data/module/ruby_compat.c +72 -0
- data/module/ruby_compat.h +25 -0
- data/tests/ut_opdis.rb +30 -0
- data/tests/ut_opdis_bfd.rb +556 -0
- metadata +109 -0
metadata
ADDED
@@ -0,0 +1,109 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Opdis
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 27
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 3
|
9
|
+
- 0
|
10
|
+
version: 1.3.0
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- TG Community
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-03-02 00:00:00 -05:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: |-
|
23
|
+
Opdis is a disassembler based on the GNU binutils
|
24
|
+
libopcodes disassembler. The strings generated by libopcodes are
|
25
|
+
translated into Instruction and Operand objects, and disassembly
|
26
|
+
algorithms such as linear and control-flow are provided.
|
27
|
+
email: community@thoughtgang.org
|
28
|
+
executables: []
|
29
|
+
|
30
|
+
extensions:
|
31
|
+
- module/extconf.rb
|
32
|
+
extra_rdoc_files:
|
33
|
+
- module/rdoc_input/Callbacks.rb
|
34
|
+
- module/rdoc_input/Opdis.rb
|
35
|
+
- module/rdoc_input/Model.rb
|
36
|
+
files:
|
37
|
+
- module/Model.c
|
38
|
+
- module/Arch.c
|
39
|
+
- module/Callbacks.c
|
40
|
+
- module/ruby_compat.c
|
41
|
+
- module/Opdis.c
|
42
|
+
- module/Opdis.h
|
43
|
+
- module/ruby_compat.h
|
44
|
+
- module/Callbacks.h
|
45
|
+
- module/Arch.h
|
46
|
+
- module/Model.h
|
47
|
+
- lib/Opdis.rb
|
48
|
+
- examples/bfd_entry.rb
|
49
|
+
- examples/visited_handler.rb
|
50
|
+
- examples/bfd_symbol.rb
|
51
|
+
- examples/buf_linear.rb
|
52
|
+
- examples/array_linear.rb
|
53
|
+
- examples/bfd_section.rb
|
54
|
+
- examples/libopcodes_options.rb
|
55
|
+
- examples/decoder.rb
|
56
|
+
- examples/file_linear.rb
|
57
|
+
- examples/x86_decoder.rb
|
58
|
+
- examples/resolver.rb
|
59
|
+
- examples/supported_architectures.rb
|
60
|
+
- README
|
61
|
+
- ChangeLog
|
62
|
+
- LICENSE
|
63
|
+
- LICENSE.README
|
64
|
+
- tests/ut_opdis_bfd.rb
|
65
|
+
- tests/ut_opdis.rb
|
66
|
+
- module/rdoc_input/Callbacks.rb
|
67
|
+
- module/rdoc_input/Opdis.rb
|
68
|
+
- module/rdoc_input/Model.rb
|
69
|
+
- module/extconf.rb
|
70
|
+
has_rdoc: true
|
71
|
+
homepage: http://rubyforge.org/projects/opdis/
|
72
|
+
licenses:
|
73
|
+
- GPLv3
|
74
|
+
post_install_message:
|
75
|
+
rdoc_options: []
|
76
|
+
|
77
|
+
require_paths:
|
78
|
+
- lib
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
none: false
|
81
|
+
requirements:
|
82
|
+
- - ">="
|
83
|
+
- !ruby/object:Gem::Version
|
84
|
+
hash: 57
|
85
|
+
segments:
|
86
|
+
- 1
|
87
|
+
- 8
|
88
|
+
- 7
|
89
|
+
version: 1.8.7
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
none: false
|
92
|
+
requirements:
|
93
|
+
- - ">="
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
hash: 3
|
96
|
+
segments:
|
97
|
+
- 0
|
98
|
+
version: "0"
|
99
|
+
requirements:
|
100
|
+
- opdis library and headers
|
101
|
+
- GNU binutils library and headers
|
102
|
+
rubyforge_project: opdis
|
103
|
+
rubygems_version: 1.4.1
|
104
|
+
signing_key:
|
105
|
+
specification_version: 3
|
106
|
+
summary: Ruby extension library providing an API to libopdis
|
107
|
+
test_files:
|
108
|
+
- tests/ut_opdis_bfd.rb
|
109
|
+
- tests/ut_opdis.rb
|