├── BAP-0.7-moflow ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── STYLE.C ├── STYLE.ocaml ├── TODO ├── VEX │ ├── BAP.README │ ├── HACKING.README │ ├── LICENSE.GPL │ ├── LICENSE.README │ ├── Makefile │ ├── Makefile-gcc │ ├── Makefile-icc │ ├── TODO.txt │ ├── auxprogs │ │ └── genoffsets.c │ ├── bap_patch_20110908.patch │ ├── nanoarm.orig │ ├── newline.txt │ ├── orig_amd64 │ │ ├── Compare.hs │ │ ├── SortedToOrig.hs │ │ ├── test1.orig │ │ ├── test1.sorted │ │ ├── test2.orig │ │ └── test2.sorted │ ├── orig_arm │ │ ├── nanoarm │ │ └── nanoarm.orig │ ├── orig_ppc32 │ │ ├── date.orig │ │ ├── loadsafp.orig │ │ ├── morefp.orig │ │ └── return0.orig │ ├── orig_x86 │ │ ├── exit42.orig │ │ ├── fpu_mmx_sse.orig │ │ └── manyfp.orig │ ├── priv │ │ ├── guest_amd64_defs.h │ │ ├── guest_amd64_helpers.c │ │ ├── guest_amd64_toIR.c │ │ ├── guest_arm_defs.h │ │ ├── guest_arm_helpers.c │ │ ├── guest_arm_toIR.c │ │ ├── guest_generic_bb_to_IR.c │ │ ├── guest_generic_bb_to_IR.h │ │ ├── guest_generic_x87.c │ │ ├── guest_generic_x87.h │ │ ├── guest_ppc_defs.h │ │ ├── guest_ppc_helpers.c │ │ ├── guest_ppc_toIR.c │ │ ├── guest_s390_defs.h │ │ ├── guest_s390_helpers.c │ │ ├── guest_s390_toIR.c │ │ ├── guest_x86_defs.h │ │ ├── guest_x86_helpers.c │ │ ├── guest_x86_toIR.c │ │ ├── host_amd64_defs.c │ │ ├── host_amd64_defs.h │ │ ├── host_amd64_isel.c │ │ ├── host_arm_defs.c │ │ ├── host_arm_defs.h │ │ ├── host_arm_isel.c │ │ ├── host_generic_reg_alloc2.c │ │ ├── host_generic_regs.c │ │ ├── host_generic_regs.h │ │ ├── host_generic_simd128.c │ │ ├── host_generic_simd128.h │ │ ├── host_generic_simd64.c │ │ ├── host_generic_simd64.h │ │ ├── host_ppc_defs.c │ │ ├── host_ppc_defs.h │ │ ├── host_ppc_isel.c │ │ ├── host_s390_defs.c │ │ ├── host_s390_defs.h │ │ ├── host_s390_disasm.c │ │ ├── host_s390_disasm.h │ │ ├── host_s390_isel.c │ │ ├── host_x86_defs.c │ │ ├── host_x86_defs.h │ │ ├── host_x86_isel.c │ │ ├── ir_defs.c │ │ ├── ir_match.c │ │ ├── ir_match.h │ │ ├── ir_opt.c │ │ ├── ir_opt.h │ │ ├── main_globals.c │ │ ├── main_globals.h │ │ ├── main_main.c │ │ ├── main_util.c │ │ └── main_util.h │ ├── pub │ │ ├── libvex.h │ │ ├── libvex_basictypes.h │ │ ├── libvex_emwarn.h │ │ ├── libvex_guest_amd64.h │ │ ├── libvex_guest_arm.h │ │ ├── libvex_guest_ppc32.h │ │ ├── libvex_guest_ppc64.h │ │ ├── libvex_guest_s390x.h │ │ ├── libvex_guest_x86.h │ │ ├── libvex_ir.h │ │ ├── libvex_s390x_common.h │ │ └── libvex_trc_values.h │ ├── quote.txt │ ├── switchback │ │ ├── Makefile │ │ ├── binary_switchback.pl │ │ ├── linker.c │ │ ├── linker.h │ │ ├── switchback.c │ │ ├── test_bzip2.c │ │ ├── test_emfloat.c │ │ ├── test_hello.c │ │ ├── test_ppc_jm1.c │ │ └── test_simple.c │ ├── test │ │ ├── fldenv.c │ │ ├── fp1.c │ │ ├── fp1.s │ │ ├── fpconst.c │ │ ├── fpgames.s │ │ ├── fpspeed.c │ │ ├── fpucw.c │ │ ├── frstor.c │ │ ├── fsave.c │ │ ├── fstenv.c │ │ ├── fxsave.c │ │ ├── mmxtest.c │ │ ├── mxcsr.c │ │ ├── rounderr.c │ │ ├── test-amd64-muldiv.h │ │ ├── test-amd64-shift.h │ │ ├── test-amd64.c │ │ ├── test-amd64.h │ │ ├── test-i386-muldiv.h │ │ ├── test-i386-shift.h │ │ ├── test-i386.c │ │ ├── test-i386.h │ │ ├── x87fxam.c │ │ └── x87tst.c │ ├── test_main.c │ ├── test_main.h │ ├── test_main.h.base │ ├── unused │ │ ├── arena.h │ │ ├── dispatch.c │ │ └── linker.c │ └── useful │ │ ├── cpuid.c │ │ ├── fp_80_64.c │ │ ├── fpround.c │ │ ├── fspill.c │ │ ├── gradual_underflow.c │ │ ├── hd_fpu.c │ │ ├── show_fp_state.c │ │ ├── smchash.c │ │ └── x87_to_vex_and_back.c ├── aclocal.m4 ├── autogen.sh ├── autom4te.cache │ ├── output.0 │ ├── output.1 │ ├── requests │ ├── traces.0 │ └── traces.1 ├── batteries │ ├── ChangeLog │ ├── FAQ │ ├── LICENSE │ ├── META.in │ ├── Makefile │ ├── README │ ├── README.folders │ ├── README.md │ ├── VERSION │ ├── _oasis │ ├── _tags │ ├── batteries.odocl │ ├── battop.ml │ ├── benchsuite │ │ ├── README │ │ ├── _tags │ │ ├── bench_int.ml │ │ ├── bench_map.ml │ │ ├── bench_set.ml │ │ └── grouping.ml │ ├── build │ │ ├── README │ │ ├── camlzip │ │ │ ├── META │ │ │ └── Makefile │ │ ├── fix_camlp4_print.ml │ │ ├── import.ml │ │ ├── intro.text │ │ ├── make_suite.mll │ │ ├── mkconf.ml │ │ ├── myocamlbuild.ml │ │ ├── ocaml │ │ ├── odoc_batteries_factored.ml │ │ ├── odoc_extract_mli.ml │ │ ├── odoc_generator_batlib.ml │ │ ├── odoc_tags.ml │ │ ├── optcomp │ │ │ ├── LICENSE │ │ │ ├── META │ │ │ ├── README │ │ │ ├── _tags │ │ │ ├── optcomp.ml │ │ │ ├── optcomp_o.ml │ │ │ ├── optcomp_r.ml │ │ │ ├── pa_optcomp.ml │ │ │ ├── sample.ml │ │ │ └── sample_incl.ml │ │ ├── packdoc.ml │ │ └── preprocess_mli │ │ │ ├── _tags │ │ │ ├── extract_mli.ml │ │ │ ├── generate_mli.ml │ │ │ └── preprocess_common.ml │ ├── byte.itarget │ ├── doc │ │ ├── batteries.svg │ │ ├── batteries │ │ │ ├── GUIDELINES │ │ │ ├── documentation.idex │ │ │ ├── html │ │ │ │ ├── about.html │ │ │ │ ├── batteries_large.png │ │ │ │ ├── extensions.html │ │ │ │ ├── guidelines.html │ │ │ │ ├── index.html │ │ │ │ ├── setup.html │ │ │ │ ├── style.css │ │ │ │ ├── toplevel.html │ │ │ │ ├── tutorial.html │ │ │ │ └── tutorial_godi.html │ │ │ ├── language.idex │ │ │ └── toplevel.help │ │ ├── batteries_large.png │ │ └── external_site_icon.gif │ ├── examples │ │ ├── README │ │ ├── _tags │ │ ├── benchmark │ │ │ ├── Makefile │ │ │ ├── _tags │ │ │ ├── arg2.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── run_tests.sh │ │ │ ├── t_enum.ml │ │ │ ├── t_list.ml │ │ │ ├── t_pow.ml │ │ │ ├── t_read.log │ │ │ ├── t_read.ml │ │ │ ├── t_read_stub.c │ │ │ └── t_strstr.ml │ │ ├── euler │ │ │ ├── Makefile │ │ │ ├── euler001.ml │ │ │ ├── euler008.ml │ │ │ ├── euler009.ml │ │ │ ├── euler010.ml │ │ │ ├── euler011.ml │ │ │ ├── euler012.ml │ │ │ ├── euler013.ml │ │ │ ├── euler014.ml │ │ │ ├── euler018.ml │ │ │ ├── euler019.ml │ │ │ ├── euler021.ml │ │ │ ├── euler022.ml │ │ │ ├── euler023.ml │ │ │ ├── euler024.ml │ │ │ ├── euler067.ml │ │ │ ├── mathlib.ml │ │ │ └── names.txt │ │ ├── pleac │ │ │ └── strings.ml │ │ ├── snippets │ │ │ ├── _tags │ │ │ ├── accumulator.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── netchan_cat.ml │ │ │ ├── parallelsort.ml │ │ │ ├── ropes_vs_strings.ml │ │ │ ├── snippets.itarget │ │ │ ├── test_printf.ml │ │ │ ├── unicode.ml │ │ │ └── unicode2.ml │ │ └── tools │ │ │ ├── _tags │ │ │ ├── browser.ml │ │ │ ├── cat.ml │ │ │ ├── cat2.ml │ │ │ ├── conv.ml │ │ │ ├── gunzip.ml │ │ │ ├── mygzip.ml │ │ │ ├── myocamlbuild.ml │ │ │ ├── now.ml │ │ │ ├── pair.ml │ │ │ ├── shuffle.ml │ │ │ ├── shuffle2.ml │ │ │ └── tools.itarget │ ├── libs │ │ ├── estring.itarget │ │ └── estring │ │ │ ├── LICENSE │ │ │ ├── META │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── _tags │ │ │ ├── pa_estring.ml │ │ │ ├── pa_estring.mli │ │ │ ├── pa_estring_top.ml │ │ │ └── sample │ │ │ ├── pa_string_list.ml │ │ │ └── sample.ml │ ├── myocamlbuild.ml │ ├── native.itarget │ ├── ocamlinit │ ├── qtest │ │ ├── _tags │ │ ├── quickcheck.ml │ │ ├── test_runner.ml │ │ └── tests.ml │ ├── setup.ml │ ├── shared.itarget │ ├── src │ │ ├── _tags │ │ ├── batArg.ml │ │ ├── batArg.mli │ │ ├── batArray.ml │ │ ├── batArray.mli │ │ ├── batAvlTree.ml │ │ ├── batAvlTree.mli │ │ ├── batBase64.ml │ │ ├── batBase64.mli │ │ ├── batBig_int.ml │ │ ├── batBig_int.mli │ │ ├── batBigarray.ml │ │ ├── batBigarray.mli │ │ ├── batBitSet.ml │ │ ├── batBitSet.mli │ │ ├── batBool.ml │ │ ├── batBool.mli │ │ ├── batBuffer.ml │ │ ├── batBuffer.mli │ │ ├── batCache.ml │ │ ├── batCache.mli │ │ ├── batCamomile-0.7.ml │ │ ├── batCamomile-0.8.1.ml │ │ ├── batCamomile-0.8.2.ml │ │ ├── batChar.ml │ │ ├── batChar.mli │ │ ├── batCharEncodings.ml │ │ ├── batCharEncodings.mli │ │ ├── batCharParser.ml │ │ ├── batCharParser.mli │ │ ├── batComplex.ml │ │ ├── batComplex.mli │ │ ├── batConcurrent.ml │ │ ├── batConcurrent.mli │ │ ├── batDeque.ml │ │ ├── batDeque.mli │ │ ├── batDigest.ml │ │ ├── batDigest.mli │ │ ├── batDllist.ml │ │ ├── batDllist.mli │ │ ├── batDynArray.ml │ │ ├── batDynArray.mli │ │ ├── batEnum.ml │ │ ├── batEnum.mli │ │ ├── batFile.ml │ │ ├── batFile.mli │ │ ├── batFloat.ml │ │ ├── batFloat.mli │ │ ├── batFormat.ml │ │ ├── batFormat.mli │ │ ├── batGc.ml │ │ ├── batGc.mli │ │ ├── batGenlex.ml │ │ ├── batGenlex.mli │ │ ├── batGlobal.ml │ │ ├── batGlobal.mli │ │ ├── batHashcons.ml │ │ ├── batHashcons.mli │ │ ├── batHashtbl.ml │ │ ├── batHashtbl.mli │ │ ├── batHeap.ml │ │ ├── batHeap.mli │ │ ├── batIMap.ml │ │ ├── batIMap.mli │ │ ├── batIO.ml │ │ ├── batIO.mli │ │ ├── batISet.ml │ │ ├── batISet.mli │ │ ├── batInnerIO.ml │ │ ├── batInnerIO.mli │ │ ├── batInnerWeaktbl.ml │ │ ├── batInnerWeaktbl.mli │ │ ├── batInt.ml │ │ ├── batInt.mli │ │ ├── batInt32.ml │ │ ├── batInt32.mli │ │ ├── batInt64.ml │ │ ├── batInt64.mli │ │ ├── batInterfaces.ml │ │ ├── batInterfaces.mli │ │ ├── batLazyList.ml │ │ ├── batLazyList.mli │ │ ├── batLexing.ml │ │ ├── batLexing.mli │ │ ├── batList.ml │ │ ├── batList.mli │ │ ├── batLogger.ml │ │ ├── batLogger.mli │ │ ├── batMap.ml │ │ ├── batMap.mli │ │ ├── batMarshal.ml │ │ ├── batMarshal.mli │ │ ├── batMonad.ml │ │ ├── batMonad.mli │ │ ├── batMultiPMap.ml │ │ ├── batMultiPMap.mli │ │ ├── batMutex.ml │ │ ├── batMutex.mli │ │ ├── batNativeint.ml │ │ ├── batNativeint.mli │ │ ├── batNum.ml │ │ ├── batNum.mli │ │ ├── batNumber.ml │ │ ├── batNumber.mli │ │ ├── batOo.ml │ │ ├── batOo.mli │ │ ├── batOptParse.ml │ │ ├── batOptParse.mli │ │ ├── batOption.ml │ │ ├── batOption.mli │ │ ├── batPMap.ml │ │ ├── batPMap.mli │ │ ├── batPSet.ml │ │ ├── batPSet.mli │ │ ├── batPair.ml │ │ ├── batPair.mli │ │ ├── batParserCo.ml │ │ ├── batParserCo.mli │ │ ├── batPathGen.ml │ │ ├── batPathGen.mli │ │ ├── batPervasives.ml │ │ ├── batPervasives.mli │ │ ├── batPrint.ml │ │ ├── batPrint.mli │ │ ├── batPrintexc.ml │ │ ├── batPrintexc.mli │ │ ├── batPrintf.ml │ │ ├── batPrintf.mli │ │ ├── batQueue.ml │ │ ├── batQueue.mli │ │ ├── batRMutex.ml │ │ ├── batRMutex.mli │ │ ├── batRandom.ml │ │ ├── batRandom.mli │ │ ├── batRef.ml │ │ ├── batRef.mli │ │ ├── batRefList.ml │ │ ├── batRefList.mli │ │ ├── batResult.ml │ │ ├── batResult.mli │ │ ├── batReturn.ml │ │ ├── batReturn.mli │ │ ├── batRope.ml │ │ ├── batRope.mli │ │ ├── batScanf.ml │ │ ├── batScanf.mli │ │ ├── batSeq.ml │ │ ├── batSeq.mli │ │ ├── batSet.ml │ │ ├── batSet.mli │ │ ├── batSplay.ml │ │ ├── batSplay.mli │ │ ├── batStack.ml │ │ ├── batStack.mli │ │ ├── batStd.ml │ │ ├── batStd.mli │ │ ├── batStr.ml │ │ ├── batStr.mli │ │ ├── batStream.ml │ │ ├── batStream.mli │ │ ├── batString.ml │ │ ├── batString.mli │ │ ├── batSubstring.ml │ │ ├── batSubstring.mli │ │ ├── batSys.ml │ │ ├── batSys.mli │ │ ├── batTuple.ml │ │ ├── batTuple.mli │ │ ├── batUChar.ml │ │ ├── batUChar.mli │ │ ├── batUCharParser.ml │ │ ├── batUCharParser.mli │ │ ├── batUTF8.ml │ │ ├── batUTF8.mli │ │ ├── batUnit.ml │ │ ├── batUnit.mli │ │ ├── batUnix.ml │ │ ├── batUnix.mli │ │ ├── batUref.ml │ │ ├── batUref.mli │ │ ├── batValue_printer.ml │ │ ├── batValue_printer.mli │ │ ├── batVect.ml │ │ ├── batVect.mli │ │ ├── batteries.ml │ │ ├── batteries.mllib │ │ ├── batteries_config.mli │ │ ├── batteries_config.mlp │ │ ├── batteries_help.ml │ │ ├── batteries_help.mli │ │ ├── batteries_print.ml │ │ ├── batteries_uni.ml │ │ ├── batteries_uni.mllib │ │ ├── extlibcompat.ml │ │ └── syntax │ │ │ ├── pa_comprehension │ │ │ ├── README │ │ │ ├── _tags │ │ │ └── pa_comprehension.ml │ │ │ ├── pa_llist │ │ │ ├── _tags │ │ │ └── pa_llist.ml │ │ │ └── pa_strings │ │ │ ├── _tags │ │ │ ├── pa_format.ml │ │ │ ├── pa_strings.ml │ │ │ └── pa_strings.mllib │ ├── syntax.itarget │ └── testsuite │ │ ├── _tags │ │ ├── main.ml │ │ ├── myocamlbuild.ml │ │ ├── test_base64.ml │ │ ├── test_digest.ml │ │ ├── test_dynarray.ml │ │ ├── test_enum.ml │ │ ├── test_file.ml │ │ ├── test_hashcons.ml │ │ ├── test_lazy_pattern.ml │ │ ├── test_map.ml │ │ ├── test_mapfunctors.ml │ │ ├── test_mappable.ml │ │ ├── test_multipmap.ml │ │ ├── test_pmap.ml │ │ ├── test_print.ml │ │ ├── test_set.ml │ │ ├── test_stack.ml │ │ ├── test_std.ml │ │ ├── test_string.ml │ │ ├── test_substring.ml │ │ ├── test_toplevel.ml │ │ ├── test_unix.ml │ │ └── test_vect.ml ├── build_everything.sh ├── configure ├── configure.ac ├── custom_utils │ ├── .depend │ ├── common.ml │ ├── demo │ │ ├── demo.c │ │ ├── input.txt │ │ ├── makefile │ │ └── trace.sh │ ├── egas │ │ ├── apps.ml │ │ ├── branches.ml │ │ ├── common.ml │ │ ├── egas.ml │ │ ├── export.ml │ │ ├── heap.ml │ │ ├── heap.mli │ │ ├── makefile │ │ ├── mylazy.ml │ │ ├── oracle.ml │ │ ├── readme.txt │ │ ├── space.ml │ │ ├── stats.ml │ │ └── test │ │ │ ├── Makefile │ │ │ └── bof1.c │ ├── ilprint.sh │ ├── input.txt │ ├── makefile │ ├── motriage.ml │ ├── prep-slice.sh │ ├── readme.txt │ ├── slicer.ml │ ├── snapshot.format.txt │ ├── tests │ │ ├── input.txt │ │ ├── makefile │ │ ├── old_test.asm │ │ ├── test.asm │ │ ├── test.c │ │ └── trace.sh │ └── triage.sh ├── depcomp ├── doc │ ├── Makefile │ ├── bibtex │ │ ├── biblio.bib │ │ └── misc.bib │ ├── challenges.tex │ ├── chap-developer.tex │ ├── chap-developer │ │ └── overview.tex │ ├── chap-examples.tex │ ├── chap-examples │ │ ├── basic.S │ │ ├── basic.il │ │ ├── basic.o │ │ ├── basic_mod.il │ │ ├── cdg.pdf │ │ ├── cfg.pdf │ │ ├── cfg2.pdf │ │ ├── cfg_simp.pdf │ │ ├── conceval.tex │ │ ├── ddg.pdf │ │ ├── functions.tex │ │ ├── il.tex │ │ ├── test.c │ │ └── traces.tex │ ├── chap-formalism.tex │ ├── chap-formalism │ │ ├── language.tex │ │ ├── operational-semantics-table.tex │ │ ├── operational-semantics.tex │ │ ├── running-example.tex │ │ ├── syntax-table.tex │ │ ├── syntax.tex │ │ ├── typecheck-table.tex │ │ └── typecheck.tex │ ├── chap-intro.tex │ ├── chap-intro │ │ ├── intro.tex │ │ └── overview.tex │ ├── chap-tools.tex │ ├── chap-tools │ │ ├── discussion.tex │ │ ├── iltrans.tex │ │ ├── obtaining.tex │ │ ├── other-utils.tex │ │ ├── overview.tex │ │ └── toil.tex │ ├── code.sty │ ├── credits.tex │ ├── fig │ │ ├── Makefile │ │ ├── add-shl.dot │ │ ├── add-shl.pdf │ │ ├── components.fig │ │ ├── components.pdf │ │ ├── memvsarray-1.eps │ │ ├── memvsarray-1.fig │ │ ├── memvsarray-1.pdf │ │ ├── memvsarray-2.eps │ │ ├── memvsarray-2.fig │ │ ├── memvsarray-2.pdf │ │ ├── running-example-patch.eps │ │ ├── running-example-patch.fig │ │ ├── running-example-patch.pdf │ │ ├── running-example.eps │ │ ├── running-example.fig │ │ ├── running-example.pdf │ │ ├── toolchain.fig │ │ └── toolchain.pdf │ ├── goals.tex │ ├── just-formals │ │ ├── Makefile │ │ ├── code.sty │ │ ├── djb.sty │ │ ├── lecnotes.sty │ │ ├── proof.sty │ │ ├── shortcuts.sty │ │ └── vine.tex │ ├── lecnotes.sty │ ├── main.tex │ ├── operational-semantics-functions-table.tex │ ├── proof.sty │ ├── related.tex │ ├── running-asm.tex │ ├── running-il.tex │ └── shortcuts.sty ├── gpl-2.0.txt ├── install-sh ├── libasmir │ ├── Makefile.am │ ├── Makefile.in │ ├── apps │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── ir_printer.cpp │ │ ├── ir_printer.h │ │ ├── lifttrace.cpp │ │ └── print-ir.cpp │ ├── config.h.in │ ├── include │ │ ├── asm_program.h │ │ ├── common.h │ │ ├── exp.h │ │ ├── info.h │ │ ├── irtoir-internal.h │ │ ├── irtoir.h │ │ ├── irvisitor.h │ │ ├── jumpbuf.h │ │ ├── stmt.h │ │ ├── translate.h │ │ └── vexmem.h │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── asm_program.c │ │ ├── irtoir-arm.cpp │ │ ├── irtoir-i386.cpp │ │ ├── irtoir.cpp │ │ ├── irtoir_c.cpp │ │ ├── llvm.cpp │ │ ├── memory_data.cpp │ │ ├── ocaml_helpers.c │ │ ├── old_ir │ │ ├── exp.cpp │ │ ├── exp_c.cpp │ │ ├── stmt.cpp │ │ └── stmt_c.cpp │ │ ├── symbols.c │ │ ├── traces │ │ ├── pin_common.h │ │ ├── pin_frame.cpp │ │ ├── pin_frame.h │ │ ├── pin_syscalls.h │ │ ├── pin_taint.cpp │ │ ├── pin_taint.h │ │ ├── pin_trace.cpp │ │ ├── pin_trace.h │ │ ├── readtrace.cpp │ │ ├── readtrace.h │ │ ├── reg_mapping.cpp │ │ ├── reg_mapping.h │ │ ├── reg_mapping_pin.cpp │ │ ├── reg_mapping_pin.h │ │ ├── trace.cpp │ │ ├── trace.h │ │ ├── trace_v40.cpp │ │ ├── trace_v40.h │ │ ├── trace_v41.cpp │ │ ├── trace_v41.h │ │ ├── trace_v50.cpp │ │ ├── trace_v50.h │ │ ├── trace_vXX.h │ │ ├── winsyscalls.cpp │ │ └── winsyscalls.h │ │ ├── vexir.c │ │ └── vexmem.c ├── libtracewrap │ ├── Makefile.in │ └── libtrace │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── autom4te.cache │ │ ├── output.0 │ │ ├── output.1 │ │ ├── requests │ │ ├── traces.0 │ │ └── traces.1 │ │ ├── configure │ │ ├── configure.ac │ │ ├── m4 │ │ └── ocaml.m4 │ │ ├── piqi-files │ │ ├── Makefile │ │ ├── blockframe.piqi │ │ ├── callframe.piqi │ │ ├── exceptionframe.piqi │ │ ├── frame.piqi │ │ ├── frame.piqi.pb.cc │ │ ├── frame.piqi.pb.h │ │ ├── frame_piqi.ml │ │ ├── frame_piqi_ext.ml │ │ ├── keyframe.piqi │ │ ├── metadataframe.piqi │ │ ├── modloadframe.piqi │ │ ├── retframe.piqi │ │ ├── stdframe.piqi │ │ ├── syscallframe.piqi │ │ ├── taintintroframe.piqi │ │ └── types.piqi │ │ ├── piqi │ │ ├── Makefile │ │ └── piqi │ │ │ ├── AUTHORS │ │ │ ├── CHANGES │ │ │ ├── INSTALL │ │ │ ├── INSTALL.erlang │ │ │ ├── INSTALL.ocaml │ │ │ ├── INSTALL.windows │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── bin │ │ │ ├── piqi │ │ │ ├── piqic │ │ │ ├── piqic-erlang-ext │ │ │ ├── piqic-erlang-rpc │ │ │ └── piqicc │ │ │ ├── configure │ │ │ ├── deps │ │ │ ├── Makefile │ │ │ ├── easy-format-1.0.0 │ │ │ │ ├── Changes │ │ │ │ ├── LICENSE │ │ │ │ ├── META │ │ │ │ ├── META.tpl │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── TODO │ │ │ │ ├── easy_format.ml │ │ │ │ ├── easy_format.mli │ │ │ │ ├── examples │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── jsonpp.ml │ │ │ │ │ └── sample.json │ │ │ │ ├── lambda_example.ml │ │ │ │ ├── simple_example.ml │ │ │ │ ├── test_easy_format.ml │ │ │ │ └── test_format.ml │ │ │ ├── ocaml-make-release-6.29.3 │ │ │ │ ├── Changelog │ │ │ │ ├── LICENSE │ │ │ │ ├── OCamlMakefile │ │ │ │ └── README.txt │ │ │ ├── ulex-1.1 │ │ │ │ ├── CHANGES │ │ │ │ ├── LICENSE │ │ │ │ ├── META │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── _tags │ │ │ │ ├── cset.ml │ │ │ │ ├── custom_ulexing.ml │ │ │ │ ├── myocamlbuild.ml │ │ │ │ ├── pa_ulex.ml │ │ │ │ ├── test.ml │ │ │ │ ├── ulex.ml │ │ │ │ ├── ulex.mli │ │ │ │ ├── ulexing.ml │ │ │ │ ├── ulexing.mli │ │ │ │ ├── utf16.ml │ │ │ │ ├── utf16.mli │ │ │ │ ├── utf8.ml │ │ │ │ ├── utf8.mli │ │ │ │ └── utf8_test.ml │ │ │ └── xmlm-1.1.1 │ │ │ │ ├── CHANGES │ │ │ │ ├── META │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── xmlm.ml │ │ │ │ └── xmlm.mli │ │ │ ├── doc │ │ │ ├── README.md │ │ │ ├── encodings.md │ │ │ ├── erlang.md │ │ │ ├── getopt.md │ │ │ ├── ocaml.md │ │ │ ├── piq.md │ │ │ ├── piqi-rpc.md │ │ │ ├── piqi.md │ │ │ ├── protobuf.md │ │ │ └── tools.md │ │ │ ├── editors │ │ │ └── vim │ │ │ │ └── piq.vim │ │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── addressbook.piq │ │ │ ├── addressbook.proto │ │ │ ├── bool.piq │ │ │ ├── comment.piq │ │ │ ├── complex.piq │ │ │ ├── complex.piqi │ │ │ ├── def.piqi │ │ │ ├── empty.piq │ │ │ ├── empty.piqi │ │ │ ├── erlang-custom-types │ │ │ │ ├── Makefile │ │ │ │ ├── example.piqi │ │ │ │ └── piqirun_custom.erl │ │ │ ├── erlang │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.erlang │ │ │ │ ├── Makefile.erlang_ext │ │ │ │ ├── README │ │ │ │ ├── add_person │ │ │ │ ├── add_person.erl │ │ │ │ ├── addressbook.erlang.piqi │ │ │ │ ├── addressbook.piq │ │ │ │ ├── addressbook.proto │ │ │ │ ├── addressbook.proto.piqi │ │ │ │ ├── io_json_xml_pb │ │ │ │ ├── io_json_xml_pb.erl │ │ │ │ ├── list_people │ │ │ │ ├── list_people.erl │ │ │ │ └── test │ │ │ ├── flag.piq │ │ │ ├── float.piq │ │ │ ├── function.piq │ │ │ ├── function.piqi │ │ │ ├── getopt.piqi │ │ │ ├── int.piq │ │ │ ├── list.piq │ │ │ ├── ocaml-custom-types │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── example.piqi │ │ │ │ ├── piqirun_custom.ml │ │ │ │ └── skvl.piqi │ │ │ ├── ocaml-piq-config │ │ │ │ ├── Makefile │ │ │ │ ├── OCamlMakefile │ │ │ │ ├── README │ │ │ │ ├── build.sh │ │ │ │ ├── config.ml │ │ │ │ ├── config.piq │ │ │ │ └── config.piqi │ │ │ ├── ocaml │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.ocaml │ │ │ │ ├── Makefile.ocaml_ext │ │ │ │ ├── README │ │ │ │ ├── add_person.ml │ │ │ │ ├── addressbook.ocaml.piqi │ │ │ │ ├── addressbook.piq │ │ │ │ ├── addressbook.proto │ │ │ │ ├── addressbook.proto.piqi │ │ │ │ ├── io_json_xml_pb.ml │ │ │ │ ├── list_people.ml │ │ │ │ └── test │ │ │ ├── person.piq │ │ │ ├── person.piqi │ │ │ ├── piq-format.piqi │ │ │ ├── piq-text.piq │ │ │ ├── piq-word.piq │ │ │ ├── piqi-any.piq │ │ │ ├── record-variant-list.piq │ │ │ ├── record-variant-list.piqi │ │ │ ├── string.piq │ │ │ ├── test_getopt │ │ │ ├── test_piq │ │ │ ├── test_piqi │ │ │ └── test_piqi_proto │ │ │ ├── make │ │ │ ├── Makefile.dirs │ │ │ ├── Makefile.erlang │ │ │ ├── Makefile.ocaml │ │ │ ├── OCamlMakefile │ │ │ ├── make_escript │ │ │ └── piqi-fix-libinstall │ │ │ ├── piqi-camlp4 │ │ │ ├── 3.10 │ │ │ ├── 3.11 │ │ │ │ ├── pa_labelscope.ml │ │ │ │ └── pa_openin.ml │ │ │ ├── 3.12 │ │ │ │ ├── pa_labelscope.ml │ │ │ │ └── pa_openin.ml │ │ │ ├── 4.00 │ │ │ ├── META │ │ │ └── Makefile │ │ │ ├── piqi-erlang │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── include │ │ │ │ ├── piqi_piqi.hrl │ │ │ │ ├── piqi_rpc_piqi.hrl │ │ │ │ ├── piqi_tools.hrl │ │ │ │ ├── piqi_tools_piqi.hrl │ │ │ │ └── piqirun.hrl │ │ │ ├── piqic-erlang-ext │ │ │ │ └── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.piqi │ │ │ │ ├── debug.hrl │ │ │ │ ├── piqi-rpc.piqi │ │ │ │ ├── piqi-tools.piqi │ │ │ │ ├── piqi.app.src │ │ │ │ ├── piqi.erl │ │ │ │ ├── piqi.piqi │ │ │ │ ├── piqi_app.erl │ │ │ │ ├── piqi_sup.erl │ │ │ │ ├── piqi_tools.erl │ │ │ │ ├── piqic_erlang_ext.erl │ │ │ │ ├── piqirun.erl │ │ │ │ ├── piqirun_ext.erl │ │ │ │ ├── piqirun_props.erl │ │ │ │ └── piqirun_tests.erl │ │ │ ├── piqi-rpc │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── examples │ │ │ │ ├── Makefile │ │ │ │ ├── addressbook │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── addressbook.erl │ │ │ │ │ ├── addressbook.piqi │ │ │ │ │ ├── client.sh │ │ │ │ │ ├── person.piq │ │ │ │ │ ├── person.piqi │ │ │ │ │ └── server.sh │ │ │ │ └── process_info │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── client.sh │ │ │ │ │ ├── process_info.piqi │ │ │ │ │ ├── process_info_example.erl │ │ │ │ │ └── server.sh │ │ │ ├── piqic-erlang-rpc │ │ │ │ └── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── debug.hrl │ │ │ │ ├── piqi_rpc.app.src │ │ │ │ ├── piqi_rpc.erl │ │ │ │ ├── piqi_rpc.hrl │ │ │ │ ├── piqi_rpc_app.erl │ │ │ │ ├── piqi_rpc_http.erl │ │ │ │ ├── piqi_rpc_monitor.erl │ │ │ │ ├── piqi_rpc_runtime.erl │ │ │ │ ├── piqi_rpc_sup.erl │ │ │ │ ├── piqi_rpc_webmachine_resource.erl │ │ │ │ └── piqic_erlang_rpc.erl │ │ │ ├── piqi-tools │ │ │ ├── Makefile │ │ │ ├── descriptor.ocaml.piqi │ │ │ ├── descriptor.proto │ │ │ ├── descriptor.proto.piqi │ │ │ ├── piqi-rpc.piqi │ │ │ ├── piqi-tools.piqi │ │ │ ├── piqi_call.ml │ │ │ ├── piqi_cc.ml │ │ │ ├── piqi_check.ml │ │ │ ├── piqi_compile.ml │ │ │ ├── piqi_convert_cmd.ml │ │ │ ├── piqi_expand.ml │ │ │ ├── piqi_getopt_cmd.ml │ │ │ ├── piqi_http.ml │ │ │ ├── piqi_json_pp.ml │ │ │ ├── piqi_light_cmd.ml │ │ │ ├── piqi_of_proto.ml │ │ │ ├── piqi_pp_cmd.ml │ │ │ ├── piqi_rpc.ml │ │ │ ├── piqi_run.ml │ │ │ ├── piqi_server.ml │ │ │ └── piqi_to_proto.ml │ │ │ ├── piqi │ │ │ ├── Makefile │ │ │ ├── piqi-lang.piqi │ │ │ ├── piqi-rpc.piqi │ │ │ ├── piqi.getopt.piqi │ │ │ ├── piqi.json.piqi │ │ │ ├── piqi.piq.piqi │ │ │ ├── piqi.piqi │ │ │ └── piqi.protobuf.piqi │ │ │ ├── piqic │ │ │ ├── Makefile │ │ │ ├── piqi-impl.piqi │ │ │ ├── piqi-lang.ocaml.piqi │ │ │ ├── piqi-lang.piqi │ │ │ ├── piqi.erlang-extensions.piqi │ │ │ ├── piqi.erlang.piqi │ │ │ ├── piqi.ocaml-extensions.piqi │ │ │ ├── piqi.ocaml.piqi │ │ │ ├── piqi.piqi │ │ │ ├── piqic_common.ml │ │ │ ├── piqic_common_ext.ml │ │ │ ├── piqic_erlang.ml │ │ │ ├── piqic_erlang_defaults.ml │ │ │ ├── piqic_erlang_in.ml │ │ │ ├── piqic_erlang_out.ml │ │ │ ├── piqic_erlang_types.ml │ │ │ ├── piqic_expand.ml │ │ │ ├── piqic_ocaml.ml │ │ │ ├── piqic_ocaml_defaults.ml │ │ │ ├── piqic_ocaml_ext.ml │ │ │ ├── piqic_ocaml_in.ml │ │ │ ├── piqic_ocaml_out.ml │ │ │ ├── piqic_ocaml_types.ml │ │ │ └── piqic_run.ml │ │ │ ├── piqicc │ │ │ ├── Makefile │ │ │ ├── boot │ │ │ │ └── piqi_lang_piqi.ml │ │ │ ├── piqi-impl.piqi │ │ │ ├── piqi-lang.piqi │ │ │ ├── piqi.piqi │ │ │ ├── piqicc.ml │ │ │ └── piqicc_run.ml │ │ │ ├── piqilib │ │ │ ├── META │ │ │ ├── Makefile │ │ │ ├── Makefile.piqi_common │ │ │ ├── piq.ml │ │ │ ├── piq_ast.ml │ │ │ ├── piq_gen.ml │ │ │ ├── piq_lexer.ml │ │ │ ├── piq_parser.ml │ │ │ ├── piqi-impl.piqi │ │ │ ├── piqi-lang.piqi │ │ │ ├── piqi.ml │ │ │ ├── piqi.piqi │ │ │ ├── piqi_base64.ml │ │ │ ├── piqi_c.idl │ │ │ ├── piqi_c.ml │ │ │ ├── piqi_c.mli │ │ │ ├── piqi_c_impl.c │ │ │ ├── piqi_common.ml │ │ │ ├── piqi_config.ml │ │ │ ├── piqi_convert.ml │ │ │ ├── piqi_db.ml │ │ │ ├── piqi_file.ml │ │ │ ├── piqi_getopt.ml │ │ │ ├── piqi_graph.ml │ │ │ ├── piqi_iolist.ml │ │ │ ├── piqi_json.ml │ │ │ ├── piqi_json_gen.ml │ │ │ ├── piqi_json_parser.mll │ │ │ ├── piqi_json_type.mli │ │ │ ├── piqi_light.ml │ │ │ ├── piqi_main.ml │ │ │ ├── piqi_name.ml │ │ │ ├── piqi_objstore.ml │ │ │ ├── piqi_pp.ml │ │ │ ├── piqi_protobuf.ml │ │ │ ├── piqi_util.ml │ │ │ ├── piqi_xml.ml │ │ │ ├── piqi_xml_type.mli │ │ │ ├── piqirun_ext.ml │ │ │ ├── piqirun_ext.mli │ │ │ ├── piqloc.ml │ │ │ ├── piqobj.ml │ │ │ ├── piqobj_common.ml │ │ │ ├── piqobj_of_json.ml │ │ │ ├── piqobj_of_piq.ml │ │ │ ├── piqobj_of_protobuf.ml │ │ │ ├── piqobj_of_xml.ml │ │ │ ├── piqobj_to_json.ml │ │ │ ├── piqobj_to_piq.ml │ │ │ ├── piqobj_to_protobuf.ml │ │ │ └── piqobj_to_xml.ml │ │ │ ├── piqirun-ocaml │ │ │ ├── META │ │ │ ├── Makefile │ │ │ ├── piqirun.ml │ │ │ ├── test.ml │ │ │ └── test.ocaml │ │ │ ├── setenv-mingw.sh │ │ │ ├── setenv.sh │ │ │ ├── src │ │ │ ├── README │ │ │ ├── piqi_src.app.src │ │ │ └── piqi_src.erl │ │ │ └── tests │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── boot_proto2piqi │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── descriptor.proto │ │ │ ├── main.cc │ │ │ ├── proto2piqi.cc │ │ │ └── proto2piqi.h │ │ │ ├── cpp │ │ │ ├── Makefile │ │ │ ├── Makefile.cpp │ │ │ ├── README │ │ │ ├── piqi.piqi │ │ │ └── test.cpp │ │ │ ├── erlang_addressbook │ │ │ ├── erlang_import │ │ │ ├── Makefile │ │ │ ├── first.piqi │ │ │ ├── piqi-erlang │ │ │ └── second.piqi │ │ │ ├── erlang_misc │ │ │ ├── Makefile │ │ │ └── empty-record.piqi │ │ │ ├── erlang_packed │ │ │ ├── Makefile │ │ │ ├── Makefile.erlang │ │ │ ├── packed-nocompat.piqi │ │ │ ├── packed.piqi │ │ │ ├── piqi-erlang │ │ │ ├── test │ │ │ ├── test-all.piq │ │ │ └── test.erl │ │ │ ├── erlang_perf │ │ │ ├── Makefile │ │ │ ├── Makefile.erlang │ │ │ ├── README │ │ │ ├── addressbook.erlang.piqi │ │ │ ├── addressbook.piq │ │ │ ├── addressbook.proto.piqi │ │ │ ├── test │ │ │ └── test.erl │ │ │ ├── erlang_piqi │ │ │ ├── Makefile │ │ │ ├── Makefile.erlang │ │ │ ├── README │ │ │ ├── piqi.piqi │ │ │ ├── test │ │ │ └── test.erl │ │ │ ├── examples │ │ │ ├── ocaml_addressbook │ │ │ ├── ocaml_array │ │ │ ├── Makefile │ │ │ ├── Makefile.ocaml │ │ │ ├── packed.piqi │ │ │ ├── test-all.piq │ │ │ └── test.ml │ │ │ ├── ocaml_custom_types │ │ │ ├── ocaml_misc │ │ │ ├── Ad.piqi │ │ │ ├── Makefile │ │ │ ├── P.piqi │ │ │ ├── Protocol.piqi │ │ │ ├── empty-record.piqi │ │ │ ├── variant-1.piqi │ │ │ └── variant-2.piqi │ │ │ ├── ocaml_packed │ │ │ ├── Makefile │ │ │ ├── Makefile.ocaml │ │ │ ├── packed-array.piqi │ │ │ ├── packed-nocompat.piqi │ │ │ ├── packed.piqi │ │ │ ├── test-all.piq │ │ │ ├── test_packed.ml │ │ │ └── test_packed_array.ml │ │ │ ├── ocaml_perf │ │ │ ├── Makefile │ │ │ ├── Makefile.ocaml │ │ │ ├── README │ │ │ ├── addressbook.ocaml.piqi │ │ │ ├── addressbook.piq │ │ │ ├── addressbook.proto.piqi │ │ │ ├── piqi.piqi │ │ │ └── test.ml │ │ │ ├── ocaml_piq_config │ │ │ ├── Makefile │ │ │ └── ocaml-piq-config │ │ │ ├── ocaml_piqi │ │ │ ├── Makefile │ │ │ ├── Makefile.ocaml │ │ │ ├── README │ │ │ ├── piqi.ocaml.piqi │ │ │ ├── piqi.piqi │ │ │ └── test.ml │ │ │ ├── ocaml_riak_pb │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── riak.proto │ │ │ ├── riak_kv.ocaml.piqi │ │ │ ├── riak_kv.proto │ │ │ └── riak_search.proto │ │ │ ├── piqi_compile │ │ │ └── Makefile │ │ │ ├── piqi_misc │ │ │ ├── Makefile │ │ │ ├── piqast.piqi │ │ │ ├── piqobj.piqi │ │ │ └── piqtype-core.piqi │ │ │ ├── piqi_packed │ │ │ ├── Makefile │ │ │ ├── packed-nocompat.piqi │ │ │ ├── packed.piqi │ │ │ ├── test │ │ │ ├── test-all.piq │ │ │ └── test-simple.piq │ │ │ ├── piqi_proto │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── test │ │ │ ├── piqi_proto1 │ │ │ ├── Ad.piqi │ │ │ ├── Makefile │ │ │ ├── T.piqi │ │ │ ├── Topic.piqi │ │ │ ├── ea.piqi │ │ │ ├── ea1.piqi │ │ │ └── test │ │ │ ├── piqi_server │ │ │ ├── Makefile │ │ │ └── test_piqi_server │ │ │ └── self_spec │ │ ├── protobuf │ │ ├── CHANGES.txt │ │ ├── CONTRIBUTORS.txt │ │ ├── COPYING.txt │ │ ├── INSTALL.txt │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README.txt │ │ ├── aclocal.m4 │ │ ├── autogen.sh │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── editors │ │ │ ├── README.txt │ │ │ ├── proto.vim │ │ │ └── protobuf-mode.el │ │ ├── examples │ │ │ ├── AddPerson.java │ │ │ ├── ListPeople.java │ │ │ ├── Makefile │ │ │ ├── README.txt │ │ │ ├── add_person.cc │ │ │ ├── add_person.py │ │ │ ├── addressbook.proto │ │ │ ├── list_people.cc │ │ │ └── list_people.py │ │ ├── generate_descriptor_proto.sh │ │ ├── gtest │ │ │ ├── CHANGES │ │ │ ├── CONTRIBUTORS │ │ │ ├── COPYING │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── autom4te.cache │ │ │ │ ├── output.0 │ │ │ │ ├── output.1 │ │ │ │ ├── requests │ │ │ │ ├── traces.0 │ │ │ │ └── traces.1 │ │ │ ├── build-aux │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ └── missing │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ └── gtest.m4 │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ ├── msvc │ │ │ │ ├── gtest-md.sln │ │ │ │ ├── gtest-md.vcproj │ │ │ │ ├── gtest.sln │ │ │ │ ├── gtest.vcproj │ │ │ │ ├── gtest_main-md.vcproj │ │ │ │ ├── gtest_main.vcproj │ │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ │ ├── gtest_prod_test.vcproj │ │ │ │ ├── gtest_unittest-md.vcproj │ │ │ │ └── gtest_unittest.vcproj │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ ├── scons │ │ │ │ ├── SConscript │ │ │ │ ├── SConstruct │ │ │ │ └── SConstruct.common │ │ │ ├── scripts │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ └── test │ │ │ │ │ └── Makefile │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ ├── test │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ ├── gtest-message_test.cc │ │ │ │ ├── gtest-options_test.cc │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-port_test.cc │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ ├── gtest_color_test.py │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_nc.cc │ │ │ │ ├── gtest_nc_test.py │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_output_test.py │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ ├── gtest_output_test_golden_win.txt │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── install-sh │ │ ├── java │ │ │ ├── README.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── AbstractMessage.java │ │ │ │ │ ├── AbstractMessageLite.java │ │ │ │ │ ├── BlockingRpcChannel.java │ │ │ │ │ ├── BlockingService.java │ │ │ │ │ ├── ByteString.java │ │ │ │ │ ├── CodedInputStream.java │ │ │ │ │ ├── CodedOutputStream.java │ │ │ │ │ ├── Descriptors.java │ │ │ │ │ ├── DynamicMessage.java │ │ │ │ │ ├── ExtensionRegistry.java │ │ │ │ │ ├── ExtensionRegistryLite.java │ │ │ │ │ ├── FieldSet.java │ │ │ │ │ ├── GeneratedMessage.java │ │ │ │ │ ├── GeneratedMessageLite.java │ │ │ │ │ ├── Internal.java │ │ │ │ │ ├── InvalidProtocolBufferException.java │ │ │ │ │ ├── LazyStringArrayList.java │ │ │ │ │ ├── LazyStringList.java │ │ │ │ │ ├── Message.java │ │ │ │ │ ├── MessageLite.java │ │ │ │ │ ├── MessageLiteOrBuilder.java │ │ │ │ │ ├── MessageOrBuilder.java │ │ │ │ │ ├── ProtocolMessageEnum.java │ │ │ │ │ ├── RepeatedFieldBuilder.java │ │ │ │ │ ├── RpcCallback.java │ │ │ │ │ ├── RpcChannel.java │ │ │ │ │ ├── RpcController.java │ │ │ │ │ ├── RpcUtil.java │ │ │ │ │ ├── Service.java │ │ │ │ │ ├── ServiceException.java │ │ │ │ │ ├── SingleFieldBuilder.java │ │ │ │ │ ├── SmallSortedMap.java │ │ │ │ │ ├── TextFormat.java │ │ │ │ │ ├── UninitializedMessageException.java │ │ │ │ │ ├── UnknownFieldSet.java │ │ │ │ │ ├── UnmodifiableLazyStringList.java │ │ │ │ │ └── WireFormat.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── AbstractMessageTest.java │ │ │ │ ├── CodedInputStreamTest.java │ │ │ │ ├── CodedOutputStreamTest.java │ │ │ │ ├── DeprecatedFieldTest.java │ │ │ │ ├── DescriptorsTest.java │ │ │ │ ├── DynamicMessageTest.java │ │ │ │ ├── ForceFieldBuildersPreRun.java │ │ │ │ ├── GeneratedMessageTest.java │ │ │ │ ├── LazyStringArrayListTest.java │ │ │ │ ├── LazyStringEndToEndTest.java │ │ │ │ ├── LiteTest.java │ │ │ │ ├── MessageTest.java │ │ │ │ ├── NestedBuildersTest.java │ │ │ │ ├── RepeatedFieldBuilderTest.java │ │ │ │ ├── ServiceTest.java │ │ │ │ ├── SingleFieldBuilderTest.java │ │ │ │ ├── SmallSortedMapTest.java │ │ │ │ ├── TestBadIdentifiers.java │ │ │ │ ├── TestUtil.java │ │ │ │ ├── TextFormatTest.java │ │ │ │ ├── UnknownFieldSetTest.java │ │ │ │ ├── UnmodifiableLazyStringListTest.java │ │ │ │ ├── WireFormatTest.java │ │ │ │ ├── multiple_files_test.proto │ │ │ │ ├── nested_builders_test.proto │ │ │ │ ├── nested_extension.proto │ │ │ │ ├── nested_extension_lite.proto │ │ │ │ ├── non_nested_extension.proto │ │ │ │ ├── non_nested_extension_lite.proto │ │ │ │ └── test_bad_identifiers.proto │ │ ├── ltmain.sh │ │ ├── m4 │ │ │ ├── ac_system_extensions.m4 │ │ │ ├── acx_check_suncc.m4 │ │ │ ├── acx_pthread.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ ├── lt~obsolete.m4 │ │ │ └── stl_hash.m4 │ │ ├── missing │ │ ├── protobuf-lite.pc.in │ │ ├── protobuf.pc.in │ │ ├── python │ │ │ ├── README.txt │ │ │ ├── ez_setup.py │ │ │ ├── google │ │ │ │ ├── __init__.py │ │ │ │ └── protobuf │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── descriptor.py │ │ │ │ │ ├── internal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api_implementation.py │ │ │ │ │ ├── containers.py │ │ │ │ │ ├── cpp_message.py │ │ │ │ │ ├── decoder.py │ │ │ │ │ ├── descriptor_test.py │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── generator_test.py │ │ │ │ │ ├── message_listener.py │ │ │ │ │ ├── message_test.py │ │ │ │ │ ├── more_extensions.proto │ │ │ │ │ ├── more_messages.proto │ │ │ │ │ ├── python_message.py │ │ │ │ │ ├── reflection_test.py │ │ │ │ │ ├── service_reflection_test.py │ │ │ │ │ ├── test_util.py │ │ │ │ │ ├── text_format_test.py │ │ │ │ │ ├── type_checkers.py │ │ │ │ │ ├── wire_format.py │ │ │ │ │ └── wire_format_test.py │ │ │ │ │ ├── message.py │ │ │ │ │ ├── pyext │ │ │ │ │ ├── python-proto2.cc │ │ │ │ │ ├── python_descriptor.cc │ │ │ │ │ ├── python_descriptor.h │ │ │ │ │ ├── python_protobuf.cc │ │ │ │ │ └── python_protobuf.h │ │ │ │ │ ├── reflection.py │ │ │ │ │ ├── service.py │ │ │ │ │ ├── service_reflection.py │ │ │ │ │ └── text_format.py │ │ │ ├── mox.py │ │ │ ├── setup.py │ │ │ └── stubout.py │ │ ├── src │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── google │ │ │ │ └── protobuf │ │ │ │ ├── compiler │ │ │ │ ├── code_generator.cc │ │ │ │ ├── code_generator.h │ │ │ │ ├── command_line_interface.cc │ │ │ │ ├── command_line_interface.h │ │ │ │ ├── command_line_interface_unittest.cc │ │ │ │ ├── cpp │ │ │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ │ │ ├── cpp_enum.cc │ │ │ │ │ ├── cpp_enum.h │ │ │ │ │ ├── cpp_enum_field.cc │ │ │ │ │ ├── cpp_enum_field.h │ │ │ │ │ ├── cpp_extension.cc │ │ │ │ │ ├── cpp_extension.h │ │ │ │ │ ├── cpp_field.cc │ │ │ │ │ ├── cpp_field.h │ │ │ │ │ ├── cpp_file.cc │ │ │ │ │ ├── cpp_file.h │ │ │ │ │ ├── cpp_generator.cc │ │ │ │ │ ├── cpp_generator.h │ │ │ │ │ ├── cpp_helpers.cc │ │ │ │ │ ├── cpp_helpers.h │ │ │ │ │ ├── cpp_message.cc │ │ │ │ │ ├── cpp_message.h │ │ │ │ │ ├── cpp_message_field.cc │ │ │ │ │ ├── cpp_message_field.h │ │ │ │ │ ├── cpp_plugin_unittest.cc │ │ │ │ │ ├── cpp_primitive_field.cc │ │ │ │ │ ├── cpp_primitive_field.h │ │ │ │ │ ├── cpp_service.cc │ │ │ │ │ ├── cpp_service.h │ │ │ │ │ ├── cpp_string_field.cc │ │ │ │ │ ├── cpp_string_field.h │ │ │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ │ │ └── cpp_unittest.cc │ │ │ │ ├── importer.cc │ │ │ │ ├── importer.h │ │ │ │ ├── importer_unittest.cc │ │ │ │ ├── java │ │ │ │ │ ├── java_enum.cc │ │ │ │ │ ├── java_enum.h │ │ │ │ │ ├── java_enum_field.cc │ │ │ │ │ ├── java_enum_field.h │ │ │ │ │ ├── java_extension.cc │ │ │ │ │ ├── java_extension.h │ │ │ │ │ ├── java_field.cc │ │ │ │ │ ├── java_field.h │ │ │ │ │ ├── java_file.cc │ │ │ │ │ ├── java_file.h │ │ │ │ │ ├── java_generator.cc │ │ │ │ │ ├── java_generator.h │ │ │ │ │ ├── java_helpers.cc │ │ │ │ │ ├── java_helpers.h │ │ │ │ │ ├── java_message.cc │ │ │ │ │ ├── java_message.h │ │ │ │ │ ├── java_message_field.cc │ │ │ │ │ ├── java_message_field.h │ │ │ │ │ ├── java_plugin_unittest.cc │ │ │ │ │ ├── java_primitive_field.cc │ │ │ │ │ ├── java_primitive_field.h │ │ │ │ │ ├── java_service.cc │ │ │ │ │ ├── java_service.h │ │ │ │ │ ├── java_string_field.cc │ │ │ │ │ └── java_string_field.h │ │ │ │ ├── main.cc │ │ │ │ ├── mock_code_generator.cc │ │ │ │ ├── mock_code_generator.h │ │ │ │ ├── package_info.h │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ ├── parser_unittest.cc │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.pb.cc │ │ │ │ ├── plugin.pb.h │ │ │ │ ├── plugin.proto │ │ │ │ ├── python │ │ │ │ │ ├── python_generator.cc │ │ │ │ │ ├── python_generator.h │ │ │ │ │ └── python_plugin_unittest.cc │ │ │ │ ├── subprocess.cc │ │ │ │ ├── subprocess.h │ │ │ │ ├── test_plugin.cc │ │ │ │ ├── zip_output_unittest.sh │ │ │ │ ├── zip_writer.cc │ │ │ │ └── zip_writer.h │ │ │ │ ├── descriptor.cc │ │ │ │ ├── descriptor.h │ │ │ │ ├── descriptor.pb.cc │ │ │ │ ├── descriptor.pb.h │ │ │ │ ├── descriptor.proto │ │ │ │ ├── descriptor_database.cc │ │ │ │ ├── descriptor_database.h │ │ │ │ ├── descriptor_database_unittest.cc │ │ │ │ ├── descriptor_unittest.cc │ │ │ │ ├── dynamic_message.cc │ │ │ │ ├── dynamic_message.h │ │ │ │ ├── dynamic_message_unittest.cc │ │ │ │ ├── extension_set.cc │ │ │ │ ├── extension_set.h │ │ │ │ ├── extension_set_heavy.cc │ │ │ │ ├── extension_set_unittest.cc │ │ │ │ ├── generated_message_reflection.cc │ │ │ │ ├── generated_message_reflection.h │ │ │ │ ├── generated_message_reflection_unittest.cc │ │ │ │ ├── generated_message_util.cc │ │ │ │ ├── generated_message_util.h │ │ │ │ ├── io │ │ │ │ ├── coded_stream.cc │ │ │ │ ├── coded_stream.h │ │ │ │ ├── coded_stream_inl.h │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ ├── gzip_stream.cc │ │ │ │ ├── gzip_stream.h │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ ├── package_info.h │ │ │ │ ├── printer.cc │ │ │ │ ├── printer.h │ │ │ │ ├── printer_unittest.cc │ │ │ │ ├── tokenizer.cc │ │ │ │ ├── tokenizer.h │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ ├── zero_copy_stream.h │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ ├── lite_unittest.cc │ │ │ │ ├── message.cc │ │ │ │ ├── message.h │ │ │ │ ├── message_lite.cc │ │ │ │ ├── message_lite.h │ │ │ │ ├── message_unittest.cc │ │ │ │ ├── package_info.h │ │ │ │ ├── reflection_ops.cc │ │ │ │ ├── reflection_ops.h │ │ │ │ ├── reflection_ops_unittest.cc │ │ │ │ ├── repeated_field.cc │ │ │ │ ├── repeated_field.h │ │ │ │ ├── repeated_field_unittest.cc │ │ │ │ ├── service.cc │ │ │ │ ├── service.h │ │ │ │ ├── stubs │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── common_unittest.cc │ │ │ │ ├── hash.h │ │ │ │ ├── map-util.h │ │ │ │ ├── once.cc │ │ │ │ ├── once.h │ │ │ │ ├── once_unittest.cc │ │ │ │ ├── stl_util-inl.h │ │ │ │ ├── structurally_valid.cc │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ ├── strutil.cc │ │ │ │ ├── strutil.h │ │ │ │ ├── strutil_unittest.cc │ │ │ │ ├── substitute.cc │ │ │ │ └── substitute.h │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ ├── test_util_lite.cc │ │ │ │ ├── test_util_lite.h │ │ │ │ ├── testdata │ │ │ │ ├── golden_message │ │ │ │ ├── golden_packed_fields_message │ │ │ │ ├── text_format_unittest_data.txt │ │ │ │ └── text_format_unittest_extensions_data.txt │ │ │ │ ├── testing │ │ │ │ ├── file.cc │ │ │ │ ├── file.h │ │ │ │ ├── googletest.cc │ │ │ │ ├── googletest.h │ │ │ │ ├── zcgunzip.cc │ │ │ │ └── zcgzip.cc │ │ │ │ ├── text_format.cc │ │ │ │ ├── text_format.h │ │ │ │ ├── text_format_unittest.cc │ │ │ │ ├── unittest.proto │ │ │ │ ├── unittest_custom_options.proto │ │ │ │ ├── unittest_embed_optimize_for.proto │ │ │ │ ├── unittest_empty.proto │ │ │ │ ├── unittest_enormous_descriptor.proto │ │ │ │ ├── unittest_import.proto │ │ │ │ ├── unittest_import_lite.proto │ │ │ │ ├── unittest_lite.proto │ │ │ │ ├── unittest_lite_imports_nonlite.proto │ │ │ │ ├── unittest_mset.proto │ │ │ │ ├── unittest_no_generic_services.proto │ │ │ │ ├── unittest_optimize_for.proto │ │ │ │ ├── unknown_field_set.cc │ │ │ │ ├── unknown_field_set.h │ │ │ │ ├── unknown_field_set_unittest.cc │ │ │ │ ├── wire_format.cc │ │ │ │ ├── wire_format.h │ │ │ │ ├── wire_format_lite.cc │ │ │ │ ├── wire_format_lite.h │ │ │ │ ├── wire_format_lite_inl.h │ │ │ │ └── wire_format_unittest.cc │ │ └── vsprojects │ │ │ ├── config.h │ │ │ ├── convert2008to2005.sh │ │ │ ├── extract_includes.bat │ │ │ ├── libprotobuf-lite.vcproj │ │ │ ├── libprotobuf.vcproj │ │ │ ├── libprotoc.vcproj │ │ │ ├── lite-test.vcproj │ │ │ ├── protobuf.sln │ │ │ ├── protoc.vcproj │ │ │ ├── readme.txt │ │ │ ├── test_plugin.vcproj │ │ │ └── tests.vcproj │ │ └── src │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── common │ │ └── arch.hpp │ │ ├── cpp │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── Makefile.windows │ │ ├── config.h.in │ │ ├── pb │ │ │ ├── frame.piqi.pb.cc │ │ │ └── frame.piqi.pb.h │ │ ├── trace.container.cpp │ │ ├── trace.container.hpp │ │ └── utils │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── copytrace.cpp │ │ │ └── readtrace.cpp │ │ └── ocaml │ │ ├── Makefile.in │ │ ├── OCamlMakefile │ │ ├── arch.idl │ │ ├── piqi │ │ ├── frame_piqi.ml │ │ └── frame_piqi_ext.ml │ │ ├── trace_container.ml │ │ ├── trace_container.mli │ │ └── utils │ │ ├── Makefile.in │ │ ├── copytrace.ml │ │ └── readtrace.ml ├── m4 │ ├── ac_ocaml.m4 │ ├── ac_prog_latex.m4 │ ├── acltx_package.m4 │ ├── acltx_package_location.m4 │ └── acltx_prog_kpsewhich.m4 ├── missing ├── objsize-0.16 │ ├── META │ ├── Makefile │ ├── README │ ├── alloc.c │ ├── bitarray.c │ ├── c_objsize.c │ ├── objsize.ml │ ├── objsize.mli │ ├── ocamlsrc │ │ └── byterun │ │ │ ├── compatibility.h │ │ │ ├── config.h │ │ │ ├── freelist.h │ │ │ ├── gc.h │ │ │ ├── major_gc.h │ │ │ ├── memory.h │ │ │ ├── minor_gc.h │ │ │ ├── misc.h │ │ │ └── mlvalues.h │ ├── tests.ml │ └── util.h ├── ocaml-proj.example │ ├── Makefile │ ├── README │ └── test.ml ├── ocaml │ ├── BatListFull.ml │ ├── Makefile.in │ ├── OCamlMakefile │ ├── arithmetic.ml │ ├── asmir.ml │ ├── asmir.mli │ ├── asmir_consts.ml │ ├── asmir_rdisasm.ml │ ├── asmir_rdisasm.mli │ ├── asmir_vars.ml │ ├── ast.ml │ ├── ast_convenience.ml │ ├── ast_mapper.ml │ ├── ast_mapper.mli │ ├── ast_slice.ml │ ├── ast_visitor.ml │ ├── ast_visitor.mli │ ├── big_int_convenience.ml │ ├── cfg.ml │ ├── cfg.mli │ ├── cfg_ast.ml │ ├── cfg_ast.mli │ ├── cfg_pp.ml │ ├── cfg_ssa.ml │ ├── cfg_ssa.mli │ ├── checks.ml │ ├── checks.mli │ ├── coalesce.ml │ ├── coalesce.mli │ ├── cvc3_grammar.mly │ ├── cvc3_lexer.mll │ ├── deadcode.ml │ ├── deadcode.mli │ ├── debug.ml │ ├── debug.mli │ ├── debug_snippets.ml │ ├── depgraphs.ml │ ├── depgraphs.mli │ ├── disasm.ml │ ├── disasm_i386.ml │ ├── dominator.ml │ ├── flatten_mem.ml │ ├── flatten_mem.mli │ ├── formulap.ml │ ├── func_boundary.ml │ ├── func_boundary.mli │ ├── fwp.ml │ ├── fwp.mli │ ├── gcl.ml │ ├── gcl.mli │ ├── grammar.mly │ ├── grammar.mly.mli │ ├── grammar_private_scope.ml │ ├── grammar_scope.ml │ ├── graphDataflow.ml │ ├── graphDataflow.mli │ ├── graphDataflowW.ml │ ├── hacks.ml │ ├── input.ml │ ├── input.mli │ ├── lexer.mll │ ├── libasmir.idl │ ├── libbfd.idl │ ├── llvm_codegen.ml │ ├── llvm_codegen.mli │ ├── memory2array.ml │ ├── memory2array.mli │ ├── parser.ml │ ├── piqi │ │ ├── ast_piqi.ml │ │ ├── ast_piqi.mli │ │ ├── stmt_piqi.ml │ │ └── stmt_piqi_ext.ml │ ├── pp.ml │ ├── prune_unreachable.ml │ ├── prune_unreachable.mli │ ├── reachable.ml │ ├── reachable.mli │ ├── sccvn.ml │ ├── sccvn.mli │ ├── smtexec.ml │ ├── smtexec.mli │ ├── smtlib1.ml │ ├── smtlib2.ml │ ├── solver.ml │ ├── solver.mli │ ├── ssa.ml │ ├── ssa_simp.ml │ ├── ssa_simp_misc.ml │ ├── ssa_slice.ml │ ├── ssa_visitor.ml │ ├── ssa_visitor.mli │ ├── steensgard.ml │ ├── steensgard.mli │ ├── stp.ml │ ├── stp_grammar.mly │ ├── stp_lexer.mll │ ├── structural_analysis.ml │ ├── symbeval.ml │ ├── symbeval_search.ml │ ├── syscall_id.ml │ ├── syscall_id.mli │ ├── syscall_models.ml │ ├── template.ml │ ├── test_common.ml │ ├── to_c.ml │ ├── traces.ml │ ├── traces_backtaint.ml │ ├── traces_backtaint.mli │ ├── traces_stream.ml │ ├── traces_stream.mli │ ├── traces_surgical.ml │ ├── tunegc.ml │ ├── tunegc.mli │ ├── type.ml │ ├── type.mli │ ├── typecheck.ml │ ├── typecheck.mli │ ├── typesig.sh │ ├── unroll.ml │ ├── unroll.mli │ ├── util.ml │ ├── util.mli │ ├── utils_common.ml │ ├── var.ml │ ├── var.mli │ ├── var_temp.ml │ ├── var_temp.mli │ ├── vc.ml │ ├── vc.mli │ ├── vsa.ml │ ├── wp.ml │ ├── wp.mli │ ├── yices_grammar.mly │ └── yices_lexer.mll ├── ocamlgraph-1.8 │ ├── CHANGES │ ├── COPYING │ ├── CREDITS │ ├── FAQ │ ├── INSTALL │ ├── LICENSE │ ├── META.in │ ├── Makefile.in │ ├── README │ ├── configure │ ├── configure.in │ ├── dgraph │ │ ├── dGraphContainer.ml │ │ ├── dGraphContainer.mli │ │ ├── dGraphMake.ml │ │ ├── dGraphModel.ml │ │ ├── dGraphModel.mli │ │ ├── dGraphRandModel.ml │ │ ├── dGraphRandModel.mli │ │ ├── dGraphSubTree.ml │ │ ├── dGraphSubTree.mli │ │ ├── dGraphTreeLayout.ml │ │ ├── dGraphTreeLayout.mli │ │ ├── dGraphTreeModel.ml │ │ ├── dGraphTreeModel.mli │ │ ├── dGraphView.ml │ │ ├── dGraphView.mli │ │ ├── dGraphViewItem.ml │ │ ├── dGraphViewItem.mli │ │ ├── dGraphViewer.ml │ │ ├── xDot.ml │ │ ├── xDot.mli │ │ ├── xDotDraw.ml │ │ └── xDotDraw.mli │ ├── editor │ │ ├── Makefile │ │ ├── ed_display.ml │ │ ├── ed_draw.ml │ │ ├── ed_graph.ml │ │ ├── ed_hyper.ml │ │ ├── ed_main.ml │ │ └── tests │ │ │ ├── de_bruijn4.gml │ │ │ ├── dep_ed.dot │ │ │ ├── dep_why.dot │ │ │ ├── divisors12.gml │ │ │ ├── fsm.dot │ │ │ ├── full10.gml │ │ │ ├── full20.gml │ │ │ ├── full30.gml │ │ │ ├── full50.gml │ │ │ ├── parcours.dot │ │ │ ├── rand_100_10.gml │ │ │ ├── rand_100_300.gml │ │ │ ├── rand_10_10.gml │ │ │ ├── rand_10_40.gml │ │ │ ├── rand_50_300.gml │ │ │ ├── ring_100.gml │ │ │ ├── softmaint.dot │ │ │ ├── test.gml │ │ │ ├── test2,1_2.gml │ │ │ ├── test2,1_3.gml │ │ │ ├── test2,1_3tot.gml │ │ │ ├── test2_2.gml │ │ │ ├── transparency.dot │ │ │ ├── twopi2.dot │ │ │ ├── unix.dot │ │ │ └── world.dot │ ├── examples │ │ ├── color.ml │ │ ├── demo.ml │ │ ├── demo_planar.ml │ │ └── sudoku.ml │ ├── lib │ │ ├── bitv.ml │ │ ├── bitv.mli │ │ ├── heap.ml │ │ ├── heap.mli │ │ ├── unionfind.ml │ │ └── unionfind.mli │ ├── src │ │ ├── blocks.ml │ │ ├── builder.ml │ │ ├── builder.mli │ │ ├── classic.ml │ │ ├── classic.mli │ │ ├── cliquetree.ml │ │ ├── cliquetree.mli │ │ ├── coloring.ml │ │ ├── coloring.mli │ │ ├── components.ml │ │ ├── components.mli │ │ ├── delaunay.ml │ │ ├── delaunay.mli │ │ ├── dot.ml │ │ ├── dot.mli │ │ ├── dot_ast.mli │ │ ├── dot_lexer.mll │ │ ├── dot_parser.mly │ │ ├── flow.ml │ │ ├── flow.mli │ │ ├── gmap.ml │ │ ├── gmap.mli │ │ ├── gml.mli │ │ ├── gml.mll │ │ ├── graphviz.ml │ │ ├── graphviz.mli │ │ ├── imperative.ml │ │ ├── imperative.mli │ │ ├── kruskal.ml │ │ ├── kruskal.mli │ │ ├── mcs_m.ml │ │ ├── mcs_m.mli │ │ ├── md.ml │ │ ├── md.mli │ │ ├── minsep.ml │ │ ├── minsep.mli │ │ ├── oper.ml │ │ ├── oper.mli │ │ ├── pack.ml │ │ ├── pack.mli │ │ ├── path.ml │ │ ├── path.mli │ │ ├── persistent.ml │ │ ├── persistent.mli │ │ ├── rand.ml │ │ ├── rand.mli │ │ ├── sig.mli │ │ ├── sig_pack.mli │ │ ├── strat.ml │ │ ├── strat.mli │ │ ├── topological.ml │ │ ├── topological.mli │ │ ├── traverse.ml │ │ ├── traverse.mli │ │ ├── util.ml │ │ └── util.mli │ ├── tests │ │ ├── bench.ml │ │ ├── check.ml │ │ ├── dot.ml │ │ ├── strat.ml │ │ └── test.ml │ └── view_graph │ │ ├── Makefile │ │ ├── README │ │ ├── viewGraph_core.ml │ │ ├── viewGraph_core.mli │ │ ├── viewGraph_select.ml │ │ ├── viewGraph_select.mli │ │ ├── viewGraph_test.ml │ │ ├── viewGraph_utils.ml │ │ └── viewGraph_utils.mli ├── ounit │ ├── .boring │ ├── AUTHORS.txt │ ├── INSTALL.txt │ ├── LICENSE.txt │ ├── Makefile │ ├── README.txt │ ├── _oasis │ ├── _tags │ ├── bootstrap.lua │ ├── changelog │ ├── ci-main.lua │ ├── configure │ ├── doc │ │ └── manual.txt │ ├── examples │ │ ├── Makefile │ │ ├── example.ml │ │ ├── test_list.ml │ │ ├── test_list2.ml │ │ ├── test_stack.ml │ │ └── test_suite.ml │ ├── myocamlbuild.ml │ ├── setup.ml │ ├── src │ │ ├── META │ │ ├── api-ounit.odocl │ │ ├── oUnit.ml │ │ ├── oUnit.mli │ │ ├── oUnit.mllib │ │ ├── oUnitDiff.ml │ │ └── oUnitDiff.mli │ └── test │ │ └── test.ml ├── pcre-ocaml │ ├── .hg_archival.txt │ ├── .hgignore │ ├── .hgtags │ ├── Changelog │ ├── INSTALL │ ├── LICENSE │ ├── Makefile │ ├── Makefile.conf │ ├── OCamlMakefile │ ├── OMakefile │ ├── README.txt │ ├── README.win32 │ ├── examples │ │ ├── OMakefile │ │ ├── cloc │ │ │ ├── Makefile │ │ │ ├── OMakefile │ │ │ ├── README │ │ │ ├── cloc.ml │ │ │ └── make_win32_cloc.bat │ │ ├── count_hash │ │ │ ├── Makefile │ │ │ ├── OMakefile │ │ │ ├── README │ │ │ └── count_hash.ml │ │ ├── pcregrep │ │ │ ├── Makefile │ │ │ ├── OMakefile │ │ │ ├── README │ │ │ └── pcregrep.ml │ │ └── subst │ │ │ ├── Makefile │ │ │ ├── OMakefile │ │ │ ├── README │ │ │ └── subst.ml │ ├── lib │ │ ├── META │ │ ├── Makefile │ │ ├── Makefile.win32 │ │ ├── OMakefile │ │ ├── make_msvc.bat │ │ ├── pcre.ml │ │ ├── pcre.mli │ │ └── pcre_stubs.c │ └── pcre_make.win32 │ │ ├── Makefile.mingw │ │ ├── Makefile.win32 │ │ ├── make_pcre.ml │ │ └── pcre.h ├── pintraces │ ├── Makefile │ ├── Makefile.pin │ ├── README │ ├── cache.h │ ├── ctxtest.cpp │ ├── ddk-inc │ │ ├── README │ │ ├── bugcodes.h │ │ ├── dpfilter.h │ │ ├── mce.h │ │ ├── ntdef.h │ │ ├── ntiologc.h │ │ └── wdm.h │ ├── examples │ │ └── bof1 │ │ │ ├── Makefile │ │ │ └── bof1.c │ ├── gentrace.cpp │ ├── getpin.sh │ ├── iltest │ │ ├── TRACE │ │ ├── mmapped.bin │ │ └── test_wrapper.cpp │ ├── listregs.cpp │ ├── makefile.rules │ ├── pin_frame.cpp │ ├── pin_misc.cpp │ ├── pin_misc.h │ ├── pin_taint.cpp │ ├── pin_taint.h │ ├── pivot.cpp │ ├── pivot.h │ ├── pivottest.cpp │ ├── reg_mapping_pin.cpp │ ├── reg_mapping_pin.h │ ├── snapshot.cpp │ ├── snapshot.h │ ├── winsyscalls.cpp │ └── winsyscalls.h ├── piqi-files │ ├── Makefile │ ├── exp.piqi │ ├── protobuf │ │ ├── StmtPiqi.java │ │ ├── stmt.piqi.pb.cc │ │ ├── stmt.piqi.pb.h │ │ └── stmt │ │ │ └── piqi_pb2.py │ ├── stmt.piqi │ └── type.piqi ├── solvers │ └── getz3.sh ├── tests-proj.example │ ├── Makefile │ ├── README │ └── project_suite.ml ├── tests │ ├── C │ │ ├── Makefile │ │ ├── Makefile.defs │ │ ├── bof1.c │ │ ├── taint_test.c │ │ ├── test.c │ │ └── unroll.c │ ├── IL │ │ └── unroll │ │ │ ├── irreducible.il │ │ │ └── reducible.il │ ├── Makefile.in │ ├── arithmetic_suite.ml │ ├── asm │ │ ├── Makefile │ │ └── nop.S │ ├── asmir_suite.ml │ ├── ast_suite.ml │ ├── bap_suite.ml │ ├── disasm_i386_suite.ml │ ├── dominator_suite.ml │ ├── eval_suite.ml │ ├── il_suite.ml │ ├── predicate_suite.ml │ ├── traces_suite.ml │ ├── unroll_suite.ml │ └── var_suite.ml ├── utils-proj.example │ ├── Makefile │ ├── README │ └── testutil.ml ├── utils │ ├── Makefile.in │ ├── backtaint.ml │ ├── codegen.ml │ ├── formula.ml │ ├── get_functions.ml │ ├── ileval.ml │ ├── iltrans.ml │ ├── solvepredicate.ml │ ├── streamtrans.ml │ ├── toil.ml │ └── topredicate.ml └── zarith-1.0 │ ├── Changes │ ├── LICENSE │ ├── META │ ├── Makefile │ ├── README │ ├── big_int_Z.ml │ ├── big_int_Z.mli │ ├── bitest.ml │ ├── caml_z.c │ ├── caml_z_i686.S │ ├── caml_z_x86_64.S │ ├── caml_z_x86_64_mingw64.S │ ├── config.guess │ ├── configure │ ├── project.mak │ ├── q.ml │ ├── q.mli │ ├── test.ml │ ├── z.mlip │ ├── z.mlp │ ├── z_mlgmpidl.ml │ ├── z_mlgmpidl.mli │ └── z_pp.pl ├── README.md └── afl-dyninst ├── AUTHORS ├── LICENSE ├── Makefile ├── README.txt ├── afl-dyninst.cpp └── libAflDyninst.cpp /BAP-0.7-moflow/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/AUTHORS -------------------------------------------------------------------------------- /BAP-0.7-moflow/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/COPYING -------------------------------------------------------------------------------- /BAP-0.7-moflow/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/INSTALL -------------------------------------------------------------------------------- /BAP-0.7-moflow/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/Makefile.am -------------------------------------------------------------------------------- /BAP-0.7-moflow/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/NEWS -------------------------------------------------------------------------------- /BAP-0.7-moflow/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/STYLE.C: -------------------------------------------------------------------------------- 1 | For our C code, we use K&R style. 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/STYLE.ocaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/STYLE.ocaml -------------------------------------------------------------------------------- /BAP-0.7-moflow/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/TODO -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/BAP.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/BAP.README -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/HACKING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/HACKING.README -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/LICENSE.GPL -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/LICENSE.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/LICENSE.README -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/Makefile-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/Makefile-gcc -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/Makefile-icc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/Makefile-icc -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/TODO.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/auxprogs/genoffsets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/auxprogs/genoffsets.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/bap_patch_20110908.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/bap_patch_20110908.patch -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/nanoarm.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/nanoarm.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/newline.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_amd64/Compare.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_amd64/Compare.hs -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_amd64/test1.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_amd64/test1.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_amd64/test1.sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_amd64/test1.sorted -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_amd64/test2.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_amd64/test2.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_amd64/test2.sorted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_amd64/test2.sorted -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_arm/nanoarm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_arm/nanoarm -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_arm/nanoarm.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_arm/nanoarm.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_ppc32/date.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_ppc32/date.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_ppc32/loadsafp.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_ppc32/loadsafp.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_ppc32/morefp.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_ppc32/morefp.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_ppc32/return0.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_ppc32/return0.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_x86/exit42.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_x86/exit42.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_x86/fpu_mmx_sse.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_x86/fpu_mmx_sse.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/orig_x86/manyfp.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/orig_x86/manyfp.orig -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_amd64_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_amd64_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_amd64_toIR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_amd64_toIR.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_arm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_arm_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_arm_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_arm_helpers.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_arm_toIR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_arm_toIR.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_generic_x87.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_generic_x87.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_generic_x87.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_generic_x87.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_ppc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_ppc_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_ppc_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_ppc_helpers.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_ppc_toIR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_ppc_toIR.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_s390_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_s390_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_s390_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_s390_helpers.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_s390_toIR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_s390_toIR.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_x86_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_x86_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_x86_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_x86_helpers.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/guest_x86_toIR.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/guest_x86_toIR.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_amd64_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_amd64_defs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_amd64_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_amd64_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_amd64_isel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_amd64_isel.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_arm_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_arm_defs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_arm_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_arm_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_arm_isel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_arm_isel.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_generic_regs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_generic_regs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_generic_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_generic_regs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_ppc_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_ppc_defs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_ppc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_ppc_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_ppc_isel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_ppc_isel.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_s390_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_s390_defs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_s390_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_s390_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_s390_disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_s390_disasm.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_s390_disasm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_s390_disasm.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_s390_isel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_s390_isel.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_x86_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_x86_defs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_x86_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_x86_defs.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/host_x86_isel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/host_x86_isel.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/ir_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/ir_defs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/ir_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/ir_match.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/ir_match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/ir_match.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/ir_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/ir_opt.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/ir_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/ir_opt.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/main_globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/main_globals.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/main_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/main_globals.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/main_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/main_main.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/main_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/main_util.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/priv/main_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/priv/main_util.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_basictypes.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_emwarn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_emwarn.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_guest_amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_guest_amd64.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_guest_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_guest_arm.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_guest_ppc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_guest_ppc32.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_guest_ppc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_guest_ppc64.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_guest_s390x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_guest_s390x.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_guest_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_guest_x86.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_ir.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/pub/libvex_trc_values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/pub/libvex_trc_values.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/quote.txt: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/switchback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/switchback/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/switchback/linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/switchback/linker.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/switchback/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/switchback/linker.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/switchback/switchback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/switchback/switchback.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/switchback/test_bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/switchback/test_bzip2.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/switchback/test_hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/switchback/test_hello.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fldenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fldenv.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fp1.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fp1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fp1.s -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fpconst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fpconst.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fpgames.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fpgames.s -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fpspeed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fpspeed.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fpucw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fpucw.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/frstor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/frstor.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fsave.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fstenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fstenv.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/fxsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/fxsave.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/mmxtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/mmxtest.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/mxcsr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/mxcsr.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/rounderr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/rounderr.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/test-amd64-shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/test-amd64-shift.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/test-amd64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/test-amd64.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/test-amd64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/test-amd64.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/test-i386-muldiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/test-i386-muldiv.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/test-i386-shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/test-i386-shift.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/test-i386.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/test-i386.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/test-i386.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/test-i386.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/x87fxam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/x87fxam.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test/x87tst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test/x87tst.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test_main.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test_main.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/test_main.h.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/test_main.h.base -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/unused/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/unused/arena.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/unused/dispatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/unused/dispatch.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/unused/linker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/unused/linker.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/useful/cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/useful/cpuid.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/useful/fp_80_64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/useful/fp_80_64.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/useful/fpround.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/useful/fpround.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/useful/fspill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/useful/fspill.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/useful/hd_fpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/useful/hd_fpu.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/useful/show_fp_state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/useful/show_fp_state.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/VEX/useful/smchash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/VEX/useful/smchash.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/aclocal.m4 -------------------------------------------------------------------------------- /BAP-0.7-moflow/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/autogen.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/autom4te.cache/output.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/autom4te.cache/output.0 -------------------------------------------------------------------------------- /BAP-0.7-moflow/autom4te.cache/output.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/autom4te.cache/output.1 -------------------------------------------------------------------------------- /BAP-0.7-moflow/autom4te.cache/requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/autom4te.cache/requests -------------------------------------------------------------------------------- /BAP-0.7-moflow/autom4te.cache/traces.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/autom4te.cache/traces.0 -------------------------------------------------------------------------------- /BAP-0.7-moflow/autom4te.cache/traces.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/autom4te.cache/traces.1 -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/ChangeLog -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/FAQ -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/LICENSE -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/META.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/META.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/README: -------------------------------------------------------------------------------- 1 | See README.md 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/README.folders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/README.folders -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/README.md -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/VERSION: -------------------------------------------------------------------------------- 1 | 1.5.0 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/_oasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/_oasis -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/_tags -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/batteries.odocl: -------------------------------------------------------------------------------- 1 | src/batteries.mllib -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/battop.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/battop.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/benchsuite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/benchsuite/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/benchsuite/_tags: -------------------------------------------------------------------------------- 1 | <*>: pkg_benchmark 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/build/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/build/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/build/import.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/build/import.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/build/intro.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/build/intro.text -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/build/mkconf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/build/mkconf.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/build/ocaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/build/ocaml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/build/packdoc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/build/packdoc.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/byte.itarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/byte.itarget -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/doc/batteries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/doc/batteries.svg -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/doc/batteries/html/batteries_large.png: -------------------------------------------------------------------------------- 1 | ../../batteries_large.png -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/examples/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/examples/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/examples/_tags -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/examples/euler/euler022.ml: -------------------------------------------------------------------------------- 1 | (* uses names.txt *) 2 | 3 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/examples/snippets/myocamlbuild.ml: -------------------------------------------------------------------------------- 1 | ../../build/myocamlbuild.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/examples/tools/_tags: -------------------------------------------------------------------------------- 1 | not(<*_dyn*>): pkg_batteries,debug 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/examples/tools/myocamlbuild.ml: -------------------------------------------------------------------------------- 1 | ../../build/myocamlbuild.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/libs/estring/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/libs/estring/META -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/libs/estring/VERSION: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/myocamlbuild.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/myocamlbuild.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/native.itarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/native.itarget -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/ocamlinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/ocamlinit -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/qtest/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/qtest/_tags -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/qtest/tests.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/qtest/tests.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/setup.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/setup.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/shared.itarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/shared.itarget -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/_tags -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batArg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batArg.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batArg.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batArg.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batArray.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batArray.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batArray.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batArray.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batAvlTree.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batAvlTree.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBase64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBase64.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBase64.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBase64.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBig_int.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBig_int.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBitSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBitSet.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBitSet.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBitSet.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBool.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBool.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBool.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBool.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBuffer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBuffer.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batBuffer.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batBuffer.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batCache.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batCache.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batCache.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batCache.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batChar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batChar.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batChar.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batChar.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batComplex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batComplex.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batDeque.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batDeque.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batDeque.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batDeque.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batDigest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batDigest.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batDigest.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batDigest.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batDllist.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batDllist.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batDllist.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batDllist.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batEnum.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batEnum.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batEnum.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batEnum.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batFile.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batFile.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batFile.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batFile.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batFloat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batFloat.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batFloat.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batFloat.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batFormat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batFormat.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batFormat.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batFormat.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batGc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batGc.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batGc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batGc.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batGenlex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batGenlex.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batGenlex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batGenlex.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batGlobal.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batGlobal.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batGlobal.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batGlobal.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batHashtbl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batHashtbl.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batHeap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batHeap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batHeap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batHeap.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batIMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batIMap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batIMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batIMap.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batIO.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batIO.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batIO.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batIO.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batISet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batISet.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batISet.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batISet.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batInnerIO.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batInnerIO.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batInt.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batInt.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batInt.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batInt.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batInt32.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batInt32.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batInt32.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batInt32.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batInt64.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batInt64.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batInt64.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batInt64.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batLexing.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batLexing.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batLexing.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batLexing.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batList.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batList.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batList.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batList.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batLogger.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batLogger.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batLogger.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batLogger.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batMap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batMap.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batMarshal.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batMarshal.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batMonad.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batMonad.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batMonad.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batMonad.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batMutex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batMutex.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batMutex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batMutex.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batNum.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batNum.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batNum.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batNum.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batNumber.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batNumber.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batNumber.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batNumber.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batOo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batOo.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batOo.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batOo.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batOption.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batOption.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batOption.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batOption.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPMap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPMap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPMap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPMap.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPSet.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPSet.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPSet.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPair.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPair.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPair.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPair.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPathGen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPathGen.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPrint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPrint.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPrint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPrint.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPrintf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPrintf.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batPrintf.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batPrintf.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batQueue.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batQueue.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batQueue.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batQueue.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRMutex.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRMutex.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRMutex.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRMutex.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRandom.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRandom.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRandom.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRandom.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRef.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRef.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRef.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRef.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRefList.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRefList.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batResult.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batResult.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batResult.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batResult.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batReturn.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batReturn.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batReturn.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batReturn.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRope.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRope.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batRope.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batRope.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batScanf.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batScanf.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batScanf.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batScanf.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSeq.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSeq.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSeq.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSeq.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSet.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSet.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSet.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSet.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSplay.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSplay.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSplay.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSplay.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStack.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStack.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStack.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStack.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStd.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStd.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStd.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStd.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStr.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStr.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStr.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStr.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStream.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batStream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batStream.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batString.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batString.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batString.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batString.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSys.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSys.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batSys.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batSys.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batTuple.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batTuple.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batTuple.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batTuple.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUChar.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUChar.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUChar.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUChar.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUTF8.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUTF8.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUTF8.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUTF8.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUnit.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUnit.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUnit.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUnit.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUnix.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUnix.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUnix.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUnix.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUref.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUref.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batUref.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batUref.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batVect.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batVect.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batVect.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batVect.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/batteries.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/src/batteries.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/syntax/pa_comprehension/_tags: -------------------------------------------------------------------------------- 1 | "pa_comprehension.ml": camlp4rf 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/syntax/pa_llist/_tags: -------------------------------------------------------------------------------- 1 | "pa_llist.ml": camlp4of 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/syntax/pa_strings/_tags: -------------------------------------------------------------------------------- 1 | <*.ml>: camlp4of 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/src/syntax/pa_strings/pa_strings.mllib: -------------------------------------------------------------------------------- 1 | Pa_strings 2 | Pa_format 3 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/syntax.itarget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/syntax.itarget -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/testsuite/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/testsuite/_tags -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/testsuite/main.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/batteries/testsuite/main.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/batteries/testsuite/myocamlbuild.ml: -------------------------------------------------------------------------------- 1 | ../build/myocamlbuild.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/build_everything.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/build_everything.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/configure -------------------------------------------------------------------------------- /BAP-0.7-moflow/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/configure.ac -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/.depend -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/common.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/demo/demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/demo/demo.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/demo/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/demo/input.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/demo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/demo/makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/demo/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/demo/trace.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/apps.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/apps.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/common.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/egas.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/egas.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/export.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/export.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/heap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/heap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/heap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/heap.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/mylazy.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/mylazy.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/oracle.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/oracle.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/space.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/space.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/egas/stats.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/egas/stats.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/ilprint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/ilprint.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/input.txt: -------------------------------------------------------------------------------- 1 | 012 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/motriage.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/motriage.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/prep-slice.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/prep-slice.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/readme.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/slicer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/slicer.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/tests/input.txt: -------------------------------------------------------------------------------- 1 | 01234567x 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/tests/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/tests/makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/tests/test.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/tests/test.asm -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/tests/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/tests/test.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/tests/trace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/tests/trace.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/custom_utils/triage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/custom_utils/triage.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/depcomp -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/bibtex/biblio.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/bibtex/biblio.bib -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/bibtex/misc.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/bibtex/misc.bib -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/challenges.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/challenges.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-developer.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-developer.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/basic.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/basic.S -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/basic.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/basic.il -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/basic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/basic.o -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/cdg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/cdg.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/cfg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/cfg.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/cfg2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/cfg2.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/ddg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/ddg.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/il.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/il.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-examples/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-examples/test.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-formalism.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-formalism.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-intro.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-intro/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-intro/intro.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-intro/overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-intro/overview.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-tools.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-tools.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-tools/iltrans.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-tools/iltrans.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-tools/obtaining.tex: -------------------------------------------------------------------------------- 1 | \section{Obtaining \bap} 2 | BAP can be found at \url{http://bap.ece.cmu.edu}. 3 | 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-tools/overview.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-tools/overview.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/chap-tools/toil.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/chap-tools/toil.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/code.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/code.sty -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/credits.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/credits.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/add-shl.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/add-shl.dot -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/add-shl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/add-shl.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/components.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/components.fig -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/components.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/components.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/memvsarray-1.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/memvsarray-1.eps -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/memvsarray-1.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/memvsarray-1.fig -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/memvsarray-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/memvsarray-1.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/memvsarray-2.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/memvsarray-2.eps -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/memvsarray-2.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/memvsarray-2.fig -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/memvsarray-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/memvsarray-2.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/running-example.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/running-example.eps -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/running-example.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/running-example.fig -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/running-example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/running-example.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/toolchain.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/toolchain.fig -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/fig/toolchain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/fig/toolchain.pdf -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/goals.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/goals.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/just-formals/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/just-formals/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/just-formals/code.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/just-formals/code.sty -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/just-formals/djb.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/just-formals/djb.sty -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/just-formals/proof.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/just-formals/proof.sty -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/just-formals/vine.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/just-formals/vine.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/lecnotes.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/lecnotes.sty -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/main.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/proof.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/proof.sty -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/related.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/related.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/running-asm.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/running-asm.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/running-il.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/running-il.tex -------------------------------------------------------------------------------- /BAP-0.7-moflow/doc/shortcuts.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/doc/shortcuts.sty -------------------------------------------------------------------------------- /BAP-0.7-moflow/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/gpl-2.0.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/install-sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/Makefile.am -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/apps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/apps/Makefile.am -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/apps/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/apps/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/apps/ir_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/apps/ir_printer.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/apps/lifttrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/apps/lifttrace.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/apps/print-ir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/apps/print-ir.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/config.h.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/include/common.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/include/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/include/exp.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/include/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/include/info.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/include/irtoir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/include/irtoir.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/include/jumpbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/include/jumpbuf.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/include/stmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/include/stmt.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/include/vexmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/include/vexmem.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/Makefile.am -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/asm_program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/asm_program.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/irtoir-arm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/irtoir-arm.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/irtoir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/irtoir.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/irtoir_c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/irtoir_c.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/llvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/llvm.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/old_ir/exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/old_ir/exp.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/symbols.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/symbols.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/traces/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/traces/trace.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/vexir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/vexir.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/libasmir/src/vexmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libasmir/src/vexmem.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libtracewrap/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/AUTHORS: -------------------------------------------------------------------------------- 1 | Ed Schwartz -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/ChangeLog: -------------------------------------------------------------------------------- 1 | See SVN 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=piqi protobuf src 2 | ACLOCAL_AMFLAGS=-I m4 -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/libtracewrap/libtrace/NEWS -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/README: -------------------------------------------------------------------------------- 1 | Libtrace -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/VERSION: -------------------------------------------------------------------------------- 1 | 0.6.0 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/bin/piqi: -------------------------------------------------------------------------------- 1 | ../piqi-tools/piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/bin/piqic: -------------------------------------------------------------------------------- 1 | ../piqic/piqic -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/bin/piqic-erlang-ext: -------------------------------------------------------------------------------- 1 | ../piqi-erlang/piqic-erlang-ext/piqic-erlang-ext -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/bin/piqic-erlang-rpc: -------------------------------------------------------------------------------- 1 | ../piqi-rpc/piqic-erlang-rpc/piqic-erlang-rpc -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/bin/piqicc: -------------------------------------------------------------------------------- 1 | ../piqicc/piqicc -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/deps/easy-format-1.0.0/TODO: -------------------------------------------------------------------------------- 1 | $Id: TODO 25 2008-07-13 15:15:00Z mjambon $ 2 | 3 | 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/bool.piq: -------------------------------------------------------------------------------- 1 | (:bool) 2 | 3 | true false 4 | 5 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/empty.piq: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/empty.piqi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/erlang/addressbook.piq: -------------------------------------------------------------------------------- 1 | ../addressbook.piq -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/erlang/addressbook.proto: -------------------------------------------------------------------------------- 1 | ../addressbook.proto -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/erlang/test: -------------------------------------------------------------------------------- 1 | ../ocaml/test -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/ocaml-piq-config/OCamlMakefile: -------------------------------------------------------------------------------- 1 | ../../make/OCamlMakefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/ocaml/addressbook.piq: -------------------------------------------------------------------------------- 1 | ../addressbook.piq -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/examples/ocaml/addressbook.proto: -------------------------------------------------------------------------------- 1 | ../addressbook.proto -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/make/OCamlMakefile: -------------------------------------------------------------------------------- 1 | ../deps/ocaml-make-release-6.29.3/OCamlMakefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-camlp4/3.10: -------------------------------------------------------------------------------- 1 | 3.11 -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-camlp4/4.00: -------------------------------------------------------------------------------- 1 | 3.12 -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-erlang/include/piqi_piqi.hrl: -------------------------------------------------------------------------------- 1 | ../src/piqi_piqi.hrl -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-erlang/include/piqi_rpc_piqi.hrl: -------------------------------------------------------------------------------- 1 | ../src/piqi_rpc_piqi.hrl -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-erlang/include/piqi_tools_piqi.hrl: -------------------------------------------------------------------------------- 1 | ../src/piqi_tools_piqi.hrl -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-erlang/src/piqi-rpc.piqi: -------------------------------------------------------------------------------- 1 | ../../piqi/piqi-rpc.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-erlang/src/piqi-tools.piqi: -------------------------------------------------------------------------------- 1 | ../../piqi-tools/piqi-tools.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-tools/descriptor.proto: -------------------------------------------------------------------------------- 1 | ../tests/boot_proto2piqi/descriptor.proto -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqi-tools/piqi-rpc.piqi: -------------------------------------------------------------------------------- 1 | ../piqi/piqi-rpc.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/piqic/piqic_common_ext.ml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/src/piqi_src.erl: -------------------------------------------------------------------------------- 1 | -module(piqi_src). 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_addressbook: -------------------------------------------------------------------------------- 1 | ../examples/erlang -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_import/piqi-erlang: -------------------------------------------------------------------------------- 1 | ../../piqi-erlang -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_misc/empty-record.piqi: -------------------------------------------------------------------------------- 1 | ../ocaml_misc/empty-record.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_packed/packed-nocompat.piqi: -------------------------------------------------------------------------------- 1 | ../piqi_packed/packed-nocompat.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_packed/packed.piqi: -------------------------------------------------------------------------------- 1 | ../piqi_packed/packed.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_packed/piqi-erlang: -------------------------------------------------------------------------------- 1 | ../../piqi-erlang -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_packed/test-all.piq: -------------------------------------------------------------------------------- 1 | ../piqi_packed/test-all.piq -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_perf/addressbook.erlang.piqi: -------------------------------------------------------------------------------- 1 | ../erlang_addressbook/addressbook.erlang.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_perf/addressbook.piq: -------------------------------------------------------------------------------- 1 | ../erlang_addressbook/addressbook.piq -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/erlang_perf/addressbook.proto.piqi: -------------------------------------------------------------------------------- 1 | ../erlang_addressbook/addressbook.proto.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/examples: -------------------------------------------------------------------------------- 1 | ../examples -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_addressbook: -------------------------------------------------------------------------------- 1 | ../examples/ocaml -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_array/test-all.piq: -------------------------------------------------------------------------------- 1 | ../piqi_packed/test-all.piq -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_custom_types: -------------------------------------------------------------------------------- 1 | ../examples/ocaml-custom-types -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_misc/empty-record.piqi: -------------------------------------------------------------------------------- 1 | .record [ 2 | .name r 3 | ] 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_packed/packed-nocompat.piqi: -------------------------------------------------------------------------------- 1 | ../piqi_packed/packed-nocompat.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_packed/packed.piqi: -------------------------------------------------------------------------------- 1 | ../piqi_packed/packed.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_packed/test-all.piq: -------------------------------------------------------------------------------- 1 | ../piqi_packed/test-all.piq -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_perf/addressbook.ocaml.piqi: -------------------------------------------------------------------------------- 1 | ../ocaml_addressbook/addressbook.ocaml.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_perf/addressbook.piq: -------------------------------------------------------------------------------- 1 | ../erlang_addressbook/addressbook.piq -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_perf/addressbook.proto.piqi: -------------------------------------------------------------------------------- 1 | ../erlang_addressbook/addressbook.proto.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_piq_config/ocaml-piq-config: -------------------------------------------------------------------------------- 1 | ../../examples/ocaml-piq-config -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/ocaml_piqi/piqi.ocaml.piqi: -------------------------------------------------------------------------------- 1 | ../../piqic/piqi.ocaml.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/piqi_server/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: 3 | ./test_piqi_server 4 | 5 | clean: 6 | 7 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/piqi/piqi/tests/self_spec: -------------------------------------------------------------------------------- 1 | ../piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/protobuf/python/google/protobuf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/protobuf/python/google/protobuf/internal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/libtracewrap/libtrace/src/ocaml/arch.idl: -------------------------------------------------------------------------------- 1 | #include "../common/arch.hpp" -------------------------------------------------------------------------------- /BAP-0.7-moflow/m4/ac_ocaml.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/m4/ac_ocaml.m4 -------------------------------------------------------------------------------- /BAP-0.7-moflow/m4/ac_prog_latex.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/m4/ac_prog_latex.m4 -------------------------------------------------------------------------------- /BAP-0.7-moflow/m4/acltx_package.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/m4/acltx_package.m4 -------------------------------------------------------------------------------- /BAP-0.7-moflow/m4/acltx_prog_kpsewhich.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/m4/acltx_prog_kpsewhich.m4 -------------------------------------------------------------------------------- /BAP-0.7-moflow/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/missing -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/META -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/alloc.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/bitarray.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/bitarray.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/c_objsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/c_objsize.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/objsize.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/objsize.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/objsize.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/objsize.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/tests.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/tests.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/objsize-0.16/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/objsize-0.16/util.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml-proj.example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml-proj.example/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml-proj.example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml-proj.example/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml-proj.example/test.ml: -------------------------------------------------------------------------------- 1 | let testf () = 2 | "Hooray!\n";; 3 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/BatListFull.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/BatListFull.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/OCamlMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/OCamlMakefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/arithmetic.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/arithmetic.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/asmir.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/asmir.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/asmir.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/asmir.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/asmir_consts.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/asmir_consts.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/asmir_rdisasm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/asmir_rdisasm.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/asmir_rdisasm.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/asmir_rdisasm.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/asmir_vars.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/asmir_vars.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ast.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ast_convenience.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ast_convenience.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ast_mapper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ast_mapper.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ast_mapper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ast_mapper.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ast_slice.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ast_slice.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ast_visitor.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ast_visitor.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ast_visitor.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ast_visitor.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cfg.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cfg.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cfg.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cfg.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cfg_ast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cfg_ast.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cfg_ast.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cfg_ast.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cfg_pp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cfg_pp.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cfg_ssa.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cfg_ssa.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cfg_ssa.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cfg_ssa.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/checks.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/checks.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/checks.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/checks.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/coalesce.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/coalesce.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/coalesce.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/coalesce.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cvc3_grammar.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cvc3_grammar.mly -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/cvc3_lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/cvc3_lexer.mll -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/deadcode.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/deadcode.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/deadcode.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/deadcode.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/debug.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/debug.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/debug.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/debug.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/debug_snippets.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/debug_snippets.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/depgraphs.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/depgraphs.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/depgraphs.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/depgraphs.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/disasm.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/disasm.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/disasm_i386.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/disasm_i386.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/dominator.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/dominator.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/flatten_mem.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/flatten_mem.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/flatten_mem.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/flatten_mem.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/formulap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/formulap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/func_boundary.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/func_boundary.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/func_boundary.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/func_boundary.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/fwp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/fwp.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/fwp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/fwp.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/gcl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/gcl.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/gcl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/gcl.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/grammar.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/grammar.mly -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/grammar.mly.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/grammar.mly.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/grammar_scope.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/grammar_scope.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/graphDataflow.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/graphDataflow.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/graphDataflow.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/graphDataflow.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/graphDataflowW.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/graphDataflowW.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/hacks.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/hacks.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/input.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/input.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/input.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/input.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/lexer.mll -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/libasmir.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/libasmir.idl -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/libbfd.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/libbfd.idl -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/llvm_codegen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/llvm_codegen.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/llvm_codegen.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/llvm_codegen.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/memory2array.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/memory2array.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/memory2array.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/memory2array.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/parser.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/parser.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/piqi/ast_piqi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/piqi/ast_piqi.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/piqi/ast_piqi.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/piqi/ast_piqi.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/piqi/stmt_piqi.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/piqi/stmt_piqi.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/piqi/stmt_piqi_ext.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/piqi/stmt_piqi_ext.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/pp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/pp.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/prune_unreachable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/prune_unreachable.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/prune_unreachable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/prune_unreachable.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/reachable.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/reachable.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/reachable.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/reachable.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/sccvn.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/sccvn.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/sccvn.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/sccvn.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/smtexec.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/smtexec.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/smtexec.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/smtexec.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/smtlib1.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/smtlib1.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/smtlib2.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/smtlib2.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/solver.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/solver.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/solver.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/solver.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ssa.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ssa.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ssa_simp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ssa_simp.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ssa_simp_misc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ssa_simp_misc.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ssa_slice.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ssa_slice.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ssa_visitor.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ssa_visitor.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/ssa_visitor.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/ssa_visitor.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/steensgard.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/steensgard.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/steensgard.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/steensgard.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/stp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/stp.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/stp_grammar.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/stp_grammar.mly -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/stp_lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/stp_lexer.mll -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/symbeval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/symbeval.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/symbeval_search.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/symbeval_search.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/syscall_id.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/syscall_id.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/syscall_id.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/syscall_id.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/syscall_models.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/syscall_models.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/template.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/template.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/test_common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/test_common.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/to_c.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/to_c.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/traces.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/traces.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/traces_backtaint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/traces_backtaint.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/traces_backtaint.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/traces_backtaint.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/traces_stream.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/traces_stream.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/traces_stream.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/traces_stream.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/traces_surgical.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/traces_surgical.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/tunegc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/tunegc.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/tunegc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/tunegc.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/type.ml: -------------------------------------------------------------------------------- 1 | type.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/type.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/type.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/typecheck.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/typecheck.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/typecheck.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/typecheck.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/typesig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/typesig.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/unroll.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/unroll.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/unroll.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/unroll.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/util.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/util.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/utils_common.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/utils_common.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/var.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/var.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/var.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/var.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/var_temp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/var_temp.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/var_temp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/var_temp.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/vc.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/vc.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/vc.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/vc.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/vsa.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/vsa.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/wp.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/wp.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/wp.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/wp.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/yices_grammar.mly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/yices_grammar.mly -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocaml/yices_lexer.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocaml/yices_lexer.mll -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/CHANGES -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/COPYING -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/CREDITS -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/FAQ -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/INSTALL -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/LICENSE -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/META.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/META.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/configure -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/configure.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/lib/bitv.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/lib/bitv.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/lib/bitv.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/lib/bitv.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/lib/heap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/lib/heap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/lib/heap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/lib/heap.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/dot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/dot.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/dot.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/dot.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/flow.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/flow.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/flow.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/flow.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/gmap.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/gmap.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/gmap.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/gmap.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/gml.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/gml.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/gml.mll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/gml.mll -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/mcs_m.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/mcs_m.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/md.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/md.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/md.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/md.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/oper.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/oper.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/oper.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/oper.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/pack.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/pack.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/pack.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/pack.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/path.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/path.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/path.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/path.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/rand.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/rand.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/rand.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/rand.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/sig.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/sig.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/strat.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/strat.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/util.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/util.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/src/util.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/src/util.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ocamlgraph-1.8/tests/dot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ocamlgraph-1.8/tests/dot.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/.boring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/.boring -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/AUTHORS.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/INSTALL.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/LICENSE.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/README.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/_oasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/_oasis -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/_tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/_tags -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/bootstrap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/bootstrap.lua -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/changelog -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/ci-main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/ci-main.lua -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/configure -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/doc/manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/doc/manual.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/examples/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/examples/example.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/examples/example.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/examples/test_list.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/examples/test_list.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/myocamlbuild.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/myocamlbuild.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/setup.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/setup.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/src/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/src/META -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/src/api-ounit.odocl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/src/api-ounit.odocl -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/src/oUnit.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/src/oUnit.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/src/oUnit.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/src/oUnit.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/src/oUnit.mllib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/src/oUnit.mllib -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/src/oUnitDiff.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/src/oUnitDiff.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/src/oUnitDiff.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/src/oUnitDiff.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/ounit/test/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/ounit/test/test.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/.hg_archival.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/.hgignore -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/.hgtags -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/Changelog -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/INSTALL -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/LICENSE -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/Makefile.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/Makefile.conf -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/OCamlMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/OCamlMakefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/OMakefile: -------------------------------------------------------------------------------- 1 | Subdirs() 2 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/README.txt -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/README.win32 -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/examples/OMakefile: -------------------------------------------------------------------------------- 1 | OCAML_LIBRARIES = pcre 2 | 3 | Subdirs() 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/examples/cloc/OMakefile: -------------------------------------------------------------------------------- 1 | OCamlMakeProjDefaults(cloc.exe) 2 | 3 | InstantiateOCamlEnv() 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/examples/count_hash/OMakefile: -------------------------------------------------------------------------------- 1 | OCamlMakeProjDefaults(count_hash.exe) 2 | 3 | InstantiateOCamlEnv() 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/examples/pcregrep/OMakefile: -------------------------------------------------------------------------------- 1 | OCamlMakeProjDefaults(pcregrep.exe) 2 | 3 | InstantiateOCamlEnv() 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/examples/subst/OMakefile: -------------------------------------------------------------------------------- 1 | OCamlMakeProjDefaults(subst.exe) 2 | 3 | InstantiateOCamlEnv() 4 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/lib/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/lib/META -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/lib/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/lib/OMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/lib/OMakefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/lib/pcre.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/lib/pcre.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/lib/pcre.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/lib/pcre.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/pcre-ocaml/lib/pcre_stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pcre-ocaml/lib/pcre_stubs.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/Makefile.pin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/Makefile.pin -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/cache.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/ctxtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/ctxtest.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/ddk-inc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/ddk-inc/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/ddk-inc/mce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/ddk-inc/mce.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/ddk-inc/ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/ddk-inc/ntdef.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/ddk-inc/wdm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/ddk-inc/wdm.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/gentrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/gentrace.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/getpin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/getpin.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/iltest/TRACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/iltest/TRACE -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/listregs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/listregs.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/makefile.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/makefile.rules -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pin_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pin_frame.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pin_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pin_misc.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pin_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pin_misc.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pin_taint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pin_taint.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pin_taint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pin_taint.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pivot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pivot.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pivot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pivot.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/pivottest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/pivottest.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/reg_mapping_pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/reg_mapping_pin.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/snapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/snapshot.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/snapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/snapshot.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/winsyscalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/winsyscalls.cpp -------------------------------------------------------------------------------- /BAP-0.7-moflow/pintraces/winsyscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/pintraces/winsyscalls.h -------------------------------------------------------------------------------- /BAP-0.7-moflow/piqi-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/piqi-files/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/piqi-files/exp.piqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/piqi-files/exp.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/piqi-files/stmt.piqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/piqi-files/stmt.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/piqi-files/type.piqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/piqi-files/type.piqi -------------------------------------------------------------------------------- /BAP-0.7-moflow/solvers/getz3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/solvers/getz3.sh -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests-proj.example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests-proj.example/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests-proj.example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests-proj.example/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/C/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/C/Makefile.defs: -------------------------------------------------------------------------------- 1 | 2 | CSRC=$(wildcard *.c) 3 | CEXECS = $(CSRC:%.c=%) 4 | 5 | -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/C/bof1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/C/bof1.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/C/taint_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/C/taint_test.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/C/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/C/test.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/C/unroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/C/unroll.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/arithmetic_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/arithmetic_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/asm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/asm/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/asm/nop.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/asm/nop.S -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/asmir_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/asmir_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/ast_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/ast_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/bap_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/bap_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/disasm_i386_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/disasm_i386_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/dominator_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/dominator_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/eval_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/eval_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/il_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/il_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/predicate_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/predicate_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/traces_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/traces_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/unroll_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/unroll_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/tests/var_suite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/tests/var_suite.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils-proj.example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils-proj.example/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils-proj.example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils-proj.example/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/Makefile.in -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/backtaint.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/backtaint.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/codegen.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/codegen.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/formula.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/formula.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/get_functions.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/get_functions.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/ileval.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/ileval.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/iltrans.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/iltrans.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/solvepredicate.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/solvepredicate.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/streamtrans.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/streamtrans.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/toil.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/toil.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/utils/topredicate.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/utils/topredicate.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/Changes -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/LICENSE -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/META: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/META -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/Makefile -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/README -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/big_int_Z.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/big_int_Z.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/big_int_Z.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/big_int_Z.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/bitest.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/bitest.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/caml_z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/caml_z.c -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/caml_z_i686.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/caml_z_i686.S -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/caml_z_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/caml_z_x86_64.S -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/config.guess -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/configure -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/project.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/project.mak -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/q.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/q.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/q.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/q.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/test.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/test.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/z.mlip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/z.mlip -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/z.mlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/z.mlp -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/z_mlgmpidl.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/z_mlgmpidl.ml -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/z_mlgmpidl.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/z_mlgmpidl.mli -------------------------------------------------------------------------------- /BAP-0.7-moflow/zarith-1.0/z_pp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/BAP-0.7-moflow/zarith-1.0/z_pp.pl -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/README.md -------------------------------------------------------------------------------- /afl-dyninst/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/afl-dyninst/AUTHORS -------------------------------------------------------------------------------- /afl-dyninst/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/afl-dyninst/LICENSE -------------------------------------------------------------------------------- /afl-dyninst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/afl-dyninst/Makefile -------------------------------------------------------------------------------- /afl-dyninst/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/afl-dyninst/README.txt -------------------------------------------------------------------------------- /afl-dyninst/afl-dyninst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/afl-dyninst/afl-dyninst.cpp -------------------------------------------------------------------------------- /afl-dyninst/libAflDyninst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cisco-Talos/moflow/HEAD/afl-dyninst/libAflDyninst.cpp --------------------------------------------------------------------------------