├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── autogen.sh ├── configure.ac ├── doc ├── Makefile.am ├── doxygen │ ├── doxygen.cfg.in │ ├── favicon.ico │ ├── footer.html │ ├── header.html │ ├── insight-header.png │ ├── insight-logo.png │ └── insight.css ├── insight.dtd ├── manuals │ ├── common-macros.texi.in │ ├── insight-dev-manual.texi │ └── insight-user-manual.texi └── xml-annotations.org ├── src ├── Makefile.am ├── analyses │ ├── CFG.cc │ ├── CFG.hh │ ├── Wp.cc │ ├── Wp.hh │ ├── cfgrecovery │ │ ├── AbstractContext.cc │ │ ├── AbstractContext.hh │ │ ├── AbstractDomainContext.hh │ │ ├── AbstractDomainContext.ii │ │ ├── AbstractDomainStepper.hh │ │ ├── AbstractDomainStepper.ii │ │ ├── AbstractMemoryTraversal.hh │ │ ├── AbstractMemoryTraversal.ii │ │ ├── AbstractProgramPoint.hh │ │ ├── AbstractProgramPoint.ii │ │ ├── AbstractState.hh │ │ ├── AbstractState.ii │ │ ├── AbstractStateSpace.hh │ │ ├── AbstractStepper.hh │ │ ├── AlgorithmFactory.cc │ │ ├── AlgorithmFactory.hh │ │ ├── DomainSimulator.hh │ │ ├── DummyStateSpace.hh │ │ ├── FloodTraversal.hh │ │ ├── FloodTraversalStepper.cc │ │ ├── LinearSweep.hh │ │ ├── LinearSweepStepper.cc │ │ ├── MicrocodeAddressProgramPoint.cc │ │ ├── MicrocodeAddressProgramPoint.hh │ │ ├── NullContext.cc │ │ ├── NullContext.hh │ │ ├── RecursiveTraversal.hh │ │ ├── RecursiveTraversalContext.cc │ │ ├── RecursiveTraversalStepper.cc │ │ ├── SingleContextStateSpace.hh │ │ └── SingleContextStateSpace.ii │ ├── microcode_exec.hh │ ├── microcode_exec.ii │ └── slicing │ │ ├── Slicing.cc │ │ └── Slicing.hh ├── decoders │ ├── Decoder.cc │ ├── Decoder.hh │ ├── DecoderFactory.cc │ ├── DecoderFactory.hh │ └── binutils │ │ ├── BinutilsDecoder.cc │ │ ├── BinutilsDecoder.hh │ │ ├── arm │ │ ├── arm_A_instr.cc │ │ ├── arm_B_instr.cc │ │ ├── arm_C_instr.cc │ │ ├── arm_E_instr.cc │ │ ├── arm_L_instr.cc │ │ ├── arm_M_instr.cc │ │ ├── arm_N_instr.cc │ │ ├── arm_O_instr.cc │ │ ├── arm_P_instr.cc │ │ ├── arm_R_instr.cc │ │ ├── arm_S_instr.cc │ │ ├── arm_U_instr.cc │ │ ├── arm_decoder.cc │ │ ├── arm_decoder.hh │ │ ├── arm_instructions.txt │ │ ├── arm_mkfiles.sh │ │ ├── arm_parser.yy │ │ ├── arm_parser.yy.tmpl │ │ ├── arm_scanner.ll │ │ ├── arm_scanner.ll.tmpl │ │ ├── arm_translate.cc │ │ ├── arm_translate.hh │ │ └── arm_translation_functions.hh │ │ ├── msp430 │ │ ├── msp430_decoder.cc │ │ ├── msp430_decoder.hh │ │ ├── msp430_instr.cc │ │ ├── msp430_instr.hh │ │ ├── msp430_parser.yy │ │ ├── msp430_scanner.ll │ │ ├── msp430_translate.cc │ │ └── msp430_translate.hh │ │ ├── sparc │ │ ├── sparc_cc.def │ │ ├── sparc_decoder.cc │ │ ├── sparc_decoder.hh │ │ ├── sparc_instr_arithmetics.cc │ │ ├── sparc_instr_bits.cc │ │ ├── sparc_instr_boolean.cc │ │ ├── sparc_instr_call.cc │ │ ├── sparc_instr_interrupts.cc │ │ ├── sparc_instr_jump.cc │ │ ├── sparc_instr_load_store.cc │ │ ├── sparc_instr_loops.cc │ │ ├── sparc_instr_misc.cc │ │ ├── sparc_instr_mov.cc │ │ ├── sparc_instr_prefixes.cc │ │ ├── sparc_instr_shift.cc │ │ ├── sparc_instr_stack.cc │ │ ├── sparc_instr_strings.cc │ │ ├── sparc_parser.yy │ │ ├── sparc_scanner.ll │ │ ├── sparc_translate.cc │ │ ├── sparc_translate.hh │ │ └── sparc_translation_functions.hh │ │ └── x86 │ │ ├── x86_32_decoder.cc │ │ ├── x86_32_decoder.hh │ │ ├── x86_64_decoder.cc │ │ ├── x86_64_decoder.hh │ │ ├── x86_cc.def │ │ ├── x86_instr_arithmetics.cc │ │ ├── x86_instr_bits.cc │ │ ├── x86_instr_boolean.cc │ │ ├── x86_instr_call.cc │ │ ├── x86_instr_interrupts.cc │ │ ├── x86_instr_jump.cc │ │ ├── x86_instr_load_store.cc │ │ ├── x86_instr_loops.cc │ │ ├── x86_instr_misc.cc │ │ ├── x86_instr_mov.cc │ │ ├── x86_instr_prefixes.cc │ │ ├── x86_instr_shift.cc │ │ ├── x86_instr_stack.cc │ │ ├── x86_instr_strings.cc │ │ ├── x86_parser.yy │ │ ├── x86_scanner.ll │ │ ├── x86_translate.cc │ │ ├── x86_translate.hh │ │ └── x86_translation_functions.hh ├── domains │ ├── ExprSemantics.hh │ ├── ExprSemantics.ii │ ├── common │ │ ├── ConcreteAddressMemory.hh │ │ ├── ConcreteAddressMemory.ii │ │ ├── ConcreteProgramPoint.cc │ │ └── ConcreteProgramPoint.hh │ ├── concrete │ │ ├── ConcreteAddress.cc │ │ ├── ConcreteAddress.hh │ │ ├── ConcreteContext.cc │ │ ├── ConcreteContext.hh │ │ ├── ConcreteExprSemantics.cc │ │ ├── ConcreteExprSemantics.hh │ │ ├── ConcreteMemory.cc │ │ ├── ConcreteMemory.hh │ │ ├── ConcreteStepper.cc │ │ ├── ConcreteStepper.hh │ │ ├── ConcreteValue.cc │ │ └── ConcreteValue.hh │ ├── interval │ │ ├── IntervalAddress.cc │ │ ├── IntervalAddress.hh │ │ ├── IntervalExprSemantics.cc │ │ ├── IntervalExprSemantics.hh │ │ ├── IntervalMemory.cc │ │ ├── IntervalMemory.hh │ │ ├── IntervalValue.cc │ │ ├── IntervalValue.hh │ │ ├── interval_context.cc │ │ └── interval_context.hh │ ├── sets │ │ ├── SetsAddress.cc │ │ ├── SetsAddress.hh │ │ ├── SetsContext.cc │ │ ├── SetsContext.hh │ │ ├── SetsExprSemantics.cc │ │ ├── SetsExprSemantics.hh │ │ ├── SetsMemory.cc │ │ ├── SetsMemory.hh │ │ ├── SetsValue.cc │ │ └── SetsValue.hh │ └── symbolic │ │ ├── SymbolicContext.cc │ │ ├── SymbolicContext.hh │ │ ├── SymbolicExprSemantics.cc │ │ ├── SymbolicExprSemantics.hh │ │ ├── SymbolicMemory.cc │ │ ├── SymbolicMemory.hh │ │ ├── SymbolicStepper.cc │ │ ├── SymbolicStepper.hh │ │ ├── SymbolicValue.cc │ │ └── SymbolicValue.hh ├── io │ ├── binary │ │ ├── BinaryLoader.cc │ │ ├── BinaryLoader.hh │ │ ├── BinutilsBinaryLoader.cc │ │ ├── BinutilsBinaryLoader.hh │ │ ├── BinutilsStubFactory.cc │ │ ├── BinutilsStubFactory.hh │ │ ├── ELF_x86_32_StubFactory.cc │ │ ├── ELF_x86_64_StubFactory.cc │ │ └── StubFactory.hh │ ├── expressions │ │ ├── ExprLexer.hh │ │ ├── ExprLexer.ll │ │ ├── ExprParser.yy │ │ ├── expr-parser.hh │ │ ├── expr-writer.cc │ │ ├── expr-writer.hh │ │ ├── smtlib-writer.cc │ │ └── smtlib-writer.hh │ ├── microcode │ │ ├── MicrocodeLoader.cc │ │ ├── MicrocodeLoader.hh │ │ ├── MicrocodeWriter.cc │ │ ├── MicrocodeWriter.hh │ │ ├── asm-writer.cc │ │ ├── asm-writer.hh │ │ ├── dot-writer.cc │ │ ├── dot-writer.hh │ │ ├── mc-writer.cc │ │ ├── mc-writer.hh │ │ ├── xml_annotations.hh │ │ ├── xml_microcode_generator.cc │ │ ├── xml_microcode_generator.hh │ │ ├── xml_microcode_parser.cc │ │ └── xml_microcode_parser.hh │ └── process │ │ ├── ProcessLoader.cc │ │ └── ProcessLoader.hh ├── kernel │ ├── Address.cc │ ├── Address.hh │ ├── Annotable.cc │ ├── Annotable.hh │ ├── Annotation.hh │ ├── Architecture.cc │ ├── Architecture.hh │ ├── Architecture_ARM.cc │ ├── Architecture_ARM.hh │ ├── Architecture_SPARC.cc │ ├── Architecture_SPARC.hh │ ├── Architecture_X86_32.cc │ ├── Architecture_X86_32.hh │ ├── Architecture_X86_64.cc │ ├── Architecture_X86_64.hh │ ├── Architecture_msp430.cc │ ├── Architecture_msp430.hh │ ├── Expressions.cc │ ├── Expressions.hh │ ├── Memory.hh │ ├── Memory.ii │ ├── Microcode.cc │ ├── Microcode.hh │ ├── RegisterMap.hh │ ├── RegisterMap.ii │ ├── SymbolTable.cc │ ├── SymbolTable.hh │ ├── Value.cc │ ├── Value.hh │ ├── annotations │ │ ├── AbstractAnnotation.hh │ │ ├── AsmAnnotation.cc │ │ ├── AsmAnnotation.hh │ │ ├── BooleanAnnotation.hh │ │ ├── CallRetAnnotation.cc │ │ ├── CallRetAnnotation.hh │ │ ├── ExprAnnotation.cc │ │ ├── ExprAnnotation.hh │ │ ├── GenericAnnotation.hh │ │ ├── ListAnnotation.hh │ │ ├── NextInstAnnotation.cc │ │ ├── NextInstAnnotation.hh │ │ ├── SolvedJmpAnnotation.cc │ │ ├── SolvedJmpAnnotation.hh │ │ ├── StringAnnotation.hh │ │ ├── StubAnnotation.cc │ │ └── StubAnnotation.hh │ ├── expressions │ │ ├── BottomUpApplyVisitor.cc │ │ ├── BottomUpApplyVisitor.hh │ │ ├── BottomUpRewritePatternRule.cc │ │ ├── BottomUpRewritePatternRule.hh │ │ ├── ConditionalSet.cc │ │ ├── ConditionalSet.hh │ │ ├── ExprMathsatSolver.cc │ │ ├── ExprMathsatSolver.hh │ │ ├── ExprProcessSolver.cc │ │ ├── ExprProcessSolver.hh │ │ ├── ExprReplaceSubtermRule.cc │ │ ├── ExprReplaceSubtermRule.hh │ │ ├── ExprRewritingFunctions.cc │ │ ├── ExprRewritingFunctions.hh │ │ ├── ExprRewritingRule.cc │ │ ├── ExprRewritingRule.hh │ │ ├── ExprSolver.cc │ │ ├── ExprSolver.hh │ │ ├── ExprVisitor.hh │ │ ├── FunctionRewritingRule.cc │ │ ├── FunctionRewritingRule.hh │ │ ├── Operators.cc │ │ ├── Operators.def │ │ ├── Operators.hh │ │ ├── PatternMatching.cc │ │ ├── PatternMatching.hh │ │ ├── PatternMatchingVisitor.hh │ │ ├── exprutils.cc │ │ ├── exprutils.hh │ │ └── exprutils.ii │ ├── insight.cc │ ├── insight.hh │ └── microcode │ │ ├── MicrocodeAddress.cc │ │ ├── MicrocodeAddress.hh │ │ ├── MicrocodeArchitecture.cc │ │ ├── MicrocodeArchitecture.hh │ │ ├── MicrocodeNode.cc │ │ ├── MicrocodeNode.hh │ │ ├── MicrocodeStatements.cc │ │ ├── MicrocodeStatements.hh │ │ └── MicrocodeStore.hh └── utils │ ├── ConfigTable.cc │ ├── ConfigTable.hh │ ├── FileStreamBuffer.hh │ ├── FileStreamBuffer_char.cc │ ├── Object.cc │ ├── Object.hh │ ├── Option.hh │ ├── bv-manip.hh │ ├── graph.hh │ ├── graph.ii │ ├── infrastructure.hh │ ├── logs.cc │ ├── logs.hh │ ├── map-helpers.hh │ ├── path.hh │ ├── path.ii │ ├── tools.cc │ ├── tools.hh │ └── unordered11.hh ├── test ├── Makefile.am ├── Makefile.inc.in ├── bugs │ ├── Kyuafile │ ├── Makefile.am │ └── bug_001_test.cc ├── cfgrecovery.cfg.in ├── check-results.sh ├── decoders │ ├── Makefile.am │ ├── test-decoder-x86.cc │ ├── x86-32 │ │ ├── Makefile.am │ │ ├── check-diff.result │ │ ├── x86_32-aaa.memres.result │ │ ├── x86_32-aaa.res.result │ │ ├── x86_32-aad.memres.result │ │ ├── x86_32-aad.res.result │ │ ├── x86_32-aam.memres.result │ │ ├── x86_32-aam.res.result │ │ ├── x86_32-aas.memres.result │ │ ├── x86_32-aas.res.result │ │ ├── x86_32-and.memres.result │ │ ├── x86_32-and.res.result │ │ ├── x86_32-bound.memres.result │ │ ├── x86_32-bound.res.result │ │ ├── x86_32-bsf.memres.result │ │ ├── x86_32-bsf.res.result │ │ ├── x86_32-bsr.memres.result │ │ ├── x86_32-bsr.res.result │ │ ├── x86_32-bswap.memres.result │ │ ├── x86_32-bswap.res.result │ │ ├── x86_32-bt.memres.result │ │ ├── x86_32-bt.res.result │ │ ├── x86_32-btc.memres.result │ │ ├── x86_32-btc.res.result │ │ ├── x86_32-btr.memres.result │ │ ├── x86_32-btr.res.result │ │ ├── x86_32-bts.memres.result │ │ ├── x86_32-bts.res.result │ │ ├── x86_32-call.memres.result │ │ ├── x86_32-call.res.result │ │ ├── x86_32-cmp.memres.result │ │ ├── x86_32-cmp.res.result │ │ ├── x86_32-cmps.memres.result │ │ ├── x86_32-cmps.res.result │ │ ├── x86_32-cmpxchg.memres.result │ │ ├── x86_32-cmpxchg.res.result │ │ ├── x86_32-daadas.memres.result │ │ ├── x86_32-daadas.res.result │ │ ├── x86_32-div.memres.result │ │ ├── x86_32-div.res.result │ │ ├── x86_32-enter-leave.memres.result │ │ ├── x86_32-enter-leave.res.result │ │ ├── x86_32-idiv.memres.result │ │ ├── x86_32-idiv.res.result │ │ ├── x86_32-imul.memres.result │ │ ├── x86_32-imul.res.result │ │ ├── x86_32-int.memres.result │ │ ├── x86_32-int.res.result │ │ ├── x86_32-jcc.memres.result │ │ ├── x86_32-jcc.res.result │ │ ├── x86_32-jmp.memres.result │ │ ├── x86_32-jmp.res.result │ │ ├── x86_32-lea.memres.result │ │ ├── x86_32-lea.res.result │ │ ├── x86_32-lods.memres.result │ │ ├── x86_32-lods.res.result │ │ ├── x86_32-loop.memres.result │ │ ├── x86_32-loop.res.result │ │ ├── x86_32-lsahf.memres.result │ │ ├── x86_32-lsahf.res.result │ │ ├── x86_32-mov.memres.result │ │ ├── x86_32-mov.res.result │ │ ├── x86_32-movbe.memres.result │ │ ├── x86_32-movbe.res.result │ │ ├── x86_32-movs.memres.result │ │ ├── x86_32-movs.res.result │ │ ├── x86_32-movsxz.memres.result │ │ ├── x86_32-movsxz.res.result │ │ ├── x86_32-mul.memres.result │ │ ├── x86_32-mul.res.result │ │ ├── x86_32-neg.memres.result │ │ ├── x86_32-neg.res.result │ │ ├── x86_32-nop.memres.result │ │ ├── x86_32-nop.res.result │ │ ├── x86_32-not.memres.result │ │ ├── x86_32-not.res.result │ │ ├── x86_32-or.memres.result │ │ ├── x86_32-or.res.result │ │ ├── x86_32-pop.memres.result │ │ ├── x86_32-pop.res.result │ │ ├── x86_32-pop16.memres.result │ │ ├── x86_32-pop16.res.result │ │ ├── x86_32-popa.memres.result │ │ ├── x86_32-popa.res.result │ │ ├── x86_32-popa16.memres.result │ │ ├── x86_32-popa16.res.result │ │ ├── x86_32-popcnt.memres.result │ │ ├── x86_32-popcnt.res.result │ │ ├── x86_32-push.memres.result │ │ ├── x86_32-push.res.result │ │ ├── x86_32-push16.memres.result │ │ ├── x86_32-push16.res.result │ │ ├── x86_32-pusha.memres.result │ │ ├── x86_32-pusha.res.result │ │ ├── x86_32-ret.memres.result │ │ ├── x86_32-ret.res.result │ │ ├── x86_32-rotate.memres.result │ │ ├── x86_32-rotate.res.result │ │ ├── x86_32-sbb.memres.result │ │ ├── x86_32-sbb.res.result │ │ ├── x86_32-scas.memres.result │ │ ├── x86_32-scas.res.result │ │ ├── x86_32-setcc.memres.result │ │ ├── x86_32-setcc.res.result │ │ ├── x86_32-shift.memres.result │ │ ├── x86_32-shift.res.result │ │ ├── x86_32-xadd.memres.result │ │ ├── x86_32-xadd.res.result │ │ ├── x86_32-xchg.memres.result │ │ ├── x86_32-xchg.res.result │ │ ├── x86_32-xor.memres.result │ │ └── x86_32-xor.res.result │ └── x86-64 │ │ ├── Makefile.am │ │ ├── check-diff.result │ │ ├── x86_64-and.memres.result │ │ ├── x86_64-and.res.result │ │ ├── x86_64-bsf.memres.result │ │ ├── x86_64-bsf.res.result │ │ ├── x86_64-bsr.memres.result │ │ ├── x86_64-bsr.res.result │ │ ├── x86_64-bswap.memres.result │ │ ├── x86_64-bswap.res.result │ │ ├── x86_64-bt.memres.result │ │ ├── x86_64-bt.res.result │ │ ├── x86_64-btc.memres.result │ │ ├── x86_64-btc.res.result │ │ ├── x86_64-btr.memres.result │ │ ├── x86_64-btr.res.result │ │ ├── x86_64-bts.memres.result │ │ ├── x86_64-bts.res.result │ │ ├── x86_64-call.memres.result │ │ ├── x86_64-call.res.result │ │ ├── x86_64-cmp.memres.result │ │ ├── x86_64-cmp.res.result │ │ ├── x86_64-cmps.memres.result │ │ ├── x86_64-cmps.res.result │ │ ├── x86_64-cmpxchg.memres.result │ │ ├── x86_64-cmpxchg.res.result │ │ ├── x86_64-div.memres.result │ │ ├── x86_64-div.res.result │ │ ├── x86_64-enter-leave.memres.result │ │ ├── x86_64-enter-leave.res.result │ │ ├── x86_64-idiv.memres.result │ │ ├── x86_64-idiv.res.result │ │ ├── x86_64-imul.memres.result │ │ ├── x86_64-imul.res.result │ │ ├── x86_64-int.memres.result │ │ ├── x86_64-int.res.result │ │ ├── x86_64-jcc.memres.result │ │ ├── x86_64-jcc.res.result │ │ ├── x86_64-jmp.memres.result │ │ ├── x86_64-jmp.res.result │ │ ├── x86_64-lea.memres.result │ │ ├── x86_64-lea.res.result │ │ ├── x86_64-lods.memres.result │ │ ├── x86_64-lods.res.result │ │ ├── x86_64-loop.memres.result │ │ ├── x86_64-loop.res.result │ │ ├── x86_64-lsahf.memres.result │ │ ├── x86_64-lsahf.res.result │ │ ├── x86_64-mov.memres.result │ │ ├── x86_64-mov.res.result │ │ ├── x86_64-movbe.memres.result │ │ ├── x86_64-movbe.res.result │ │ ├── x86_64-movs.memres.result │ │ ├── x86_64-movs.res.result │ │ ├── x86_64-movsxz.memres.result │ │ ├── x86_64-movsxz.res.result │ │ ├── x86_64-mul.memres.result │ │ ├── x86_64-mul.res.result │ │ ├── x86_64-neg.memres.result │ │ ├── x86_64-neg.res.result │ │ ├── x86_64-nop.memres.result │ │ ├── x86_64-nop.res.result │ │ ├── x86_64-not.memres.result │ │ ├── x86_64-not.res.result │ │ ├── x86_64-or.memres.result │ │ ├── x86_64-or.res.result │ │ ├── x86_64-pop.memres.result │ │ ├── x86_64-pop.res.result │ │ ├── x86_64-pop16.memres.result │ │ ├── x86_64-pop16.res.result │ │ ├── x86_64-popcnt.memres.result │ │ ├── x86_64-popcnt.res.result │ │ ├── x86_64-push.memres.result │ │ ├── x86_64-push.res.result │ │ ├── x86_64-push16.memres.result │ │ ├── x86_64-push16.res.result │ │ ├── x86_64-ret.memres.result │ │ ├── x86_64-ret.res.result │ │ ├── x86_64-rotate.memres.result │ │ ├── x86_64-rotate.res.result │ │ ├── x86_64-sbb.memres.result │ │ ├── x86_64-sbb.res.result │ │ ├── x86_64-scas.memres.result │ │ ├── x86_64-scas.res.result │ │ ├── x86_64-setcc.memres.result │ │ ├── x86_64-setcc.res.result │ │ ├── x86_64-shift.memres.result │ │ ├── x86_64-shift.res.result │ │ ├── x86_64-xadd.memres.result │ │ ├── x86_64-xadd.res.result │ │ ├── x86_64-xchg.memres.result │ │ ├── x86_64-xchg.res.result │ │ ├── x86_64-xor.memres.result │ │ └── x86_64-xor.res.result ├── domains │ ├── Makefile.am │ ├── concrete │ │ ├── Kyuafile │ │ ├── Makefile.am │ │ ├── address_test.cc │ │ ├── memory_test.cc │ │ ├── simulator_test.cc │ │ ├── simulator_test_cases.hh │ │ └── value_test.cc │ ├── sets │ │ ├── Kyuafile │ │ ├── Makefile.am │ │ └── sets_test.cc │ └── symbolic │ │ ├── Kyuafile.in │ │ ├── Makefile.am │ │ ├── memory_test.cc │ │ ├── simulator_test.cc │ │ └── simulator_test_cases.hh ├── io │ ├── Kyuafile │ ├── Makefile.am │ ├── binaryloader_test.cc │ ├── expr_to_smtlib_test.cc │ └── xml │ │ ├── Makefile.am │ │ ├── check-results.sh │ │ └── xml-tester.cc ├── kernel │ ├── Kyuafile │ ├── Makefile.am │ ├── architecture_test.cc │ ├── expr_parser_test.cc │ ├── expr_solver_test.cc │ └── expression_test.cc ├── slicing │ ├── Makefile.am │ ├── check-diff.result │ ├── slicer.cc │ ├── x86_32-gcd.memres.result │ ├── x86_32-gcd.res.result │ ├── x86_32-gcd.spec.sh │ ├── x86_32-slicing-01.memres.result │ ├── x86_32-slicing-01.res.result │ ├── x86_32-slicing-01.spec.sh │ ├── x86_32-slicing-02.memres.result │ ├── x86_32-slicing-02.res.result │ └── x86_32-slicing-02.spec.sh ├── test-samples │ ├── GNUmakefile │ ├── disassembler-benchmark │ │ ├── README │ │ ├── mixed_code.bin │ │ ├── mixed_code.s │ │ ├── overlapping_code.bin │ │ ├── overlapping_code.s │ │ ├── self-modfying_code.bin │ │ └── self-modfying_code.s │ ├── echo-freebsd-amd64 │ ├── echo-freebsd-i386 │ ├── echo-hurd-i386 │ ├── echo-linux-amd64 │ ├── echo-linux-arm64 │ ├── echo-linux-armel │ ├── echo-linux-i386 │ ├── echo-linux-sparc │ ├── echo-linux-sparc64 │ ├── echo-macho-multiarch │ ├── echo-windows-amd64 │ ├── echo-windows-i386 │ ├── x86_32-aaa.bin │ ├── x86_32-aaa.s │ ├── x86_32-aad.bin │ ├── x86_32-aad.s │ ├── x86_32-aam.bin │ ├── x86_32-aam.s │ ├── x86_32-aas.bin │ ├── x86_32-aas.s │ ├── x86_32-and.bin │ ├── x86_32-and.s │ ├── x86_32-bound.bin │ ├── x86_32-bound.s │ ├── x86_32-bsf.bin │ ├── x86_32-bsf.s │ ├── x86_32-bsr.bin │ ├── x86_32-bsr.s │ ├── x86_32-bswap.bin │ ├── x86_32-bswap.s │ ├── x86_32-bt.bin │ ├── x86_32-bt.s │ ├── x86_32-btc.bin │ ├── x86_32-btc.s │ ├── x86_32-btr.bin │ ├── x86_32-btr.s │ ├── x86_32-bts.bin │ ├── x86_32-bts.s │ ├── x86_32-bug-001.bin │ ├── x86_32-bug-001.s │ ├── x86_32-call.bin │ ├── x86_32-call.s │ ├── x86_32-cfgrecovery-01.bin │ ├── x86_32-cfgrecovery-01.s │ ├── x86_32-cfgrecovery-02.bin │ ├── x86_32-cfgrecovery-02.s │ ├── x86_32-cfgrecovery-03.bin │ ├── x86_32-cfgrecovery-03.s │ ├── x86_32-cfgrecovery-04.bin │ ├── x86_32-cfgrecovery-04.s │ ├── x86_32-cfgrecovery-05.bin │ ├── x86_32-cfgrecovery-05.s │ ├── x86_32-cmp.bin │ ├── x86_32-cmp.s │ ├── x86_32-cmps.bin │ ├── x86_32-cmps.s │ ├── x86_32-cmpxchg.bin │ ├── x86_32-cmpxchg.s │ ├── x86_32-daadas.bin │ ├── x86_32-daadas.s │ ├── x86_32-div.bin │ ├── x86_32-div.s │ ├── x86_32-enter-leave.bin │ ├── x86_32-enter-leave.s │ ├── x86_32-gcd.bin │ ├── x86_32-gcd.s │ ├── x86_32-idiv.bin │ ├── x86_32-idiv.s │ ├── x86_32-imul.bin │ ├── x86_32-imul.s │ ├── x86_32-int.bin │ ├── x86_32-int.s │ ├── x86_32-jcc.bin │ ├── x86_32-jcc.s │ ├── x86_32-jmp.bin │ ├── x86_32-jmp.s │ ├── x86_32-lea.bin │ ├── x86_32-lea.s │ ├── x86_32-lods.bin │ ├── x86_32-lods.s │ ├── x86_32-loop.bin │ ├── x86_32-loop.s │ ├── x86_32-lsahf.bin │ ├── x86_32-lsahf.s │ ├── x86_32-misc-02.bin │ ├── x86_32-misc-02.s │ ├── x86_32-misc-03.bin │ ├── x86_32-misc-03.s │ ├── x86_32-misc.bin │ ├── x86_32-misc.s │ ├── x86_32-mov.bin │ ├── x86_32-mov.s │ ├── x86_32-movbe.bin │ ├── x86_32-movbe.s │ ├── x86_32-movs.bin │ ├── x86_32-movs.s │ ├── x86_32-movsxz.bin │ ├── x86_32-movsxz.s │ ├── x86_32-mul.bin │ ├── x86_32-mul.s │ ├── x86_32-neg.bin │ ├── x86_32-neg.s │ ├── x86_32-nop.bin │ ├── x86_32-nop.s │ ├── x86_32-not.bin │ ├── x86_32-not.s │ ├── x86_32-or.bin │ ├── x86_32-or.s │ ├── x86_32-pop.bin │ ├── x86_32-pop.s │ ├── x86_32-pop16.bin │ ├── x86_32-pop16.s │ ├── x86_32-popa.bin │ ├── x86_32-popa.s │ ├── x86_32-popa16.bin │ ├── x86_32-popa16.s │ ├── x86_32-popal.bin │ ├── x86_32-popal.s │ ├── x86_32-popaw.bin │ ├── x86_32-popaw.s │ ├── x86_32-popcnt.bin │ ├── x86_32-popcnt.s │ ├── x86_32-push.bin │ ├── x86_32-push.s │ ├── x86_32-push16.bin │ ├── x86_32-push16.s │ ├── x86_32-pusha.bin │ ├── x86_32-pusha.s │ ├── x86_32-rep.bin │ ├── x86_32-rep.s │ ├── x86_32-ret.bin │ ├── x86_32-ret.s │ ├── x86_32-rotate.bin │ ├── x86_32-rotate.s │ ├── x86_32-sbb.bin │ ├── x86_32-sbb.s │ ├── x86_32-scas.bin │ ├── x86_32-scas.s │ ├── x86_32-setcc.bin │ ├── x86_32-setcc.s │ ├── x86_32-shift.bin │ ├── x86_32-shift.s │ ├── x86_32-simulator-00.bin │ ├── x86_32-simulator-00.s │ ├── x86_32-simulator-01.bin │ ├── x86_32-simulator-01.s │ ├── x86_32-simulator-02.bin │ ├── x86_32-simulator-02.s │ ├── x86_32-simulator-03.bin │ ├── x86_32-simulator-03.s │ ├── x86_32-simulator-04.bin │ ├── x86_32-simulator-04.s │ ├── x86_32-simulator-05.bin │ ├── x86_32-simulator-05.s │ ├── x86_32-simulator-06.bin │ ├── x86_32-simulator-06.s │ ├── x86_32-simulator-CF.bin │ ├── x86_32-simulator-CF.s │ ├── x86_32-simulator-aaa.bin │ ├── x86_32-simulator-aaa.s │ ├── x86_32-simulator-aad.bin │ ├── x86_32-simulator-aad.s │ ├── x86_32-simulator-aam.bin │ ├── x86_32-simulator-aam.s │ ├── x86_32-simulator-aas.bin │ ├── x86_32-simulator-aas.s │ ├── x86_32-simulator-adcsbb.bin │ ├── x86_32-simulator-adcsbb.s │ ├── x86_32-simulator-add.bin │ ├── x86_32-simulator-add.s │ ├── x86_32-simulator-booleans.bin │ ├── x86_32-simulator-booleans.s │ ├── x86_32-simulator-bound.bin │ ├── x86_32-simulator-bound.s │ ├── x86_32-simulator-bsf.bin │ ├── x86_32-simulator-bsf.s │ ├── x86_32-simulator-bsr.bin │ ├── x86_32-simulator-bsr.s │ ├── x86_32-simulator-bswap.bin │ ├── x86_32-simulator-bswap.s │ ├── x86_32-simulator-bt-01.bin │ ├── x86_32-simulator-bt-01.s │ ├── x86_32-simulator-bt-02.bin │ ├── x86_32-simulator-bt-02.s │ ├── x86_32-simulator-btc.bin │ ├── x86_32-simulator-btc.s │ ├── x86_32-simulator-btr.bin │ ├── x86_32-simulator-btr.s │ ├── x86_32-simulator-bts.bin │ ├── x86_32-simulator-bts.s │ ├── x86_32-simulator-call-noinit.bin │ ├── x86_32-simulator-call-noinit.s │ ├── x86_32-simulator-call.bin │ ├── x86_32-simulator-call.s │ ├── x86_32-simulator-cbw.bin │ ├── x86_32-simulator-cbw.s │ ├── x86_32-simulator-cmov.bin │ ├── x86_32-simulator-cmov.s │ ├── x86_32-simulator-cmps-01.bin │ ├── x86_32-simulator-cmps-01.s │ ├── x86_32-simulator-cmps-02.bin │ ├── x86_32-simulator-cmps-02.s │ ├── x86_32-simulator-cmpxchg.bin │ ├── x86_32-simulator-cmpxchg.s │ ├── x86_32-simulator-cwdcdq.bin │ ├── x86_32-simulator-cwdcdq.s │ ├── x86_32-simulator-daadas.bin │ ├── x86_32-simulator-daadas.s │ ├── x86_32-simulator-div.bin │ ├── x86_32-simulator-div.s │ ├── x86_32-simulator-end.s │ ├── x86_32-simulator-enter-leave-01.bin │ ├── x86_32-simulator-enter-leave-01.s │ ├── x86_32-simulator-enter-leave-02.bin │ ├── x86_32-simulator-enter-leave-02.s │ ├── x86_32-simulator-header.s │ ├── x86_32-simulator-idiv.bin │ ├── x86_32-simulator-idiv.s │ ├── x86_32-simulator-imul-01.bin │ ├── x86_32-simulator-imul-01.s │ ├── x86_32-simulator-imul-02.bin │ ├── x86_32-simulator-imul-02.s │ ├── x86_32-simulator-imul-03.bin │ ├── x86_32-simulator-imul-03.s │ ├── x86_32-simulator-imul.s │ ├── x86_32-simulator-int.bin │ ├── x86_32-simulator-int.s │ ├── x86_32-simulator-int3.bin │ ├── x86_32-simulator-int3.s │ ├── x86_32-simulator-into-01.bin │ ├── x86_32-simulator-into-01.s │ ├── x86_32-simulator-into-02.bin │ ├── x86_32-simulator-into-02.s │ ├── x86_32-simulator-lods.bin │ ├── x86_32-simulator-lods.s │ ├── x86_32-simulator-loop.bin │ ├── x86_32-simulator-loop.s │ ├── x86_32-simulator-lsahf.bin │ ├── x86_32-simulator-lsahf.s │ ├── x86_32-simulator-movbe.bin │ ├── x86_32-simulator-movbe.s │ ├── x86_32-simulator-movs.bin │ ├── x86_32-simulator-movs.s │ ├── x86_32-simulator-movsxz.bin │ ├── x86_32-simulator-movsxz.s │ ├── x86_32-simulator-mul.bin │ ├── x86_32-simulator-mul.s │ ├── x86_32-simulator-neg.bin │ ├── x86_32-simulator-neg.s │ ├── x86_32-simulator-popcnt.bin │ ├── x86_32-simulator-popcnt.s │ ├── x86_32-simulator-pushapopa.bin │ ├── x86_32-simulator-pushapopa.s │ ├── x86_32-simulator-pushfpopf.bin │ ├── x86_32-simulator-pushfpopf.s │ ├── x86_32-simulator-pushpop-01.bin │ ├── x86_32-simulator-pushpop-01.s │ ├── x86_32-simulator-pushpop-02.bin │ ├── x86_32-simulator-pushpop-02.s │ ├── x86_32-simulator-pushpop-03.bin │ ├── x86_32-simulator-pushpop-03.s │ ├── x86_32-simulator-pushpop-04.bin │ ├── x86_32-simulator-pushpop-04.s │ ├── x86_32-simulator-pushpop-05.bin │ ├── x86_32-simulator-pushpop-05.s │ ├── x86_32-simulator-pushpop-06.bin │ ├── x86_32-simulator-pushpop-06.s │ ├── x86_32-simulator-rep-01.bin │ ├── x86_32-simulator-rep-01.s │ ├── x86_32-simulator-rep-02.bin │ ├── x86_32-simulator-rep-02.s │ ├── x86_32-simulator-rep-03.bin │ ├── x86_32-simulator-rep-03.s │ ├── x86_32-simulator-rep-04.bin │ ├── x86_32-simulator-rep-04.s │ ├── x86_32-simulator-rotate-01.bin │ ├── x86_32-simulator-rotate-01.s │ ├── x86_32-simulator-rotate-02.bin │ ├── x86_32-simulator-rotate-02.s │ ├── x86_32-simulator-rotate-03.bin │ ├── x86_32-simulator-rotate-03.s │ ├── x86_32-simulator-rotate-04.bin │ ├── x86_32-simulator-rotate-04.s │ ├── x86_32-simulator-sample-test.s │ ├── x86_32-simulator-scas.bin │ ├── x86_32-simulator-scas.s │ ├── x86_32-simulator-setcc.bin │ ├── x86_32-simulator-setcc.s │ ├── x86_32-simulator-shift-01.bin │ ├── x86_32-simulator-shift-01.s │ ├── x86_32-simulator-shift-02.bin │ ├── x86_32-simulator-shift-02.s │ ├── x86_32-simulator-shift-03.bin │ ├── x86_32-simulator-shift-03.s │ ├── x86_32-simulator-shift-04.bin │ ├── x86_32-simulator-shift-04.s │ ├── x86_32-simulator-sub.bin │ ├── x86_32-simulator-sub.s │ ├── x86_32-simulator-xadd.bin │ ├── x86_32-simulator-xadd.s │ ├── x86_32-simulator-xchg.bin │ ├── x86_32-simulator-xchg.s │ ├── x86_32-slicing-01.bin │ ├── x86_32-slicing-01.s │ ├── x86_32-slicing-02.bin │ ├── x86_32-slicing-02.s │ ├── x86_32-sub.bin │ ├── x86_32-sub.s │ ├── x86_32-symsim-01.bin │ ├── x86_32-symsim-01.s │ ├── x86_32-xadd.bin │ ├── x86_32-xadd.s │ ├── x86_32-xchg.bin │ ├── x86_32-xchg.s │ ├── x86_32-xor.bin │ ├── x86_32-xor.s │ ├── x86_64-and.bin │ ├── x86_64-and.s │ ├── x86_64-bsf.bin │ ├── x86_64-bsf.s │ ├── x86_64-bsr.bin │ ├── x86_64-bsr.s │ ├── x86_64-bswap.bin │ ├── x86_64-bswap.s │ ├── x86_64-bt.bin │ ├── x86_64-bt.s │ ├── x86_64-btc.bin │ ├── x86_64-btc.s │ ├── x86_64-btr.bin │ ├── x86_64-btr.s │ ├── x86_64-bts.bin │ ├── x86_64-bts.s │ ├── x86_64-bug-001.bin │ ├── x86_64-bug-001.s │ ├── x86_64-call.bin │ ├── x86_64-call.s │ ├── x86_64-cfgrecovery-01.bin │ ├── x86_64-cfgrecovery-01.s │ ├── x86_64-cfgrecovery-02.bin │ ├── x86_64-cfgrecovery-02.s │ ├── x86_64-cfgrecovery-03.bin │ ├── x86_64-cfgrecovery-03.s │ ├── x86_64-cfgrecovery-04.bin │ ├── x86_64-cfgrecovery-04.s │ ├── x86_64-cfgrecovery-05.bin │ ├── x86_64-cfgrecovery-05.s │ ├── x86_64-cmp.bin │ ├── x86_64-cmp.s │ ├── x86_64-cmps.bin │ ├── x86_64-cmps.s │ ├── x86_64-cmpxchg.bin │ ├── x86_64-cmpxchg.s │ ├── x86_64-div.bin │ ├── x86_64-div.s │ ├── x86_64-enter-leave.bin │ ├── x86_64-enter-leave.s │ ├── x86_64-gcd.bin │ ├── x86_64-gcd.s │ ├── x86_64-idiv.bin │ ├── x86_64-idiv.s │ ├── x86_64-imul.bin │ ├── x86_64-imul.s │ ├── x86_64-int.bin │ ├── x86_64-int.s │ ├── x86_64-jcc.bin │ ├── x86_64-jcc.s │ ├── x86_64-jmp.bin │ ├── x86_64-jmp.s │ ├── x86_64-lea.bin │ ├── x86_64-lea.s │ ├── x86_64-lods.bin │ ├── x86_64-lods.s │ ├── x86_64-loop.bin │ ├── x86_64-loop.s │ ├── x86_64-lsahf.bin │ ├── x86_64-lsahf.s │ ├── x86_64-misc.bin │ ├── x86_64-misc.s │ ├── x86_64-mov.bin │ ├── x86_64-mov.s │ ├── x86_64-movbe.bin │ ├── x86_64-movbe.s │ ├── x86_64-movs.bin │ ├── x86_64-movs.s │ ├── x86_64-movsxz.bin │ ├── x86_64-movsxz.s │ ├── x86_64-mul.bin │ ├── x86_64-mul.s │ ├── x86_64-neg.bin │ ├── x86_64-neg.s │ ├── x86_64-nop.bin │ ├── x86_64-nop.s │ ├── x86_64-not.bin │ ├── x86_64-not.s │ ├── x86_64-or.bin │ ├── x86_64-or.s │ ├── x86_64-pop.bin │ ├── x86_64-pop.s │ ├── x86_64-pop16.bin │ ├── x86_64-pop16.s │ ├── x86_64-popcnt.bin │ ├── x86_64-popcnt.s │ ├── x86_64-push.bin │ ├── x86_64-push.s │ ├── x86_64-push16.bin │ ├── x86_64-push16.s │ ├── x86_64-rep.bin │ ├── x86_64-rep.s │ ├── x86_64-ret.bin │ ├── x86_64-ret.s │ ├── x86_64-rotate.bin │ ├── x86_64-rotate.s │ ├── x86_64-sbb.bin │ ├── x86_64-sbb.s │ ├── x86_64-scas.bin │ ├── x86_64-scas.s │ ├── x86_64-setcc.bin │ ├── x86_64-setcc.s │ ├── x86_64-shift.bin │ ├── x86_64-shift.s │ ├── x86_64-simulator-00.bin │ ├── x86_64-simulator-00.s │ ├── x86_64-simulator-01.bin │ ├── x86_64-simulator-01.s │ ├── x86_64-simulator-02.bin │ ├── x86_64-simulator-02.s │ ├── x86_64-simulator-03.bin │ ├── x86_64-simulator-03.s │ ├── x86_64-simulator-04.bin │ ├── x86_64-simulator-04.s │ ├── x86_64-simulator-05.bin │ ├── x86_64-simulator-05.s │ ├── x86_64-simulator-06.bin │ ├── x86_64-simulator-06.s │ ├── x86_64-simulator-CF.bin │ ├── x86_64-simulator-CF.s │ ├── x86_64-simulator-adcsbb.bin │ ├── x86_64-simulator-adcsbb.s │ ├── x86_64-simulator-add.bin │ ├── x86_64-simulator-add.s │ ├── x86_64-simulator-booleans.bin │ ├── x86_64-simulator-booleans.s │ ├── x86_64-simulator-bsf.bin │ ├── x86_64-simulator-bsf.s │ ├── x86_64-simulator-bsr.bin │ ├── x86_64-simulator-bsr.s │ ├── x86_64-simulator-bswap.bin │ ├── x86_64-simulator-bswap.s │ ├── x86_64-simulator-bt-01.bin │ ├── x86_64-simulator-bt-01.s │ ├── x86_64-simulator-bt-02.bin │ ├── x86_64-simulator-bt-02.s │ ├── x86_64-simulator-btc.bin │ ├── x86_64-simulator-btc.s │ ├── x86_64-simulator-btr.bin │ ├── x86_64-simulator-btr.s │ ├── x86_64-simulator-bts.bin │ ├── x86_64-simulator-bts.s │ ├── x86_64-simulator-call-noinit.bin │ ├── x86_64-simulator-call-noinit.s │ ├── x86_64-simulator-call.bin │ ├── x86_64-simulator-call.s │ ├── x86_64-simulator-cbw.bin │ ├── x86_64-simulator-cbw.s │ ├── x86_64-simulator-cmov.bin │ ├── x86_64-simulator-cmov.s │ ├── x86_64-simulator-cmps-01.bin │ ├── x86_64-simulator-cmps-01.s │ ├── x86_64-simulator-cmps-02.bin │ ├── x86_64-simulator-cmps-02.s │ ├── x86_64-simulator-cmpxchg.bin │ ├── x86_64-simulator-cmpxchg.s │ ├── x86_64-simulator-cwdcdq.bin │ ├── x86_64-simulator-cwdcdq.s │ ├── x86_64-simulator-div.bin │ ├── x86_64-simulator-div.s │ ├── x86_64-simulator-end.s │ ├── x86_64-simulator-enter-leave-01.bin │ ├── x86_64-simulator-enter-leave-01.s │ ├── x86_64-simulator-enter-leave-02.bin │ ├── x86_64-simulator-enter-leave-02.s │ ├── x86_64-simulator-header.s │ ├── x86_64-simulator-idiv.bin │ ├── x86_64-simulator-idiv.s │ ├── x86_64-simulator-imul-01.bin │ ├── x86_64-simulator-imul-01.s │ ├── x86_64-simulator-imul-02.bin │ ├── x86_64-simulator-imul-02.s │ ├── x86_64-simulator-imul-03.bin │ ├── x86_64-simulator-imul-03.s │ ├── x86_64-simulator-imul.bin │ ├── x86_64-simulator-imul.s │ ├── x86_64-simulator-int.bin │ ├── x86_64-simulator-int.s │ ├── x86_64-simulator-int3.bin │ ├── x86_64-simulator-int3.s │ ├── x86_64-simulator-lods.bin │ ├── x86_64-simulator-lods.s │ ├── x86_64-simulator-loop.bin │ ├── x86_64-simulator-loop.s │ ├── x86_64-simulator-lsahf.bin │ ├── x86_64-simulator-lsahf.s │ ├── x86_64-simulator-movbe.bin │ ├── x86_64-simulator-movbe.s │ ├── x86_64-simulator-movs.bin │ ├── x86_64-simulator-movs.s │ ├── x86_64-simulator-movsxz.bin │ ├── x86_64-simulator-movsxz.s │ ├── x86_64-simulator-mul.bin │ ├── x86_64-simulator-mul.s │ ├── x86_64-simulator-neg.bin │ ├── x86_64-simulator-neg.s │ ├── x86_64-simulator-popcnt.bin │ ├── x86_64-simulator-popcnt.s │ ├── x86_64-simulator-pushfpopf.bin │ ├── x86_64-simulator-pushfpopf.s │ ├── x86_64-simulator-pushpop-01.bin │ ├── x86_64-simulator-pushpop-01.s │ ├── x86_64-simulator-pushpop-02.bin │ ├── x86_64-simulator-pushpop-02.s │ ├── x86_64-simulator-pushpop-03.bin │ ├── x86_64-simulator-pushpop-03.s │ ├── x86_64-simulator-pushpop-04.bin │ ├── x86_64-simulator-pushpop-04.s │ ├── x86_64-simulator-pushpop-05.bin │ ├── x86_64-simulator-pushpop-05.s │ ├── x86_64-simulator-pushpop-06.bin │ ├── x86_64-simulator-pushpop-06.s │ ├── x86_64-simulator-rep-01.bin │ ├── x86_64-simulator-rep-01.s │ ├── x86_64-simulator-rep-02.bin │ ├── x86_64-simulator-rep-02.s │ ├── x86_64-simulator-rep-03.bin │ ├── x86_64-simulator-rep-03.s │ ├── x86_64-simulator-rep-04.bin │ ├── x86_64-simulator-rep-04.s │ ├── x86_64-simulator-rotate-01.bin │ ├── x86_64-simulator-rotate-01.s │ ├── x86_64-simulator-rotate-02.bin │ ├── x86_64-simulator-rotate-02.s │ ├── x86_64-simulator-rotate-03.bin │ ├── x86_64-simulator-rotate-03.s │ ├── x86_64-simulator-rotate-04.bin │ ├── x86_64-simulator-rotate-04.s │ ├── x86_64-simulator-sample-test.bin │ ├── x86_64-simulator-sample-test.s │ ├── x86_64-simulator-scas.bin │ ├── x86_64-simulator-scas.s │ ├── x86_64-simulator-setcc.bin │ ├── x86_64-simulator-setcc.s │ ├── x86_64-simulator-shift-01.bin │ ├── x86_64-simulator-shift-01.s │ ├── x86_64-simulator-shift-02.bin │ ├── x86_64-simulator-shift-02.s │ ├── x86_64-simulator-shift-03.bin │ ├── x86_64-simulator-shift-03.s │ ├── x86_64-simulator-shift-04.bin │ ├── x86_64-simulator-shift-04.s │ ├── x86_64-simulator-sub.bin │ ├── x86_64-simulator-sub.s │ ├── x86_64-simulator-xadd.bin │ ├── x86_64-simulator-xadd.s │ ├── x86_64-simulator-xchg.bin │ ├── x86_64-simulator-xchg.s │ ├── x86_64-slicing-01.bin │ ├── x86_64-slicing-01.s │ ├── x86_64-slicing-02.bin │ ├── x86_64-slicing-02.s │ ├── x86_64-sub.bin │ ├── x86_64-sub.s │ ├── x86_64-symsim-01.bin │ ├── x86_64-symsim-01.s │ ├── x86_64-xadd.bin │ ├── x86_64-xadd.s │ ├── x86_64-xchg.bin │ ├── x86_64-xchg.s │ ├── x86_64-xor.bin │ └── x86_64-xor.s ├── tools │ ├── Makefile.am │ └── cfgrecovery │ │ ├── Makefile.am │ │ ├── check-diff.result │ │ ├── cmp-rt.sh │ │ ├── x86_32-aaa.fld.memres.result │ │ ├── x86_32-aaa.fld.res.result │ │ ├── x86_32-aaa.lsw.memres.result │ │ ├── x86_32-aaa.lsw.res.result │ │ ├── x86_32-aad.fld.memres.result │ │ ├── x86_32-aad.fld.res.result │ │ ├── x86_32-aad.lsw.memres.result │ │ ├── x86_32-aad.lsw.res.result │ │ ├── x86_32-aam.fld.memres.result │ │ ├── x86_32-aam.fld.res.result │ │ ├── x86_32-aam.lsw.memres.result │ │ ├── x86_32-aam.lsw.res.result │ │ ├── x86_32-aas.fld.memres.result │ │ ├── x86_32-aas.fld.res.result │ │ ├── x86_32-aas.lsw.memres.result │ │ ├── x86_32-aas.lsw.res.result │ │ ├── x86_32-and.fld.memres.result │ │ ├── x86_32-and.fld.res.result │ │ ├── x86_32-and.lsw.memres.result │ │ ├── x86_32-and.lsw.res.result │ │ ├── x86_32-bound.fld.memres.result │ │ ├── x86_32-bound.fld.res.result │ │ ├── x86_32-bound.lsw.memres.result │ │ ├── x86_32-bound.lsw.res.result │ │ ├── x86_32-bsf.fld.memres.result │ │ ├── x86_32-bsf.fld.res.result │ │ ├── x86_32-bsf.lsw.memres.result │ │ ├── x86_32-bsf.lsw.res.result │ │ ├── x86_32-bsr.fld.memres.result │ │ ├── x86_32-bsr.fld.res.result │ │ ├── x86_32-bsr.lsw.memres.result │ │ ├── x86_32-bsr.lsw.res.result │ │ ├── x86_32-bswap.fld.memres.result │ │ ├── x86_32-bswap.fld.res.result │ │ ├── x86_32-bswap.lsw.memres.result │ │ ├── x86_32-bswap.lsw.res.result │ │ ├── x86_32-bt.fld.memres.result │ │ ├── x86_32-bt.fld.res.result │ │ ├── x86_32-bt.lsw.memres.result │ │ ├── x86_32-bt.lsw.res.result │ │ ├── x86_32-btc.fld.memres.result │ │ ├── x86_32-btc.fld.res.result │ │ ├── x86_32-btc.lsw.memres.result │ │ ├── x86_32-btc.lsw.res.result │ │ ├── x86_32-btr.fld.memres.result │ │ ├── x86_32-btr.fld.res.result │ │ ├── x86_32-btr.lsw.memres.result │ │ ├── x86_32-btr.lsw.res.result │ │ ├── x86_32-bts.fld.memres.result │ │ ├── x86_32-bts.fld.res.result │ │ ├── x86_32-bts.lsw.memres.result │ │ ├── x86_32-bts.lsw.res.result │ │ ├── x86_32-call.fld.memres.result │ │ ├── x86_32-call.fld.res.result │ │ ├── x86_32-call.lsw.memres.result │ │ ├── x86_32-call.lsw.res.result │ │ ├── x86_32-cfgrecovery-01.fld.memres.result │ │ ├── x86_32-cfgrecovery-01.fld.res.result │ │ ├── x86_32-cfgrecovery-01.lsw.memres.result │ │ ├── x86_32-cfgrecovery-01.lsw.res.result │ │ ├── x86_32-cfgrecovery-01.rt.memres.result │ │ ├── x86_32-cfgrecovery-01.rt.res.result │ │ ├── x86_32-cfgrecovery-01.sc.memres.result │ │ ├── x86_32-cfgrecovery-01.sc.res.result │ │ ├── x86_32-cfgrecovery-01.sym.memres.result │ │ ├── x86_32-cfgrecovery-01.sym.res.result │ │ ├── x86_32-cfgrecovery-rt-01.rt.res.result │ │ ├── x86_32-cmp.fld.memres.result │ │ ├── x86_32-cmp.fld.res.result │ │ ├── x86_32-cmp.lsw.memres.result │ │ ├── x86_32-cmp.lsw.res.result │ │ ├── x86_32-cmps.fld.memres.result │ │ ├── x86_32-cmps.fld.res.result │ │ ├── x86_32-cmps.lsw.memres.result │ │ ├── x86_32-cmps.lsw.res.result │ │ ├── x86_32-cmpxchg.fld.memres.result │ │ ├── x86_32-cmpxchg.fld.res.result │ │ ├── x86_32-cmpxchg.lsw.memres.result │ │ ├── x86_32-cmpxchg.lsw.res.result │ │ ├── x86_32-daadas.fld.memres.result │ │ ├── x86_32-daadas.fld.res.result │ │ ├── x86_32-daadas.lsw.memres.result │ │ ├── x86_32-daadas.lsw.res.result │ │ ├── x86_32-div.fld.memres.result │ │ ├── x86_32-div.fld.res.result │ │ ├── x86_32-div.lsw.memres.result │ │ ├── x86_32-div.lsw.res.result │ │ ├── x86_32-enter-leave.fld.memres.result │ │ ├── x86_32-enter-leave.fld.res.result │ │ ├── x86_32-enter-leave.lsw.memres.result │ │ ├── x86_32-enter-leave.lsw.res.result │ │ ├── x86_32-gcd.rt.memres.result │ │ ├── x86_32-gcd.rt.res.result │ │ ├── x86_32-gcd.sc.memres.result │ │ ├── x86_32-gcd.sc.res.result │ │ ├── x86_32-gcd.sym.memres.result │ │ ├── x86_32-gcd.sym.res.result │ │ ├── x86_32-idiv.fld.memres.result │ │ ├── x86_32-idiv.fld.res.result │ │ ├── x86_32-idiv.lsw.memres.result │ │ ├── x86_32-idiv.lsw.res.result │ │ ├── x86_32-imul.fld.memres.result │ │ ├── x86_32-imul.fld.res.result │ │ ├── x86_32-imul.lsw.memres.result │ │ ├── x86_32-imul.lsw.res.result │ │ ├── x86_32-int.fld.memres.result │ │ ├── x86_32-int.fld.res.result │ │ ├── x86_32-int.lsw.memres.result │ │ ├── x86_32-int.lsw.res.result │ │ ├── x86_32-jcc.fld.memres.result │ │ ├── x86_32-jcc.fld.res.result │ │ ├── x86_32-jcc.lsw.memres.result │ │ ├── x86_32-jcc.lsw.res.result │ │ ├── x86_32-jmp.fld.memres.result │ │ ├── x86_32-jmp.fld.res.result │ │ ├── x86_32-jmp.lsw.memres.result │ │ ├── x86_32-jmp.lsw.res.result │ │ ├── x86_32-lea.fld.memres.result │ │ ├── x86_32-lea.fld.res.result │ │ ├── x86_32-lea.lsw.memres.result │ │ ├── x86_32-lea.lsw.res.result │ │ ├── x86_32-lods.fld.memres.result │ │ ├── x86_32-lods.fld.res.result │ │ ├── x86_32-lods.lsw.memres.result │ │ ├── x86_32-lods.lsw.res.result │ │ ├── x86_32-loop.fld.memres.result │ │ ├── x86_32-loop.fld.res.result │ │ ├── x86_32-loop.lsw.memres.result │ │ ├── x86_32-loop.lsw.res.result │ │ ├── x86_32-lsahf.fld.memres.result │ │ ├── x86_32-lsahf.fld.res.result │ │ ├── x86_32-lsahf.lsw.memres.result │ │ ├── x86_32-lsahf.lsw.res.result │ │ ├── x86_32-mov.fld.memres.result │ │ ├── x86_32-mov.fld.res.result │ │ ├── x86_32-mov.lsw.memres.result │ │ ├── x86_32-mov.lsw.res.result │ │ ├── x86_32-movbe.fld.memres.result │ │ ├── x86_32-movbe.fld.res.result │ │ ├── x86_32-movbe.lsw.memres.result │ │ ├── x86_32-movbe.lsw.res.result │ │ ├── x86_32-movs.fld.memres.result │ │ ├── x86_32-movs.fld.res.result │ │ ├── x86_32-movs.lsw.memres.result │ │ ├── x86_32-movs.lsw.res.result │ │ ├── x86_32-movsxz.fld.memres.result │ │ ├── x86_32-movsxz.fld.res.result │ │ ├── x86_32-movsxz.lsw.memres.result │ │ ├── x86_32-movsxz.lsw.res.result │ │ ├── x86_32-mul.fld.memres.result │ │ ├── x86_32-mul.fld.res.result │ │ ├── x86_32-mul.lsw.memres.result │ │ ├── x86_32-mul.lsw.res.result │ │ ├── x86_32-neg.fld.memres.result │ │ ├── x86_32-neg.fld.res.result │ │ ├── x86_32-neg.lsw.memres.result │ │ ├── x86_32-neg.lsw.res.result │ │ ├── x86_32-nop.fld.memres.result │ │ ├── x86_32-nop.fld.res.result │ │ ├── x86_32-nop.lsw.memres.result │ │ ├── x86_32-nop.lsw.res.result │ │ ├── x86_32-not.fld.memres.result │ │ ├── x86_32-not.fld.res.result │ │ ├── x86_32-not.lsw.memres.result │ │ ├── x86_32-not.lsw.res.result │ │ ├── x86_32-or.fld.memres.result │ │ ├── x86_32-or.fld.res.result │ │ ├── x86_32-or.lsw.memres.result │ │ ├── x86_32-or.lsw.res.result │ │ ├── x86_32-pop.fld.memres.result │ │ ├── x86_32-pop.fld.res.result │ │ ├── x86_32-pop.lsw.memres.result │ │ ├── x86_32-pop.lsw.res.result │ │ ├── x86_32-pop16.fld.memres.result │ │ ├── x86_32-pop16.fld.res.result │ │ ├── x86_32-pop16.lsw.memres.result │ │ ├── x86_32-pop16.lsw.res.result │ │ ├── x86_32-popa.fld.memres.result │ │ ├── x86_32-popa.fld.res.result │ │ ├── x86_32-popa.lsw.memres.result │ │ ├── x86_32-popa.lsw.res.result │ │ ├── x86_32-popa16.fld.memres.result │ │ ├── x86_32-popa16.fld.res.result │ │ ├── x86_32-popa16.lsw.memres.result │ │ ├── x86_32-popa16.lsw.res.result │ │ ├── x86_32-popcnt.fld.memres.result │ │ ├── x86_32-popcnt.fld.res.result │ │ ├── x86_32-popcnt.lsw.memres.result │ │ ├── x86_32-popcnt.lsw.res.result │ │ ├── x86_32-push.fld.memres.result │ │ ├── x86_32-push.fld.res.result │ │ ├── x86_32-push.lsw.memres.result │ │ ├── x86_32-push.lsw.res.result │ │ ├── x86_32-push16.fld.memres.result │ │ ├── x86_32-push16.fld.res.result │ │ ├── x86_32-push16.lsw.memres.result │ │ ├── x86_32-push16.lsw.res.result │ │ ├── x86_32-pusha.fld.memres.result │ │ ├── x86_32-pusha.fld.res.result │ │ ├── x86_32-pusha.lsw.memres.result │ │ ├── x86_32-pusha.lsw.res.result │ │ ├── x86_32-rotate.fld.memres.result │ │ ├── x86_32-rotate.fld.res.result │ │ ├── x86_32-rotate.lsw.memres.result │ │ ├── x86_32-rotate.lsw.res.result │ │ ├── x86_32-sbb.fld.memres.result │ │ ├── x86_32-sbb.fld.res.result │ │ ├── x86_32-sbb.lsw.memres.result │ │ ├── x86_32-sbb.lsw.res.result │ │ ├── x86_32-scas.fld.memres.result │ │ ├── x86_32-scas.fld.res.result │ │ ├── x86_32-scas.lsw.memres.result │ │ ├── x86_32-scas.lsw.res.result │ │ ├── x86_32-setcc.fld.memres.result │ │ ├── x86_32-setcc.fld.res.result │ │ ├── x86_32-setcc.lsw.memres.result │ │ ├── x86_32-setcc.lsw.res.result │ │ ├── x86_32-shift.fld.memres.result │ │ ├── x86_32-shift.fld.res.result │ │ ├── x86_32-shift.lsw.memres.result │ │ ├── x86_32-shift.lsw.res.result │ │ ├── x86_32-simulator-01.rt.memres.result │ │ ├── x86_32-simulator-01.rt.res.result │ │ ├── x86_32-simulator-01.sc.memres.result │ │ ├── x86_32-simulator-01.sc.res.result │ │ ├── x86_32-simulator-01.sym.memres.result │ │ ├── x86_32-simulator-01.sym.res.result │ │ ├── x86_32-simulator-02.rt.memres.result │ │ ├── x86_32-simulator-02.rt.res.result │ │ ├── x86_32-simulator-02.sc.memres.result │ │ ├── x86_32-simulator-02.sc.res.result │ │ ├── x86_32-simulator-02.sym.memres.result │ │ ├── x86_32-simulator-02.sym.res.result │ │ ├── x86_32-simulator-03.rt.memres.result │ │ ├── x86_32-simulator-03.rt.res.result │ │ ├── x86_32-simulator-03.sc.memres.result │ │ ├── x86_32-simulator-03.sc.res.result │ │ ├── x86_32-simulator-03.sym.memres.result │ │ ├── x86_32-simulator-03.sym.res.result │ │ ├── x86_32-simulator-04.rt.memres.result │ │ ├── x86_32-simulator-04.rt.res.result │ │ ├── x86_32-simulator-04.sc.memres.result │ │ ├── x86_32-simulator-04.sc.res.result │ │ ├── x86_32-simulator-04.sym.memres.result │ │ ├── x86_32-simulator-04.sym.res.result │ │ ├── x86_32-simulator-05.rt.memres.result │ │ ├── x86_32-simulator-05.rt.res.result │ │ ├── x86_32-simulator-05.sc.memres.result │ │ ├── x86_32-simulator-05.sc.res.result │ │ ├── x86_32-simulator-05.sym.memres.result │ │ ├── x86_32-simulator-05.sym.res.result │ │ ├── x86_32-simulator-CF.rt.memres.result │ │ ├── x86_32-simulator-CF.rt.res.result │ │ ├── x86_32-simulator-CF.sc.memres.result │ │ ├── x86_32-simulator-CF.sc.res.result │ │ ├── x86_32-simulator-CF.sym.memres.result │ │ ├── x86_32-simulator-CF.sym.res.result │ │ ├── x86_32-simulator-aaa.rt.memres.result │ │ ├── x86_32-simulator-aaa.rt.res.result │ │ ├── x86_32-simulator-aaa.sc.memres.result │ │ ├── x86_32-simulator-aaa.sc.res.result │ │ ├── x86_32-simulator-aaa.sym.memres.result │ │ ├── x86_32-simulator-aaa.sym.res.result │ │ ├── x86_32-simulator-aad.rt.memres.result │ │ ├── x86_32-simulator-aad.rt.res.result │ │ ├── x86_32-simulator-aad.sc.memres.result │ │ ├── x86_32-simulator-aad.sc.res.result │ │ ├── x86_32-simulator-aad.sym.memres.result │ │ ├── x86_32-simulator-aad.sym.res.result │ │ ├── x86_32-simulator-aam.rt.memres.result │ │ ├── x86_32-simulator-aam.rt.res.result │ │ ├── x86_32-simulator-aam.sc.memres.result │ │ ├── x86_32-simulator-aam.sc.res.result │ │ ├── x86_32-simulator-aam.sym.memres.result │ │ ├── x86_32-simulator-aam.sym.res.result │ │ ├── x86_32-simulator-aas.rt.memres.result │ │ ├── x86_32-simulator-aas.rt.res.result │ │ ├── x86_32-simulator-aas.sc.memres.result │ │ ├── x86_32-simulator-aas.sc.res.result │ │ ├── x86_32-simulator-aas.sym.memres.result │ │ ├── x86_32-simulator-aas.sym.res.result │ │ ├── x86_32-simulator-adcsbb.rt.memres.result │ │ ├── x86_32-simulator-adcsbb.rt.res.result │ │ ├── x86_32-simulator-adcsbb.sc.memres.result │ │ ├── x86_32-simulator-adcsbb.sc.res.result │ │ ├── x86_32-simulator-adcsbb.sym.memres.result │ │ ├── x86_32-simulator-adcsbb.sym.res.result │ │ ├── x86_32-simulator-add.rt.memres.result │ │ ├── x86_32-simulator-add.rt.res.result │ │ ├── x86_32-simulator-add.sc.memres.result │ │ ├── x86_32-simulator-add.sc.res.result │ │ ├── x86_32-simulator-add.sym.memres.result │ │ ├── x86_32-simulator-add.sym.res.result │ │ ├── x86_32-simulator-booleans.rt.memres.result │ │ ├── x86_32-simulator-booleans.rt.res.result │ │ ├── x86_32-simulator-booleans.sc.memres.result │ │ ├── x86_32-simulator-booleans.sc.res.result │ │ ├── x86_32-simulator-booleans.sym.memres.result │ │ ├── x86_32-simulator-booleans.sym.res.result │ │ ├── x86_32-simulator-bound.rt.memres.result │ │ ├── x86_32-simulator-bound.rt.res.result │ │ ├── x86_32-simulator-bound.sc.memres.result │ │ ├── x86_32-simulator-bound.sc.res.result │ │ ├── x86_32-simulator-bound.sym.memres.result │ │ ├── x86_32-simulator-bound.sym.res.result │ │ ├── x86_32-simulator-bsf.rt.memres.result │ │ ├── x86_32-simulator-bsf.rt.res.result │ │ ├── x86_32-simulator-bsf.sc.memres.result │ │ ├── x86_32-simulator-bsf.sc.res.result │ │ ├── x86_32-simulator-bsf.sym.memres.result │ │ ├── x86_32-simulator-bsf.sym.res.result │ │ ├── x86_32-simulator-bsr.rt.memres.result │ │ ├── x86_32-simulator-bsr.rt.res.result │ │ ├── x86_32-simulator-bsr.sc.memres.result │ │ ├── x86_32-simulator-bsr.sc.res.result │ │ ├── x86_32-simulator-bsr.sym.memres.result │ │ ├── x86_32-simulator-bsr.sym.res.result │ │ ├── x86_32-simulator-bswap.rt.memres.result │ │ ├── x86_32-simulator-bswap.rt.res.result │ │ ├── x86_32-simulator-bswap.sc.memres.result │ │ ├── x86_32-simulator-bswap.sc.res.result │ │ ├── x86_32-simulator-bswap.sym.memres.result │ │ ├── x86_32-simulator-bswap.sym.res.result │ │ ├── x86_32-simulator-bt-01.rt.memres.result │ │ ├── x86_32-simulator-bt-01.rt.res.result │ │ ├── x86_32-simulator-bt-01.sc.memres.result │ │ ├── x86_32-simulator-bt-01.sc.res.result │ │ ├── x86_32-simulator-bt-01.sym.memres.result │ │ ├── x86_32-simulator-bt-01.sym.res.result │ │ ├── x86_32-simulator-bt-02.rt.memres.result │ │ ├── x86_32-simulator-bt-02.rt.res.result │ │ ├── x86_32-simulator-bt-02.sc.memres.result │ │ ├── x86_32-simulator-bt-02.sc.res.result │ │ ├── x86_32-simulator-bt-02.sym.memres.result │ │ ├── x86_32-simulator-bt-02.sym.res.result │ │ ├── x86_32-simulator-btc.rt.memres.result │ │ ├── x86_32-simulator-btc.rt.res.result │ │ ├── x86_32-simulator-btc.sc.memres.result │ │ ├── x86_32-simulator-btc.sc.res.result │ │ ├── x86_32-simulator-btc.sym.memres.result │ │ ├── x86_32-simulator-btc.sym.res.result │ │ ├── x86_32-simulator-btr.rt.memres.result │ │ ├── x86_32-simulator-btr.rt.res.result │ │ ├── x86_32-simulator-btr.sc.memres.result │ │ ├── x86_32-simulator-btr.sc.res.result │ │ ├── x86_32-simulator-btr.sym.memres.result │ │ ├── x86_32-simulator-btr.sym.res.result │ │ ├── x86_32-simulator-bts.rt.memres.result │ │ ├── x86_32-simulator-bts.rt.res.result │ │ ├── x86_32-simulator-bts.sc.memres.result │ │ ├── x86_32-simulator-bts.sc.res.result │ │ ├── x86_32-simulator-bts.sym.memres.result │ │ ├── x86_32-simulator-bts.sym.res.result │ │ ├── x86_32-simulator-call.rt.memres.result │ │ ├── x86_32-simulator-call.rt.res.result │ │ ├── x86_32-simulator-call.sc.memres.result │ │ ├── x86_32-simulator-call.sc.res.result │ │ ├── x86_32-simulator-call.sym.memres.result │ │ ├── x86_32-simulator-call.sym.res.result │ │ ├── x86_32-simulator-cbw.rt.memres.result │ │ ├── x86_32-simulator-cbw.rt.res.result │ │ ├── x86_32-simulator-cbw.sc.memres.result │ │ ├── x86_32-simulator-cbw.sc.res.result │ │ ├── x86_32-simulator-cbw.sym.memres.result │ │ ├── x86_32-simulator-cbw.sym.res.result │ │ ├── x86_32-simulator-cmov.rt.memres.result │ │ ├── x86_32-simulator-cmov.rt.res.result │ │ ├── x86_32-simulator-cmov.sc.memres.result │ │ ├── x86_32-simulator-cmov.sc.res.result │ │ ├── x86_32-simulator-cmov.sym.memres.result │ │ ├── x86_32-simulator-cmov.sym.res.result │ │ ├── x86_32-simulator-cmps-01.rt.memres.result │ │ ├── x86_32-simulator-cmps-01.rt.res.result │ │ ├── x86_32-simulator-cmps-01.sc.memres.result │ │ ├── x86_32-simulator-cmps-01.sc.res.result │ │ ├── x86_32-simulator-cmps-01.sym.memres.result │ │ ├── x86_32-simulator-cmps-01.sym.res.result │ │ ├── x86_32-simulator-cmps-02.rt.memres.result │ │ ├── x86_32-simulator-cmps-02.rt.res.result │ │ ├── x86_32-simulator-cmps-02.sc.memres.result │ │ ├── x86_32-simulator-cmps-02.sc.res.result │ │ ├── x86_32-simulator-cmps-02.sym.memres.result │ │ ├── x86_32-simulator-cmps-02.sym.res.result │ │ ├── x86_32-simulator-cmpxchg.rt.memres.result │ │ ├── x86_32-simulator-cmpxchg.rt.res.result │ │ ├── x86_32-simulator-cmpxchg.sc.memres.result │ │ ├── x86_32-simulator-cmpxchg.sc.res.result │ │ ├── x86_32-simulator-cmpxchg.sym.memres.result │ │ ├── x86_32-simulator-cmpxchg.sym.res.result │ │ ├── x86_32-simulator-cwdcdq.rt.memres.result │ │ ├── x86_32-simulator-cwdcdq.rt.res.result │ │ ├── x86_32-simulator-cwdcdq.sc.memres.result │ │ ├── x86_32-simulator-cwdcdq.sc.res.result │ │ ├── x86_32-simulator-cwdcdq.sym.memres.result │ │ ├── x86_32-simulator-cwdcdq.sym.res.result │ │ ├── x86_32-simulator-daadas.rt.memres.result │ │ ├── x86_32-simulator-daadas.rt.res.result │ │ ├── x86_32-simulator-daadas.sc.memres.result │ │ ├── x86_32-simulator-daadas.sc.res.result │ │ ├── x86_32-simulator-daadas.sym.memres.result │ │ ├── x86_32-simulator-daadas.sym.res.result │ │ ├── x86_32-simulator-div.rt.memres.result │ │ ├── x86_32-simulator-div.rt.res.result │ │ ├── x86_32-simulator-div.sc.memres.result │ │ ├── x86_32-simulator-div.sc.res.result │ │ ├── x86_32-simulator-div.sym.memres.result │ │ ├── x86_32-simulator-div.sym.res.result │ │ ├── x86_32-simulator-enter-leave-01.rt.memres.result │ │ ├── x86_32-simulator-enter-leave-01.rt.res.result │ │ ├── x86_32-simulator-enter-leave-01.sc.memres.result │ │ ├── x86_32-simulator-enter-leave-01.sc.res.result │ │ ├── x86_32-simulator-enter-leave-01.sym.memres.result │ │ ├── x86_32-simulator-enter-leave-01.sym.res.result │ │ ├── x86_32-simulator-enter-leave-02.rt.memres.result │ │ ├── x86_32-simulator-enter-leave-02.rt.res.result │ │ ├── x86_32-simulator-enter-leave-02.sc.memres.result │ │ ├── x86_32-simulator-enter-leave-02.sc.res.result │ │ ├── x86_32-simulator-enter-leave-02.sym.memres.result │ │ ├── x86_32-simulator-enter-leave-02.sym.res.result │ │ ├── x86_32-simulator-idiv.rt.memres.result │ │ ├── x86_32-simulator-idiv.rt.res.result │ │ ├── x86_32-simulator-idiv.sc.memres.result │ │ ├── x86_32-simulator-idiv.sc.res.result │ │ ├── x86_32-simulator-idiv.sym.memres.result │ │ ├── x86_32-simulator-idiv.sym.res.result │ │ ├── x86_32-simulator-imul-01.rt.memres.result │ │ ├── x86_32-simulator-imul-01.rt.res.result │ │ ├── x86_32-simulator-imul-01.sc.memres.result │ │ ├── x86_32-simulator-imul-01.sc.res.result │ │ ├── x86_32-simulator-imul-01.sym.memres.result │ │ ├── x86_32-simulator-imul-01.sym.res.result │ │ ├── x86_32-simulator-imul-02.rt.memres.result │ │ ├── x86_32-simulator-imul-02.rt.res.result │ │ ├── x86_32-simulator-imul-02.sc.memres.result │ │ ├── x86_32-simulator-imul-02.sc.res.result │ │ ├── x86_32-simulator-imul-02.sym.memres.result │ │ ├── x86_32-simulator-imul-02.sym.res.result │ │ ├── x86_32-simulator-imul-03.rt.memres.result │ │ ├── x86_32-simulator-imul-03.rt.res.result │ │ ├── x86_32-simulator-imul-03.sc.memres.result │ │ ├── x86_32-simulator-imul-03.sc.res.result │ │ ├── x86_32-simulator-imul-03.sym.memres.result │ │ ├── x86_32-simulator-imul-03.sym.res.result │ │ ├── x86_32-simulator-int.rt.memres.result │ │ ├── x86_32-simulator-int.rt.res.result │ │ ├── x86_32-simulator-int.sc.memres.result │ │ ├── x86_32-simulator-int.sc.res.result │ │ ├── x86_32-simulator-int.sym.memres.result │ │ ├── x86_32-simulator-int.sym.res.result │ │ ├── x86_32-simulator-int3.rt.memres.result │ │ ├── x86_32-simulator-int3.rt.res.result │ │ ├── x86_32-simulator-int3.sc.memres.result │ │ ├── x86_32-simulator-int3.sc.res.result │ │ ├── x86_32-simulator-int3.sym.memres.result │ │ ├── x86_32-simulator-int3.sym.res.result │ │ ├── x86_32-simulator-into-01.rt.memres.result │ │ ├── x86_32-simulator-into-01.rt.res.result │ │ ├── x86_32-simulator-into-01.sc.memres.result │ │ ├── x86_32-simulator-into-01.sc.res.result │ │ ├── x86_32-simulator-into-01.sym.memres.result │ │ ├── x86_32-simulator-into-01.sym.res.result │ │ ├── x86_32-simulator-into-02.rt.memres.result │ │ ├── x86_32-simulator-into-02.rt.res.result │ │ ├── x86_32-simulator-into-02.sc.memres.result │ │ ├── x86_32-simulator-into-02.sc.res.result │ │ ├── x86_32-simulator-into-02.sym.memres.result │ │ ├── x86_32-simulator-into-02.sym.res.result │ │ ├── x86_32-simulator-lods.rt.memres.result │ │ ├── x86_32-simulator-lods.rt.res.result │ │ ├── x86_32-simulator-lods.sc.memres.result │ │ ├── x86_32-simulator-lods.sc.res.result │ │ ├── x86_32-simulator-lods.sym.memres.result │ │ ├── x86_32-simulator-lods.sym.res.result │ │ ├── x86_32-simulator-loop.rt.memres.result │ │ ├── x86_32-simulator-loop.rt.res.result │ │ ├── x86_32-simulator-loop.sc.memres.result │ │ ├── x86_32-simulator-loop.sc.res.result │ │ ├── x86_32-simulator-loop.sym.memres.result │ │ ├── x86_32-simulator-loop.sym.res.result │ │ ├── x86_32-simulator-lsahf.rt.memres.result │ │ ├── x86_32-simulator-lsahf.rt.res.result │ │ ├── x86_32-simulator-lsahf.sc.memres.result │ │ ├── x86_32-simulator-lsahf.sc.res.result │ │ ├── x86_32-simulator-lsahf.sym.memres.result │ │ ├── x86_32-simulator-lsahf.sym.res.result │ │ ├── x86_32-simulator-movbe.rt.memres.result │ │ ├── x86_32-simulator-movbe.rt.res.result │ │ ├── x86_32-simulator-movbe.sc.memres.result │ │ ├── x86_32-simulator-movbe.sc.res.result │ │ ├── x86_32-simulator-movbe.sym.memres.result │ │ ├── x86_32-simulator-movbe.sym.res.result │ │ ├── x86_32-simulator-movs.rt.memres.result │ │ ├── x86_32-simulator-movs.rt.res.result │ │ ├── x86_32-simulator-movs.sc.memres.result │ │ ├── x86_32-simulator-movs.sc.res.result │ │ ├── x86_32-simulator-movs.sym.memres.result │ │ ├── x86_32-simulator-movs.sym.res.result │ │ ├── x86_32-simulator-movsxz.rt.memres.result │ │ ├── x86_32-simulator-movsxz.rt.res.result │ │ ├── x86_32-simulator-movsxz.sc.memres.result │ │ ├── x86_32-simulator-movsxz.sc.res.result │ │ ├── x86_32-simulator-movsxz.sym.memres.result │ │ ├── x86_32-simulator-movsxz.sym.res.result │ │ ├── x86_32-simulator-mul.rt.memres.result │ │ ├── x86_32-simulator-mul.rt.res.result │ │ ├── x86_32-simulator-mul.sc.memres.result │ │ ├── x86_32-simulator-mul.sc.res.result │ │ ├── x86_32-simulator-mul.sym.memres.result │ │ ├── x86_32-simulator-mul.sym.res.result │ │ ├── x86_32-simulator-neg.rt.memres.result │ │ ├── x86_32-simulator-neg.rt.res.result │ │ ├── x86_32-simulator-neg.sc.memres.result │ │ ├── x86_32-simulator-neg.sc.res.result │ │ ├── x86_32-simulator-neg.sym.memres.result │ │ ├── x86_32-simulator-neg.sym.res.result │ │ ├── x86_32-simulator-popcnt.rt.memres.result │ │ ├── x86_32-simulator-popcnt.rt.res.result │ │ ├── x86_32-simulator-popcnt.sc.memres.result │ │ ├── x86_32-simulator-popcnt.sc.res.result │ │ ├── x86_32-simulator-popcnt.sym.memres.result │ │ ├── x86_32-simulator-popcnt.sym.res.result │ │ ├── x86_32-simulator-pushapopa.rt.memres.result │ │ ├── x86_32-simulator-pushapopa.rt.res.result │ │ ├── x86_32-simulator-pushapopa.sc.memres.result │ │ ├── x86_32-simulator-pushapopa.sc.res.result │ │ ├── x86_32-simulator-pushapopa.sym.memres.result │ │ ├── x86_32-simulator-pushapopa.sym.res.result │ │ ├── x86_32-simulator-pushfpopf.rt.memres.result │ │ ├── x86_32-simulator-pushfpopf.rt.res.result │ │ ├── x86_32-simulator-pushfpopf.sc.memres.result │ │ ├── x86_32-simulator-pushfpopf.sc.res.result │ │ ├── x86_32-simulator-pushfpopf.sym.memres.result │ │ ├── x86_32-simulator-pushfpopf.sym.res.result │ │ ├── x86_32-simulator-pushpop-01.rt.memres.result │ │ ├── x86_32-simulator-pushpop-01.rt.res.result │ │ ├── x86_32-simulator-pushpop-01.sc.memres.result │ │ ├── x86_32-simulator-pushpop-01.sc.res.result │ │ ├── x86_32-simulator-pushpop-01.sym.memres.result │ │ ├── x86_32-simulator-pushpop-01.sym.res.result │ │ ├── x86_32-simulator-pushpop-02.rt.memres.result │ │ ├── x86_32-simulator-pushpop-02.rt.res.result │ │ ├── x86_32-simulator-pushpop-02.sc.memres.result │ │ ├── x86_32-simulator-pushpop-02.sc.res.result │ │ ├── x86_32-simulator-pushpop-02.sym.memres.result │ │ ├── x86_32-simulator-pushpop-02.sym.res.result │ │ ├── x86_32-simulator-pushpop-03.rt.memres.result │ │ ├── x86_32-simulator-pushpop-03.rt.res.result │ │ ├── x86_32-simulator-pushpop-03.sc.memres.result │ │ ├── x86_32-simulator-pushpop-03.sc.res.result │ │ ├── x86_32-simulator-pushpop-03.sym.memres.result │ │ ├── x86_32-simulator-pushpop-03.sym.res.result │ │ ├── x86_32-simulator-pushpop-04.rt.memres.result │ │ ├── x86_32-simulator-pushpop-04.rt.res.result │ │ ├── x86_32-simulator-pushpop-04.sc.memres.result │ │ ├── x86_32-simulator-pushpop-04.sc.res.result │ │ ├── x86_32-simulator-pushpop-04.sym.memres.result │ │ ├── x86_32-simulator-pushpop-04.sym.res.result │ │ ├── x86_32-simulator-pushpop-05.rt.memres.result │ │ ├── x86_32-simulator-pushpop-05.rt.res.result │ │ ├── x86_32-simulator-pushpop-05.sc.memres.result │ │ ├── x86_32-simulator-pushpop-05.sc.res.result │ │ ├── x86_32-simulator-pushpop-05.sym.memres.result │ │ ├── x86_32-simulator-pushpop-05.sym.res.result │ │ ├── x86_32-simulator-pushpop-06.rt.memres.result │ │ ├── x86_32-simulator-pushpop-06.rt.res.result │ │ ├── x86_32-simulator-pushpop-06.sc.memres.result │ │ ├── x86_32-simulator-pushpop-06.sc.res.result │ │ ├── x86_32-simulator-pushpop-06.sym.memres.result │ │ ├── x86_32-simulator-pushpop-06.sym.res.result │ │ ├── x86_32-simulator-rep-01.rt.memres.result │ │ ├── x86_32-simulator-rep-01.rt.res.result │ │ ├── x86_32-simulator-rep-01.sc.memres.result │ │ ├── x86_32-simulator-rep-01.sc.res.result │ │ ├── x86_32-simulator-rep-01.sym.memres.result │ │ ├── x86_32-simulator-rep-01.sym.res.result │ │ ├── x86_32-simulator-rep-02.rt.memres.result │ │ ├── x86_32-simulator-rep-02.rt.res.result │ │ ├── x86_32-simulator-rep-02.sc.memres.result │ │ ├── x86_32-simulator-rep-02.sc.res.result │ │ ├── x86_32-simulator-rep-02.sym.memres.result │ │ ├── x86_32-simulator-rep-02.sym.res.result │ │ ├── x86_32-simulator-rep-03.rt.memres.result │ │ ├── x86_32-simulator-rep-03.rt.res.result │ │ ├── x86_32-simulator-rep-03.sc.memres.result │ │ ├── x86_32-simulator-rep-03.sc.res.result │ │ ├── x86_32-simulator-rep-03.sym.memres.result │ │ ├── x86_32-simulator-rep-03.sym.res.result │ │ ├── x86_32-simulator-rep-04.rt.memres.result │ │ ├── x86_32-simulator-rep-04.rt.res.result │ │ ├── x86_32-simulator-rep-04.sc.memres.result │ │ ├── x86_32-simulator-rep-04.sc.res.result │ │ ├── x86_32-simulator-rep-04.sym.memres.result │ │ ├── x86_32-simulator-rep-04.sym.res.result │ │ ├── x86_32-simulator-rotate-01.rt.memres.result │ │ ├── x86_32-simulator-rotate-01.rt.res.result │ │ ├── x86_32-simulator-rotate-01.sc.memres.result │ │ ├── x86_32-simulator-rotate-01.sc.res.result │ │ ├── x86_32-simulator-rotate-01.sym.memres.result │ │ ├── x86_32-simulator-rotate-01.sym.res.result │ │ ├── x86_32-simulator-rotate-02.rt.memres.result │ │ ├── x86_32-simulator-rotate-02.rt.res.result │ │ ├── x86_32-simulator-rotate-02.sc.memres.result │ │ ├── x86_32-simulator-rotate-02.sc.res.result │ │ ├── x86_32-simulator-rotate-02.sym.memres.result │ │ ├── x86_32-simulator-rotate-02.sym.res.result │ │ ├── x86_32-simulator-rotate-03.rt.memres.result │ │ ├── x86_32-simulator-rotate-03.rt.res.result │ │ ├── x86_32-simulator-rotate-03.sc.memres.result │ │ ├── x86_32-simulator-rotate-03.sc.res.result │ │ ├── x86_32-simulator-rotate-03.sym.memres.result │ │ ├── x86_32-simulator-rotate-03.sym.res.result │ │ ├── x86_32-simulator-rotate-04.rt.memres.result │ │ ├── x86_32-simulator-rotate-04.rt.res.result │ │ ├── x86_32-simulator-rotate-04.sc.memres.result │ │ ├── x86_32-simulator-rotate-04.sc.res.result │ │ ├── x86_32-simulator-rotate-04.sym.memres.result │ │ ├── x86_32-simulator-rotate-04.sym.res.result │ │ ├── x86_32-simulator-scas.rt.memres.result │ │ ├── x86_32-simulator-scas.rt.res.result │ │ ├── x86_32-simulator-scas.sc.memres.result │ │ ├── x86_32-simulator-scas.sc.res.result │ │ ├── x86_32-simulator-scas.sym.memres.result │ │ ├── x86_32-simulator-scas.sym.res.result │ │ ├── x86_32-simulator-setcc.rt.memres.result │ │ ├── x86_32-simulator-setcc.rt.res.result │ │ ├── x86_32-simulator-setcc.sc.memres.result │ │ ├── x86_32-simulator-setcc.sc.res.result │ │ ├── x86_32-simulator-setcc.sym.memres.result │ │ ├── x86_32-simulator-setcc.sym.res.result │ │ ├── x86_32-simulator-shift-01.rt.memres.result │ │ ├── x86_32-simulator-shift-01.rt.res.result │ │ ├── x86_32-simulator-shift-01.sc.memres.result │ │ ├── x86_32-simulator-shift-01.sc.res.result │ │ ├── x86_32-simulator-shift-01.sym.memres.result │ │ ├── x86_32-simulator-shift-01.sym.res.result │ │ ├── x86_32-simulator-shift-02.rt.memres.result │ │ ├── x86_32-simulator-shift-02.rt.res.result │ │ ├── x86_32-simulator-shift-02.sc.memres.result │ │ ├── x86_32-simulator-shift-02.sc.res.result │ │ ├── x86_32-simulator-shift-02.sym.memres.result │ │ ├── x86_32-simulator-shift-02.sym.res.result │ │ ├── x86_32-simulator-shift-03.rt.memres.result │ │ ├── x86_32-simulator-shift-03.rt.res.result │ │ ├── x86_32-simulator-shift-03.sc.memres.result │ │ ├── x86_32-simulator-shift-03.sc.res.result │ │ ├── x86_32-simulator-shift-03.sym.memres.result │ │ ├── x86_32-simulator-shift-03.sym.res.result │ │ ├── x86_32-simulator-shift-04.rt.memres.result │ │ ├── x86_32-simulator-shift-04.rt.res.result │ │ ├── x86_32-simulator-shift-04.sc.memres.result │ │ ├── x86_32-simulator-shift-04.sc.res.result │ │ ├── x86_32-simulator-shift-04.sym.memres.result │ │ ├── x86_32-simulator-shift-04.sym.res.result │ │ ├── x86_32-simulator-sub.rt.memres.result │ │ ├── x86_32-simulator-sub.rt.res.result │ │ ├── x86_32-simulator-sub.sc.memres.result │ │ ├── x86_32-simulator-sub.sc.res.result │ │ ├── x86_32-simulator-sub.sym.memres.result │ │ ├── x86_32-simulator-sub.sym.res.result │ │ ├── x86_32-simulator-xadd.rt.memres.result │ │ ├── x86_32-simulator-xadd.rt.res.result │ │ ├── x86_32-simulator-xadd.sc.memres.result │ │ ├── x86_32-simulator-xadd.sc.res.result │ │ ├── x86_32-simulator-xadd.sym.memres.result │ │ ├── x86_32-simulator-xadd.sym.res.result │ │ ├── x86_32-simulator-xchg.rt.memres.result │ │ ├── x86_32-simulator-xchg.rt.res.result │ │ ├── x86_32-simulator-xchg.sc.memres.result │ │ ├── x86_32-simulator-xchg.sc.res.result │ │ ├── x86_32-simulator-xchg.sym.memres.result │ │ ├── x86_32-simulator-xchg.sym.res.result │ │ ├── x86_32-xadd.fld.memres.result │ │ ├── x86_32-xadd.fld.res.result │ │ ├── x86_32-xadd.lsw.memres.result │ │ ├── x86_32-xadd.lsw.res.result │ │ ├── x86_32-xchg.fld.memres.result │ │ ├── x86_32-xchg.fld.res.result │ │ ├── x86_32-xchg.lsw.memres.result │ │ ├── x86_32-xchg.lsw.res.result │ │ ├── x86_32-xor.fld.memres.result │ │ ├── x86_32-xor.fld.res.result │ │ ├── x86_32-xor.lsw.memres.result │ │ └── x86_32-xor.lsw.res.result └── utils │ ├── Kyuafile │ ├── Makefile.am │ └── configtable_test.cc └── tools ├── Makefile.am ├── cfgrecovery ├── Makefile.am ├── algorithms.cc ├── algorithms.hh ├── cfgrecovery.cc ├── cfgrecovery.hh └── doc │ └── cfgrecovery.1.in └── pynsight ├── Makefile.am ├── __init__.py ├── config.cc ├── debugger.py ├── error.cc ├── gengen.cc ├── gengen.hh ├── iii ├── iii.py ├── io.cc ├── microcode.cc ├── program.cc ├── pynsight.cc ├── pynsight.hh ├── simulator.cc ├── utils.py └── xdot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/README -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/doxygen/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/doxygen/doxygen.cfg.in -------------------------------------------------------------------------------- /doc/doxygen/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/doxygen/favicon.ico -------------------------------------------------------------------------------- /doc/doxygen/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/doxygen/footer.html -------------------------------------------------------------------------------- /doc/doxygen/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/doxygen/header.html -------------------------------------------------------------------------------- /doc/doxygen/insight-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/doxygen/insight-header.png -------------------------------------------------------------------------------- /doc/doxygen/insight-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/doxygen/insight-logo.png -------------------------------------------------------------------------------- /doc/doxygen/insight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/doxygen/insight.css -------------------------------------------------------------------------------- /doc/insight.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/insight.dtd -------------------------------------------------------------------------------- /doc/manuals/common-macros.texi.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/manuals/common-macros.texi.in -------------------------------------------------------------------------------- /doc/manuals/insight-dev-manual.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/manuals/insight-dev-manual.texi -------------------------------------------------------------------------------- /doc/manuals/insight-user-manual.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/manuals/insight-user-manual.texi -------------------------------------------------------------------------------- /doc/xml-annotations.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/doc/xml-annotations.org -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/analyses/CFG.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/CFG.cc -------------------------------------------------------------------------------- /src/analyses/CFG.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/CFG.hh -------------------------------------------------------------------------------- /src/analyses/Wp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/Wp.cc -------------------------------------------------------------------------------- /src/analyses/Wp.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/Wp.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/AbstractContext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/AbstractContext.cc -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/AbstractContext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/AbstractContext.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/AbstractState.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/AbstractState.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/AbstractState.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/AbstractState.ii -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/AbstractStepper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/AbstractStepper.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/DomainSimulator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/DomainSimulator.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/DummyStateSpace.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/DummyStateSpace.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/FloodTraversal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/FloodTraversal.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/LinearSweep.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/LinearSweep.hh -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/NullContext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/NullContext.cc -------------------------------------------------------------------------------- /src/analyses/cfgrecovery/NullContext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/cfgrecovery/NullContext.hh -------------------------------------------------------------------------------- /src/analyses/microcode_exec.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/microcode_exec.hh -------------------------------------------------------------------------------- /src/analyses/microcode_exec.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/microcode_exec.ii -------------------------------------------------------------------------------- /src/analyses/slicing/Slicing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/slicing/Slicing.cc -------------------------------------------------------------------------------- /src/analyses/slicing/Slicing.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/analyses/slicing/Slicing.hh -------------------------------------------------------------------------------- /src/decoders/Decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/Decoder.cc -------------------------------------------------------------------------------- /src/decoders/Decoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/Decoder.hh -------------------------------------------------------------------------------- /src/decoders/DecoderFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/DecoderFactory.cc -------------------------------------------------------------------------------- /src/decoders/DecoderFactory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/DecoderFactory.hh -------------------------------------------------------------------------------- /src/decoders/binutils/BinutilsDecoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/BinutilsDecoder.cc -------------------------------------------------------------------------------- /src/decoders/binutils/BinutilsDecoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/BinutilsDecoder.hh -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_A_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_A_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_B_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_B_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_C_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_C_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_E_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_E_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_L_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_L_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_M_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_M_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_N_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_N_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_O_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_O_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_P_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_P_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_R_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_R_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_S_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_S_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_U_instr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_U_instr.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_decoder.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_decoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_decoder.hh -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_instructions.txt: -------------------------------------------------------------------------------- 1 | NOP 0 2 | -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_mkfiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_mkfiles.sh -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_parser.yy -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_scanner.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_scanner.ll -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_translate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_translate.cc -------------------------------------------------------------------------------- /src/decoders/binutils/arm/arm_translate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/arm/arm_translate.hh -------------------------------------------------------------------------------- /src/decoders/binutils/sparc/sparc_cc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/sparc/sparc_cc.def -------------------------------------------------------------------------------- /src/decoders/binutils/sparc/sparc_parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/sparc/sparc_parser.yy -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_32_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_32_decoder.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_32_decoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_32_decoder.hh -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_64_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_64_decoder.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_64_decoder.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_64_decoder.hh -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_cc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_cc.def -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_instr_bits.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_instr_bits.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_instr_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_instr_call.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_instr_jump.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_instr_jump.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_instr_misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_instr_misc.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_instr_mov.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_instr_mov.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_parser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_parser.yy -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_scanner.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_scanner.ll -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_translate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_translate.cc -------------------------------------------------------------------------------- /src/decoders/binutils/x86/x86_translate.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/decoders/binutils/x86/x86_translate.hh -------------------------------------------------------------------------------- /src/domains/ExprSemantics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/ExprSemantics.hh -------------------------------------------------------------------------------- /src/domains/ExprSemantics.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/ExprSemantics.ii -------------------------------------------------------------------------------- /src/domains/common/ConcreteAddressMemory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/common/ConcreteAddressMemory.hh -------------------------------------------------------------------------------- /src/domains/common/ConcreteAddressMemory.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/common/ConcreteAddressMemory.ii -------------------------------------------------------------------------------- /src/domains/common/ConcreteProgramPoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/common/ConcreteProgramPoint.cc -------------------------------------------------------------------------------- /src/domains/common/ConcreteProgramPoint.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/common/ConcreteProgramPoint.hh -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteAddress.cc -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteAddress.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteAddress.hh -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteContext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteContext.cc -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteContext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteContext.hh -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteMemory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteMemory.cc -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteMemory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteMemory.hh -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteStepper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteStepper.cc -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteStepper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteStepper.hh -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteValue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteValue.cc -------------------------------------------------------------------------------- /src/domains/concrete/ConcreteValue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/concrete/ConcreteValue.hh -------------------------------------------------------------------------------- /src/domains/interval/IntervalAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/IntervalAddress.cc -------------------------------------------------------------------------------- /src/domains/interval/IntervalAddress.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/IntervalAddress.hh -------------------------------------------------------------------------------- /src/domains/interval/IntervalMemory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/IntervalMemory.cc -------------------------------------------------------------------------------- /src/domains/interval/IntervalMemory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/IntervalMemory.hh -------------------------------------------------------------------------------- /src/domains/interval/IntervalValue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/IntervalValue.cc -------------------------------------------------------------------------------- /src/domains/interval/IntervalValue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/IntervalValue.hh -------------------------------------------------------------------------------- /src/domains/interval/interval_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/interval_context.cc -------------------------------------------------------------------------------- /src/domains/interval/interval_context.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/interval/interval_context.hh -------------------------------------------------------------------------------- /src/domains/sets/SetsAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsAddress.cc -------------------------------------------------------------------------------- /src/domains/sets/SetsAddress.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsAddress.hh -------------------------------------------------------------------------------- /src/domains/sets/SetsContext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsContext.cc -------------------------------------------------------------------------------- /src/domains/sets/SetsContext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsContext.hh -------------------------------------------------------------------------------- /src/domains/sets/SetsExprSemantics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsExprSemantics.cc -------------------------------------------------------------------------------- /src/domains/sets/SetsExprSemantics.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsExprSemantics.hh -------------------------------------------------------------------------------- /src/domains/sets/SetsMemory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsMemory.cc -------------------------------------------------------------------------------- /src/domains/sets/SetsMemory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsMemory.hh -------------------------------------------------------------------------------- /src/domains/sets/SetsValue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsValue.cc -------------------------------------------------------------------------------- /src/domains/sets/SetsValue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/sets/SetsValue.hh -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicContext.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicContext.cc -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicContext.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicContext.hh -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicMemory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicMemory.cc -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicMemory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicMemory.hh -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicStepper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicStepper.cc -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicStepper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicStepper.hh -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicValue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicValue.cc -------------------------------------------------------------------------------- /src/domains/symbolic/SymbolicValue.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/domains/symbolic/SymbolicValue.hh -------------------------------------------------------------------------------- /src/io/binary/BinaryLoader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/BinaryLoader.cc -------------------------------------------------------------------------------- /src/io/binary/BinaryLoader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/BinaryLoader.hh -------------------------------------------------------------------------------- /src/io/binary/BinutilsBinaryLoader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/BinutilsBinaryLoader.cc -------------------------------------------------------------------------------- /src/io/binary/BinutilsBinaryLoader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/BinutilsBinaryLoader.hh -------------------------------------------------------------------------------- /src/io/binary/BinutilsStubFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/BinutilsStubFactory.cc -------------------------------------------------------------------------------- /src/io/binary/BinutilsStubFactory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/BinutilsStubFactory.hh -------------------------------------------------------------------------------- /src/io/binary/ELF_x86_32_StubFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/ELF_x86_32_StubFactory.cc -------------------------------------------------------------------------------- /src/io/binary/ELF_x86_64_StubFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/ELF_x86_64_StubFactory.cc -------------------------------------------------------------------------------- /src/io/binary/StubFactory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/binary/StubFactory.hh -------------------------------------------------------------------------------- /src/io/expressions/ExprLexer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/ExprLexer.hh -------------------------------------------------------------------------------- /src/io/expressions/ExprLexer.ll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/ExprLexer.ll -------------------------------------------------------------------------------- /src/io/expressions/ExprParser.yy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/ExprParser.yy -------------------------------------------------------------------------------- /src/io/expressions/expr-parser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/expr-parser.hh -------------------------------------------------------------------------------- /src/io/expressions/expr-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/expr-writer.cc -------------------------------------------------------------------------------- /src/io/expressions/expr-writer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/expr-writer.hh -------------------------------------------------------------------------------- /src/io/expressions/smtlib-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/smtlib-writer.cc -------------------------------------------------------------------------------- /src/io/expressions/smtlib-writer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/expressions/smtlib-writer.hh -------------------------------------------------------------------------------- /src/io/microcode/MicrocodeLoader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/MicrocodeLoader.cc -------------------------------------------------------------------------------- /src/io/microcode/MicrocodeLoader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/MicrocodeLoader.hh -------------------------------------------------------------------------------- /src/io/microcode/MicrocodeWriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/MicrocodeWriter.cc -------------------------------------------------------------------------------- /src/io/microcode/MicrocodeWriter.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/MicrocodeWriter.hh -------------------------------------------------------------------------------- /src/io/microcode/asm-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/asm-writer.cc -------------------------------------------------------------------------------- /src/io/microcode/asm-writer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/asm-writer.hh -------------------------------------------------------------------------------- /src/io/microcode/dot-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/dot-writer.cc -------------------------------------------------------------------------------- /src/io/microcode/dot-writer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/dot-writer.hh -------------------------------------------------------------------------------- /src/io/microcode/mc-writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/mc-writer.cc -------------------------------------------------------------------------------- /src/io/microcode/mc-writer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/mc-writer.hh -------------------------------------------------------------------------------- /src/io/microcode/xml_annotations.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/xml_annotations.hh -------------------------------------------------------------------------------- /src/io/microcode/xml_microcode_generator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/xml_microcode_generator.cc -------------------------------------------------------------------------------- /src/io/microcode/xml_microcode_generator.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/xml_microcode_generator.hh -------------------------------------------------------------------------------- /src/io/microcode/xml_microcode_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/xml_microcode_parser.cc -------------------------------------------------------------------------------- /src/io/microcode/xml_microcode_parser.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/microcode/xml_microcode_parser.hh -------------------------------------------------------------------------------- /src/io/process/ProcessLoader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/process/ProcessLoader.cc -------------------------------------------------------------------------------- /src/io/process/ProcessLoader.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/io/process/ProcessLoader.hh -------------------------------------------------------------------------------- /src/kernel/Address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Address.cc -------------------------------------------------------------------------------- /src/kernel/Address.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Address.hh -------------------------------------------------------------------------------- /src/kernel/Annotable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Annotable.cc -------------------------------------------------------------------------------- /src/kernel/Annotable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Annotable.hh -------------------------------------------------------------------------------- /src/kernel/Annotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Annotation.hh -------------------------------------------------------------------------------- /src/kernel/Architecture.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture.cc -------------------------------------------------------------------------------- /src/kernel/Architecture.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture.hh -------------------------------------------------------------------------------- /src/kernel/Architecture_ARM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_ARM.cc -------------------------------------------------------------------------------- /src/kernel/Architecture_ARM.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_ARM.hh -------------------------------------------------------------------------------- /src/kernel/Architecture_SPARC.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_SPARC.cc -------------------------------------------------------------------------------- /src/kernel/Architecture_SPARC.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_SPARC.hh -------------------------------------------------------------------------------- /src/kernel/Architecture_X86_32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_X86_32.cc -------------------------------------------------------------------------------- /src/kernel/Architecture_X86_32.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_X86_32.hh -------------------------------------------------------------------------------- /src/kernel/Architecture_X86_64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_X86_64.cc -------------------------------------------------------------------------------- /src/kernel/Architecture_X86_64.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_X86_64.hh -------------------------------------------------------------------------------- /src/kernel/Architecture_msp430.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_msp430.cc -------------------------------------------------------------------------------- /src/kernel/Architecture_msp430.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Architecture_msp430.hh -------------------------------------------------------------------------------- /src/kernel/Expressions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Expressions.cc -------------------------------------------------------------------------------- /src/kernel/Expressions.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Expressions.hh -------------------------------------------------------------------------------- /src/kernel/Memory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Memory.hh -------------------------------------------------------------------------------- /src/kernel/Memory.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Memory.ii -------------------------------------------------------------------------------- /src/kernel/Microcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Microcode.cc -------------------------------------------------------------------------------- /src/kernel/Microcode.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Microcode.hh -------------------------------------------------------------------------------- /src/kernel/RegisterMap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/RegisterMap.hh -------------------------------------------------------------------------------- /src/kernel/RegisterMap.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/RegisterMap.ii -------------------------------------------------------------------------------- /src/kernel/SymbolTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/SymbolTable.cc -------------------------------------------------------------------------------- /src/kernel/SymbolTable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/SymbolTable.hh -------------------------------------------------------------------------------- /src/kernel/Value.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Value.cc -------------------------------------------------------------------------------- /src/kernel/Value.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/Value.hh -------------------------------------------------------------------------------- /src/kernel/annotations/AsmAnnotation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/AsmAnnotation.cc -------------------------------------------------------------------------------- /src/kernel/annotations/AsmAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/AsmAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/annotations/BooleanAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/BooleanAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/annotations/CallRetAnnotation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/CallRetAnnotation.cc -------------------------------------------------------------------------------- /src/kernel/annotations/CallRetAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/CallRetAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/annotations/ExprAnnotation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/ExprAnnotation.cc -------------------------------------------------------------------------------- /src/kernel/annotations/ExprAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/ExprAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/annotations/GenericAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/GenericAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/annotations/ListAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/ListAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/annotations/StringAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/StringAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/annotations/StubAnnotation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/StubAnnotation.cc -------------------------------------------------------------------------------- /src/kernel/annotations/StubAnnotation.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/annotations/StubAnnotation.hh -------------------------------------------------------------------------------- /src/kernel/expressions/ConditionalSet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ConditionalSet.cc -------------------------------------------------------------------------------- /src/kernel/expressions/ConditionalSet.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ConditionalSet.hh -------------------------------------------------------------------------------- /src/kernel/expressions/ExprMathsatSolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprMathsatSolver.cc -------------------------------------------------------------------------------- /src/kernel/expressions/ExprMathsatSolver.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprMathsatSolver.hh -------------------------------------------------------------------------------- /src/kernel/expressions/ExprProcessSolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprProcessSolver.cc -------------------------------------------------------------------------------- /src/kernel/expressions/ExprProcessSolver.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprProcessSolver.hh -------------------------------------------------------------------------------- /src/kernel/expressions/ExprRewritingRule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprRewritingRule.cc -------------------------------------------------------------------------------- /src/kernel/expressions/ExprRewritingRule.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprRewritingRule.hh -------------------------------------------------------------------------------- /src/kernel/expressions/ExprSolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprSolver.cc -------------------------------------------------------------------------------- /src/kernel/expressions/ExprSolver.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprSolver.hh -------------------------------------------------------------------------------- /src/kernel/expressions/ExprVisitor.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/ExprVisitor.hh -------------------------------------------------------------------------------- /src/kernel/expressions/Operators.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/Operators.cc -------------------------------------------------------------------------------- /src/kernel/expressions/Operators.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/Operators.def -------------------------------------------------------------------------------- /src/kernel/expressions/Operators.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/Operators.hh -------------------------------------------------------------------------------- /src/kernel/expressions/PatternMatching.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/PatternMatching.cc -------------------------------------------------------------------------------- /src/kernel/expressions/PatternMatching.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/PatternMatching.hh -------------------------------------------------------------------------------- /src/kernel/expressions/exprutils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/exprutils.cc -------------------------------------------------------------------------------- /src/kernel/expressions/exprutils.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/exprutils.hh -------------------------------------------------------------------------------- /src/kernel/expressions/exprutils.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/expressions/exprutils.ii -------------------------------------------------------------------------------- /src/kernel/insight.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/insight.cc -------------------------------------------------------------------------------- /src/kernel/insight.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/insight.hh -------------------------------------------------------------------------------- /src/kernel/microcode/MicrocodeAddress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/microcode/MicrocodeAddress.cc -------------------------------------------------------------------------------- /src/kernel/microcode/MicrocodeAddress.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/microcode/MicrocodeAddress.hh -------------------------------------------------------------------------------- /src/kernel/microcode/MicrocodeNode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/microcode/MicrocodeNode.cc -------------------------------------------------------------------------------- /src/kernel/microcode/MicrocodeNode.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/microcode/MicrocodeNode.hh -------------------------------------------------------------------------------- /src/kernel/microcode/MicrocodeStatements.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/microcode/MicrocodeStatements.cc -------------------------------------------------------------------------------- /src/kernel/microcode/MicrocodeStatements.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/microcode/MicrocodeStatements.hh -------------------------------------------------------------------------------- /src/kernel/microcode/MicrocodeStore.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/kernel/microcode/MicrocodeStore.hh -------------------------------------------------------------------------------- /src/utils/ConfigTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/ConfigTable.cc -------------------------------------------------------------------------------- /src/utils/ConfigTable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/ConfigTable.hh -------------------------------------------------------------------------------- /src/utils/FileStreamBuffer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/FileStreamBuffer.hh -------------------------------------------------------------------------------- /src/utils/FileStreamBuffer_char.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/FileStreamBuffer_char.cc -------------------------------------------------------------------------------- /src/utils/Object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/Object.cc -------------------------------------------------------------------------------- /src/utils/Object.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/Object.hh -------------------------------------------------------------------------------- /src/utils/Option.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/Option.hh -------------------------------------------------------------------------------- /src/utils/bv-manip.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/bv-manip.hh -------------------------------------------------------------------------------- /src/utils/graph.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/graph.hh -------------------------------------------------------------------------------- /src/utils/graph.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/graph.ii -------------------------------------------------------------------------------- /src/utils/infrastructure.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/infrastructure.hh -------------------------------------------------------------------------------- /src/utils/logs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/logs.cc -------------------------------------------------------------------------------- /src/utils/logs.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/logs.hh -------------------------------------------------------------------------------- /src/utils/map-helpers.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/map-helpers.hh -------------------------------------------------------------------------------- /src/utils/path.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/path.hh -------------------------------------------------------------------------------- /src/utils/path.ii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/path.ii -------------------------------------------------------------------------------- /src/utils/tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/tools.cc -------------------------------------------------------------------------------- /src/utils/tools.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/tools.hh -------------------------------------------------------------------------------- /src/utils/unordered11.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/src/utils/unordered11.hh -------------------------------------------------------------------------------- /test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/Makefile.am -------------------------------------------------------------------------------- /test/Makefile.inc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/Makefile.inc.in -------------------------------------------------------------------------------- /test/bugs/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/bugs/Kyuafile -------------------------------------------------------------------------------- /test/bugs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/bugs/Makefile.am -------------------------------------------------------------------------------- /test/bugs/bug_001_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/bugs/bug_001_test.cc -------------------------------------------------------------------------------- /test/cfgrecovery.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/cfgrecovery.cfg.in -------------------------------------------------------------------------------- /test/check-results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/check-results.sh -------------------------------------------------------------------------------- /test/decoders/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/Makefile.am -------------------------------------------------------------------------------- /test/decoders/test-decoder-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/test-decoder-x86.cc -------------------------------------------------------------------------------- /test/decoders/x86-32/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/Makefile.am -------------------------------------------------------------------------------- /test/decoders/x86-32/check-diff.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-aaa.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-aaa.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-aad.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-aad.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-aam.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-aam.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-aas.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-aas.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-and.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-and.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-bsf.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-bsf.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-bsr.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-bsr.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-bt.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-bt.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-btc.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-btc.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-btr.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-btr.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-bts.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-bts.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-call.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-call.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-cmp.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-cmp.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-cmps.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-cmps.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-div.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-div.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-idiv.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-idiv.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-imul.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-imul.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-int.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-int.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-jcc.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-jcc.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-jmp.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-jmp.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-lea.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-lea.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-lods.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-lods.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-loop.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-loop.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-mov.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-mov.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-movs.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-movs.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-mul.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-mul.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-neg.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-neg.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-nop.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-nop.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-not.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-not.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-or.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-or.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-pop.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-pop.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-popa.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-popa.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-push.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-push.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-ret.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-ret.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-sbb.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-sbb.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-scas.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-scas.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-xadd.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-xadd.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-xchg.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-xchg.res.result -------------------------------------------------------------------------------- /test/decoders/x86-32/x86_32-xor.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-32/x86_32-xor.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/Makefile.am -------------------------------------------------------------------------------- /test/decoders/x86-64/check-diff.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-and.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-and.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-bsf.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-bsf.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-bsr.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-bsr.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-bt.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-bt.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-btc.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-btc.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-btr.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-btr.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-bts.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-bts.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-call.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-call.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-cmp.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-cmp.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-cmps.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-cmps.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-div.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-div.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-idiv.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-idiv.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-imul.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-imul.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-int.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-int.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-jcc.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-jcc.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-jmp.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-jmp.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-lea.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-lea.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-lods.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-lods.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-loop.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-loop.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-mov.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-mov.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-movs.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-movs.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-mul.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-mul.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-neg.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-neg.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-nop.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-nop.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-not.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-not.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-or.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-or.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-pop.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-pop.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-push.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-push.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-ret.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-ret.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-sbb.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-sbb.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-scas.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-scas.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-xadd.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-xadd.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-xchg.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-xchg.res.result -------------------------------------------------------------------------------- /test/decoders/x86-64/x86_64-xor.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/decoders/x86-64/x86_64-xor.res.result -------------------------------------------------------------------------------- /test/domains/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/Makefile.am -------------------------------------------------------------------------------- /test/domains/concrete/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/concrete/Kyuafile -------------------------------------------------------------------------------- /test/domains/concrete/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/concrete/Makefile.am -------------------------------------------------------------------------------- /test/domains/concrete/address_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/concrete/address_test.cc -------------------------------------------------------------------------------- /test/domains/concrete/memory_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/concrete/memory_test.cc -------------------------------------------------------------------------------- /test/domains/concrete/simulator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/concrete/simulator_test.cc -------------------------------------------------------------------------------- /test/domains/concrete/value_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/concrete/value_test.cc -------------------------------------------------------------------------------- /test/domains/sets/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/sets/Kyuafile -------------------------------------------------------------------------------- /test/domains/sets/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/sets/Makefile.am -------------------------------------------------------------------------------- /test/domains/sets/sets_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/sets/sets_test.cc -------------------------------------------------------------------------------- /test/domains/symbolic/Kyuafile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/symbolic/Kyuafile.in -------------------------------------------------------------------------------- /test/domains/symbolic/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/symbolic/Makefile.am -------------------------------------------------------------------------------- /test/domains/symbolic/memory_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/symbolic/memory_test.cc -------------------------------------------------------------------------------- /test/domains/symbolic/simulator_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/domains/symbolic/simulator_test.cc -------------------------------------------------------------------------------- /test/io/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/io/Kyuafile -------------------------------------------------------------------------------- /test/io/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/io/Makefile.am -------------------------------------------------------------------------------- /test/io/binaryloader_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/io/binaryloader_test.cc -------------------------------------------------------------------------------- /test/io/expr_to_smtlib_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/io/expr_to_smtlib_test.cc -------------------------------------------------------------------------------- /test/io/xml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/io/xml/Makefile.am -------------------------------------------------------------------------------- /test/io/xml/check-results.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/io/xml/check-results.sh -------------------------------------------------------------------------------- /test/io/xml/xml-tester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/io/xml/xml-tester.cc -------------------------------------------------------------------------------- /test/kernel/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/kernel/Kyuafile -------------------------------------------------------------------------------- /test/kernel/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/kernel/Makefile.am -------------------------------------------------------------------------------- /test/kernel/architecture_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/kernel/architecture_test.cc -------------------------------------------------------------------------------- /test/kernel/expr_parser_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/kernel/expr_parser_test.cc -------------------------------------------------------------------------------- /test/kernel/expr_solver_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/kernel/expr_solver_test.cc -------------------------------------------------------------------------------- /test/kernel/expression_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/kernel/expression_test.cc -------------------------------------------------------------------------------- /test/slicing/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/Makefile.am -------------------------------------------------------------------------------- /test/slicing/check-diff.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/slicing/slicer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/slicer.cc -------------------------------------------------------------------------------- /test/slicing/x86_32-gcd.memres.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/x86_32-gcd.memres.result -------------------------------------------------------------------------------- /test/slicing/x86_32-gcd.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/x86_32-gcd.res.result -------------------------------------------------------------------------------- /test/slicing/x86_32-gcd.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/x86_32-gcd.spec.sh -------------------------------------------------------------------------------- /test/slicing/x86_32-slicing-01.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/x86_32-slicing-01.res.result -------------------------------------------------------------------------------- /test/slicing/x86_32-slicing-01.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/x86_32-slicing-01.spec.sh -------------------------------------------------------------------------------- /test/slicing/x86_32-slicing-02.res.result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/x86_32-slicing-02.res.result -------------------------------------------------------------------------------- /test/slicing/x86_32-slicing-02.spec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/slicing/x86_32-slicing-02.spec.sh -------------------------------------------------------------------------------- /test/test-samples/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/GNUmakefile -------------------------------------------------------------------------------- /test/test-samples/echo-freebsd-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-freebsd-amd64 -------------------------------------------------------------------------------- /test/test-samples/echo-freebsd-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-freebsd-i386 -------------------------------------------------------------------------------- /test/test-samples/echo-hurd-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-hurd-i386 -------------------------------------------------------------------------------- /test/test-samples/echo-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-linux-amd64 -------------------------------------------------------------------------------- /test/test-samples/echo-linux-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-linux-arm64 -------------------------------------------------------------------------------- /test/test-samples/echo-linux-armel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-linux-armel -------------------------------------------------------------------------------- /test/test-samples/echo-linux-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-linux-i386 -------------------------------------------------------------------------------- /test/test-samples/echo-linux-sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-linux-sparc -------------------------------------------------------------------------------- /test/test-samples/echo-linux-sparc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-linux-sparc64 -------------------------------------------------------------------------------- /test/test-samples/echo-macho-multiarch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-macho-multiarch -------------------------------------------------------------------------------- /test/test-samples/echo-windows-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-windows-amd64 -------------------------------------------------------------------------------- /test/test-samples/echo-windows-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/echo-windows-i386 -------------------------------------------------------------------------------- /test/test-samples/x86_32-aaa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-aaa.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-aaa.s: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-aad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-aad.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-aad.s: -------------------------------------------------------------------------------- 1 | aad 2 | aad $0x12 3 | 4 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-aam.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-aam.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-aam.s: -------------------------------------------------------------------------------- 1 | aam 2 | aam $0x13 3 | 4 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-aas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-aas.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-aas.s: -------------------------------------------------------------------------------- 1 | aas 2 | 3 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-and.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-and.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-and.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-and.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-bound.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bound.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-bound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bound.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-bsf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bsf.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-bsf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bsf.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-bsr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bsr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-bsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bsr.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-bswap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bswap.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-bswap.s: -------------------------------------------------------------------------------- 1 | bswap %eax 2 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-bt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bt.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-bt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bt.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-btc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-btc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-btc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-btc.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-btr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-btr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-btr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-btr.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-bts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bts.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-bts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bts.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-bug-001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-bug-001.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-bug-001.s: -------------------------------------------------------------------------------- 1 | flds 0x8(%ebp) 2 | 3 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-call.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-call.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-call.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-02.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-03.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-03.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-04.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-04.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-05.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cfgrecovery-05.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cfgrecovery-05.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cmp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cmp.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cmp.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cmps.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cmps.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cmps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cmps.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-cmpxchg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cmpxchg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-cmpxchg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-cmpxchg.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-daadas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-daadas.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-daadas.s: -------------------------------------------------------------------------------- 1 | daa 2 | das 3 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-div.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-div.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-div.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-div.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-enter-leave.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-enter-leave.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-enter-leave.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-enter-leave.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-gcd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-gcd.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-gcd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-gcd.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-idiv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-idiv.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-idiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-idiv.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-imul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-imul.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-imul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-imul.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-int.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-int.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-int.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-int.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-jcc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-jcc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-jcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-jcc.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-jmp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-jmp.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-jmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-jmp.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-lea.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-lea.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-lea.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-lea.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-lods.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-lods.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-lods.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-lods.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-loop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-loop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-loop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-loop.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-lsahf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-lsahf.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-lsahf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-lsahf.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-misc-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-misc-02.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-misc-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-misc-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-misc-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-misc-03.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-misc-03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-misc-03.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-misc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-misc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-misc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-misc.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-mov.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-mov.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-mov.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-mov.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-movbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-movbe.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-movbe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-movbe.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-movs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-movs.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-movs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-movs.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-movsxz.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-movsxz.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-movsxz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-movsxz.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-mul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-mul.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-mul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-mul.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-neg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-neg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-neg.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-nop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-nop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-nop.s: -------------------------------------------------------------------------------- 1 | nop 2 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-not.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-not.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-not.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-not.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-or.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-or.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-or.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-or.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-pop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-pop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-pop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-pop.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-pop16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-pop16.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-pop16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-pop16.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-popa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popa.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-popa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popa.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-popa16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popa16.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-popa16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popa16.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-popal.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popal.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-popal.s: -------------------------------------------------------------------------------- 1 | popal 2 | 3 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-popaw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popaw.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-popaw.s: -------------------------------------------------------------------------------- 1 | popaw 2 | -------------------------------------------------------------------------------- /test/test-samples/x86_32-popcnt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popcnt.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-popcnt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-popcnt.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-push.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-push.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-push.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-push.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-push16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-push16.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-push16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-push16.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-pusha.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-pusha.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-pusha.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-pusha.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-rep.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-rep.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-rep.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-rep.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-ret.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-ret.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-ret.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-ret.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-rotate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-rotate.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-rotate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-rotate.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-sbb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-sbb.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-sbb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-sbb.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-scas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-scas.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-scas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-scas.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-setcc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-setcc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-setcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-setcc.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-shift.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-shift.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-shift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-shift.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-00.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-00.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-00.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-02.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-03.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-03.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-04.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-04.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-05.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-05.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-05.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-06.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-06.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-06.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-CF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-CF.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-CF.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-CF.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aaa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aaa.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aaa.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aaa.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aad.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aad.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aad.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aam.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aam.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aam.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aam.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aas.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-aas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-aas.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-adcsbb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-adcsbb.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-add.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-add.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-add.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bound.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bound.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bsf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bsf.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bsf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bsf.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bsr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bsr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bsr.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bswap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bswap.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bt-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bt-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bt-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bt-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-btc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-btc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-btc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-btc.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-btr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-btr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-btr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-btr.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bts.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-bts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-bts.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-call.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-call.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-call.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-cbw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-cbw.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-cbw.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-cbw.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-cmov.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-cmov.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-cmov.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-cmov.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-cwdcdq.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-cwdcdq.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-daadas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-daadas.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-div.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-div.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-div.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-div.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-end.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-end.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-header.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-idiv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-idiv.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-idiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-idiv.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-imul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-imul.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-int.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-int.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-int.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-int.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-int3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-int3.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-int3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-int3.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-lods.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-lods.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-lods.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-lods.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-loop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-loop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-loop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-loop.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-lsahf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-lsahf.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-movbe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-movbe.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-movs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-movs.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-movs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-movs.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-movsxz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-movsxz.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-mul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-mul.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-mul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-mul.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-neg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-neg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-neg.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-popcnt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-popcnt.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-rep-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-rep-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-rep-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-rep-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-rep-03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-rep-03.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-rep-04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-rep-04.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-scas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-scas.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-scas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-scas.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-setcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-setcc.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-sub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-sub.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-sub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-sub.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-xadd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-xadd.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-xadd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-xadd.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-xchg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-xchg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-simulator-xchg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-simulator-xchg.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-slicing-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-slicing-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-slicing-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-slicing-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-slicing-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-slicing-02.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-slicing-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-slicing-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-sub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-sub.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-sub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-sub.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-symsim-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-symsim-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-symsim-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-symsim-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-xadd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-xadd.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-xadd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-xadd.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-xchg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-xchg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-xchg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-xchg.s -------------------------------------------------------------------------------- /test/test-samples/x86_32-xor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-xor.bin -------------------------------------------------------------------------------- /test/test-samples/x86_32-xor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_32-xor.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-and.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-and.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-and.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-and.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-bsf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bsf.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-bsf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bsf.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-bsr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bsr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-bsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bsr.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-bswap.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bswap.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-bswap.s: -------------------------------------------------------------------------------- 1 | bswap %eax 2 | -------------------------------------------------------------------------------- /test/test-samples/x86_64-bt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bt.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-bt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bt.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-btc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-btc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-btc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-btc.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-btr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-btr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-btr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-btr.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-bts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bts.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-bts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bts.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-bug-001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-bug-001.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-bug-001.s: -------------------------------------------------------------------------------- 1 | flds 0x8(%ebp) 2 | 3 | -------------------------------------------------------------------------------- /test/test-samples/x86_64-call.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-call.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-call.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-02.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-03.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-03.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-04.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-04.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-05.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cfgrecovery-05.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cfgrecovery-05.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cmp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cmp.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cmp.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cmps.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cmps.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cmps.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cmps.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-cmpxchg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cmpxchg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-cmpxchg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-cmpxchg.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-div.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-div.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-div.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-div.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-enter-leave.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-enter-leave.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-enter-leave.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-enter-leave.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-gcd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-gcd.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-gcd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-gcd.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-idiv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-idiv.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-idiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-idiv.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-imul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-imul.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-imul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-imul.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-int.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-int.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-int.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-int.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-jcc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-jcc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-jcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-jcc.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-jmp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-jmp.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-jmp.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-jmp.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-lea.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-lea.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-lea.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-lea.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-lods.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-lods.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-lods.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-lods.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-loop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-loop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-loop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-loop.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-lsahf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-lsahf.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-lsahf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-lsahf.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-misc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-misc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-misc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-misc.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-mov.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-mov.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-mov.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-mov.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-movbe.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-movbe.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-movbe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-movbe.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-movs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-movs.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-movs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-movs.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-movsxz.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-movsxz.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-movsxz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-movsxz.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-mul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-mul.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-mul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-mul.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-neg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-neg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-neg.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-nop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-nop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-nop.s: -------------------------------------------------------------------------------- 1 | nop 2 | -------------------------------------------------------------------------------- /test/test-samples/x86_64-not.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-not.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-not.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-not.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-or.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-or.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-or.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-or.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-pop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-pop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-pop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-pop.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-pop16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-pop16.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-pop16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-pop16.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-popcnt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-popcnt.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-popcnt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-popcnt.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-push.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-push.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-push.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-push.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-push16.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-push16.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-push16.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-push16.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-rep.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-rep.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-rep.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-rep.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-ret.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-ret.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-ret.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-ret.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-rotate.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-rotate.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-rotate.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-rotate.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-sbb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-sbb.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-sbb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-sbb.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-scas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-scas.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-scas.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-scas.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-setcc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-setcc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-setcc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-setcc.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-shift.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-shift.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-shift.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-shift.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-00.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-00.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-00.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-00.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-02.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-03.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-03.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-03.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-04.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-04.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-04.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-05.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-05.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-05.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-05.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-06.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-06.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-06.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-06.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-CF.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-CF.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-CF.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-CF.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-adcsbb.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-adcsbb.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-add.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-add.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-add.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-add.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bsf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bsf.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bsf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bsf.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bsr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bsr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bsr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bsr.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bswap.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bswap.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bt-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bt-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bt-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bt-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-btc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-btc.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-btc.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-btc.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-btr.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-btr.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-btr.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-btr.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bts.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-bts.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-bts.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-call.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-call.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-call.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-call.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-cbw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-cbw.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-cbw.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-cbw.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-cmov.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-cmov.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-cmov.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-cmov.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-cwdcdq.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-cwdcdq.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-div.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-div.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-div.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-div.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-end.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-end.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-header.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-header.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-idiv.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-idiv.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-idiv.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-idiv.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-imul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-imul.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-imul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-imul.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-int.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-int.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-int.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-int.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-int3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-int3.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-int3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-int3.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-lods.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-lods.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-lods.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-lods.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-loop.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-loop.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-loop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-loop.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-lsahf.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-lsahf.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-movbe.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-movbe.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-movs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-movs.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-movs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-movs.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-movsxz.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-movsxz.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-mul.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-mul.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-mul.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-mul.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-neg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-neg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-neg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-neg.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-popcnt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-popcnt.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-rep-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-rep-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-rep-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-rep-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-rep-03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-rep-03.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-rep-04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-rep-04.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-scas.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-scas.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-simulator-sub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-simulator-sub.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-slicing-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-slicing-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-slicing-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-slicing-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-slicing-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-slicing-02.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-slicing-02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-slicing-02.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-sub.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-sub.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-sub.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-sub.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-symsim-01.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-symsim-01.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-symsim-01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-symsim-01.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-xadd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-xadd.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-xadd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-xadd.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-xchg.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-xchg.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-xchg.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-xchg.s -------------------------------------------------------------------------------- /test/test-samples/x86_64-xor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-xor.bin -------------------------------------------------------------------------------- /test/test-samples/x86_64-xor.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/test-samples/x86_64-xor.s -------------------------------------------------------------------------------- /test/tools/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = cfgrecovery 2 | 3 | maintainer-clean-local: 4 | rm -fr $(top_srcdir)/test/tools/Makefile.in 5 | -------------------------------------------------------------------------------- /test/tools/cfgrecovery/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/tools/cfgrecovery/Makefile.am -------------------------------------------------------------------------------- /test/tools/cfgrecovery/check-diff.result: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/tools/cfgrecovery/cmp-rt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/tools/cfgrecovery/cmp-rt.sh -------------------------------------------------------------------------------- /test/utils/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/utils/Kyuafile -------------------------------------------------------------------------------- /test/utils/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/utils/Makefile.am -------------------------------------------------------------------------------- /test/utils/configtable_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/test/utils/configtable_test.cc -------------------------------------------------------------------------------- /tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/Makefile.am -------------------------------------------------------------------------------- /tools/cfgrecovery/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/cfgrecovery/Makefile.am -------------------------------------------------------------------------------- /tools/cfgrecovery/algorithms.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/cfgrecovery/algorithms.cc -------------------------------------------------------------------------------- /tools/cfgrecovery/algorithms.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/cfgrecovery/algorithms.hh -------------------------------------------------------------------------------- /tools/cfgrecovery/cfgrecovery.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/cfgrecovery/cfgrecovery.cc -------------------------------------------------------------------------------- /tools/cfgrecovery/cfgrecovery.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/cfgrecovery/cfgrecovery.hh -------------------------------------------------------------------------------- /tools/cfgrecovery/doc/cfgrecovery.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/cfgrecovery/doc/cfgrecovery.1.in -------------------------------------------------------------------------------- /tools/pynsight/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/Makefile.am -------------------------------------------------------------------------------- /tools/pynsight/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/pynsight/config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/config.cc -------------------------------------------------------------------------------- /tools/pynsight/debugger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/debugger.py -------------------------------------------------------------------------------- /tools/pynsight/error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/error.cc -------------------------------------------------------------------------------- /tools/pynsight/gengen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/gengen.cc -------------------------------------------------------------------------------- /tools/pynsight/gengen.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/gengen.hh -------------------------------------------------------------------------------- /tools/pynsight/iii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/iii -------------------------------------------------------------------------------- /tools/pynsight/iii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/iii.py -------------------------------------------------------------------------------- /tools/pynsight/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/io.cc -------------------------------------------------------------------------------- /tools/pynsight/microcode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/microcode.cc -------------------------------------------------------------------------------- /tools/pynsight/program.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/program.cc -------------------------------------------------------------------------------- /tools/pynsight/pynsight.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/pynsight.cc -------------------------------------------------------------------------------- /tools/pynsight/pynsight.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/pynsight.hh -------------------------------------------------------------------------------- /tools/pynsight/simulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/simulator.cc -------------------------------------------------------------------------------- /tools/pynsight/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/utils.py -------------------------------------------------------------------------------- /tools/pynsight/xdot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hotelzululima/insight/HEAD/tools/pynsight/xdot.py --------------------------------------------------------------------------------