hexcore-capstone 1.2.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.
Files changed (332) hide show
  1. package/LICENSE +26 -0
  2. package/README.md +191 -0
  3. package/binding.gyp +168 -0
  4. package/deps/capstone/LEB128.h +38 -0
  5. package/deps/capstone/MCDisassembler.h +14 -0
  6. package/deps/capstone/MCFixedLenDisassembler.h +32 -0
  7. package/deps/capstone/MCInst.c +270 -0
  8. package/deps/capstone/MCInst.h +165 -0
  9. package/deps/capstone/MCInstrDesc.c +41 -0
  10. package/deps/capstone/MCInstrDesc.h +167 -0
  11. package/deps/capstone/MCRegisterInfo.c +151 -0
  12. package/deps/capstone/MCRegisterInfo.h +116 -0
  13. package/deps/capstone/Mapping.c +254 -0
  14. package/deps/capstone/Mapping.h +174 -0
  15. package/deps/capstone/MathExtras.h +442 -0
  16. package/deps/capstone/SStream.c +181 -0
  17. package/deps/capstone/SStream.h +40 -0
  18. package/deps/capstone/arch/AArch64/AArch64AddressingModes.h +945 -0
  19. package/deps/capstone/arch/AArch64/AArch64BaseInfo.c +77 -0
  20. package/deps/capstone/arch/AArch64/AArch64BaseInfo.h +585 -0
  21. package/deps/capstone/arch/AArch64/AArch64Disassembler.c +2280 -0
  22. package/deps/capstone/arch/AArch64/AArch64Disassembler.h +18 -0
  23. package/deps/capstone/arch/AArch64/AArch64GenAsmWriter.inc +26589 -0
  24. package/deps/capstone/arch/AArch64/AArch64GenDisassemblerTables.inc +27322 -0
  25. package/deps/capstone/arch/AArch64/AArch64GenInstrInfo.inc +13194 -0
  26. package/deps/capstone/arch/AArch64/AArch64GenRegisterInfo.inc +3814 -0
  27. package/deps/capstone/arch/AArch64/AArch64GenRegisterName.inc +714 -0
  28. package/deps/capstone/arch/AArch64/AArch64GenRegisterV.inc +673 -0
  29. package/deps/capstone/arch/AArch64/AArch64GenSubtargetInfo.inc +229 -0
  30. package/deps/capstone/arch/AArch64/AArch64GenSystemOperands.inc +2863 -0
  31. package/deps/capstone/arch/AArch64/AArch64GenSystemOperands_enum.inc +21 -0
  32. package/deps/capstone/arch/AArch64/AArch64InstPrinter.c +3029 -0
  33. package/deps/capstone/arch/AArch64/AArch64InstPrinter.h +28 -0
  34. package/deps/capstone/arch/AArch64/AArch64Mapping.c +883 -0
  35. package/deps/capstone/arch/AArch64/AArch64Mapping.h +43 -0
  36. package/deps/capstone/arch/AArch64/AArch64MappingInsn.inc +37790 -0
  37. package/deps/capstone/arch/AArch64/AArch64MappingInsnName.inc +1282 -0
  38. package/deps/capstone/arch/AArch64/AArch64MappingInsnOp.inc +26994 -0
  39. package/deps/capstone/arch/AArch64/AArch64Module.c +44 -0
  40. package/deps/capstone/arch/AArch64/AArch64Module.h +12 -0
  41. package/deps/capstone/arch/ARM/ARMAddressingModes.h +698 -0
  42. package/deps/capstone/arch/ARM/ARMBaseInfo.h +486 -0
  43. package/deps/capstone/arch/ARM/ARMDisassembler.c +5763 -0
  44. package/deps/capstone/arch/ARM/ARMDisassembler.h +18 -0
  45. package/deps/capstone/arch/ARM/ARMGenAsmWriter.inc +9545 -0
  46. package/deps/capstone/arch/ARM/ARMGenDisassemblerTables.inc +15185 -0
  47. package/deps/capstone/arch/ARM/ARMGenInstrInfo.inc +6632 -0
  48. package/deps/capstone/arch/ARM/ARMGenRegisterInfo.inc +2102 -0
  49. package/deps/capstone/arch/ARM/ARMGenRegisterName.inc +231 -0
  50. package/deps/capstone/arch/ARM/ARMGenRegisterName_digit.inc +231 -0
  51. package/deps/capstone/arch/ARM/ARMGenSubtargetInfo.inc +162 -0
  52. package/deps/capstone/arch/ARM/ARMGenSystemRegister.inc +270 -0
  53. package/deps/capstone/arch/ARM/ARMInstPrinter.c +3364 -0
  54. package/deps/capstone/arch/ARM/ARMInstPrinter.h +43 -0
  55. package/deps/capstone/arch/ARM/ARMMapping.c +551 -0
  56. package/deps/capstone/arch/ARM/ARMMapping.h +40 -0
  57. package/deps/capstone/arch/ARM/ARMMappingInsn.inc +18772 -0
  58. package/deps/capstone/arch/ARM/ARMMappingInsnName.inc +475 -0
  59. package/deps/capstone/arch/ARM/ARMMappingInsnOp.inc +10729 -0
  60. package/deps/capstone/arch/ARM/ARMModule.c +63 -0
  61. package/deps/capstone/arch/ARM/ARMModule.h +12 -0
  62. package/deps/capstone/arch/BPF/BPFConstants.h +88 -0
  63. package/deps/capstone/arch/BPF/BPFDisassembler.c +464 -0
  64. package/deps/capstone/arch/BPF/BPFDisassembler.h +27 -0
  65. package/deps/capstone/arch/BPF/BPFInstPrinter.c +285 -0
  66. package/deps/capstone/arch/BPF/BPFInstPrinter.h +16 -0
  67. package/deps/capstone/arch/BPF/BPFMapping.c +513 -0
  68. package/deps/capstone/arch/BPF/BPFMapping.h +21 -0
  69. package/deps/capstone/arch/BPF/BPFModule.c +34 -0
  70. package/deps/capstone/arch/BPF/BPFModule.h +12 -0
  71. package/deps/capstone/arch/EVM/EVMDisassembler.c +379 -0
  72. package/deps/capstone/arch/EVM/EVMDisassembler.h +12 -0
  73. package/deps/capstone/arch/EVM/EVMInstPrinter.c +20 -0
  74. package/deps/capstone/arch/EVM/EVMInstPrinter.h +17 -0
  75. package/deps/capstone/arch/EVM/EVMMapping.c +344 -0
  76. package/deps/capstone/arch/EVM/EVMMapping.h +8 -0
  77. package/deps/capstone/arch/EVM/EVMMappingInsn.inc +259 -0
  78. package/deps/capstone/arch/EVM/EVMModule.c +33 -0
  79. package/deps/capstone/arch/EVM/EVMModule.h +12 -0
  80. package/deps/capstone/arch/M680X/M680XDisassembler.c +2307 -0
  81. package/deps/capstone/arch/M680X/M680XDisassembler.h +17 -0
  82. package/deps/capstone/arch/M680X/M680XDisassemblerInternals.h +57 -0
  83. package/deps/capstone/arch/M680X/M680XInstPrinter.c +360 -0
  84. package/deps/capstone/arch/M680X/M680XInstPrinter.h +25 -0
  85. package/deps/capstone/arch/M680X/M680XModule.c +77 -0
  86. package/deps/capstone/arch/M680X/M680XModule.h +12 -0
  87. package/deps/capstone/arch/M680X/cpu12.inc +335 -0
  88. package/deps/capstone/arch/M680X/hcs08.inc +60 -0
  89. package/deps/capstone/arch/M680X/hd6301.inc +15 -0
  90. package/deps/capstone/arch/M680X/hd6309.inc +259 -0
  91. package/deps/capstone/arch/M680X/insn_props.inc +367 -0
  92. package/deps/capstone/arch/M680X/m6800.inc +277 -0
  93. package/deps/capstone/arch/M680X/m6801.inc +39 -0
  94. package/deps/capstone/arch/M680X/m6805.inc +277 -0
  95. package/deps/capstone/arch/M680X/m6808.inc +91 -0
  96. package/deps/capstone/arch/M680X/m6809.inc +352 -0
  97. package/deps/capstone/arch/M680X/m6811.inc +105 -0
  98. package/deps/capstone/arch/M68K/M68KDisassembler.c +3668 -0
  99. package/deps/capstone/arch/M68K/M68KDisassembler.h +30 -0
  100. package/deps/capstone/arch/M68K/M68KInstPrinter.c +387 -0
  101. package/deps/capstone/arch/M68K/M68KInstPrinter.h +21 -0
  102. package/deps/capstone/arch/M68K/M68KInstructionTable.inc +65540 -0
  103. package/deps/capstone/arch/M68K/M68KModule.c +42 -0
  104. package/deps/capstone/arch/M68K/M68KModule.h +12 -0
  105. package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.c +544 -0
  106. package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.h +22 -0
  107. package/deps/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h +23 -0
  108. package/deps/capstone/arch/MOS65XX/MOS65XXModule.c +79 -0
  109. package/deps/capstone/arch/MOS65XX/MOS65XXModule.h +12 -0
  110. package/deps/capstone/arch/MOS65XX/instruction_info.inc +106 -0
  111. package/deps/capstone/arch/MOS65XX/m6502.inc +256 -0
  112. package/deps/capstone/arch/MOS65XX/m65816.inc +256 -0
  113. package/deps/capstone/arch/MOS65XX/m65c02.inc +256 -0
  114. package/deps/capstone/arch/MOS65XX/mw65c02.inc +256 -0
  115. package/deps/capstone/arch/Mips/MipsDisassembler.c +1794 -0
  116. package/deps/capstone/arch/Mips/MipsDisassembler.h +16 -0
  117. package/deps/capstone/arch/Mips/MipsGenAsmWriter.inc +5725 -0
  118. package/deps/capstone/arch/Mips/MipsGenDisassemblerTables.inc +6942 -0
  119. package/deps/capstone/arch/Mips/MipsGenInstrInfo.inc +1805 -0
  120. package/deps/capstone/arch/Mips/MipsGenRegisterInfo.inc +1679 -0
  121. package/deps/capstone/arch/Mips/MipsGenSubtargetInfo.inc +52 -0
  122. package/deps/capstone/arch/Mips/MipsInstPrinter.c +424 -0
  123. package/deps/capstone/arch/Mips/MipsInstPrinter.h +25 -0
  124. package/deps/capstone/arch/Mips/MipsMapping.c +1070 -0
  125. package/deps/capstone/arch/Mips/MipsMapping.h +25 -0
  126. package/deps/capstone/arch/Mips/MipsMappingInsn.inc +9315 -0
  127. package/deps/capstone/arch/Mips/MipsModule.c +52 -0
  128. package/deps/capstone/arch/Mips/MipsModule.h +12 -0
  129. package/deps/capstone/arch/PowerPC/PPCDisassembler.c +627 -0
  130. package/deps/capstone/arch/PowerPC/PPCDisassembler.h +17 -0
  131. package/deps/capstone/arch/PowerPC/PPCGenAsmWriter.inc +11451 -0
  132. package/deps/capstone/arch/PowerPC/PPCGenDisassemblerTables.inc +6886 -0
  133. package/deps/capstone/arch/PowerPC/PPCGenInstrInfo.inc +4772 -0
  134. package/deps/capstone/arch/PowerPC/PPCGenRegisterInfo.inc +1122 -0
  135. package/deps/capstone/arch/PowerPC/PPCGenRegisterName.inc +278 -0
  136. package/deps/capstone/arch/PowerPC/PPCGenSubtargetInfo.inc +90 -0
  137. package/deps/capstone/arch/PowerPC/PPCInstPrinter.c +1238 -0
  138. package/deps/capstone/arch/PowerPC/PPCInstPrinter.h +15 -0
  139. package/deps/capstone/arch/PowerPC/PPCMapping.c +570 -0
  140. package/deps/capstone/arch/PowerPC/PPCMapping.h +40 -0
  141. package/deps/capstone/arch/PowerPC/PPCMappingInsn.inc +13220 -0
  142. package/deps/capstone/arch/PowerPC/PPCMappingInsnName.inc +1731 -0
  143. package/deps/capstone/arch/PowerPC/PPCModule.c +45 -0
  144. package/deps/capstone/arch/PowerPC/PPCModule.h +12 -0
  145. package/deps/capstone/arch/PowerPC/PPCPredicates.h +62 -0
  146. package/deps/capstone/arch/RISCV/RISCVBaseInfo.h +106 -0
  147. package/deps/capstone/arch/RISCV/RISCVDisassembler.c +433 -0
  148. package/deps/capstone/arch/RISCV/RISCVDisassembler.h +18 -0
  149. package/deps/capstone/arch/RISCV/RISCVGenAsmWriter.inc +2651 -0
  150. package/deps/capstone/arch/RISCV/RISCVGenDisassemblerTables.inc +1776 -0
  151. package/deps/capstone/arch/RISCV/RISCVGenInsnNameMaps.inc +275 -0
  152. package/deps/capstone/arch/RISCV/RISCVGenInstrInfo.inc +470 -0
  153. package/deps/capstone/arch/RISCV/RISCVGenRegisterInfo.inc +426 -0
  154. package/deps/capstone/arch/RISCV/RISCVGenSubtargetInfo.inc +33 -0
  155. package/deps/capstone/arch/RISCV/RISCVInstPrinter.c +447 -0
  156. package/deps/capstone/arch/RISCV/RISCVInstPrinter.h +24 -0
  157. package/deps/capstone/arch/RISCV/RISCVMapping.c +366 -0
  158. package/deps/capstone/arch/RISCV/RISCVMapping.h +22 -0
  159. package/deps/capstone/arch/RISCV/RISCVMappingInsn.inc +1635 -0
  160. package/deps/capstone/arch/RISCV/RISCVModule.c +42 -0
  161. package/deps/capstone/arch/RISCV/RISCVModule.h +12 -0
  162. package/deps/capstone/arch/SH/SHDisassembler.c +2221 -0
  163. package/deps/capstone/arch/SH/SHDisassembler.h +19 -0
  164. package/deps/capstone/arch/SH/SHInsnTable.inc +66 -0
  165. package/deps/capstone/arch/SH/SHInstPrinter.c +438 -0
  166. package/deps/capstone/arch/SH/SHInstPrinter.h +23 -0
  167. package/deps/capstone/arch/SH/SHModule.c +39 -0
  168. package/deps/capstone/arch/SH/SHModule.h +12 -0
  169. package/deps/capstone/arch/SH/mktable.rb +390 -0
  170. package/deps/capstone/arch/Sparc/Sparc.h +63 -0
  171. package/deps/capstone/arch/Sparc/SparcDisassembler.c +500 -0
  172. package/deps/capstone/arch/Sparc/SparcDisassembler.h +17 -0
  173. package/deps/capstone/arch/Sparc/SparcGenAsmWriter.inc +5709 -0
  174. package/deps/capstone/arch/Sparc/SparcGenDisassemblerTables.inc +2028 -0
  175. package/deps/capstone/arch/Sparc/SparcGenInstrInfo.inc +514 -0
  176. package/deps/capstone/arch/Sparc/SparcGenRegisterInfo.inc +451 -0
  177. package/deps/capstone/arch/Sparc/SparcGenSubtargetInfo.inc +27 -0
  178. package/deps/capstone/arch/Sparc/SparcInstPrinter.c +446 -0
  179. package/deps/capstone/arch/Sparc/SparcInstPrinter.h +17 -0
  180. package/deps/capstone/arch/Sparc/SparcMapping.c +665 -0
  181. package/deps/capstone/arch/Sparc/SparcMapping.h +34 -0
  182. package/deps/capstone/arch/Sparc/SparcMappingInsn.inc +2643 -0
  183. package/deps/capstone/arch/Sparc/SparcModule.c +45 -0
  184. package/deps/capstone/arch/Sparc/SparcModule.h +12 -0
  185. package/deps/capstone/arch/SystemZ/SystemZDisassembler.c +484 -0
  186. package/deps/capstone/arch/SystemZ/SystemZDisassembler.h +17 -0
  187. package/deps/capstone/arch/SystemZ/SystemZGenAsmWriter.inc +11575 -0
  188. package/deps/capstone/arch/SystemZ/SystemZGenDisassemblerTables.inc +10262 -0
  189. package/deps/capstone/arch/SystemZ/SystemZGenInsnNameMaps.inc +2348 -0
  190. package/deps/capstone/arch/SystemZ/SystemZGenInstrInfo.inc +2820 -0
  191. package/deps/capstone/arch/SystemZ/SystemZGenRegisterInfo.inc +741 -0
  192. package/deps/capstone/arch/SystemZ/SystemZGenSubtargetInfo.inc +49 -0
  193. package/deps/capstone/arch/SystemZ/SystemZInstPrinter.c +433 -0
  194. package/deps/capstone/arch/SystemZ/SystemZInstPrinter.h +15 -0
  195. package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.c +195 -0
  196. package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.h +51 -0
  197. package/deps/capstone/arch/SystemZ/SystemZMapping.c +479 -0
  198. package/deps/capstone/arch/SystemZ/SystemZMapping.h +23 -0
  199. package/deps/capstone/arch/SystemZ/SystemZMappingInsn.inc +14175 -0
  200. package/deps/capstone/arch/SystemZ/SystemZModule.c +44 -0
  201. package/deps/capstone/arch/SystemZ/SystemZModule.h +12 -0
  202. package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.c +628 -0
  203. package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.h +19 -0
  204. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenAsmWriter.inc +684 -0
  205. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenDisassemblerTables.inc +1352 -0
  206. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenInstrInfo.inc +298 -0
  207. package/deps/capstone/arch/TMS320C64x/TMS320C64xGenRegisterInfo.inc +277 -0
  208. package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.c +572 -0
  209. package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.h +15 -0
  210. package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.c +1926 -0
  211. package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.h +26 -0
  212. package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.c +39 -0
  213. package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.h +12 -0
  214. package/deps/capstone/arch/TriCore/TriCore.td +134 -0
  215. package/deps/capstone/arch/TriCore/TriCoreCallingConv.td +61 -0
  216. package/deps/capstone/arch/TriCore/TriCoreDisassembler.c +1655 -0
  217. package/deps/capstone/arch/TriCore/TriCoreDisassembler.h +18 -0
  218. package/deps/capstone/arch/TriCore/TriCoreGenAsmWriter.inc +3691 -0
  219. package/deps/capstone/arch/TriCore/TriCoreGenCSFeatureName.inc +22 -0
  220. package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsn.inc +8938 -0
  221. package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnName.inc +404 -0
  222. package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnOp.inc +7994 -0
  223. package/deps/capstone/arch/TriCore/TriCoreGenCSOpGroup.inc +32 -0
  224. package/deps/capstone/arch/TriCore/TriCoreGenDisassemblerTables.inc +4044 -0
  225. package/deps/capstone/arch/TriCore/TriCoreGenInstrInfo.inc +2693 -0
  226. package/deps/capstone/arch/TriCore/TriCoreGenRegisterInfo.inc +295 -0
  227. package/deps/capstone/arch/TriCore/TriCoreGenSubtargetInfo.inc +40 -0
  228. package/deps/capstone/arch/TriCore/TriCoreInstPrinter.c +488 -0
  229. package/deps/capstone/arch/TriCore/TriCoreInstrFormats.td +773 -0
  230. package/deps/capstone/arch/TriCore/TriCoreInstrInfo.td +1873 -0
  231. package/deps/capstone/arch/TriCore/TriCoreLinkage.h +21 -0
  232. package/deps/capstone/arch/TriCore/TriCoreMapping.c +241 -0
  233. package/deps/capstone/arch/TriCore/TriCoreMapping.h +32 -0
  234. package/deps/capstone/arch/TriCore/TriCoreModule.c +44 -0
  235. package/deps/capstone/arch/TriCore/TriCoreModule.h +11 -0
  236. package/deps/capstone/arch/TriCore/TriCoreRegisterInfo.td +153 -0
  237. package/deps/capstone/arch/WASM/WASMDisassembler.c +1009 -0
  238. package/deps/capstone/arch/WASM/WASMDisassembler.h +12 -0
  239. package/deps/capstone/arch/WASM/WASMInstPrinter.c +47 -0
  240. package/deps/capstone/arch/WASM/WASMInstPrinter.h +18 -0
  241. package/deps/capstone/arch/WASM/WASMMapping.c +333 -0
  242. package/deps/capstone/arch/WASM/WASMMapping.h +9 -0
  243. package/deps/capstone/arch/WASM/WASMModule.c +33 -0
  244. package/deps/capstone/arch/WASM/WASMModule.h +12 -0
  245. package/deps/capstone/arch/X86/X86ATTInstPrinter.c +997 -0
  246. package/deps/capstone/arch/X86/X86BaseInfo.h +50 -0
  247. package/deps/capstone/arch/X86/X86Disassembler.c +1033 -0
  248. package/deps/capstone/arch/X86/X86Disassembler.h +28 -0
  249. package/deps/capstone/arch/X86/X86DisassemblerDecoder.c +2358 -0
  250. package/deps/capstone/arch/X86/X86DisassemblerDecoder.h +725 -0
  251. package/deps/capstone/arch/X86/X86DisassemblerDecoderCommon.h +483 -0
  252. package/deps/capstone/arch/X86/X86GenAsmWriter.inc +49199 -0
  253. package/deps/capstone/arch/X86/X86GenAsmWriter1.inc +33196 -0
  254. package/deps/capstone/arch/X86/X86GenAsmWriter1_reduce.inc +2531 -0
  255. package/deps/capstone/arch/X86/X86GenAsmWriter_reduce.inc +2855 -0
  256. package/deps/capstone/arch/X86/X86GenDisassemblerTables.inc +112961 -0
  257. package/deps/capstone/arch/X86/X86GenDisassemblerTables2.inc +102151 -0
  258. package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce.inc +28047 -0
  259. package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce2.inc +18827 -0
  260. package/deps/capstone/arch/X86/X86GenInstrInfo.inc +15158 -0
  261. package/deps/capstone/arch/X86/X86GenInstrInfo_reduce.inc +1564 -0
  262. package/deps/capstone/arch/X86/X86GenRegisterInfo.inc +1549 -0
  263. package/deps/capstone/arch/X86/X86GenRegisterName.inc +292 -0
  264. package/deps/capstone/arch/X86/X86GenRegisterName1.inc +291 -0
  265. package/deps/capstone/arch/X86/X86ImmSize.inc +335 -0
  266. package/deps/capstone/arch/X86/X86InstPrinter.h +26 -0
  267. package/deps/capstone/arch/X86/X86InstPrinterCommon.c +116 -0
  268. package/deps/capstone/arch/X86/X86InstPrinterCommon.h +16 -0
  269. package/deps/capstone/arch/X86/X86IntelInstPrinter.c +1061 -0
  270. package/deps/capstone/arch/X86/X86Lookup16.inc +16874 -0
  271. package/deps/capstone/arch/X86/X86Lookup16_reduce.inc +2308 -0
  272. package/deps/capstone/arch/X86/X86Mapping.c +2266 -0
  273. package/deps/capstone/arch/X86/X86Mapping.h +96 -0
  274. package/deps/capstone/arch/X86/X86MappingInsn.inc +105977 -0
  275. package/deps/capstone/arch/X86/X86MappingInsnName.inc +1527 -0
  276. package/deps/capstone/arch/X86/X86MappingInsnName_reduce.inc +348 -0
  277. package/deps/capstone/arch/X86/X86MappingInsnOp.inc +75700 -0
  278. package/deps/capstone/arch/X86/X86MappingInsnOp_reduce.inc +7729 -0
  279. package/deps/capstone/arch/X86/X86MappingInsn_reduce.inc +10819 -0
  280. package/deps/capstone/arch/X86/X86MappingReg.inc +280 -0
  281. package/deps/capstone/arch/X86/X86Module.c +94 -0
  282. package/deps/capstone/arch/X86/X86Module.h +12 -0
  283. package/deps/capstone/arch/XCore/XCoreDisassembler.c +794 -0
  284. package/deps/capstone/arch/XCore/XCoreDisassembler.h +17 -0
  285. package/deps/capstone/arch/XCore/XCoreGenAsmWriter.inc +772 -0
  286. package/deps/capstone/arch/XCore/XCoreGenDisassemblerTables.inc +853 -0
  287. package/deps/capstone/arch/XCore/XCoreGenInstrInfo.inc +267 -0
  288. package/deps/capstone/arch/XCore/XCoreGenRegisterInfo.inc +110 -0
  289. package/deps/capstone/arch/XCore/XCoreInstPrinter.c +250 -0
  290. package/deps/capstone/arch/XCore/XCoreInstPrinter.h +18 -0
  291. package/deps/capstone/arch/XCore/XCoreMapping.c +297 -0
  292. package/deps/capstone/arch/XCore/XCoreMapping.h +26 -0
  293. package/deps/capstone/arch/XCore/XCoreMappingInsn.inc +1287 -0
  294. package/deps/capstone/arch/XCore/XCoreModule.c +41 -0
  295. package/deps/capstone/arch/XCore/XCoreModule.h +12 -0
  296. package/deps/capstone/cs.c +1664 -0
  297. package/deps/capstone/cs_priv.h +101 -0
  298. package/deps/capstone/cs_simple_types.h +886 -0
  299. package/deps/capstone/include/capstone/arm.h +991 -0
  300. package/deps/capstone/include/capstone/arm64.h +3159 -0
  301. package/deps/capstone/include/capstone/bpf.h +209 -0
  302. package/deps/capstone/include/capstone/capstone.h +875 -0
  303. package/deps/capstone/include/capstone/evm.h +188 -0
  304. package/deps/capstone/include/capstone/m680x.h +537 -0
  305. package/deps/capstone/include/capstone/m68k.h +613 -0
  306. package/deps/capstone/include/capstone/mips.h +956 -0
  307. package/deps/capstone/include/capstone/mos65xx.h +204 -0
  308. package/deps/capstone/include/capstone/platform.h +122 -0
  309. package/deps/capstone/include/capstone/ppc.h +2108 -0
  310. package/deps/capstone/include/capstone/riscv.h +531 -0
  311. package/deps/capstone/include/capstone/sh.h +465 -0
  312. package/deps/capstone/include/capstone/sparc.h +520 -0
  313. package/deps/capstone/include/capstone/systemz.h +2601 -0
  314. package/deps/capstone/include/capstone/tms320c64x.h +359 -0
  315. package/deps/capstone/include/capstone/tricore.h +567 -0
  316. package/deps/capstone/include/capstone/wasm.h +250 -0
  317. package/deps/capstone/include/capstone/x86.h +1986 -0
  318. package/deps/capstone/include/capstone/xcore.h +235 -0
  319. package/deps/capstone/include/platform.h +110 -0
  320. package/deps/capstone/include/windowsce/intrin.h +12 -0
  321. package/deps/capstone/include/windowsce/stdint.h +133 -0
  322. package/deps/capstone/utils.c +140 -0
  323. package/deps/capstone/utils.h +54 -0
  324. package/index.d.ts +448 -0
  325. package/index.js +64 -0
  326. package/index.mjs +25 -0
  327. package/package.json +82 -0
  328. package/prebuilds/win32-x64/hexcore-capstone.node +0 -0
  329. package/src/capstone_wrapper.cpp +910 -0
  330. package/src/capstone_wrapper.h +147 -0
  331. package/src/disasm_async_worker.h +215 -0
  332. package/src/main.cpp +145 -0
@@ -0,0 +1,12 @@
1
+ /* Capstone Disassembly Engine */
2
+ /* By Spike, xwings 2019 */
3
+
4
+ #ifndef CS_WASMDISASSEMBLER_H
5
+ #define CS_WASMDISASSEMBLER_H
6
+
7
+ #include "../../MCInst.h"
8
+
9
+ bool WASM_getInstruction(csh ud, const uint8_t *code, size_t code_len,
10
+ MCInst *instr, uint16_t *size, uint64_t address, void *info);
11
+
12
+ #endif
@@ -0,0 +1,47 @@
1
+ /* Capstone Disassembly Engine */
2
+ /* By Spike, xwings 2019 */
3
+
4
+ #include "WASMInstPrinter.h"
5
+ #include "WASMMapping.h"
6
+
7
+
8
+ void WASM_printInst(MCInst *MI, struct SStream *O, void *PrinterInfo)
9
+ {
10
+ SStream_concat(O, WASM_insn_name((csh)MI->csh, MI->Opcode));
11
+
12
+ switch (MI->wasm_data.type) {
13
+ default:
14
+ break;
15
+
16
+ case WASM_OP_VARUINT32:
17
+ SStream_concat(O, "\t0x%x", MI->wasm_data.varuint32);
18
+ break;
19
+
20
+ case WASM_OP_VARUINT64:
21
+ SStream_concat(O, "\t0x%lx", MI->wasm_data.varuint64);
22
+ break;
23
+
24
+ case WASM_OP_UINT32:
25
+ SStream_concat(O, "\t0x%2" PRIx32, MI->wasm_data.uint32);
26
+ break;
27
+
28
+ case WASM_OP_UINT64:
29
+ SStream_concat(O, "\t0x%2" PRIx64, MI->wasm_data.uint64);
30
+ break;
31
+
32
+ case WASM_OP_IMM:
33
+ SStream_concat(O, "\t0x%x, 0x%x", MI->wasm_data.immediate[0], MI->wasm_data.immediate[1]);
34
+ break;
35
+
36
+ case WASM_OP_INT7:
37
+ SStream_concat(O, "\t%d", MI->wasm_data.int7);
38
+ break;
39
+
40
+ case WASM_OP_BRTABLE:
41
+ SStream_concat(O, "\t0x%x, [", MI->wasm_data.brtable.length);
42
+ SStream_concat(O, "0x%x", MI->wasm_data.brtable.address);
43
+ SStream_concat(O, "], 0x%x", MI->wasm_data.brtable.default_target);
44
+
45
+ break;
46
+ }
47
+ }
@@ -0,0 +1,18 @@
1
+ /* Capstone Disassembly Engine */
2
+ /* By Spike, xwings 2019 */
3
+
4
+ #ifndef CS_WASMINSTPRINTER_H
5
+ #define CS_WASMINSTPRINTER_H
6
+
7
+
8
+ #include "capstone/capstone.h"
9
+ #include "../../MCInst.h"
10
+ #include "../../SStream.h"
11
+ #include "../../cs_priv.h"
12
+
13
+ struct SStream;
14
+
15
+ void WASM_printInst(MCInst *MI, struct SStream *O, void *Info);
16
+ void printOperand(MCInst *MI, unsigned OpNo, SStream *O);
17
+
18
+ #endif
@@ -0,0 +1,333 @@
1
+ /* Capstone Disassembly Engine */
2
+ /* By Spike, xwings 2019 */
3
+
4
+ #ifdef CAPSTONE_HAS_WASM
5
+
6
+ #include <string.h>
7
+
8
+ #include "../../cs_priv.h"
9
+ #include "../../utils.h"
10
+
11
+ #include "WASMMapping.h"
12
+
13
+ // fill in details
14
+ void WASM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id)
15
+ {
16
+ insn->id = id;
17
+ }
18
+
19
+ #ifndef CAPSTONE_DIET
20
+ static const name_map insn_name_maps[256] = {
21
+ { WASM_INS_UNREACHABLE, "unreachable" },
22
+ { WASM_INS_NOP, "nop" },
23
+ { WASM_INS_BLOCK, "block" },
24
+ { WASM_INS_LOOP, "loop" },
25
+ { WASM_INS_IF, "if" },
26
+ { WASM_INS_ELSE, "else" },
27
+ { WASM_INS_INVALID, NULL },
28
+ { WASM_INS_INVALID, NULL },
29
+ { WASM_INS_INVALID, NULL },
30
+ { WASM_INS_INVALID, NULL },
31
+ { WASM_INS_INVALID, NULL },
32
+ { WASM_INS_END, "end" },
33
+ { WASM_INS_BR, "br" },
34
+ { WASM_INS_BR_IF, "br_if" },
35
+ { WASM_INS_BR_TABLE, "br_table" },
36
+ { WASM_INS_RETURN, "return" },
37
+ { WASM_INS_CALL, "call" },
38
+ { WASM_INS_CALL_INDIRECT, "call_indirect" },
39
+ { WASM_INS_INVALID, NULL },
40
+ { WASM_INS_INVALID, NULL },
41
+ { WASM_INS_INVALID, NULL },
42
+ { WASM_INS_INVALID, NULL },
43
+ { WASM_INS_INVALID, NULL },
44
+ { WASM_INS_INVALID, NULL },
45
+ { WASM_INS_INVALID, NULL },
46
+ { WASM_INS_INVALID, NULL },
47
+ { WASM_INS_DROP, "drop" },
48
+ { WASM_INS_SELECT, "select" },
49
+ { WASM_INS_INVALID, NULL },
50
+ { WASM_INS_INVALID, NULL },
51
+ { WASM_INS_INVALID, NULL },
52
+ { WASM_INS_INVALID, NULL },
53
+ { WASM_INS_GET_LOCAL, "get_local" },
54
+ { WASM_INS_SET_LOCAL, "set_local" },
55
+ { WASM_INS_TEE_LOCAL, "tee_local" },
56
+ { WASM_INS_GET_GLOBAL, "get_global" },
57
+ { WASM_INS_SET_GLOBAL, "set_global" },
58
+ { WASM_INS_INVALID, NULL },
59
+ { WASM_INS_INVALID, NULL },
60
+ { WASM_INS_INVALID, NULL },
61
+ { WASM_INS_I32_LOAD, "i32.load" },
62
+ { WASM_INS_I64_LOAD, "i64.load" },
63
+ { WASM_INS_F32_LOAD, "f32.load" },
64
+ { WASM_INS_F64_LOAD, "f64.load" },
65
+ { WASM_INS_I32_LOAD8_S, "i32.load8_s" },
66
+ { WASM_INS_I32_LOAD8_U, "i32.load8_u" },
67
+ { WASM_INS_I32_LOAD16_S, "i32.load16_s" },
68
+ { WASM_INS_I32_LOAD16_U, "i32.load16_u" },
69
+ { WASM_INS_I64_LOAD8_S, "i64.load8_s" },
70
+ { WASM_INS_I64_LOAD8_U, "i64.load8_u" },
71
+ { WASM_INS_I64_LOAD16_S, "i64.load16_s" },
72
+ { WASM_INS_I64_LOAD16_U, "i64.load16_u"},
73
+ { WASM_INS_I64_LOAD32_S, "i64.load32_s"},
74
+ { WASM_INS_I64_LOAD32_U, "i64.load32_u" },
75
+ { WASM_INS_I32_STORE, "i32.store" },
76
+ { WASM_INS_I64_STORE, "i64.store" },
77
+ { WASM_INS_F32_STORE, "f32.store" },
78
+ { WASM_INS_F64_STORE, "f64.store" },
79
+ { WASM_INS_I32_STORE8, "i32.store8" },
80
+ { WASM_INS_I32_STORE16, "i32.store16" },
81
+ { WASM_INS_I64_STORE8, "i64.store8" },
82
+ { WASM_INS_I64_STORE16, "i64.store16" },
83
+ { WASM_INS_I64_STORE32, "i64.store32" },
84
+ { WASM_INS_CURRENT_MEMORY, "current_memory" },
85
+ { WASM_INS_GROW_MEMORY, "grow_memory" },
86
+ { WASM_INS_I32_CONST, "i32.const" },
87
+ { WASM_INS_I64_CONST, "i64.const" },
88
+ { WASM_INS_F32_CONST, "f32.const" },
89
+ { WASM_INS_F64_CONST, "f64.const" },
90
+ { WASM_INS_I32_EQZ, "i32.eqz" },
91
+ { WASM_INS_I32_EQ, "i32.eq" },
92
+ { WASM_INS_I32_NE, "i32.ne" },
93
+ { WASM_INS_I32_LT_S, "i32.lt_s" },
94
+ { WASM_INS_I32_LT_U, "i32.lt_u" },
95
+ { WASM_INS_I32_GT_S, "i32.gt_s" },
96
+ { WASM_INS_I32_GT_U, "i32.gt_u" },
97
+ { WASM_INS_I32_LE_S, "i32.le_s" },
98
+ { WASM_INS_I32_LE_U, "i32.le_u" },
99
+ { WASM_INS_I32_GE_S, "i32.ge_s" },
100
+ { WASM_INS_I32_GE_U, "i32.ge_u" },
101
+ { WASM_INS_I64_EQZ, "i64.eqz" },
102
+ { WASM_INS_I64_EQ, "i64.eq" },
103
+ { WASM_INS_I64_NE, "i64.ne" },
104
+ { WASM_INS_I64_LT_S, "i64.lt_s" },
105
+ { WASM_INS_I64_LT_U, "i64.lt_u" },
106
+ { WASN_INS_I64_GT_S, "i64.gt_s" },
107
+ { WASM_INS_I64_GT_U, "i64.gt_u" },
108
+ { WASM_INS_I64_LE_S, "i64.le_s" },
109
+ { WASM_INS_I64_LE_U, "i64.le_u" },
110
+ { WASM_INS_I64_GE_S, "i64.ge_s" },
111
+ { WASM_INS_I64_GE_U, "i64.ge_u" },
112
+ { WASM_INS_F32_EQ, "f32.eq" },
113
+ { WASM_INS_F32_NE, "f32.ne" },
114
+ { WASM_INS_F32_LT, "f32.lt" },
115
+ { WASM_INS_F32_GT, "f32.gt" },
116
+ { WASM_INS_F32_LE, "f32.le" },
117
+ { WASM_INS_F32_GE, "f32.ge" },
118
+ { WASM_INS_F64_EQ, "f64.eq" },
119
+ { WASM_INS_F64_NE, "f64.ne" },
120
+ { WASM_INS_F64_LT, "f64.lt" },
121
+ { WASM_INS_F64_GT, "f64.gt" },
122
+ { WASM_INS_F64_LE, "f64.le" },
123
+ { WASM_INS_F64_GE, "f64.ge" },
124
+ { WASM_INS_I32_CLZ, "i32.clz" },
125
+ { WASM_INS_I32_CTZ, "i32.ctz" },
126
+ { WASM_INS_I32_POPCNT, "i32.popcnt" },
127
+ { WASM_INS_I32_ADD, "i32.add" },
128
+ { WASM_INS_I32_SUB, "i32.sub" },
129
+ { WASM_INS_I32_MUL, "i32.mul" },
130
+ { WASM_INS_I32_DIV_S, "i32.div_s" },
131
+ { WASM_INS_I32_DIV_U, "i32.div_u" },
132
+ { WASM_INS_I32_REM_S, "i32.rem_s" },
133
+ { WASM_INS_I32_REM_U, "i32.rem_u" },
134
+ { WASM_INS_I32_AND, "i32.and" },
135
+ { WASM_INS_I32_OR, "i32.or" },
136
+ { WASM_INS_I32_XOR, "i32.xor" },
137
+ { WASM_INS_I32_SHL, "i32.shl" },
138
+ { WASM_INS_I32_SHR_S, "i32.shr_s" },
139
+ { WASM_INS_I32_SHR_U, "i32.shr_u" },
140
+ { WASM_INS_I32_ROTL, "i32.rotl" },
141
+ { WASM_INS_I32_ROTR, "i32.rotr" },
142
+ { WASM_INS_I64_CLZ, "i64.clz" },
143
+ { WASM_INS_I64_CTZ, "i64.ctz" },
144
+ { WASM_INS_I64_POPCNT, "i64.popcnt" },
145
+ { WASM_INS_I64_ADD, "i64.add" },
146
+ { WASM_INS_I64_SUB, "i64.sub" },
147
+ { WASM_INS_I64_MUL, "i64.mul" },
148
+ { WASM_INS_I64_DIV_S, "i64.div_s" },
149
+ { WASM_INS_I64_DIV_U, "i64.div_u" },
150
+ { WASM_INS_I64_REM_S, "i64.rem_s" },
151
+ { WASM_INS_I64_REM_U, "i64.rem_u" },
152
+ { WASM_INS_I64_AND, "i64.and" },
153
+ { WASM_INS_I64_OR, "i64.or" },
154
+ { WASM_INS_I64_XOR, "i64.xor" },
155
+ { WASM_INS_I64_SHL, "i64.shl" },
156
+ { WASM_INS_I64_SHR_S, "i64.shr_s" },
157
+ { WASM_INS_I64_SHR_U, "i64.shr_u" },
158
+ { WASM_INS_I64_ROTL, "i64.rotl" },
159
+ { WASM_INS_I64_ROTR, "i64.rotr" },
160
+ { WASM_INS_F32_ABS, "f32.abs" },
161
+ { WASM_INS_F32_NEG, "f32.neg" },
162
+ { WASM_INS_F32_CEIL, "f32.ceil" },
163
+ { WASM_INS_F32_FLOOR, "f32.floor" },
164
+ { WASM_INS_F32_TRUNC, "f32.trunc" },
165
+ { WASM_INS_F32_NEAREST, "f32.nearest" },
166
+ { WASM_INS_F32_SQRT, "f32.sqrt" },
167
+ { WASM_INS_F32_ADD, "f32.add" },
168
+ { WASM_INS_F32_SUB, "f32.sub" },
169
+ { WASM_INS_F32_MUL, "f32.mul" },
170
+ { WASM_INS_F32_DIV, "f32.div" },
171
+ { WASM_INS_F32_MIN, "f32.min" },
172
+ { WASM_INS_F32_MAX, "f32.max" },
173
+ { WASM_INS_F32_COPYSIGN, "f32.copysign" },
174
+ { WASM_INS_F64_ABS, "f64.abs" },
175
+ { WASM_INS_F64_NEG, "f64.neg" },
176
+ { WASM_INS_F64_CEIL, "f64.ceil" },
177
+ { WASM_INS_F64_FLOOR, "f64.floor" },
178
+ { WASM_INS_F64_TRUNC, "f64.trunc" },
179
+ { WASM_INS_F64_NEAREST, "f64.nearest" },
180
+ { WASM_INS_F64_SQRT, "f64.sqrt" },
181
+ { WASM_INS_F64_ADD, "f64.add" },
182
+ { WASM_INS_F64_SUB, "f64.sub" },
183
+ { WASM_INS_F64_MUL, "f64.mul" },
184
+ { WASM_INS_F64_DIV, "f64.div" },
185
+ { WASM_INS_F64_MIN, "f64.min" },
186
+ { WASM_INS_F64_MAX, "f64.max" },
187
+ { WASM_INS_F64_COPYSIGN, "f64.copysign" },
188
+ { WASM_INS_I32_WARP_I64, "i32.warp/i64" },
189
+ { WASP_INS_I32_TRUNC_S_F32, "i32.trunc_s/f32" },
190
+ { WASM_INS_I32_TRUNC_U_F32, "i32.trunc_u/f32" },
191
+ { WASM_INS_I32_TRUNC_S_F64, "i32/trunc_s/f64" },
192
+ { WASM_INS_I32_TRUNC_U_F64, "i32/trunc_u/f64" },
193
+ { WASM_INS_I64_EXTEND_S_I32, "i64/extend_s/i32" },
194
+ { WASM_INS_I64_EXTEND_U_I32, "i64/extend_u/i32" },
195
+ { WASM_INS_I64_TRUNC_S_F32, "i64.trunc_s/f32" },
196
+ { WASM_INS_I64_TRUNC_U_F32, "i64.trunc_u/f32" },
197
+ { WASM_INS_I64_TRUNC_S_F64, "f64.trunc_s/f64" },
198
+ { WASM_INS_I64_TRUNC_U_F64, "f64.trunc_u/f64" },
199
+ { WASM_INS_F32_CONVERT_S_I32, "f32.convert_s/i32" },
200
+ { WASM_INS_F32_CONVERT_U_I32, "f32.convert_u/i32" },
201
+ { WASM_INS_F32_CONVERT_S_I64, "f32.convert_s/i64" },
202
+ { WASM_INS_F32_CONVERT_U_I64, "f32.convert_u/i64" },
203
+ { WASM_INS_F32_DEMOTE_F64, "f32.demote/f64" },
204
+ { WASM_INS_F64_CONVERT_S_I32, "f64.convert_s/i32" },
205
+ { WASM_INS_F64_CONVERT_U_I32, "f64.convert_u/i32" },
206
+ { WASM_INS_F64_CONVERT_S_I64, "f64.convert_s/i64" },
207
+ { WASM_INS_F64_CONVERT_U_I64, "f64.convert_u/i64" },
208
+ { WASM_INS_F64_PROMOTE_F32, "f64.promote/f32" },
209
+ { WASM_INS_I32_REINTERPRET_F32, "i32.reinterpret/f32" },
210
+ { WASM_INS_I64_REINTERPRET_F64, "i64.reinterpret/f64" },
211
+ { WASM_INS_F32_REINTERPRET_I32, "f32.reinterpret/i32" },
212
+ { WASM_INS_F64_REINTERPRET_I64, "f64.reinterpret/i64" },
213
+ { WASM_INS_INVALID, NULL },
214
+ { WASM_INS_INVALID, NULL },
215
+ { WASM_INS_INVALID, NULL },
216
+ { WASM_INS_INVALID, NULL },
217
+ { WASM_INS_INVALID, NULL },
218
+ { WASM_INS_INVALID, NULL },
219
+ { WASM_INS_INVALID, NULL },
220
+ { WASM_INS_INVALID, NULL },
221
+ { WASM_INS_INVALID, NULL },
222
+ { WASM_INS_INVALID, NULL },
223
+ { WASM_INS_INVALID, NULL },
224
+ { WASM_INS_INVALID, NULL },
225
+ { WASM_INS_INVALID, NULL },
226
+ { WASM_INS_INVALID, NULL },
227
+ { WASM_INS_INVALID, NULL },
228
+ { WASM_INS_INVALID, NULL },
229
+ { WASM_INS_INVALID, NULL },
230
+ { WASM_INS_INVALID, NULL },
231
+ { WASM_INS_INVALID, NULL },
232
+ { WASM_INS_INVALID, NULL },
233
+ { WASM_INS_INVALID, NULL },
234
+ { WASM_INS_INVALID, NULL },
235
+ { WASM_INS_INVALID, NULL },
236
+ { WASM_INS_INVALID, NULL },
237
+ { WASM_INS_INVALID, NULL },
238
+ { WASM_INS_INVALID, NULL },
239
+ { WASM_INS_INVALID, NULL },
240
+ { WASM_INS_INVALID, NULL },
241
+ { WASM_INS_INVALID, NULL },
242
+ { WASM_INS_INVALID, NULL },
243
+ { WASM_INS_INVALID, NULL },
244
+ { WASM_INS_INVALID, NULL },
245
+ { WASM_INS_INVALID, NULL },
246
+ { WASM_INS_INVALID, NULL },
247
+ { WASM_INS_INVALID, NULL },
248
+ { WASM_INS_INVALID, NULL },
249
+ { WASM_INS_INVALID, NULL },
250
+ { WASM_INS_INVALID, NULL },
251
+ { WASM_INS_INVALID, NULL },
252
+ { WASM_INS_INVALID, NULL },
253
+ { WASM_INS_INVALID, NULL },
254
+ { WASM_INS_INVALID, NULL },
255
+ { WASM_INS_INVALID, NULL },
256
+ { WASM_INS_INVALID, NULL },
257
+ { WASM_INS_INVALID, NULL },
258
+ { WASM_INS_INVALID, NULL },
259
+ { WASM_INS_INVALID, NULL },
260
+ { WASM_INS_INVALID, NULL },
261
+ { WASM_INS_INVALID, NULL },
262
+ { WASM_INS_INVALID, NULL },
263
+ { WASM_INS_INVALID, NULL },
264
+ { WASM_INS_INVALID, NULL },
265
+ { WASM_INS_INVALID, NULL },
266
+ { WASM_INS_INVALID, NULL },
267
+ { WASM_INS_INVALID, NULL },
268
+ { WASM_INS_INVALID, NULL },
269
+ { WASM_INS_INVALID, NULL },
270
+ { WASM_INS_INVALID, NULL },
271
+ { WASM_INS_INVALID, NULL },
272
+ { WASM_INS_INVALID, NULL },
273
+ { WASM_INS_INVALID, NULL },
274
+ { WASM_INS_INVALID, NULL },
275
+ { WASM_INS_INVALID, NULL },
276
+ { WASM_INS_INVALID, NULL },
277
+ };
278
+ #endif
279
+
280
+ const char *WASM_insn_name(csh handle, unsigned int id)
281
+ {
282
+ #ifndef CAPSTONE_DIET
283
+ if (id >= ARR_SIZE(insn_name_maps))
284
+ return NULL;
285
+ else
286
+ return insn_name_maps[id].name;
287
+ #else
288
+ return NULL;
289
+ #endif
290
+ }
291
+
292
+ #ifndef CAPSTONE_DIET
293
+ static const name_map group_name_maps[] = {
294
+ // generic groups
295
+ { WASM_GRP_INVALID, NULL },
296
+ // special groups
297
+ { WASM_GRP_NUMBERIC, "numberic"},
298
+ { WASM_GRP_PARAMETRIC, "parametric"},
299
+ { WASM_GRP_VARIABLE, "variable"},
300
+ { WASM_GRP_MEMORY, "memory"},
301
+ { WASM_GRP_CONTROL, "control"},
302
+ };
303
+ #endif
304
+
305
+ #ifndef CAPSTONE_DIET
306
+ static const name_map kind_name_maps[] = {
307
+ { WASM_OP_INVALID, "Invalid" },
308
+ { WASM_OP_NONE, "None" },
309
+ { WASM_OP_INT7, "uint7" },
310
+ { WASM_OP_VARUINT32, "varuint32" },
311
+ { WASM_OP_VARUINT64, "varuint64" },
312
+ { WASM_OP_UINT32, "uint32" },
313
+ { WASM_OP_UINT64, "uint64" },
314
+ };
315
+ #endif
316
+
317
+ const char *WASM_kind_name(unsigned int id){
318
+ #ifndef CAPSTONE_DIET
319
+ return id2name(kind_name_maps, ARR_SIZE(kind_name_maps), id);
320
+ #else
321
+ return NULL;
322
+ #endif
323
+ }
324
+
325
+ const char *WASM_group_name(csh handle, unsigned int id)
326
+ {
327
+ #ifndef CAPSTONE_DIET
328
+ return id2name(group_name_maps, ARR_SIZE(group_name_maps), id);
329
+ #else
330
+ return NULL;
331
+ #endif
332
+ }
333
+ #endif
@@ -0,0 +1,9 @@
1
+ /* Capstone Disassembly Engine */
2
+ /* By Spike, xwings 2019 */
3
+
4
+ #include <capstone/capstone.h>
5
+
6
+ void WASM_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
7
+ const char *WASM_insn_name(csh handle, unsigned int id);
8
+ const char *WASM_group_name(csh handle, unsigned int id);
9
+ const char *WASM_kind_name(unsigned int id);
@@ -0,0 +1,33 @@
1
+ /* Capstone Disassembly Engine */
2
+ /* By Spike, xwings 2019 */
3
+
4
+ #ifdef CAPSTONE_HAS_WASM
5
+
6
+ #include "../../cs_priv.h"
7
+ #include "WASMDisassembler.h"
8
+ #include "WASMInstPrinter.h"
9
+ #include "WASMMapping.h"
10
+ #include "WASMModule.h"
11
+
12
+ cs_err WASM_global_init(cs_struct *ud)
13
+ {
14
+ // verify if requested mode is valid
15
+ if (ud->mode)
16
+ return CS_ERR_MODE;
17
+
18
+ ud->printer = WASM_printInst;
19
+ ud->printer_info = NULL;
20
+ ud->insn_id = WASM_get_insn_id;
21
+ ud->insn_name = WASM_insn_name;
22
+ ud->group_name = WASM_group_name;
23
+ ud->disasm = WASM_getInstruction;
24
+
25
+ return CS_ERR_OK;
26
+ }
27
+
28
+ cs_err WASM_option(cs_struct *handle, cs_opt_type type, size_t value)
29
+ {
30
+ return CS_ERR_OPTION;
31
+ }
32
+
33
+ #endif
@@ -0,0 +1,12 @@
1
+ /* Capstone Disassembly Engine */
2
+ /* By Spike, xwings 2019 */
3
+
4
+ #ifndef CS_WASM_MODULE_H
5
+ #define CS_WASM_MODULE_H
6
+
7
+ #include "../../utils.h"
8
+
9
+ cs_err WASM_global_init(cs_struct *ud);
10
+ cs_err WASM_option(cs_struct *handle, cs_opt_type type, size_t value);
11
+
12
+ #endif