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.
- package/LICENSE +26 -0
- package/README.md +191 -0
- package/binding.gyp +168 -0
- package/deps/capstone/LEB128.h +38 -0
- package/deps/capstone/MCDisassembler.h +14 -0
- package/deps/capstone/MCFixedLenDisassembler.h +32 -0
- package/deps/capstone/MCInst.c +270 -0
- package/deps/capstone/MCInst.h +165 -0
- package/deps/capstone/MCInstrDesc.c +41 -0
- package/deps/capstone/MCInstrDesc.h +167 -0
- package/deps/capstone/MCRegisterInfo.c +151 -0
- package/deps/capstone/MCRegisterInfo.h +116 -0
- package/deps/capstone/Mapping.c +254 -0
- package/deps/capstone/Mapping.h +174 -0
- package/deps/capstone/MathExtras.h +442 -0
- package/deps/capstone/SStream.c +181 -0
- package/deps/capstone/SStream.h +40 -0
- package/deps/capstone/arch/AArch64/AArch64AddressingModes.h +945 -0
- package/deps/capstone/arch/AArch64/AArch64BaseInfo.c +77 -0
- package/deps/capstone/arch/AArch64/AArch64BaseInfo.h +585 -0
- package/deps/capstone/arch/AArch64/AArch64Disassembler.c +2280 -0
- package/deps/capstone/arch/AArch64/AArch64Disassembler.h +18 -0
- package/deps/capstone/arch/AArch64/AArch64GenAsmWriter.inc +26589 -0
- package/deps/capstone/arch/AArch64/AArch64GenDisassemblerTables.inc +27322 -0
- package/deps/capstone/arch/AArch64/AArch64GenInstrInfo.inc +13194 -0
- package/deps/capstone/arch/AArch64/AArch64GenRegisterInfo.inc +3814 -0
- package/deps/capstone/arch/AArch64/AArch64GenRegisterName.inc +714 -0
- package/deps/capstone/arch/AArch64/AArch64GenRegisterV.inc +673 -0
- package/deps/capstone/arch/AArch64/AArch64GenSubtargetInfo.inc +229 -0
- package/deps/capstone/arch/AArch64/AArch64GenSystemOperands.inc +2863 -0
- package/deps/capstone/arch/AArch64/AArch64GenSystemOperands_enum.inc +21 -0
- package/deps/capstone/arch/AArch64/AArch64InstPrinter.c +3029 -0
- package/deps/capstone/arch/AArch64/AArch64InstPrinter.h +28 -0
- package/deps/capstone/arch/AArch64/AArch64Mapping.c +883 -0
- package/deps/capstone/arch/AArch64/AArch64Mapping.h +43 -0
- package/deps/capstone/arch/AArch64/AArch64MappingInsn.inc +37790 -0
- package/deps/capstone/arch/AArch64/AArch64MappingInsnName.inc +1282 -0
- package/deps/capstone/arch/AArch64/AArch64MappingInsnOp.inc +26994 -0
- package/deps/capstone/arch/AArch64/AArch64Module.c +44 -0
- package/deps/capstone/arch/AArch64/AArch64Module.h +12 -0
- package/deps/capstone/arch/ARM/ARMAddressingModes.h +698 -0
- package/deps/capstone/arch/ARM/ARMBaseInfo.h +486 -0
- package/deps/capstone/arch/ARM/ARMDisassembler.c +5763 -0
- package/deps/capstone/arch/ARM/ARMDisassembler.h +18 -0
- package/deps/capstone/arch/ARM/ARMGenAsmWriter.inc +9545 -0
- package/deps/capstone/arch/ARM/ARMGenDisassemblerTables.inc +15185 -0
- package/deps/capstone/arch/ARM/ARMGenInstrInfo.inc +6632 -0
- package/deps/capstone/arch/ARM/ARMGenRegisterInfo.inc +2102 -0
- package/deps/capstone/arch/ARM/ARMGenRegisterName.inc +231 -0
- package/deps/capstone/arch/ARM/ARMGenRegisterName_digit.inc +231 -0
- package/deps/capstone/arch/ARM/ARMGenSubtargetInfo.inc +162 -0
- package/deps/capstone/arch/ARM/ARMGenSystemRegister.inc +270 -0
- package/deps/capstone/arch/ARM/ARMInstPrinter.c +3364 -0
- package/deps/capstone/arch/ARM/ARMInstPrinter.h +43 -0
- package/deps/capstone/arch/ARM/ARMMapping.c +551 -0
- package/deps/capstone/arch/ARM/ARMMapping.h +40 -0
- package/deps/capstone/arch/ARM/ARMMappingInsn.inc +18772 -0
- package/deps/capstone/arch/ARM/ARMMappingInsnName.inc +475 -0
- package/deps/capstone/arch/ARM/ARMMappingInsnOp.inc +10729 -0
- package/deps/capstone/arch/ARM/ARMModule.c +63 -0
- package/deps/capstone/arch/ARM/ARMModule.h +12 -0
- package/deps/capstone/arch/BPF/BPFConstants.h +88 -0
- package/deps/capstone/arch/BPF/BPFDisassembler.c +464 -0
- package/deps/capstone/arch/BPF/BPFDisassembler.h +27 -0
- package/deps/capstone/arch/BPF/BPFInstPrinter.c +285 -0
- package/deps/capstone/arch/BPF/BPFInstPrinter.h +16 -0
- package/deps/capstone/arch/BPF/BPFMapping.c +513 -0
- package/deps/capstone/arch/BPF/BPFMapping.h +21 -0
- package/deps/capstone/arch/BPF/BPFModule.c +34 -0
- package/deps/capstone/arch/BPF/BPFModule.h +12 -0
- package/deps/capstone/arch/EVM/EVMDisassembler.c +379 -0
- package/deps/capstone/arch/EVM/EVMDisassembler.h +12 -0
- package/deps/capstone/arch/EVM/EVMInstPrinter.c +20 -0
- package/deps/capstone/arch/EVM/EVMInstPrinter.h +17 -0
- package/deps/capstone/arch/EVM/EVMMapping.c +344 -0
- package/deps/capstone/arch/EVM/EVMMapping.h +8 -0
- package/deps/capstone/arch/EVM/EVMMappingInsn.inc +259 -0
- package/deps/capstone/arch/EVM/EVMModule.c +33 -0
- package/deps/capstone/arch/EVM/EVMModule.h +12 -0
- package/deps/capstone/arch/M680X/M680XDisassembler.c +2307 -0
- package/deps/capstone/arch/M680X/M680XDisassembler.h +17 -0
- package/deps/capstone/arch/M680X/M680XDisassemblerInternals.h +57 -0
- package/deps/capstone/arch/M680X/M680XInstPrinter.c +360 -0
- package/deps/capstone/arch/M680X/M680XInstPrinter.h +25 -0
- package/deps/capstone/arch/M680X/M680XModule.c +77 -0
- package/deps/capstone/arch/M680X/M680XModule.h +12 -0
- package/deps/capstone/arch/M680X/cpu12.inc +335 -0
- package/deps/capstone/arch/M680X/hcs08.inc +60 -0
- package/deps/capstone/arch/M680X/hd6301.inc +15 -0
- package/deps/capstone/arch/M680X/hd6309.inc +259 -0
- package/deps/capstone/arch/M680X/insn_props.inc +367 -0
- package/deps/capstone/arch/M680X/m6800.inc +277 -0
- package/deps/capstone/arch/M680X/m6801.inc +39 -0
- package/deps/capstone/arch/M680X/m6805.inc +277 -0
- package/deps/capstone/arch/M680X/m6808.inc +91 -0
- package/deps/capstone/arch/M680X/m6809.inc +352 -0
- package/deps/capstone/arch/M680X/m6811.inc +105 -0
- package/deps/capstone/arch/M68K/M68KDisassembler.c +3668 -0
- package/deps/capstone/arch/M68K/M68KDisassembler.h +30 -0
- package/deps/capstone/arch/M68K/M68KInstPrinter.c +387 -0
- package/deps/capstone/arch/M68K/M68KInstPrinter.h +21 -0
- package/deps/capstone/arch/M68K/M68KInstructionTable.inc +65540 -0
- package/deps/capstone/arch/M68K/M68KModule.c +42 -0
- package/deps/capstone/arch/M68K/M68KModule.h +12 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.c +544 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXDisassembler.h +22 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXDisassemblerInternals.h +23 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXModule.c +79 -0
- package/deps/capstone/arch/MOS65XX/MOS65XXModule.h +12 -0
- package/deps/capstone/arch/MOS65XX/instruction_info.inc +106 -0
- package/deps/capstone/arch/MOS65XX/m6502.inc +256 -0
- package/deps/capstone/arch/MOS65XX/m65816.inc +256 -0
- package/deps/capstone/arch/MOS65XX/m65c02.inc +256 -0
- package/deps/capstone/arch/MOS65XX/mw65c02.inc +256 -0
- package/deps/capstone/arch/Mips/MipsDisassembler.c +1794 -0
- package/deps/capstone/arch/Mips/MipsDisassembler.h +16 -0
- package/deps/capstone/arch/Mips/MipsGenAsmWriter.inc +5725 -0
- package/deps/capstone/arch/Mips/MipsGenDisassemblerTables.inc +6942 -0
- package/deps/capstone/arch/Mips/MipsGenInstrInfo.inc +1805 -0
- package/deps/capstone/arch/Mips/MipsGenRegisterInfo.inc +1679 -0
- package/deps/capstone/arch/Mips/MipsGenSubtargetInfo.inc +52 -0
- package/deps/capstone/arch/Mips/MipsInstPrinter.c +424 -0
- package/deps/capstone/arch/Mips/MipsInstPrinter.h +25 -0
- package/deps/capstone/arch/Mips/MipsMapping.c +1070 -0
- package/deps/capstone/arch/Mips/MipsMapping.h +25 -0
- package/deps/capstone/arch/Mips/MipsMappingInsn.inc +9315 -0
- package/deps/capstone/arch/Mips/MipsModule.c +52 -0
- package/deps/capstone/arch/Mips/MipsModule.h +12 -0
- package/deps/capstone/arch/PowerPC/PPCDisassembler.c +627 -0
- package/deps/capstone/arch/PowerPC/PPCDisassembler.h +17 -0
- package/deps/capstone/arch/PowerPC/PPCGenAsmWriter.inc +11451 -0
- package/deps/capstone/arch/PowerPC/PPCGenDisassemblerTables.inc +6886 -0
- package/deps/capstone/arch/PowerPC/PPCGenInstrInfo.inc +4772 -0
- package/deps/capstone/arch/PowerPC/PPCGenRegisterInfo.inc +1122 -0
- package/deps/capstone/arch/PowerPC/PPCGenRegisterName.inc +278 -0
- package/deps/capstone/arch/PowerPC/PPCGenSubtargetInfo.inc +90 -0
- package/deps/capstone/arch/PowerPC/PPCInstPrinter.c +1238 -0
- package/deps/capstone/arch/PowerPC/PPCInstPrinter.h +15 -0
- package/deps/capstone/arch/PowerPC/PPCMapping.c +570 -0
- package/deps/capstone/arch/PowerPC/PPCMapping.h +40 -0
- package/deps/capstone/arch/PowerPC/PPCMappingInsn.inc +13220 -0
- package/deps/capstone/arch/PowerPC/PPCMappingInsnName.inc +1731 -0
- package/deps/capstone/arch/PowerPC/PPCModule.c +45 -0
- package/deps/capstone/arch/PowerPC/PPCModule.h +12 -0
- package/deps/capstone/arch/PowerPC/PPCPredicates.h +62 -0
- package/deps/capstone/arch/RISCV/RISCVBaseInfo.h +106 -0
- package/deps/capstone/arch/RISCV/RISCVDisassembler.c +433 -0
- package/deps/capstone/arch/RISCV/RISCVDisassembler.h +18 -0
- package/deps/capstone/arch/RISCV/RISCVGenAsmWriter.inc +2651 -0
- package/deps/capstone/arch/RISCV/RISCVGenDisassemblerTables.inc +1776 -0
- package/deps/capstone/arch/RISCV/RISCVGenInsnNameMaps.inc +275 -0
- package/deps/capstone/arch/RISCV/RISCVGenInstrInfo.inc +470 -0
- package/deps/capstone/arch/RISCV/RISCVGenRegisterInfo.inc +426 -0
- package/deps/capstone/arch/RISCV/RISCVGenSubtargetInfo.inc +33 -0
- package/deps/capstone/arch/RISCV/RISCVInstPrinter.c +447 -0
- package/deps/capstone/arch/RISCV/RISCVInstPrinter.h +24 -0
- package/deps/capstone/arch/RISCV/RISCVMapping.c +366 -0
- package/deps/capstone/arch/RISCV/RISCVMapping.h +22 -0
- package/deps/capstone/arch/RISCV/RISCVMappingInsn.inc +1635 -0
- package/deps/capstone/arch/RISCV/RISCVModule.c +42 -0
- package/deps/capstone/arch/RISCV/RISCVModule.h +12 -0
- package/deps/capstone/arch/SH/SHDisassembler.c +2221 -0
- package/deps/capstone/arch/SH/SHDisassembler.h +19 -0
- package/deps/capstone/arch/SH/SHInsnTable.inc +66 -0
- package/deps/capstone/arch/SH/SHInstPrinter.c +438 -0
- package/deps/capstone/arch/SH/SHInstPrinter.h +23 -0
- package/deps/capstone/arch/SH/SHModule.c +39 -0
- package/deps/capstone/arch/SH/SHModule.h +12 -0
- package/deps/capstone/arch/SH/mktable.rb +390 -0
- package/deps/capstone/arch/Sparc/Sparc.h +63 -0
- package/deps/capstone/arch/Sparc/SparcDisassembler.c +500 -0
- package/deps/capstone/arch/Sparc/SparcDisassembler.h +17 -0
- package/deps/capstone/arch/Sparc/SparcGenAsmWriter.inc +5709 -0
- package/deps/capstone/arch/Sparc/SparcGenDisassemblerTables.inc +2028 -0
- package/deps/capstone/arch/Sparc/SparcGenInstrInfo.inc +514 -0
- package/deps/capstone/arch/Sparc/SparcGenRegisterInfo.inc +451 -0
- package/deps/capstone/arch/Sparc/SparcGenSubtargetInfo.inc +27 -0
- package/deps/capstone/arch/Sparc/SparcInstPrinter.c +446 -0
- package/deps/capstone/arch/Sparc/SparcInstPrinter.h +17 -0
- package/deps/capstone/arch/Sparc/SparcMapping.c +665 -0
- package/deps/capstone/arch/Sparc/SparcMapping.h +34 -0
- package/deps/capstone/arch/Sparc/SparcMappingInsn.inc +2643 -0
- package/deps/capstone/arch/Sparc/SparcModule.c +45 -0
- package/deps/capstone/arch/Sparc/SparcModule.h +12 -0
- package/deps/capstone/arch/SystemZ/SystemZDisassembler.c +484 -0
- package/deps/capstone/arch/SystemZ/SystemZDisassembler.h +17 -0
- package/deps/capstone/arch/SystemZ/SystemZGenAsmWriter.inc +11575 -0
- package/deps/capstone/arch/SystemZ/SystemZGenDisassemblerTables.inc +10262 -0
- package/deps/capstone/arch/SystemZ/SystemZGenInsnNameMaps.inc +2348 -0
- package/deps/capstone/arch/SystemZ/SystemZGenInstrInfo.inc +2820 -0
- package/deps/capstone/arch/SystemZ/SystemZGenRegisterInfo.inc +741 -0
- package/deps/capstone/arch/SystemZ/SystemZGenSubtargetInfo.inc +49 -0
- package/deps/capstone/arch/SystemZ/SystemZInstPrinter.c +433 -0
- package/deps/capstone/arch/SystemZ/SystemZInstPrinter.h +15 -0
- package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.c +195 -0
- package/deps/capstone/arch/SystemZ/SystemZMCTargetDesc.h +51 -0
- package/deps/capstone/arch/SystemZ/SystemZMapping.c +479 -0
- package/deps/capstone/arch/SystemZ/SystemZMapping.h +23 -0
- package/deps/capstone/arch/SystemZ/SystemZMappingInsn.inc +14175 -0
- package/deps/capstone/arch/SystemZ/SystemZModule.c +44 -0
- package/deps/capstone/arch/SystemZ/SystemZModule.h +12 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.c +628 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xDisassembler.h +19 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenAsmWriter.inc +684 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenDisassemblerTables.inc +1352 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenInstrInfo.inc +298 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xGenRegisterInfo.inc +277 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.c +572 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xInstPrinter.h +15 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.c +1926 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xMapping.h +26 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.c +39 -0
- package/deps/capstone/arch/TMS320C64x/TMS320C64xModule.h +12 -0
- package/deps/capstone/arch/TriCore/TriCore.td +134 -0
- package/deps/capstone/arch/TriCore/TriCoreCallingConv.td +61 -0
- package/deps/capstone/arch/TriCore/TriCoreDisassembler.c +1655 -0
- package/deps/capstone/arch/TriCore/TriCoreDisassembler.h +18 -0
- package/deps/capstone/arch/TriCore/TriCoreGenAsmWriter.inc +3691 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSFeatureName.inc +22 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsn.inc +8938 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnName.inc +404 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSMappingInsnOp.inc +7994 -0
- package/deps/capstone/arch/TriCore/TriCoreGenCSOpGroup.inc +32 -0
- package/deps/capstone/arch/TriCore/TriCoreGenDisassemblerTables.inc +4044 -0
- package/deps/capstone/arch/TriCore/TriCoreGenInstrInfo.inc +2693 -0
- package/deps/capstone/arch/TriCore/TriCoreGenRegisterInfo.inc +295 -0
- package/deps/capstone/arch/TriCore/TriCoreGenSubtargetInfo.inc +40 -0
- package/deps/capstone/arch/TriCore/TriCoreInstPrinter.c +488 -0
- package/deps/capstone/arch/TriCore/TriCoreInstrFormats.td +773 -0
- package/deps/capstone/arch/TriCore/TriCoreInstrInfo.td +1873 -0
- package/deps/capstone/arch/TriCore/TriCoreLinkage.h +21 -0
- package/deps/capstone/arch/TriCore/TriCoreMapping.c +241 -0
- package/deps/capstone/arch/TriCore/TriCoreMapping.h +32 -0
- package/deps/capstone/arch/TriCore/TriCoreModule.c +44 -0
- package/deps/capstone/arch/TriCore/TriCoreModule.h +11 -0
- package/deps/capstone/arch/TriCore/TriCoreRegisterInfo.td +153 -0
- package/deps/capstone/arch/WASM/WASMDisassembler.c +1009 -0
- package/deps/capstone/arch/WASM/WASMDisassembler.h +12 -0
- package/deps/capstone/arch/WASM/WASMInstPrinter.c +47 -0
- package/deps/capstone/arch/WASM/WASMInstPrinter.h +18 -0
- package/deps/capstone/arch/WASM/WASMMapping.c +333 -0
- package/deps/capstone/arch/WASM/WASMMapping.h +9 -0
- package/deps/capstone/arch/WASM/WASMModule.c +33 -0
- package/deps/capstone/arch/WASM/WASMModule.h +12 -0
- package/deps/capstone/arch/X86/X86ATTInstPrinter.c +997 -0
- package/deps/capstone/arch/X86/X86BaseInfo.h +50 -0
- package/deps/capstone/arch/X86/X86Disassembler.c +1033 -0
- package/deps/capstone/arch/X86/X86Disassembler.h +28 -0
- package/deps/capstone/arch/X86/X86DisassemblerDecoder.c +2358 -0
- package/deps/capstone/arch/X86/X86DisassemblerDecoder.h +725 -0
- package/deps/capstone/arch/X86/X86DisassemblerDecoderCommon.h +483 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter.inc +49199 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter1.inc +33196 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter1_reduce.inc +2531 -0
- package/deps/capstone/arch/X86/X86GenAsmWriter_reduce.inc +2855 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables.inc +112961 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables2.inc +102151 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce.inc +28047 -0
- package/deps/capstone/arch/X86/X86GenDisassemblerTables_reduce2.inc +18827 -0
- package/deps/capstone/arch/X86/X86GenInstrInfo.inc +15158 -0
- package/deps/capstone/arch/X86/X86GenInstrInfo_reduce.inc +1564 -0
- package/deps/capstone/arch/X86/X86GenRegisterInfo.inc +1549 -0
- package/deps/capstone/arch/X86/X86GenRegisterName.inc +292 -0
- package/deps/capstone/arch/X86/X86GenRegisterName1.inc +291 -0
- package/deps/capstone/arch/X86/X86ImmSize.inc +335 -0
- package/deps/capstone/arch/X86/X86InstPrinter.h +26 -0
- package/deps/capstone/arch/X86/X86InstPrinterCommon.c +116 -0
- package/deps/capstone/arch/X86/X86InstPrinterCommon.h +16 -0
- package/deps/capstone/arch/X86/X86IntelInstPrinter.c +1061 -0
- package/deps/capstone/arch/X86/X86Lookup16.inc +16874 -0
- package/deps/capstone/arch/X86/X86Lookup16_reduce.inc +2308 -0
- package/deps/capstone/arch/X86/X86Mapping.c +2266 -0
- package/deps/capstone/arch/X86/X86Mapping.h +96 -0
- package/deps/capstone/arch/X86/X86MappingInsn.inc +105977 -0
- package/deps/capstone/arch/X86/X86MappingInsnName.inc +1527 -0
- package/deps/capstone/arch/X86/X86MappingInsnName_reduce.inc +348 -0
- package/deps/capstone/arch/X86/X86MappingInsnOp.inc +75700 -0
- package/deps/capstone/arch/X86/X86MappingInsnOp_reduce.inc +7729 -0
- package/deps/capstone/arch/X86/X86MappingInsn_reduce.inc +10819 -0
- package/deps/capstone/arch/X86/X86MappingReg.inc +280 -0
- package/deps/capstone/arch/X86/X86Module.c +94 -0
- package/deps/capstone/arch/X86/X86Module.h +12 -0
- package/deps/capstone/arch/XCore/XCoreDisassembler.c +794 -0
- package/deps/capstone/arch/XCore/XCoreDisassembler.h +17 -0
- package/deps/capstone/arch/XCore/XCoreGenAsmWriter.inc +772 -0
- package/deps/capstone/arch/XCore/XCoreGenDisassemblerTables.inc +853 -0
- package/deps/capstone/arch/XCore/XCoreGenInstrInfo.inc +267 -0
- package/deps/capstone/arch/XCore/XCoreGenRegisterInfo.inc +110 -0
- package/deps/capstone/arch/XCore/XCoreInstPrinter.c +250 -0
- package/deps/capstone/arch/XCore/XCoreInstPrinter.h +18 -0
- package/deps/capstone/arch/XCore/XCoreMapping.c +297 -0
- package/deps/capstone/arch/XCore/XCoreMapping.h +26 -0
- package/deps/capstone/arch/XCore/XCoreMappingInsn.inc +1287 -0
- package/deps/capstone/arch/XCore/XCoreModule.c +41 -0
- package/deps/capstone/arch/XCore/XCoreModule.h +12 -0
- package/deps/capstone/cs.c +1664 -0
- package/deps/capstone/cs_priv.h +101 -0
- package/deps/capstone/cs_simple_types.h +886 -0
- package/deps/capstone/include/capstone/arm.h +991 -0
- package/deps/capstone/include/capstone/arm64.h +3159 -0
- package/deps/capstone/include/capstone/bpf.h +209 -0
- package/deps/capstone/include/capstone/capstone.h +875 -0
- package/deps/capstone/include/capstone/evm.h +188 -0
- package/deps/capstone/include/capstone/m680x.h +537 -0
- package/deps/capstone/include/capstone/m68k.h +613 -0
- package/deps/capstone/include/capstone/mips.h +956 -0
- package/deps/capstone/include/capstone/mos65xx.h +204 -0
- package/deps/capstone/include/capstone/platform.h +122 -0
- package/deps/capstone/include/capstone/ppc.h +2108 -0
- package/deps/capstone/include/capstone/riscv.h +531 -0
- package/deps/capstone/include/capstone/sh.h +465 -0
- package/deps/capstone/include/capstone/sparc.h +520 -0
- package/deps/capstone/include/capstone/systemz.h +2601 -0
- package/deps/capstone/include/capstone/tms320c64x.h +359 -0
- package/deps/capstone/include/capstone/tricore.h +567 -0
- package/deps/capstone/include/capstone/wasm.h +250 -0
- package/deps/capstone/include/capstone/x86.h +1986 -0
- package/deps/capstone/include/capstone/xcore.h +235 -0
- package/deps/capstone/include/platform.h +110 -0
- package/deps/capstone/include/windowsce/intrin.h +12 -0
- package/deps/capstone/include/windowsce/stdint.h +133 -0
- package/deps/capstone/utils.c +140 -0
- package/deps/capstone/utils.h +54 -0
- package/index.d.ts +448 -0
- package/index.js +64 -0
- package/index.mjs +25 -0
- package/package.json +82 -0
- package/prebuilds/win32-x64/hexcore-capstone.node +0 -0
- package/src/capstone_wrapper.cpp +910 -0
- package/src/capstone_wrapper.h +147 -0
- package/src/disasm_async_worker.h +215 -0
- package/src/main.cpp +145 -0
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
/* Capstone Disassembly Engine */
|
|
2
|
+
/* TMS320C64x Backend by Fotis Loukos <me@fotisl.com> 2016 */
|
|
3
|
+
|
|
4
|
+
#ifndef CAPSTONE_TMS320C64X_H
|
|
5
|
+
#define CAPSTONE_TMS320C64X_H
|
|
6
|
+
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
|
|
11
|
+
#include <stdint.h>
|
|
12
|
+
#include "platform.h"
|
|
13
|
+
|
|
14
|
+
#ifdef _MSC_VER
|
|
15
|
+
#pragma warning(disable:4201)
|
|
16
|
+
#endif
|
|
17
|
+
|
|
18
|
+
typedef enum tms320c64x_op_type {
|
|
19
|
+
TMS320C64X_OP_INVALID = 0, ///< = CS_OP_INVALID (Uninitialized).
|
|
20
|
+
TMS320C64X_OP_REG, ///< = CS_OP_REG (Register operand).
|
|
21
|
+
TMS320C64X_OP_IMM, ///< = CS_OP_IMM (Immediate operand).
|
|
22
|
+
TMS320C64X_OP_MEM, ///< = CS_OP_MEM (Memory operand).
|
|
23
|
+
TMS320C64X_OP_REGPAIR = 64, ///< Register pair for double word ops
|
|
24
|
+
} tms320c64x_op_type;
|
|
25
|
+
|
|
26
|
+
typedef enum tms320c64x_mem_disp {
|
|
27
|
+
TMS320C64X_MEM_DISP_INVALID = 0,
|
|
28
|
+
TMS320C64X_MEM_DISP_CONSTANT,
|
|
29
|
+
TMS320C64X_MEM_DISP_REGISTER,
|
|
30
|
+
} tms320c64x_mem_disp;
|
|
31
|
+
|
|
32
|
+
typedef enum tms320c64x_mem_dir {
|
|
33
|
+
TMS320C64X_MEM_DIR_INVALID = 0,
|
|
34
|
+
TMS320C64X_MEM_DIR_FW,
|
|
35
|
+
TMS320C64X_MEM_DIR_BW,
|
|
36
|
+
} tms320c64x_mem_dir;
|
|
37
|
+
|
|
38
|
+
typedef enum tms320c64x_mem_mod {
|
|
39
|
+
TMS320C64X_MEM_MOD_INVALID = 0,
|
|
40
|
+
TMS320C64X_MEM_MOD_NO,
|
|
41
|
+
TMS320C64X_MEM_MOD_PRE,
|
|
42
|
+
TMS320C64X_MEM_MOD_POST,
|
|
43
|
+
} tms320c64x_mem_mod;
|
|
44
|
+
|
|
45
|
+
typedef struct tms320c64x_op_mem {
|
|
46
|
+
unsigned int base; ///< base register
|
|
47
|
+
unsigned int disp; ///< displacement/offset value
|
|
48
|
+
unsigned int unit; ///< unit of base and offset register
|
|
49
|
+
unsigned int scaled; ///< offset scaled
|
|
50
|
+
unsigned int disptype; ///< displacement type
|
|
51
|
+
unsigned int direction; ///< direction
|
|
52
|
+
unsigned int modify; ///< modification
|
|
53
|
+
} tms320c64x_op_mem;
|
|
54
|
+
|
|
55
|
+
typedef struct cs_tms320c64x_op {
|
|
56
|
+
tms320c64x_op_type type; ///< operand type
|
|
57
|
+
union {
|
|
58
|
+
unsigned int reg; ///< register value for REG operand or first register for REGPAIR operand
|
|
59
|
+
int32_t imm; ///< immediate value for IMM operand
|
|
60
|
+
tms320c64x_op_mem mem; ///< base/disp value for MEM operand
|
|
61
|
+
};
|
|
62
|
+
} cs_tms320c64x_op;
|
|
63
|
+
|
|
64
|
+
typedef struct cs_tms320c64x {
|
|
65
|
+
uint8_t op_count;
|
|
66
|
+
cs_tms320c64x_op operands[8]; ///< operands for this instruction.
|
|
67
|
+
struct {
|
|
68
|
+
unsigned int reg;
|
|
69
|
+
unsigned int zero;
|
|
70
|
+
} condition;
|
|
71
|
+
struct {
|
|
72
|
+
unsigned int unit;
|
|
73
|
+
unsigned int side;
|
|
74
|
+
unsigned int crosspath;
|
|
75
|
+
} funit;
|
|
76
|
+
unsigned int parallel;
|
|
77
|
+
} cs_tms320c64x;
|
|
78
|
+
|
|
79
|
+
typedef enum tms320c64x_reg {
|
|
80
|
+
TMS320C64X_REG_INVALID = 0,
|
|
81
|
+
|
|
82
|
+
TMS320C64X_REG_AMR,
|
|
83
|
+
TMS320C64X_REG_CSR,
|
|
84
|
+
TMS320C64X_REG_DIER,
|
|
85
|
+
TMS320C64X_REG_DNUM,
|
|
86
|
+
TMS320C64X_REG_ECR,
|
|
87
|
+
TMS320C64X_REG_GFPGFR,
|
|
88
|
+
TMS320C64X_REG_GPLYA,
|
|
89
|
+
TMS320C64X_REG_GPLYB,
|
|
90
|
+
TMS320C64X_REG_ICR,
|
|
91
|
+
TMS320C64X_REG_IER,
|
|
92
|
+
TMS320C64X_REG_IERR,
|
|
93
|
+
TMS320C64X_REG_ILC,
|
|
94
|
+
TMS320C64X_REG_IRP,
|
|
95
|
+
TMS320C64X_REG_ISR,
|
|
96
|
+
TMS320C64X_REG_ISTP,
|
|
97
|
+
TMS320C64X_REG_ITSR,
|
|
98
|
+
TMS320C64X_REG_NRP,
|
|
99
|
+
TMS320C64X_REG_NTSR,
|
|
100
|
+
TMS320C64X_REG_REP,
|
|
101
|
+
TMS320C64X_REG_RILC,
|
|
102
|
+
TMS320C64X_REG_SSR,
|
|
103
|
+
TMS320C64X_REG_TSCH,
|
|
104
|
+
TMS320C64X_REG_TSCL,
|
|
105
|
+
TMS320C64X_REG_TSR,
|
|
106
|
+
TMS320C64X_REG_A0,
|
|
107
|
+
TMS320C64X_REG_A1,
|
|
108
|
+
TMS320C64X_REG_A2,
|
|
109
|
+
TMS320C64X_REG_A3,
|
|
110
|
+
TMS320C64X_REG_A4,
|
|
111
|
+
TMS320C64X_REG_A5,
|
|
112
|
+
TMS320C64X_REG_A6,
|
|
113
|
+
TMS320C64X_REG_A7,
|
|
114
|
+
TMS320C64X_REG_A8,
|
|
115
|
+
TMS320C64X_REG_A9,
|
|
116
|
+
TMS320C64X_REG_A10,
|
|
117
|
+
TMS320C64X_REG_A11,
|
|
118
|
+
TMS320C64X_REG_A12,
|
|
119
|
+
TMS320C64X_REG_A13,
|
|
120
|
+
TMS320C64X_REG_A14,
|
|
121
|
+
TMS320C64X_REG_A15,
|
|
122
|
+
TMS320C64X_REG_A16,
|
|
123
|
+
TMS320C64X_REG_A17,
|
|
124
|
+
TMS320C64X_REG_A18,
|
|
125
|
+
TMS320C64X_REG_A19,
|
|
126
|
+
TMS320C64X_REG_A20,
|
|
127
|
+
TMS320C64X_REG_A21,
|
|
128
|
+
TMS320C64X_REG_A22,
|
|
129
|
+
TMS320C64X_REG_A23,
|
|
130
|
+
TMS320C64X_REG_A24,
|
|
131
|
+
TMS320C64X_REG_A25,
|
|
132
|
+
TMS320C64X_REG_A26,
|
|
133
|
+
TMS320C64X_REG_A27,
|
|
134
|
+
TMS320C64X_REG_A28,
|
|
135
|
+
TMS320C64X_REG_A29,
|
|
136
|
+
TMS320C64X_REG_A30,
|
|
137
|
+
TMS320C64X_REG_A31,
|
|
138
|
+
TMS320C64X_REG_B0,
|
|
139
|
+
TMS320C64X_REG_B1,
|
|
140
|
+
TMS320C64X_REG_B2,
|
|
141
|
+
TMS320C64X_REG_B3,
|
|
142
|
+
TMS320C64X_REG_B4,
|
|
143
|
+
TMS320C64X_REG_B5,
|
|
144
|
+
TMS320C64X_REG_B6,
|
|
145
|
+
TMS320C64X_REG_B7,
|
|
146
|
+
TMS320C64X_REG_B8,
|
|
147
|
+
TMS320C64X_REG_B9,
|
|
148
|
+
TMS320C64X_REG_B10,
|
|
149
|
+
TMS320C64X_REG_B11,
|
|
150
|
+
TMS320C64X_REG_B12,
|
|
151
|
+
TMS320C64X_REG_B13,
|
|
152
|
+
TMS320C64X_REG_B14,
|
|
153
|
+
TMS320C64X_REG_B15,
|
|
154
|
+
TMS320C64X_REG_B16,
|
|
155
|
+
TMS320C64X_REG_B17,
|
|
156
|
+
TMS320C64X_REG_B18,
|
|
157
|
+
TMS320C64X_REG_B19,
|
|
158
|
+
TMS320C64X_REG_B20,
|
|
159
|
+
TMS320C64X_REG_B21,
|
|
160
|
+
TMS320C64X_REG_B22,
|
|
161
|
+
TMS320C64X_REG_B23,
|
|
162
|
+
TMS320C64X_REG_B24,
|
|
163
|
+
TMS320C64X_REG_B25,
|
|
164
|
+
TMS320C64X_REG_B26,
|
|
165
|
+
TMS320C64X_REG_B27,
|
|
166
|
+
TMS320C64X_REG_B28,
|
|
167
|
+
TMS320C64X_REG_B29,
|
|
168
|
+
TMS320C64X_REG_B30,
|
|
169
|
+
TMS320C64X_REG_B31,
|
|
170
|
+
TMS320C64X_REG_PCE1,
|
|
171
|
+
|
|
172
|
+
TMS320C64X_REG_ENDING, // <-- mark the end of the list of registers
|
|
173
|
+
|
|
174
|
+
// Alias registers
|
|
175
|
+
TMS320C64X_REG_EFR = TMS320C64X_REG_ECR,
|
|
176
|
+
TMS320C64X_REG_IFR = TMS320C64X_REG_ISR,
|
|
177
|
+
} tms320c64x_reg;
|
|
178
|
+
|
|
179
|
+
typedef enum tms320c64x_insn {
|
|
180
|
+
TMS320C64X_INS_INVALID = 0,
|
|
181
|
+
|
|
182
|
+
TMS320C64X_INS_ABS,
|
|
183
|
+
TMS320C64X_INS_ABS2,
|
|
184
|
+
TMS320C64X_INS_ADD,
|
|
185
|
+
TMS320C64X_INS_ADD2,
|
|
186
|
+
TMS320C64X_INS_ADD4,
|
|
187
|
+
TMS320C64X_INS_ADDAB,
|
|
188
|
+
TMS320C64X_INS_ADDAD,
|
|
189
|
+
TMS320C64X_INS_ADDAH,
|
|
190
|
+
TMS320C64X_INS_ADDAW,
|
|
191
|
+
TMS320C64X_INS_ADDK,
|
|
192
|
+
TMS320C64X_INS_ADDKPC,
|
|
193
|
+
TMS320C64X_INS_ADDU,
|
|
194
|
+
TMS320C64X_INS_AND,
|
|
195
|
+
TMS320C64X_INS_ANDN,
|
|
196
|
+
TMS320C64X_INS_AVG2,
|
|
197
|
+
TMS320C64X_INS_AVGU4,
|
|
198
|
+
TMS320C64X_INS_B,
|
|
199
|
+
TMS320C64X_INS_BDEC,
|
|
200
|
+
TMS320C64X_INS_BITC4,
|
|
201
|
+
TMS320C64X_INS_BNOP,
|
|
202
|
+
TMS320C64X_INS_BPOS,
|
|
203
|
+
TMS320C64X_INS_CLR,
|
|
204
|
+
TMS320C64X_INS_CMPEQ,
|
|
205
|
+
TMS320C64X_INS_CMPEQ2,
|
|
206
|
+
TMS320C64X_INS_CMPEQ4,
|
|
207
|
+
TMS320C64X_INS_CMPGT,
|
|
208
|
+
TMS320C64X_INS_CMPGT2,
|
|
209
|
+
TMS320C64X_INS_CMPGTU4,
|
|
210
|
+
TMS320C64X_INS_CMPLT,
|
|
211
|
+
TMS320C64X_INS_CMPLTU,
|
|
212
|
+
TMS320C64X_INS_DEAL,
|
|
213
|
+
TMS320C64X_INS_DOTP2,
|
|
214
|
+
TMS320C64X_INS_DOTPN2,
|
|
215
|
+
TMS320C64X_INS_DOTPNRSU2,
|
|
216
|
+
TMS320C64X_INS_DOTPRSU2,
|
|
217
|
+
TMS320C64X_INS_DOTPSU4,
|
|
218
|
+
TMS320C64X_INS_DOTPU4,
|
|
219
|
+
TMS320C64X_INS_EXT,
|
|
220
|
+
TMS320C64X_INS_EXTU,
|
|
221
|
+
TMS320C64X_INS_GMPGTU,
|
|
222
|
+
TMS320C64X_INS_GMPY4,
|
|
223
|
+
TMS320C64X_INS_LDB,
|
|
224
|
+
TMS320C64X_INS_LDBU,
|
|
225
|
+
TMS320C64X_INS_LDDW,
|
|
226
|
+
TMS320C64X_INS_LDH,
|
|
227
|
+
TMS320C64X_INS_LDHU,
|
|
228
|
+
TMS320C64X_INS_LDNDW,
|
|
229
|
+
TMS320C64X_INS_LDNW,
|
|
230
|
+
TMS320C64X_INS_LDW,
|
|
231
|
+
TMS320C64X_INS_LMBD,
|
|
232
|
+
TMS320C64X_INS_MAX2,
|
|
233
|
+
TMS320C64X_INS_MAXU4,
|
|
234
|
+
TMS320C64X_INS_MIN2,
|
|
235
|
+
TMS320C64X_INS_MINU4,
|
|
236
|
+
TMS320C64X_INS_MPY,
|
|
237
|
+
TMS320C64X_INS_MPY2,
|
|
238
|
+
TMS320C64X_INS_MPYH,
|
|
239
|
+
TMS320C64X_INS_MPYHI,
|
|
240
|
+
TMS320C64X_INS_MPYHIR,
|
|
241
|
+
TMS320C64X_INS_MPYHL,
|
|
242
|
+
TMS320C64X_INS_MPYHLU,
|
|
243
|
+
TMS320C64X_INS_MPYHSLU,
|
|
244
|
+
TMS320C64X_INS_MPYHSU,
|
|
245
|
+
TMS320C64X_INS_MPYHU,
|
|
246
|
+
TMS320C64X_INS_MPYHULS,
|
|
247
|
+
TMS320C64X_INS_MPYHUS,
|
|
248
|
+
TMS320C64X_INS_MPYLH,
|
|
249
|
+
TMS320C64X_INS_MPYLHU,
|
|
250
|
+
TMS320C64X_INS_MPYLI,
|
|
251
|
+
TMS320C64X_INS_MPYLIR,
|
|
252
|
+
TMS320C64X_INS_MPYLSHU,
|
|
253
|
+
TMS320C64X_INS_MPYLUHS,
|
|
254
|
+
TMS320C64X_INS_MPYSU,
|
|
255
|
+
TMS320C64X_INS_MPYSU4,
|
|
256
|
+
TMS320C64X_INS_MPYU,
|
|
257
|
+
TMS320C64X_INS_MPYU4,
|
|
258
|
+
TMS320C64X_INS_MPYUS,
|
|
259
|
+
TMS320C64X_INS_MVC,
|
|
260
|
+
TMS320C64X_INS_MVD,
|
|
261
|
+
TMS320C64X_INS_MVK,
|
|
262
|
+
TMS320C64X_INS_MVKL,
|
|
263
|
+
TMS320C64X_INS_MVKLH,
|
|
264
|
+
TMS320C64X_INS_NOP,
|
|
265
|
+
TMS320C64X_INS_NORM,
|
|
266
|
+
TMS320C64X_INS_OR,
|
|
267
|
+
TMS320C64X_INS_PACK2,
|
|
268
|
+
TMS320C64X_INS_PACKH2,
|
|
269
|
+
TMS320C64X_INS_PACKH4,
|
|
270
|
+
TMS320C64X_INS_PACKHL2,
|
|
271
|
+
TMS320C64X_INS_PACKL4,
|
|
272
|
+
TMS320C64X_INS_PACKLH2,
|
|
273
|
+
TMS320C64X_INS_ROTL,
|
|
274
|
+
TMS320C64X_INS_SADD,
|
|
275
|
+
TMS320C64X_INS_SADD2,
|
|
276
|
+
TMS320C64X_INS_SADDU4,
|
|
277
|
+
TMS320C64X_INS_SADDUS2,
|
|
278
|
+
TMS320C64X_INS_SAT,
|
|
279
|
+
TMS320C64X_INS_SET,
|
|
280
|
+
TMS320C64X_INS_SHFL,
|
|
281
|
+
TMS320C64X_INS_SHL,
|
|
282
|
+
TMS320C64X_INS_SHLMB,
|
|
283
|
+
TMS320C64X_INS_SHR,
|
|
284
|
+
TMS320C64X_INS_SHR2,
|
|
285
|
+
TMS320C64X_INS_SHRMB,
|
|
286
|
+
TMS320C64X_INS_SHRU,
|
|
287
|
+
TMS320C64X_INS_SHRU2,
|
|
288
|
+
TMS320C64X_INS_SMPY,
|
|
289
|
+
TMS320C64X_INS_SMPY2,
|
|
290
|
+
TMS320C64X_INS_SMPYH,
|
|
291
|
+
TMS320C64X_INS_SMPYHL,
|
|
292
|
+
TMS320C64X_INS_SMPYLH,
|
|
293
|
+
TMS320C64X_INS_SPACK2,
|
|
294
|
+
TMS320C64X_INS_SPACKU4,
|
|
295
|
+
TMS320C64X_INS_SSHL,
|
|
296
|
+
TMS320C64X_INS_SSHVL,
|
|
297
|
+
TMS320C64X_INS_SSHVR,
|
|
298
|
+
TMS320C64X_INS_SSUB,
|
|
299
|
+
TMS320C64X_INS_STB,
|
|
300
|
+
TMS320C64X_INS_STDW,
|
|
301
|
+
TMS320C64X_INS_STH,
|
|
302
|
+
TMS320C64X_INS_STNDW,
|
|
303
|
+
TMS320C64X_INS_STNW,
|
|
304
|
+
TMS320C64X_INS_STW,
|
|
305
|
+
TMS320C64X_INS_SUB,
|
|
306
|
+
TMS320C64X_INS_SUB2,
|
|
307
|
+
TMS320C64X_INS_SUB4,
|
|
308
|
+
TMS320C64X_INS_SUBAB,
|
|
309
|
+
TMS320C64X_INS_SUBABS4,
|
|
310
|
+
TMS320C64X_INS_SUBAH,
|
|
311
|
+
TMS320C64X_INS_SUBAW,
|
|
312
|
+
TMS320C64X_INS_SUBC,
|
|
313
|
+
TMS320C64X_INS_SUBU,
|
|
314
|
+
TMS320C64X_INS_SWAP4,
|
|
315
|
+
TMS320C64X_INS_UNPKHU4,
|
|
316
|
+
TMS320C64X_INS_UNPKLU4,
|
|
317
|
+
TMS320C64X_INS_XOR,
|
|
318
|
+
TMS320C64X_INS_XPND2,
|
|
319
|
+
TMS320C64X_INS_XPND4,
|
|
320
|
+
// Aliases
|
|
321
|
+
TMS320C64X_INS_IDLE,
|
|
322
|
+
TMS320C64X_INS_MV,
|
|
323
|
+
TMS320C64X_INS_NEG,
|
|
324
|
+
TMS320C64X_INS_NOT,
|
|
325
|
+
TMS320C64X_INS_SWAP2,
|
|
326
|
+
TMS320C64X_INS_ZERO,
|
|
327
|
+
|
|
328
|
+
TMS320C64X_INS_ENDING, // <-- mark the end of the list of instructions
|
|
329
|
+
} tms320c64x_insn;
|
|
330
|
+
|
|
331
|
+
typedef enum tms320c64x_insn_group {
|
|
332
|
+
TMS320C64X_GRP_INVALID = 0, ///< = CS_GRP_INVALID
|
|
333
|
+
|
|
334
|
+
TMS320C64X_GRP_JUMP, ///< = CS_GRP_JUMP
|
|
335
|
+
|
|
336
|
+
TMS320C64X_GRP_FUNIT_D = 128,
|
|
337
|
+
TMS320C64X_GRP_FUNIT_L,
|
|
338
|
+
TMS320C64X_GRP_FUNIT_M,
|
|
339
|
+
TMS320C64X_GRP_FUNIT_S,
|
|
340
|
+
TMS320C64X_GRP_FUNIT_NO,
|
|
341
|
+
|
|
342
|
+
TMS320C64X_GRP_ENDING, // <-- mark the end of the list of groups
|
|
343
|
+
} tms320c64x_insn_group;
|
|
344
|
+
|
|
345
|
+
typedef enum tms320c64x_funit {
|
|
346
|
+
TMS320C64X_FUNIT_INVALID = 0,
|
|
347
|
+
TMS320C64X_FUNIT_D,
|
|
348
|
+
TMS320C64X_FUNIT_L,
|
|
349
|
+
TMS320C64X_FUNIT_M,
|
|
350
|
+
TMS320C64X_FUNIT_S,
|
|
351
|
+
TMS320C64X_FUNIT_NO
|
|
352
|
+
} tms320c64x_funit;
|
|
353
|
+
|
|
354
|
+
#ifdef __cplusplus
|
|
355
|
+
}
|
|
356
|
+
#endif
|
|
357
|
+
|
|
358
|
+
#endif
|
|
359
|
+
|