├── .gitmodules
├── LICENSE
├── README.md
├── bin
└── run_intriguer.py
├── intriguer_afl
├── Makefile
├── afl-analyze.c
├── afl-as.c
├── afl-as.h
├── afl-cmin
├── afl-fuzz.c
├── afl-gcc.c
├── afl-gotcpu.c
├── afl-plot
├── afl-showmap.c
├── afl-tmin.c
├── afl-whatsup
├── alloc-inl.h
├── config.h
├── debug.h
├── dictionaries
│ ├── README.dictionaries
│ ├── gif.dict
│ ├── html_tags.dict
│ ├── jpeg.dict
│ ├── js.dict
│ ├── pdf.dict
│ ├── png.dict
│ ├── sql.dict
│ ├── tiff.dict
│ ├── webp.dict
│ └── xml.dict
├── docs
│ ├── COPYING
│ ├── ChangeLog
│ ├── INSTALL
│ ├── QuickStartGuide.txt
│ ├── README
│ ├── env_variables.txt
│ ├── historical_notes.txt
│ ├── life_pro_tips.txt
│ ├── notes_for_asan.txt
│ ├── parallel_fuzzing.txt
│ ├── perf_tips.txt
│ ├── sister_projects.txt
│ ├── status_screen.txt
│ ├── technical_details.txt
│ ├── visualization
│ │ └── afl_gzip.png
│ └── vuln_samples
│ │ ├── bash-cmd-exec.var
│ │ ├── bash-uninit-mem.var
│ │ ├── ffmpeg-h264-bad-ptr-800m.mp4
│ │ ├── ffmpeg-h264-bad-read.mp4
│ │ ├── ffmpeg-h264-call-stack-overflow.mp4
│ │ ├── file-fpu-exception.elf
│ │ ├── firefox-bmp-leak.bmp
│ │ ├── firefox-chrome-leak.jpg
│ │ ├── firefox-gif-leak.gif
│ │ ├── firefox-gif-leak2.gif
│ │ ├── jxrlib-crash.jxr
│ │ ├── jxrlib-crash2.jxr
│ │ ├── jxrlib-crash3.jxr
│ │ ├── jxrlib-crash4.jxr
│ │ ├── lesspipe-cpio-bad-write.cpio
│ │ ├── libjpeg-sos-leak.jpg
│ │ ├── libjpeg-turbo-dht-leak.jpg
│ │ ├── libtiff-bad-write.tif
│ │ ├── libtiff-uninit-mem.tif
│ │ ├── libtiff-uninit-mem2.tif
│ │ ├── libtiff-uninit-mem3.tif
│ │ ├── libtiff-uninit-mem4.tif
│ │ ├── libxml2-bad-read.xml
│ │ ├── msie-dht-leak.jpg
│ │ ├── msie-jxr-mem-leak.jxr
│ │ ├── msie-png-mem-leak.png
│ │ ├── msie-tiff-mem-leak.tif
│ │ ├── msie-zlib-dos.png
│ │ ├── openssl-null-ptr.der
│ │ ├── openssl-null-ptr2.der
│ │ ├── photoshop-mem-leak.jpg
│ │ ├── sqlite-bad-free.sql
│ │ ├── sqlite-bad-ptr.sql
│ │ ├── sqlite-bad-ptr2.sql
│ │ ├── sqlite-bad-ptr3.sql
│ │ ├── sqlite-heap-overflow.sql
│ │ ├── sqlite-heap-overwrite.sql
│ │ ├── sqlite-negative-memset.sql
│ │ ├── sqlite-null-ptr1.sql
│ │ ├── sqlite-null-ptr10.sql
│ │ ├── sqlite-null-ptr11.sql
│ │ ├── sqlite-null-ptr12.sql
│ │ ├── sqlite-null-ptr13.sql
│ │ ├── sqlite-null-ptr14.sql
│ │ ├── sqlite-null-ptr15.sql
│ │ ├── sqlite-null-ptr2.sql
│ │ ├── sqlite-null-ptr3.sql
│ │ ├── sqlite-null-ptr4.sql
│ │ ├── sqlite-null-ptr5.sql
│ │ ├── sqlite-null-ptr6.sql
│ │ ├── sqlite-null-ptr7.sql
│ │ ├── sqlite-null-ptr8.sql
│ │ ├── sqlite-null-ptr9.sql
│ │ ├── sqlite-oob-read.sql
│ │ ├── sqlite-oob-write.sql
│ │ ├── sqlite-stack-buf-overflow.sql
│ │ ├── sqlite-stack-exhaustion.sql
│ │ ├── sqlite-unint-mem.sql
│ │ ├── sqlite-use-after-free.sql
│ │ ├── strings-bfd-badptr.elf
│ │ ├── strings-bfd-badptr2.elf
│ │ ├── strings-stack-overflow
│ │ ├── strings-unchecked-ctr.elf
│ │ ├── tcpdump-arp-crash.pcap
│ │ ├── tcpdump-ppp-crash.pcap
│ │ ├── unrtf-arbitrary-read.rtf
│ │ └── unzip-t-mem-corruption.zip
├── experimental
│ ├── README.experiments
│ ├── argv_fuzzing
│ │ └── argv-fuzz-inl.h
│ ├── asan_cgroups
│ │ └── limit_memory.sh
│ ├── bash_shellshock
│ │ └── shellshock-fuzz.diff
│ ├── canvas_harness
│ │ └── canvas_harness.html
│ ├── clang_asm_normalize
│ │ └── as
│ ├── crash_triage
│ │ └── triage_crashes.sh
│ ├── distributed_fuzzing
│ │ └── sync_script.sh
│ ├── libpng_no_checksum
│ │ └── libpng-nocrc.patch
│ ├── persistent_demo
│ │ └── persistent_demo.c
│ └── post_library
│ │ ├── post_library.so.c
│ │ └── post_library_png.so.c
├── hash.h
├── libdislocator
│ ├── Makefile
│ ├── README.dislocator
│ └── libdislocator.so.c
├── libtokencap
│ ├── Makefile
│ ├── README.tokencap
│ └── libtokencap.so.c
├── llvm_mode
│ ├── Makefile
│ ├── README.llvm
│ ├── afl-clang-fast.c
│ ├── afl-llvm-pass.so.cc
│ └── afl-llvm-rt.o.c
├── qemu_mode
│ ├── README.qemu
│ ├── build_qemu_support.sh
│ └── patches
│ │ ├── afl-qemu-cpu-inl.h
│ │ ├── cpu-exec.diff
│ │ ├── elfload.diff
│ │ ├── syscall.diff
│ │ └── translate-all.diff
├── test-instr.c
├── testcases
│ ├── README.testcases
│ ├── archives
│ │ ├── common
│ │ │ ├── ar
│ │ │ │ └── small_archive.a
│ │ │ ├── bzip2
│ │ │ │ └── small_archive.bz2
│ │ │ ├── cab
│ │ │ │ └── small_archive.cab
│ │ │ ├── compress
│ │ │ │ └── small_archive.Z
│ │ │ ├── cpio
│ │ │ │ └── small_archive.cpio
│ │ │ ├── gzip
│ │ │ │ └── small_archive.gz
│ │ │ ├── lzo
│ │ │ │ └── small_archive.lzo
│ │ │ ├── rar
│ │ │ │ └── small_archive.rar
│ │ │ ├── tar
│ │ │ │ └── small_archive.tar
│ │ │ ├── xz
│ │ │ │ └── small_archive.xz
│ │ │ └── zip
│ │ │ │ └── small_archive.zip
│ │ └── exotic
│ │ │ ├── arj
│ │ │ └── small_archive.arj
│ │ │ ├── lha
│ │ │ └── small_archive.lha
│ │ │ ├── lrzip
│ │ │ └── small_archive.lrz
│ │ │ ├── lzip
│ │ │ └── small_archive.lz
│ │ │ ├── lzma
│ │ │ └── small_archive.lzma
│ │ │ ├── rzip
│ │ │ └── small_archive.rz
│ │ │ └── zoo
│ │ │ └── small_archive.zoo
│ ├── images
│ │ ├── bmp
│ │ │ └── not_kitty.bmp
│ │ ├── gif
│ │ │ └── not_kitty.gif
│ │ ├── ico
│ │ │ └── not_kitty.ico
│ │ ├── jp2
│ │ │ └── not_kitty.jp2
│ │ ├── jpeg
│ │ │ └── not_kitty.jpg
│ │ ├── jxr
│ │ │ └── not_kitty.jxr
│ │ ├── png
│ │ │ ├── not_kitty.png
│ │ │ ├── not_kitty_alpha.png
│ │ │ ├── not_kitty_gamma.png
│ │ │ └── not_kitty_icc.png
│ │ ├── tiff
│ │ │ └── not_kitty.tiff
│ │ └── webp
│ │ │ └── not_kitty.webp
│ ├── multimedia
│ │ └── h264
│ │ │ └── small_movie.mp4
│ └── others
│ │ ├── elf
│ │ └── small_exec.elf
│ │ ├── js
│ │ └── small_script.js
│ │ ├── pcap
│ │ └── small_capture.pcap
│ │ ├── pdf
│ │ └── small.pdf
│ │ ├── rtf
│ │ └── small_document.rtf
│ │ ├── sql
│ │ └── simple_queries.sql
│ │ ├── text
│ │ └── hello_world.txt
│ │ └── xml
│ │ └── small_document.xml
└── types.h
├── pintool
├── analysis.cpp
├── analysis.hpp
├── executionMonitor.cpp
├── executionMonitor.hpp
├── field_log
├── instruction.cpp
├── instruction.hpp
├── instrument.cpp
├── instrument.hpp
├── makefile
├── makefile.rules
├── syscall.cpp
├── syscall.hpp
├── trace.cpp
└── trace.hpp
├── third_party
└── pin-3.7-97619-0d0c92f4f
│ ├── 1
│ ├── LICENSE
│ ├── README
│ ├── doc
│ └── html
│ │ ├── annotated.html
│ │ ├── bc_s.png
│ │ ├── classCALLSTACK_1_1CallEntry-members.html
│ │ ├── classCALLSTACK_1_1CallEntry.html
│ │ ├── classCALLSTACK_1_1CallStack-members.html
│ │ ├── classCALLSTACK_1_1CallStack.html
│ │ ├── classCALLSTACK_1_1CallStackHandlerParams-members.html
│ │ ├── classCALLSTACK_1_1CallStackHandlerParams.html
│ │ ├── classCALLSTACK_1_1CallStackManager-members.html
│ │ ├── classCALLSTACK_1_1CallStackManager.html
│ │ ├── classCONTROLLER_1_1ALARM__ADDRESS-members.html
│ │ ├── classCONTROLLER_1_1ALARM__ADDRESS.html
│ │ ├── classCONTROLLER_1_1ALARM__CPUID-members.html
│ │ ├── classCONTROLLER_1_1ALARM__CPUID.html
│ │ ├── classCONTROLLER_1_1ALARM__ENTER__FUNC-members.html
│ │ ├── classCONTROLLER_1_1ALARM__ENTER__FUNC.html
│ │ ├── classCONTROLLER_1_1ALARM__EXIT__FUNC-members.html
│ │ ├── classCONTROLLER_1_1ALARM__EXIT__FUNC.html
│ │ ├── classCONTROLLER_1_1ALARM__ICOUNT-members.html
│ │ ├── classCONTROLLER_1_1ALARM__ICOUNT.html
│ │ ├── classCONTROLLER_1_1ALARM__IMAGE-members.html
│ │ ├── classCONTROLLER_1_1ALARM__IMAGE.html
│ │ ├── classCONTROLLER_1_1ALARM__INT3-members.html
│ │ ├── classCONTROLLER_1_1ALARM__INT3.html
│ │ ├── classCONTROLLER_1_1ALARM__INTERACTIVE-members.html
│ │ ├── classCONTROLLER_1_1ALARM__INTERACTIVE.html
│ │ ├── classCONTROLLER_1_1ALARM__ISA__CATEGORY-members.html
│ │ ├── classCONTROLLER_1_1ALARM__ISA__CATEGORY.html
│ │ ├── classCONTROLLER_1_1ALARM__ISA__EXTENSION-members.html
│ │ ├── classCONTROLLER_1_1ALARM__ISA__EXTENSION.html
│ │ ├── classCONTROLLER_1_1ALARM__ITEXT-members.html
│ │ ├── classCONTROLLER_1_1ALARM__ITEXT.html
│ │ ├── classCONTROLLER_1_1ALARM__MAGIC-members.html
│ │ ├── classCONTROLLER_1_1ALARM__MAGIC.html
│ │ ├── classCONTROLLER_1_1ALARM__MANAGER-members.html
│ │ ├── classCONTROLLER_1_1ALARM__MANAGER.html
│ │ ├── classCONTROLLER_1_1ALARM__PCONTROL-members.html
│ │ ├── classCONTROLLER_1_1ALARM__PCONTROL.html
│ │ ├── classCONTROLLER_1_1ALARM__SSC-members.html
│ │ ├── classCONTROLLER_1_1ALARM__SSC.html
│ │ ├── classCONTROLLER_1_1ALARM__SYMBOL-members.html
│ │ ├── classCONTROLLER_1_1ALARM__SYMBOL.html
│ │ ├── classCONTROLLER_1_1ALARM__TIMEOUT-members.html
│ │ ├── classCONTROLLER_1_1ALARM__TIMEOUT.html
│ │ ├── classCONTROLLER_1_1CONTROLLER__EVENTS-members.html
│ │ ├── classCONTROLLER_1_1CONTROLLER__EVENTS.html
│ │ ├── classCONTROLLER_1_1CONTROL__ARGS-members.html
│ │ ├── classCONTROLLER_1_1CONTROL__ARGS.html
│ │ ├── classCONTROLLER_1_1CONTROL__CHAIN-members.html
│ │ ├── classCONTROLLER_1_1CONTROL__CHAIN.html
│ │ ├── classCONTROLLER_1_1CONTROL__IREGIONS-members.html
│ │ ├── classCONTROLLER_1_1CONTROL__IREGIONS.html
│ │ ├── classCONTROLLER_1_1CONTROL__MANAGER-members.html
│ │ ├── classCONTROLLER_1_1CONTROL__MANAGER.html
│ │ ├── classCONTROLLER_1_1CONTROL__PCREGIONS-members.html
│ │ ├── classCONTROLLER_1_1CONTROL__PCREGIONS.html
│ │ ├── classCONTROLLER_1_1IALARM-members.html
│ │ ├── classCONTROLLER_1_1IALARM.html
│ │ ├── classCONTROLLER_1_1IEVENT-members.html
│ │ ├── classCONTROLLER_1_1IEVENT.html
│ │ ├── classCONTROLLER_1_1INIT__ALARM-members.html
│ │ ├── classCONTROLLER_1_1INIT__ALARM.html
│ │ ├── classCONTROLLER_1_1INTERACTIVE__LISTENER-members.html
│ │ ├── classCONTROLLER_1_1INTERACTIVE__LISTENER.html
│ │ ├── classCONTROLLER_1_1IREGION-members.html
│ │ ├── classCONTROLLER_1_1IREGION.html
│ │ ├── classCONTROLLER_1_1PARSER-members.html
│ │ ├── classCONTROLLER_1_1PARSER.html
│ │ ├── classCONTROLLER_1_1PCREGION-members.html
│ │ ├── classCONTROLLER_1_1PCREGION.html
│ │ ├── classCONTROLLER_1_1REGION__UTILS-members.html
│ │ ├── classCONTROLLER_1_1REGION__UTILS.html
│ │ ├── classDEBUGGER__SHELL_1_1ICUSTOM__INSTRUMENTOR-members.html
│ │ ├── classDEBUGGER__SHELL_1_1ICUSTOM__INSTRUMENTOR.html
│ │ ├── classDEBUGGER__SHELL_1_1ISHELL-members.html
│ │ ├── classDEBUGGER__SHELL_1_1ISHELL.html
│ │ ├── classINSTLIB_1_1FILTER-members.html
│ │ ├── classINSTLIB_1_1FILTER.html
│ │ ├── classINSTLIB_1_1FILTER__LIB-members.html
│ │ ├── classINSTLIB_1_1FILTER__LIB.html
│ │ ├── classINSTLIB_1_1FILTER__RTN-members.html
│ │ ├── classINSTLIB_1_1FILTER__RTN.html
│ │ ├── classINSTLIB_1_1FOLLOW__CHILD-members.html
│ │ ├── classINSTLIB_1_1FOLLOW__CHILD.html
│ │ ├── classINSTLIB_1_1ICOUNT-members.html
│ │ ├── classINSTLIB_1_1ICOUNT.html
│ │ ├── classINSTLIB_1_1SKIPPER-members.html
│ │ ├── classINSTLIB_1_1SKIPPER.html
│ │ ├── classINSTLIB_1_1SKIP__INT3-members.html
│ │ ├── classINSTLIB_1_1SKIP__INT3.html
│ │ ├── classINSTLIB_1_1TIME__WARP-members.html
│ │ ├── classINSTLIB_1_1TIME__WARP.html
│ │ ├── classINSTLIB_1_1TIME__WARP__RDTSC-members.html
│ │ ├── classINSTLIB_1_1TIME__WARP__RDTSC.html
│ │ ├── classes.html
│ │ ├── closed.png
│ │ ├── doxygen.css
│ │ ├── doxygen.png
│ │ ├── functions.html
│ │ ├── functions_enum.html
│ │ ├── functions_eval.html
│ │ ├── functions_func.html
│ │ ├── functions_vars.html
│ │ ├── group__ALARM.html
│ │ ├── group__API__REF.html
│ │ ├── group__APPDEBUG__API.html
│ │ ├── group__BBL__BASIC__API.html
│ │ ├── group__BUFFER__API.html
│ │ ├── group__CHILD__PROCESS__API.html
│ │ ├── group__CODECACHE__API.html
│ │ ├── group__CONTEXT__API.html
│ │ ├── group__CONTROLLER__PCREGIONS.html
│ │ ├── group__CONTROLLER__REGIONS.html
│ │ ├── group__DEBUGGER__SHELL.html
│ │ ├── group__DEBUG__API.html
│ │ ├── group__DEPRECATED__PIN__API.html
│ │ ├── group__ERROR__FILE__BASIC.html
│ │ ├── group__EXCEPTION__API.html
│ │ ├── group__FILTER.html
│ │ ├── group__FILTER__LIB.html
│ │ ├── group__FILTER__MULTI.html
│ │ ├── group__FILTER__RTN.html
│ │ ├── group__FOLLOW__CHILD.html
│ │ ├── group__ICOUNT.html
│ │ ├── group__IMG__BASIC__API.html
│ │ ├── group__INSTLIB.html
│ │ ├── group__INST__ARGS.html
│ │ ├── group__INS__BASIC__API.html
│ │ ├── group__INS__BASIC__API__GEN__IA32.html
│ │ ├── group__INS__BASIC__API__IA32.html
│ │ ├── group__INS__INST__API.html
│ │ ├── group__INS__MOD__API__GEN__IA32.html
│ │ ├── group__KNOBS.html
│ │ ├── group__KNOB__API.html
│ │ ├── group__KNOB__BASIC.html
│ │ ├── group__KNOB__PRINT.html
│ │ ├── group__LOCK.html
│ │ ├── group__MISC.html
│ │ ├── group__MISC__PARSE.html
│ │ ├── group__MISC__PRINT.html
│ │ ├── group__PHYSICAL__CONTEXT__API.html
│ │ ├── group__PIN__CALLBACKS.html
│ │ ├── group__PIN__CONTROL.html
│ │ ├── group__PIN__PROCESS__API.html
│ │ ├── group__PIN__SYSCALL__API.html
│ │ ├── group__PIN__THREAD__API.html
│ │ ├── group__PROTO.html
│ │ ├── group__PROTO__API.html
│ │ ├── group__REG__BASIC__API.html
│ │ ├── group__REG__CPU__GENERIC.html
│ │ ├── group__REG__CPU__IA32.html
│ │ ├── group__RTN__BASIC__API.html
│ │ ├── group__SEC__BASIC__API.html
│ │ ├── group__SKIPPER.html
│ │ ├── group__SKIP__INT3.html
│ │ ├── group__STOPPED__THREAD__API.html
│ │ ├── group__SYM__BASIC__API.html
│ │ ├── group__TIME__WARPER.html
│ │ ├── group__TIME__WARPER__RDTSC.html
│ │ ├── group__TRACE__BASIC__API.html
│ │ ├── group__TRACE__VERSION__API.html
│ │ ├── group__TYPE__BASE.html
│ │ ├── group__UTILS.html
│ │ ├── hierarchy.html
│ │ ├── index.html
│ │ ├── installdox
│ │ ├── jquery.js
│ │ ├── modules.html
│ │ ├── namespaceLEVEL__BASE.html
│ │ ├── namespaceLEVEL__CORE.html
│ │ ├── namespaceLEVEL__PINCLIENT.html
│ │ ├── namespacemembers.html
│ │ ├── namespacemembers_0x61.html
│ │ ├── namespacemembers_0x62.html
│ │ ├── namespacemembers_0x63.html
│ │ ├── namespacemembers_0x64.html
│ │ ├── namespacemembers_0x65.html
│ │ ├── namespacemembers_0x66.html
│ │ ├── namespacemembers_0x67.html
│ │ ├── namespacemembers_0x68.html
│ │ ├── namespacemembers_0x69.html
│ │ ├── namespacemembers_0x6a.html
│ │ ├── namespacemembers_0x6b.html
│ │ ├── namespacemembers_0x6c.html
│ │ ├── namespacemembers_0x6d.html
│ │ ├── namespacemembers_0x6e.html
│ │ ├── namespacemembers_0x6f.html
│ │ ├── namespacemembers_0x70.html
│ │ ├── namespacemembers_0x72.html
│ │ ├── namespacemembers_0x73.html
│ │ ├── namespacemembers_0x74.html
│ │ ├── namespacemembers_0x75.html
│ │ ├── namespacemembers_0x76.html
│ │ ├── namespacemembers_0x78.html
│ │ ├── namespacemembers_enum.html
│ │ ├── namespacemembers_eval.html
│ │ ├── namespacemembers_func.html
│ │ ├── namespacemembers_func_0x62.html
│ │ ├── namespacemembers_func_0x63.html
│ │ ├── namespacemembers_func_0x64.html
│ │ ├── namespacemembers_func_0x65.html
│ │ ├── namespacemembers_func_0x66.html
│ │ ├── namespacemembers_func_0x67.html
│ │ ├── namespacemembers_func_0x68.html
│ │ ├── namespacemembers_func_0x69.html
│ │ ├── namespacemembers_func_0x6a.html
│ │ ├── namespacemembers_func_0x6b.html
│ │ ├── namespacemembers_func_0x6c.html
│ │ ├── namespacemembers_func_0x6d.html
│ │ ├── namespacemembers_func_0x6e.html
│ │ ├── namespacemembers_func_0x6f.html
│ │ ├── namespacemembers_func_0x70.html
│ │ ├── namespacemembers_func_0x72.html
│ │ ├── namespacemembers_func_0x73.html
│ │ ├── namespacemembers_func_0x74.html
│ │ ├── namespacemembers_func_0x75.html
│ │ ├── namespacemembers_func_0x76.html
│ │ ├── namespacemembers_func_0x78.html
│ │ ├── namespacemembers_type.html
│ │ ├── namespacemembers_vars.html
│ │ ├── namespaces.html
│ │ ├── nav_f.png
│ │ ├── nav_h.png
│ │ ├── open.png
│ │ ├── pin-debugger-attach.png
│ │ ├── pin-debugger-option-pages-properties.png
│ │ ├── pin-debugger-project-properties1.png
│ │ ├── pin-debugger-project-properties2.png
│ │ ├── search
│ │ ├── all_5f.html
│ │ ├── all_61.html
│ │ ├── all_62.html
│ │ ├── all_63.html
│ │ ├── all_64.html
│ │ ├── all_65.html
│ │ ├── all_66.html
│ │ ├── all_67.html
│ │ ├── all_68.html
│ │ ├── all_69.html
│ │ ├── all_6a.html
│ │ ├── all_6b.html
│ │ ├── all_6c.html
│ │ ├── all_6d.html
│ │ ├── all_6e.html
│ │ ├── all_6f.html
│ │ ├── all_70.html
│ │ ├── all_72.html
│ │ ├── all_73.html
│ │ ├── all_74.html
│ │ ├── all_75.html
│ │ ├── all_76.html
│ │ ├── all_78.html
│ │ ├── all_7e.html
│ │ ├── classes_5f.html
│ │ ├── classes_61.html
│ │ ├── classes_63.html
│ │ ├── classes_64.html
│ │ ├── classes_66.html
│ │ ├── classes_69.html
│ │ ├── classes_6c.html
│ │ ├── classes_70.html
│ │ ├── classes_72.html
│ │ ├── classes_73.html
│ │ ├── classes_74.html
│ │ ├── close.png
│ │ ├── enums_61.html
│ │ ├── enums_62.html
│ │ ├── enums_63.html
│ │ ├── enums_65.html
│ │ ├── enums_66.html
│ │ ├── enums_69.html
│ │ ├── enums_6b.html
│ │ ├── enums_6c.html
│ │ ├── enums_6d.html
│ │ ├── enums_70.html
│ │ ├── enums_72.html
│ │ ├── enums_73.html
│ │ ├── enums_75.html
│ │ ├── enums_76.html
│ │ ├── enumvalues_61.html
│ │ ├── enumvalues_62.html
│ │ ├── enumvalues_64.html
│ │ ├── enumvalues_65.html
│ │ ├── enumvalues_66.html
│ │ ├── enumvalues_69.html
│ │ ├── enumvalues_6b.html
│ │ ├── enumvalues_6c.html
│ │ ├── enumvalues_6d.html
│ │ ├── enumvalues_6e.html
│ │ ├── enumvalues_6f.html
│ │ ├── enumvalues_70.html
│ │ ├── enumvalues_72.html
│ │ ├── enumvalues_73.html
│ │ ├── enumvalues_75.html
│ │ ├── functions_61.html
│ │ ├── functions_62.html
│ │ ├── functions_63.html
│ │ ├── functions_64.html
│ │ ├── functions_65.html
│ │ ├── functions_66.html
│ │ ├── functions_67.html
│ │ ├── functions_68.html
│ │ ├── functions_69.html
│ │ ├── functions_6a.html
│ │ ├── functions_6b.html
│ │ ├── functions_6c.html
│ │ ├── functions_6d.html
│ │ ├── functions_6e.html
│ │ ├── functions_6f.html
│ │ ├── functions_70.html
│ │ ├── functions_72.html
│ │ ├── functions_73.html
│ │ ├── functions_74.html
│ │ ├── functions_75.html
│ │ ├── functions_76.html
│ │ ├── functions_78.html
│ │ ├── functions_7e.html
│ │ ├── mag_sel.png
│ │ ├── namespaces_6c.html
│ │ ├── nomatches.html
│ │ ├── search.css
│ │ ├── search.js
│ │ ├── search_l.png
│ │ ├── search_m.png
│ │ ├── search_r.png
│ │ ├── typedefs_61.html
│ │ ├── typedefs_63.html
│ │ ├── typedefs_64.html
│ │ ├── typedefs_65.html
│ │ ├── typedefs_66.html
│ │ ├── typedefs_67.html
│ │ ├── typedefs_69.html
│ │ ├── typedefs_6d.html
│ │ ├── typedefs_6f.html
│ │ ├── typedefs_70.html
│ │ ├── typedefs_72.html
│ │ ├── typedefs_73.html
│ │ ├── typedefs_74.html
│ │ ├── variables_5f.html
│ │ ├── variables_61.html
│ │ ├── variables_62.html
│ │ ├── variables_63.html
│ │ ├── variables_66.html
│ │ ├── variables_69.html
│ │ ├── variables_6c.html
│ │ ├── variables_6d.html
│ │ ├── variables_6e.html
│ │ ├── variables_6f.html
│ │ ├── variables_70.html
│ │ ├── variables_72.html
│ │ ├── variables_73.html
│ │ └── variables_76.html
│ │ ├── stack-debugger-commands.png
│ │ ├── stack-debugger-custom-break.png
│ │ ├── structCALLSTACK_1_1CallStackInfoStruct-members.html
│ │ ├── structCALLSTACK_1_1CallStackInfoStruct.html
│ │ ├── structCALL__APPLICATION__FUNCTION__PARAM-members.html
│ │ ├── structCALL__APPLICATION__FUNCTION__PARAM.html
│ │ ├── structCONTROLLER_1_1CACHELINE__COUNTER-members.html
│ │ ├── structCONTROLLER_1_1CACHELINE__COUNTER.html
│ │ ├── structCONTROLLER_1_1CHAIN__EVENT-members.html
│ │ ├── structCONTROLLER_1_1CHAIN__EVENT.html
│ │ ├── structCONTROLLER_1_1CONTROL__HANDLER__PARAMS-members.html
│ │ ├── structCONTROLLER_1_1CONTROL__HANDLER__PARAMS.html
│ │ ├── structDEBUGGER__REG__DESCRIPTION-members.html
│ │ ├── structDEBUGGER__REG__DESCRIPTION.html
│ │ ├── structDEBUGGER__SHELL_1_1STARTUP__ARGUMENTS-members.html
│ │ ├── structDEBUGGER__SHELL_1_1STARTUP__ARGUMENTS.html
│ │ ├── structDEBUG__CONNECTION__INFO-members.html
│ │ ├── structDEBUG__CONNECTION__INFO.html
│ │ ├── structDEBUG__MODE-members.html
│ │ ├── structDEBUG__MODE.html
│ │ ├── structLEVEL__BASE_1_1ImageLoaderInfo-members.html
│ │ ├── structLEVEL__BASE_1_1ImageLoaderInfo.html
│ │ ├── structLEVEL__BASE_1_1LINUX__LOADER__IMAGE__INFO-members.html
│ │ ├── structLEVEL__BASE_1_1LINUX__LOADER__IMAGE__INFO.html
│ │ ├── structPARG__T-members.html
│ │ ├── structPARG__T.html
│ │ ├── structPIN__CODE__RANGE-members.html
│ │ ├── structPIN__CODE__RANGE.html
│ │ ├── structPIN__MEM__ACCESS__INFO-members.html
│ │ ├── structPIN__MEM__ACCESS__INFO.html
│ │ ├── structPIN__MEM__TRANS__INFO-members.html
│ │ ├── structPIN__MEM__TRANS__INFO.html
│ │ ├── structPIN__MULTI__MEM__ACCESS__INFO-members.html
│ │ ├── structPIN__MULTI__MEM__ACCESS__INFO.html
│ │ ├── struct__PinPargClass-members.html
│ │ ├── struct__PinPargClass.html
│ │ ├── struct__PinPargClass_3_01T_01_5_01_4-members.html
│ │ ├── struct__PinPargClass_3_01T_01_5_01_4.html
│ │ ├── struct__PinPargClass_3_01T_01_6_01_4-members.html
│ │ ├── struct__PinPargClass_3_01T_01_6_01_4.html
│ │ ├── struct__PinPargClass_3_01bool_01_4-members.html
│ │ ├── struct__PinPargClass_3_01bool_01_4.html
│ │ ├── struct__PinPargClass_3_01char_01_4-members.html
│ │ ├── struct__PinPargClass_3_01char_01_4.html
│ │ ├── struct__PinPargClass_3_01double_01_4-members.html
│ │ ├── struct__PinPargClass_3_01double_01_4.html
│ │ ├── struct__PinPargClass_3_01float_01_4-members.html
│ │ ├── struct__PinPargClass_3_01float_01_4.html
│ │ ├── struct__PinPargClass_3_01int_01_4-members.html
│ │ ├── struct__PinPargClass_3_01int_01_4.html
│ │ ├── struct__PinPargClass_3_01long_01_4-members.html
│ │ ├── struct__PinPargClass_3_01long_01_4.html
│ │ ├── struct__PinPargClass_3_01long_01long_01_4-members.html
│ │ ├── struct__PinPargClass_3_01long_01long_01_4.html
│ │ ├── struct__PinPargClass_3_01short_01_4-members.html
│ │ ├── struct__PinPargClass_3_01short_01_4.html
│ │ ├── struct__PinPargClass_3_01signed_01char_01_4-members.html
│ │ ├── struct__PinPargClass_3_01signed_01char_01_4.html
│ │ ├── struct__PinPargClass_3_01unsigned_01char_01_4-members.html
│ │ ├── struct__PinPargClass_3_01unsigned_01char_01_4.html
│ │ ├── struct__PinPargClass_3_01unsigned_01int_01_4-members.html
│ │ ├── struct__PinPargClass_3_01unsigned_01int_01_4.html
│ │ ├── struct__PinPargClass_3_01unsigned_01long_01_4-members.html
│ │ ├── struct__PinPargClass_3_01unsigned_01long_01_4.html
│ │ ├── struct__PinPargClass_3_01unsigned_01long_01long_01_4-members.html
│ │ ├── struct__PinPargClass_3_01unsigned_01long_01long_01_4.html
│ │ ├── struct__PinPargClass_3_01unsigned_01short_01_4-members.html
│ │ ├── struct__PinPargClass_3_01unsigned_01short_01_4.html
│ │ ├── struct__PinPargClass_3_01void_01_4-members.html
│ │ ├── struct__PinPargClass_3_01void_01_4.html
│ │ ├── struct__tcpClientStruct-members.html
│ │ ├── struct__tcpClientStruct.html
│ │ ├── struct__tcpServerStruct-members.html
│ │ ├── struct__tcpServerStruct.html
│ │ ├── tab_a.png
│ │ ├── tab_b.png
│ │ ├── tab_h.png
│ │ ├── tab_s.png
│ │ ├── tabs.css
│ │ ├── unionPIN__MEM__TRANS__FLAGS-members.html
│ │ ├── unionPIN__MEM__TRANS__FLAGS.html
│ │ ├── unionPIN__REGISTER-members.html
│ │ └── unionPIN__REGISTER.html
│ ├── extlicense
│ ├── LICENSE-FreeBSD
│ ├── LICENSE-llvm
│ ├── LICENSE-stlport
│ ├── NOTICE-libc
│ ├── NOTICE-libdl
│ ├── NOTICE-libm
│ └── NOTICE-linker
│ ├── extras
│ ├── components
│ │ ├── include
│ │ │ ├── asm.h
│ │ │ ├── asm
│ │ │ │ ├── gas-x86.h
│ │ │ │ ├── masm-x86.h
│ │ │ │ ├── nasm-x86.h
│ │ │ │ ├── unix-intel64.h
│ │ │ │ └── windows-intel64.h
│ │ │ ├── atomic.hpp
│ │ │ ├── atomic
│ │ │ │ ├── config.hpp
│ │ │ │ ├── exponential-backoff.hpp
│ │ │ │ ├── fixed-lifo.hpp
│ │ │ │ ├── fixed-multimap.hpp
│ │ │ │ ├── fixed-multiset.hpp
│ │ │ │ ├── idset.hpp
│ │ │ │ ├── lifo-ctr.hpp
│ │ │ │ ├── lifo-ptr.hpp
│ │ │ │ ├── nullstats.hpp
│ │ │ │ ├── ops-enum.hpp
│ │ │ │ ├── ops.hpp
│ │ │ │ └── private
│ │ │ │ │ ├── backoff-impl.hpp
│ │ │ │ │ ├── ia32
│ │ │ │ │ ├── ops-impl-ia32-asm.hpp
│ │ │ │ │ └── ops-impl.hpp
│ │ │ │ │ ├── intel64
│ │ │ │ │ ├── ops-impl-intel64-asm.hpp
│ │ │ │ │ └── ops-impl.hpp
│ │ │ │ │ └── ops-common-impl.hpp
│ │ │ ├── debugger-protocol.hpp
│ │ │ ├── debugger-protocol
│ │ │ │ ├── event-linux.hpp
│ │ │ │ ├── event-mac.hpp
│ │ │ │ ├── event-windows.hpp
│ │ │ │ ├── forward.hpp
│ │ │ │ ├── image-linux.hpp
│ │ │ │ ├── image-mac.hpp
│ │ │ │ ├── image-windows.hpp
│ │ │ │ ├── regs-gdb-linux-avx32.hpp
│ │ │ │ ├── regs-gdb-linux-avx512-32.hpp
│ │ │ │ ├── regs-gdb-linux-avx512-64.hpp
│ │ │ │ ├── regs-gdb-linux-avx64.hpp
│ │ │ │ ├── regs-gdb-linux-ia32.hpp
│ │ │ │ ├── regs-gdb-linux-intel64.hpp
│ │ │ │ ├── regs-gdb-mac-ia32.hpp
│ │ │ │ ├── regs-gdb-mac-intel64.hpp
│ │ │ │ ├── regs-windows-avx32.hpp
│ │ │ │ ├── regs-windows-avx512-32.hpp
│ │ │ │ ├── regs-windows-avx512-64.hpp
│ │ │ │ ├── regs-windows-avx64.hpp
│ │ │ │ ├── regs-windows-ia32.hpp
│ │ │ │ ├── regs-windows-intel64.hpp
│ │ │ │ ├── thread-linux.hpp
│ │ │ │ ├── thread-mac.hpp
│ │ │ │ └── thread-windows.hpp
│ │ │ ├── types.h
│ │ │ ├── util.hpp
│ │ │ └── util
│ │ │ │ ├── data.hpp
│ │ │ │ ├── intel-fp.hpp
│ │ │ │ ├── locker.hpp
│ │ │ │ ├── numberbits.hpp
│ │ │ │ ├── quote-argument-ms.hpp
│ │ │ │ ├── range.hpp
│ │ │ │ ├── regvalue.hpp
│ │ │ │ ├── round.hpp
│ │ │ │ ├── scoped-array.hpp
│ │ │ │ ├── scoped-ptr.hpp
│ │ │ │ ├── singleton.hpp
│ │ │ │ └── strings.hpp
│ │ └── lib
│ │ │ ├── ia32
│ │ │ ├── libatomic.a
│ │ │ ├── libdebugger-protocol.a
│ │ │ └── libdebugger-protocol.so
│ │ │ └── intel64
│ │ │ ├── libatomic.a
│ │ │ ├── libdebugger-protocol.a
│ │ │ └── libdebugger-protocol.so
│ ├── crt
│ │ ├── doc
│ │ │ └── html
│ │ │ │ ├── annotated.html
│ │ │ │ ├── bc_s.png
│ │ │ │ ├── classes.html
│ │ │ │ ├── closed.png
│ │ │ │ ├── doxygen.css
│ │ │ │ ├── doxygen.png
│ │ │ │ ├── functions.html
│ │ │ │ ├── functions_vars.html
│ │ │ │ ├── group__OS__APIS__DEF.html
│ │ │ │ ├── group__OS__APIS__FILE.html
│ │ │ │ ├── group__OS__APIS__HOST.html
│ │ │ │ ├── group__OS__APIS__IPC.html
│ │ │ │ ├── group__OS__APIS__MEMORY.html
│ │ │ │ ├── group__OS__APIS__MUTEX.html
│ │ │ │ ├── group__OS__APIS__PIN__TLS.html
│ │ │ │ ├── group__OS__APIS__PROCESS.html
│ │ │ │ ├── group__OS__APIS__RW__LOCK.html
│ │ │ │ ├── group__OS__APIS__SIGNALS.html
│ │ │ │ ├── group__OS__APIS__THREAD.html
│ │ │ │ ├── group__OS__APIS__THREAD__MANAGEMENT.html
│ │ │ │ ├── group__OS__APIS__TIME.html
│ │ │ │ ├── group__OS__APIS__TYPES.html
│ │ │ │ ├── index.html
│ │ │ │ ├── installdox
│ │ │ │ ├── jquery.js
│ │ │ │ ├── modules.html
│ │ │ │ ├── nav_f.png
│ │ │ │ ├── nav_h.png
│ │ │ │ ├── open.png
│ │ │ │ ├── search
│ │ │ │ ├── all_5f.html
│ │ │ │ ├── all_61.html
│ │ │ │ ├── all_62.html
│ │ │ │ ├── all_67.html
│ │ │ │ ├── all_6b.html
│ │ │ │ ├── all_6d.html
│ │ │ │ ├── all_6f.html
│ │ │ │ ├── all_70.html
│ │ │ │ ├── all_73.html
│ │ │ │ ├── all_74.html
│ │ │ │ ├── classes_5f.html
│ │ │ │ ├── classes_61.html
│ │ │ │ ├── classes_6b.html
│ │ │ │ ├── classes_6f.html
│ │ │ │ ├── classes_73.html
│ │ │ │ ├── close.png
│ │ │ │ ├── mag_sel.png
│ │ │ │ ├── nomatches.html
│ │ │ │ ├── search.css
│ │ │ │ ├── search.js
│ │ │ │ ├── search_l.png
│ │ │ │ ├── search_m.png
│ │ │ │ ├── search_r.png
│ │ │ │ ├── variables_5f.html
│ │ │ │ ├── variables_62.html
│ │ │ │ ├── variables_67.html
│ │ │ │ ├── variables_6d.html
│ │ │ │ ├── variables_6f.html
│ │ │ │ ├── variables_70.html
│ │ │ │ ├── variables_73.html
│ │ │ │ └── variables_74.html
│ │ │ │ ├── structOS__APIS__RW__LOCK__IMPL__T-members.html
│ │ │ │ ├── structOS__APIS__RW__LOCK__IMPL__T.html
│ │ │ │ ├── structOS__MEMORY__AT__ADDR__INFORMATION-members.html
│ │ │ │ ├── structOS__MEMORY__AT__ADDR__INFORMATION.html
│ │ │ │ ├── structSIGACTION-members.html
│ │ │ │ ├── structSIGACTION.html
│ │ │ │ ├── struct__OS__APIS__MUTEX__TYPE-members.html
│ │ │ │ ├── struct__OS__APIS__MUTEX__TYPE.html
│ │ │ │ ├── struct__OS__FILE__UNIQUE__ID-members.html
│ │ │ │ ├── struct__OS__FILE__UNIQUE__ID.html
│ │ │ │ ├── struct__OS__RETURN__CODE-members.html
│ │ │ │ ├── struct__OS__RETURN__CODE.html
│ │ │ │ ├── struct__OS__RETURN__CODE__POSIX-members.html
│ │ │ │ ├── struct__OS__RETURN__CODE__POSIX.html
│ │ │ │ ├── structkernel__sigaction-members.html
│ │ │ │ ├── structkernel__sigaction.html
│ │ │ │ ├── tab_a.png
│ │ │ │ ├── tab_b.png
│ │ │ │ ├── tab_h.png
│ │ │ │ ├── tab_s.png
│ │ │ │ ├── tabs.css
│ │ │ │ ├── unionALIGNED__TO-members.html
│ │ │ │ └── unionALIGNED__TO.html
│ │ ├── include
│ │ │ ├── alloca.h
│ │ │ ├── amd64
│ │ │ │ └── machine
│ │ │ │ │ └── fenv.h
│ │ │ ├── android
│ │ │ │ ├── api-level.h
│ │ │ │ ├── dlext.h
│ │ │ │ └── set_abort_message.h
│ │ │ ├── ar.h
│ │ │ ├── arch-x86
│ │ │ │ └── machine
│ │ │ │ │ ├── asm.h
│ │ │ │ │ ├── elf_machdep.h
│ │ │ │ │ ├── endian.h
│ │ │ │ │ ├── exec.h
│ │ │ │ │ └── setjmp.h
│ │ │ ├── arch-x86_64
│ │ │ │ └── machine
│ │ │ │ │ ├── asm.h
│ │ │ │ │ ├── elf_machdep.h
│ │ │ │ │ ├── endian.h
│ │ │ │ │ ├── exec.h
│ │ │ │ │ ├── fpu.h
│ │ │ │ │ └── setjmp.h
│ │ │ ├── arm
│ │ │ │ └── machine
│ │ │ │ │ └── fenv.h
│ │ │ ├── arm64
│ │ │ │ └── machine
│ │ │ │ │ └── fenv.h
│ │ │ ├── arpa
│ │ │ │ ├── inet.h
│ │ │ │ ├── nameser.h
│ │ │ │ ├── nameser_compat.h
│ │ │ │ └── telnet.h
│ │ │ ├── assert.h
│ │ │ ├── baresyscall
│ │ │ │ ├── baresyscall.h
│ │ │ │ ├── ia32-linux
│ │ │ │ │ └── baresyscall.h
│ │ │ │ ├── ia32-mac
│ │ │ │ │ └── baresyscall.h
│ │ │ │ ├── ia32-windows
│ │ │ │ │ └── baresyscall.h
│ │ │ │ ├── intel64-linux
│ │ │ │ │ └── baresyscall.h
│ │ │ │ ├── intel64-mac
│ │ │ │ │ └── baresyscall.h
│ │ │ │ ├── intel64-windows
│ │ │ │ │ └── baresyscall.h
│ │ │ │ ├── linux-baresyscall.h
│ │ │ │ ├── mac-baresyscall.h
│ │ │ │ ├── syscalltypes.h
│ │ │ │ ├── unix-baresyscall.h
│ │ │ │ └── windows-baresyscall.h
│ │ │ ├── byteswap.h
│ │ │ ├── complex.h
│ │ │ ├── ctype.h
│ │ │ ├── dirent.h
│ │ │ ├── dlfcn.h
│ │ │ ├── elf.h
│ │ │ ├── endian.h
│ │ │ ├── err.h
│ │ │ ├── errno.h
│ │ │ ├── execinfo.h
│ │ │ ├── fcntl.h
│ │ │ ├── features.h
│ │ │ ├── fenv.h
│ │ │ ├── fnmatch.h
│ │ │ ├── freebsd
│ │ │ │ ├── include
│ │ │ │ │ └── elf.h
│ │ │ │ └── sys
│ │ │ │ │ ├── compat
│ │ │ │ │ └── linux
│ │ │ │ │ │ └── linux_misc.h
│ │ │ │ │ ├── sys
│ │ │ │ │ ├── elf32.h
│ │ │ │ │ ├── elf64.h
│ │ │ │ │ └── elf_common.h
│ │ │ │ │ └── x86
│ │ │ │ │ └── include
│ │ │ │ │ └── elf.h
│ │ │ ├── fts.h
│ │ │ ├── ftw.h
│ │ │ ├── getopt.h
│ │ │ ├── grp.h
│ │ │ ├── i387
│ │ │ │ └── machine
│ │ │ │ │ └── fenv.h
│ │ │ ├── inttypes.h
│ │ │ ├── kernel
│ │ │ │ └── uapi
│ │ │ │ │ ├── asm-arm
│ │ │ │ │ └── asm
│ │ │ │ │ │ ├── a.out.h
│ │ │ │ │ │ ├── auxvec.h
│ │ │ │ │ │ ├── bitsperlong.h
│ │ │ │ │ │ ├── byteorder.h
│ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ ├── hwcap.h
│ │ │ │ │ │ ├── ioctl.h
│ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ ├── ipcbuf.h
│ │ │ │ │ │ ├── kvm.h
│ │ │ │ │ │ ├── kvm_para.h
│ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ ├── msgbuf.h
│ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ ├── perf_regs.h
│ │ │ │ │ │ ├── poll.h
│ │ │ │ │ │ ├── posix_types.h
│ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ ├── sembuf.h
│ │ │ │ │ │ ├── setup.h
│ │ │ │ │ │ ├── shmbuf.h
│ │ │ │ │ │ ├── sigcontext.h
│ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ ├── signal.h
│ │ │ │ │ │ ├── socket.h
│ │ │ │ │ │ ├── sockios.h
│ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ ├── statfs.h
│ │ │ │ │ │ ├── swab.h
│ │ │ │ │ │ ├── termbits.h
│ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ ├── types.h
│ │ │ │ │ │ └── unistd.h
│ │ │ │ │ ├── asm-arm64
│ │ │ │ │ └── asm
│ │ │ │ │ │ ├── auxvec.h
│ │ │ │ │ │ ├── bitsperlong.h
│ │ │ │ │ │ ├── byteorder.h
│ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ ├── hwcap.h
│ │ │ │ │ │ ├── ioctl.h
│ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ ├── ipcbuf.h
│ │ │ │ │ │ ├── kvm.h
│ │ │ │ │ │ ├── kvm_para.h
│ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ ├── msgbuf.h
│ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ ├── poll.h
│ │ │ │ │ │ ├── posix_types.h
│ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ ├── sembuf.h
│ │ │ │ │ │ ├── setup.h
│ │ │ │ │ │ ├── shmbuf.h
│ │ │ │ │ │ ├── sigcontext.h
│ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ ├── signal.h
│ │ │ │ │ │ ├── socket.h
│ │ │ │ │ │ ├── sockios.h
│ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ ├── statfs.h
│ │ │ │ │ │ ├── swab.h
│ │ │ │ │ │ ├── termbits.h
│ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ ├── types.h
│ │ │ │ │ │ └── unistd.h
│ │ │ │ │ ├── asm-generic
│ │ │ │ │ ├── auxvec.h
│ │ │ │ │ ├── bitsperlong.h
│ │ │ │ │ ├── errno-base.h
│ │ │ │ │ ├── errno.h
│ │ │ │ │ ├── fcntl.h
│ │ │ │ │ ├── int-l64.h
│ │ │ │ │ ├── int-ll64.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── ioctls.h
│ │ │ │ │ ├── ipcbuf.h
│ │ │ │ │ ├── kvm_para.h
│ │ │ │ │ ├── mman-common.h
│ │ │ │ │ ├── mman.h
│ │ │ │ │ ├── msgbuf.h
│ │ │ │ │ ├── param.h
│ │ │ │ │ ├── poll.h
│ │ │ │ │ ├── posix_types.h
│ │ │ │ │ ├── resource.h
│ │ │ │ │ ├── sembuf.h
│ │ │ │ │ ├── setup.h
│ │ │ │ │ ├── shmbuf.h
│ │ │ │ │ ├── shmparam.h
│ │ │ │ │ ├── siginfo.h
│ │ │ │ │ ├── signal-defs.h
│ │ │ │ │ ├── signal.h
│ │ │ │ │ ├── socket.h
│ │ │ │ │ ├── sockios.h
│ │ │ │ │ ├── stat.h
│ │ │ │ │ ├── statfs.h
│ │ │ │ │ ├── swab.h
│ │ │ │ │ ├── termbits.h
│ │ │ │ │ ├── termios.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ ├── ucontext.h
│ │ │ │ │ └── unistd.h
│ │ │ │ │ ├── asm-mips
│ │ │ │ │ └── asm
│ │ │ │ │ │ ├── auxvec.h
│ │ │ │ │ │ ├── bitsperlong.h
│ │ │ │ │ │ ├── break.h
│ │ │ │ │ │ ├── byteorder.h
│ │ │ │ │ │ ├── cachectl.h
│ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ ├── inst.h
│ │ │ │ │ │ ├── ioctl.h
│ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ ├── ipcbuf.h
│ │ │ │ │ │ ├── kvm.h
│ │ │ │ │ │ ├── kvm_para.h
│ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ ├── msgbuf.h
│ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ ├── poll.h
│ │ │ │ │ │ ├── posix_types.h
│ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ ├── sembuf.h
│ │ │ │ │ │ ├── setup.h
│ │ │ │ │ │ ├── sgidefs.h
│ │ │ │ │ │ ├── shmbuf.h
│ │ │ │ │ │ ├── sigcontext.h
│ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ ├── signal.h
│ │ │ │ │ │ ├── socket.h
│ │ │ │ │ │ ├── sockios.h
│ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ ├── statfs.h
│ │ │ │ │ │ ├── swab.h
│ │ │ │ │ │ ├── sysmips.h
│ │ │ │ │ │ ├── termbits.h
│ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ ├── types.h
│ │ │ │ │ │ ├── ucontext.h
│ │ │ │ │ │ └── unistd.h
│ │ │ │ │ ├── asm-x86
│ │ │ │ │ └── asm
│ │ │ │ │ │ ├── a.out.h
│ │ │ │ │ │ ├── auxvec.h
│ │ │ │ │ │ ├── bitsperlong.h
│ │ │ │ │ │ ├── boot.h
│ │ │ │ │ │ ├── bootparam.h
│ │ │ │ │ │ ├── byteorder.h
│ │ │ │ │ │ ├── debugreg.h
│ │ │ │ │ │ ├── e820.h
│ │ │ │ │ │ ├── errno.h
│ │ │ │ │ │ ├── fcntl.h
│ │ │ │ │ │ ├── hw_breakpoint.h
│ │ │ │ │ │ ├── hyperv.h
│ │ │ │ │ │ ├── ioctl.h
│ │ │ │ │ │ ├── ioctls.h
│ │ │ │ │ │ ├── ipcbuf.h
│ │ │ │ │ │ ├── ist.h
│ │ │ │ │ │ ├── kvm.h
│ │ │ │ │ │ ├── kvm_para.h
│ │ │ │ │ │ ├── ldt.h
│ │ │ │ │ │ ├── mce.h
│ │ │ │ │ │ ├── mman.h
│ │ │ │ │ │ ├── msgbuf.h
│ │ │ │ │ │ ├── msr-index.h
│ │ │ │ │ │ ├── msr.h
│ │ │ │ │ │ ├── mtrr.h
│ │ │ │ │ │ ├── param.h
│ │ │ │ │ │ ├── perf_regs.h
│ │ │ │ │ │ ├── poll.h
│ │ │ │ │ │ ├── posix_types.h
│ │ │ │ │ │ ├── posix_types_32.h
│ │ │ │ │ │ ├── posix_types_64.h
│ │ │ │ │ │ ├── posix_types_x32.h
│ │ │ │ │ │ ├── prctl.h
│ │ │ │ │ │ ├── processor-flags.h
│ │ │ │ │ │ ├── ptrace-abi.h
│ │ │ │ │ │ ├── ptrace.h
│ │ │ │ │ │ ├── resource.h
│ │ │ │ │ │ ├── sembuf.h
│ │ │ │ │ │ ├── setup.h
│ │ │ │ │ │ ├── shmbuf.h
│ │ │ │ │ │ ├── sigcontext.h
│ │ │ │ │ │ ├── sigcontext32.h
│ │ │ │ │ │ ├── siginfo.h
│ │ │ │ │ │ ├── signal.h
│ │ │ │ │ │ ├── socket.h
│ │ │ │ │ │ ├── sockios.h
│ │ │ │ │ │ ├── stat.h
│ │ │ │ │ │ ├── statfs.h
│ │ │ │ │ │ ├── svm.h
│ │ │ │ │ │ ├── swab.h
│ │ │ │ │ │ ├── termbits.h
│ │ │ │ │ │ ├── termios.h
│ │ │ │ │ │ ├── types.h
│ │ │ │ │ │ ├── ucontext.h
│ │ │ │ │ │ ├── unistd.h
│ │ │ │ │ │ ├── unistd_32.h
│ │ │ │ │ │ ├── unistd_64.h
│ │ │ │ │ │ ├── unistd_x32.h
│ │ │ │ │ │ ├── vm86.h
│ │ │ │ │ │ ├── vmx.h
│ │ │ │ │ │ └── vsyscall.h
│ │ │ │ │ ├── drm
│ │ │ │ │ ├── armada_drm.h
│ │ │ │ │ ├── drm.h
│ │ │ │ │ ├── drm_fourcc.h
│ │ │ │ │ ├── drm_mode.h
│ │ │ │ │ ├── drm_sarea.h
│ │ │ │ │ ├── exynos_drm.h
│ │ │ │ │ ├── i810_drm.h
│ │ │ │ │ ├── i915_drm.h
│ │ │ │ │ ├── mga_drm.h
│ │ │ │ │ ├── msm_drm.h
│ │ │ │ │ ├── nouveau_drm.h
│ │ │ │ │ ├── omap_drm.h
│ │ │ │ │ ├── qxl_drm.h
│ │ │ │ │ ├── r128_drm.h
│ │ │ │ │ ├── radeon_drm.h
│ │ │ │ │ ├── savage_drm.h
│ │ │ │ │ ├── sis_drm.h
│ │ │ │ │ ├── tegra_drm.h
│ │ │ │ │ ├── via_drm.h
│ │ │ │ │ └── vmwgfx_drm.h
│ │ │ │ │ ├── linux
│ │ │ │ │ ├── a.out.h
│ │ │ │ │ ├── acct.h
│ │ │ │ │ ├── adb.h
│ │ │ │ │ ├── adfs_fs.h
│ │ │ │ │ ├── affs_hardblocks.h
│ │ │ │ │ ├── agpgart.h
│ │ │ │ │ ├── aio_abi.h
│ │ │ │ │ ├── android_alarm.h
│ │ │ │ │ ├── apm_bios.h
│ │ │ │ │ ├── arcfb.h
│ │ │ │ │ ├── ashmem.h
│ │ │ │ │ ├── atalk.h
│ │ │ │ │ ├── atm.h
│ │ │ │ │ ├── atm_eni.h
│ │ │ │ │ ├── atm_he.h
│ │ │ │ │ ├── atm_idt77105.h
│ │ │ │ │ ├── atm_nicstar.h
│ │ │ │ │ ├── atm_tcp.h
│ │ │ │ │ ├── atm_zatm.h
│ │ │ │ │ ├── atmapi.h
│ │ │ │ │ ├── atmarp.h
│ │ │ │ │ ├── atmbr2684.h
│ │ │ │ │ ├── atmclip.h
│ │ │ │ │ ├── atmdev.h
│ │ │ │ │ ├── atmioc.h
│ │ │ │ │ ├── atmlec.h
│ │ │ │ │ ├── atmmpc.h
│ │ │ │ │ ├── atmppp.h
│ │ │ │ │ ├── atmsap.h
│ │ │ │ │ ├── atmsvc.h
│ │ │ │ │ ├── audit.h
│ │ │ │ │ ├── auto_fs.h
│ │ │ │ │ ├── auto_fs4.h
│ │ │ │ │ ├── auxvec.h
│ │ │ │ │ ├── ax25.h
│ │ │ │ │ ├── b1lli.h
│ │ │ │ │ ├── baycom.h
│ │ │ │ │ ├── bcache.h
│ │ │ │ │ ├── bcm933xx_hcs.h
│ │ │ │ │ ├── bfs_fs.h
│ │ │ │ │ ├── binder.h
│ │ │ │ │ ├── binfmts.h
│ │ │ │ │ ├── blkpg.h
│ │ │ │ │ ├── blktrace_api.h
│ │ │ │ │ ├── bpqether.h
│ │ │ │ │ ├── bsg.h
│ │ │ │ │ ├── btrfs.h
│ │ │ │ │ ├── byteorder
│ │ │ │ │ │ ├── big_endian.h
│ │ │ │ │ │ └── little_endian.h
│ │ │ │ │ ├── caif
│ │ │ │ │ │ ├── caif_socket.h
│ │ │ │ │ │ └── if_caif.h
│ │ │ │ │ ├── can.h
│ │ │ │ │ ├── can
│ │ │ │ │ │ ├── bcm.h
│ │ │ │ │ │ ├── error.h
│ │ │ │ │ │ ├── gw.h
│ │ │ │ │ │ ├── netlink.h
│ │ │ │ │ │ └── raw.h
│ │ │ │ │ ├── capability.h
│ │ │ │ │ ├── capi.h
│ │ │ │ │ ├── cciss_defs.h
│ │ │ │ │ ├── cciss_ioctl.h
│ │ │ │ │ ├── cdrom.h
│ │ │ │ │ ├── cgroupstats.h
│ │ │ │ │ ├── chio.h
│ │ │ │ │ ├── cifs
│ │ │ │ │ │ └── cifs_mount.h
│ │ │ │ │ ├── cm4000_cs.h
│ │ │ │ │ ├── cn_proc.h
│ │ │ │ │ ├── coda.h
│ │ │ │ │ ├── coda_psdev.h
│ │ │ │ │ ├── coff.h
│ │ │ │ │ ├── compiler.h
│ │ │ │ │ ├── connector.h
│ │ │ │ │ ├── const.h
│ │ │ │ │ ├── cramfs_fs.h
│ │ │ │ │ ├── cuda.h
│ │ │ │ │ ├── cyclades.h
│ │ │ │ │ ├── cycx_cfm.h
│ │ │ │ │ ├── dcbnl.h
│ │ │ │ │ ├── dccp.h
│ │ │ │ │ ├── dlm.h
│ │ │ │ │ ├── dlm_device.h
│ │ │ │ │ ├── dlm_netlink.h
│ │ │ │ │ ├── dlm_plock.h
│ │ │ │ │ ├── dlmconstants.h
│ │ │ │ │ ├── dm-ioctl.h
│ │ │ │ │ ├── dm-log-userspace.h
│ │ │ │ │ ├── dn.h
│ │ │ │ │ ├── dqblk_xfs.h
│ │ │ │ │ ├── dvb
│ │ │ │ │ │ ├── audio.h
│ │ │ │ │ │ ├── ca.h
│ │ │ │ │ │ ├── dmx.h
│ │ │ │ │ │ ├── frontend.h
│ │ │ │ │ │ ├── net.h
│ │ │ │ │ │ ├── osd.h
│ │ │ │ │ │ ├── version.h
│ │ │ │ │ │ └── video.h
│ │ │ │ │ ├── edd.h
│ │ │ │ │ ├── efs_fs_sb.h
│ │ │ │ │ ├── elf-em.h
│ │ │ │ │ ├── elf-fdpic.h
│ │ │ │ │ ├── elfcore.h
│ │ │ │ │ ├── errno.h
│ │ │ │ │ ├── errqueue.h
│ │ │ │ │ ├── ethtool.h
│ │ │ │ │ ├── eventpoll.h
│ │ │ │ │ ├── fadvise.h
│ │ │ │ │ ├── falloc.h
│ │ │ │ │ ├── fanotify.h
│ │ │ │ │ ├── fb.h
│ │ │ │ │ ├── fcntl.h
│ │ │ │ │ ├── fd.h
│ │ │ │ │ ├── fdreg.h
│ │ │ │ │ ├── fib_rules.h
│ │ │ │ │ ├── fiemap.h
│ │ │ │ │ ├── filter.h
│ │ │ │ │ ├── firewire-cdev.h
│ │ │ │ │ ├── firewire-constants.h
│ │ │ │ │ ├── flat.h
│ │ │ │ │ ├── fs.h
│ │ │ │ │ ├── fsl_hypervisor.h
│ │ │ │ │ ├── fuse.h
│ │ │ │ │ ├── futex.h
│ │ │ │ │ ├── gameport.h
│ │ │ │ │ ├── gen_stats.h
│ │ │ │ │ ├── genetlink.h
│ │ │ │ │ ├── genwqe
│ │ │ │ │ │ └── genwqe_card.h
│ │ │ │ │ ├── gfs2_ondisk.h
│ │ │ │ │ ├── gigaset_dev.h
│ │ │ │ │ ├── hash_info.h
│ │ │ │ │ ├── hdlc.h
│ │ │ │ │ ├── hdlc
│ │ │ │ │ │ └── ioctl.h
│ │ │ │ │ ├── hdlcdrv.h
│ │ │ │ │ ├── hdreg.h
│ │ │ │ │ ├── hid.h
│ │ │ │ │ ├── hiddev.h
│ │ │ │ │ ├── hidraw.h
│ │ │ │ │ ├── hpet.h
│ │ │ │ │ ├── hsi
│ │ │ │ │ │ └── hsi_char.h
│ │ │ │ │ ├── hsr_netlink.h
│ │ │ │ │ ├── hw_breakpoint.h
│ │ │ │ │ ├── hysdn_if.h
│ │ │ │ │ ├── i2c-dev.h
│ │ │ │ │ ├── i2c.h
│ │ │ │ │ ├── i2o-dev.h
│ │ │ │ │ ├── i8k.h
│ │ │ │ │ ├── icmp.h
│ │ │ │ │ ├── icmpv6.h
│ │ │ │ │ ├── if.h
│ │ │ │ │ ├── if_addr.h
│ │ │ │ │ ├── if_addrlabel.h
│ │ │ │ │ ├── if_alg.h
│ │ │ │ │ ├── if_arcnet.h
│ │ │ │ │ ├── if_arp.h
│ │ │ │ │ ├── if_bonding.h
│ │ │ │ │ ├── if_bridge.h
│ │ │ │ │ ├── if_cablemodem.h
│ │ │ │ │ ├── if_eql.h
│ │ │ │ │ ├── if_ether.h
│ │ │ │ │ ├── if_fc.h
│ │ │ │ │ ├── if_fddi.h
│ │ │ │ │ ├── if_frad.h
│ │ │ │ │ ├── if_hippi.h
│ │ │ │ │ ├── if_infiniband.h
│ │ │ │ │ ├── if_link.h
│ │ │ │ │ ├── if_ltalk.h
│ │ │ │ │ ├── if_packet.h
│ │ │ │ │ ├── if_phonet.h
│ │ │ │ │ ├── if_plip.h
│ │ │ │ │ ├── if_ppp.h
│ │ │ │ │ ├── if_pppol2tp.h
│ │ │ │ │ ├── if_pppolac.h
│ │ │ │ │ ├── if_pppopns.h
│ │ │ │ │ ├── if_pppox.h
│ │ │ │ │ ├── if_slip.h
│ │ │ │ │ ├── if_team.h
│ │ │ │ │ ├── if_tun.h
│ │ │ │ │ ├── if_tunnel.h
│ │ │ │ │ ├── if_vlan.h
│ │ │ │ │ ├── if_x25.h
│ │ │ │ │ ├── igmp.h
│ │ │ │ │ ├── in.h
│ │ │ │ │ ├── in6.h
│ │ │ │ │ ├── in_route.h
│ │ │ │ │ ├── inet_diag.h
│ │ │ │ │ ├── inotify.h
│ │ │ │ │ ├── input.h
│ │ │ │ │ ├── ioctl.h
│ │ │ │ │ ├── ion.h
│ │ │ │ │ ├── ioprio.h
│ │ │ │ │ ├── ip.h
│ │ │ │ │ ├── ip6_tunnel.h
│ │ │ │ │ ├── ip_vs.h
│ │ │ │ │ ├── ipc.h
│ │ │ │ │ ├── ipmi.h
│ │ │ │ │ ├── ipmi_msgdefs.h
│ │ │ │ │ ├── ipsec.h
│ │ │ │ │ ├── ipv6.h
│ │ │ │ │ ├── ipv6_route.h
│ │ │ │ │ ├── ipx.h
│ │ │ │ │ ├── irda.h
│ │ │ │ │ ├── irqnr.h
│ │ │ │ │ ├── isdn.h
│ │ │ │ │ ├── isdn
│ │ │ │ │ │ └── capicmd.h
│ │ │ │ │ ├── isdn_divertif.h
│ │ │ │ │ ├── isdn_ppp.h
│ │ │ │ │ ├── isdnif.h
│ │ │ │ │ ├── iso_fs.h
│ │ │ │ │ ├── ivtv.h
│ │ │ │ │ ├── ivtvfb.h
│ │ │ │ │ ├── ixjuser.h
│ │ │ │ │ ├── jffs2.h
│ │ │ │ │ ├── joystick.h
│ │ │ │ │ ├── kd.h
│ │ │ │ │ ├── kdev_t.h
│ │ │ │ │ ├── kernel-page-flags.h
│ │ │ │ │ ├── kernel.h
│ │ │ │ │ ├── kernelcapi.h
│ │ │ │ │ ├── kexec.h
│ │ │ │ │ ├── keyboard.h
│ │ │ │ │ ├── keychord.h
│ │ │ │ │ ├── keyctl.h
│ │ │ │ │ ├── kvm.h
│ │ │ │ │ ├── kvm_para.h
│ │ │ │ │ ├── l2tp.h
│ │ │ │ │ ├── libc-compat.h
│ │ │ │ │ ├── limits.h
│ │ │ │ │ ├── llc.h
│ │ │ │ │ ├── loop.h
│ │ │ │ │ ├── lp.h
│ │ │ │ │ ├── magic.h
│ │ │ │ │ ├── major.h
│ │ │ │ │ ├── map_to_7segment.h
│ │ │ │ │ ├── matroxfb.h
│ │ │ │ │ ├── mdio.h
│ │ │ │ │ ├── media.h
│ │ │ │ │ ├── mei.h
│ │ │ │ │ ├── mempolicy.h
│ │ │ │ │ ├── meye.h
│ │ │ │ │ ├── mic_common.h
│ │ │ │ │ ├── mic_ioctl.h
│ │ │ │ │ ├── mii.h
│ │ │ │ │ ├── minix_fs.h
│ │ │ │ │ ├── mman.h
│ │ │ │ │ ├── mmc
│ │ │ │ │ │ └── ioctl.h
│ │ │ │ │ ├── mmtimer.h
│ │ │ │ │ ├── module.h
│ │ │ │ │ ├── mqueue.h
│ │ │ │ │ ├── mroute.h
│ │ │ │ │ ├── mroute6.h
│ │ │ │ │ ├── msdos_fs.h
│ │ │ │ │ ├── msg.h
│ │ │ │ │ ├── mtio.h
│ │ │ │ │ ├── n_r3964.h
│ │ │ │ │ ├── nbd.h
│ │ │ │ │ ├── ncp.h
│ │ │ │ │ ├── ncp_fs.h
│ │ │ │ │ ├── ncp_mount.h
│ │ │ │ │ ├── ncp_no.h
│ │ │ │ │ ├── neighbour.h
│ │ │ │ │ ├── net.h
│ │ │ │ │ ├── net_dropmon.h
│ │ │ │ │ ├── net_tstamp.h
│ │ │ │ │ ├── netconf.h
│ │ │ │ │ ├── netdevice.h
│ │ │ │ │ ├── netfilter.h
│ │ │ │ │ ├── netfilter
│ │ │ │ │ │ ├── ipset
│ │ │ │ │ │ │ ├── ip_set.h
│ │ │ │ │ │ │ ├── ip_set_bitmap.h
│ │ │ │ │ │ │ ├── ip_set_hash.h
│ │ │ │ │ │ │ └── ip_set_list.h
│ │ │ │ │ │ ├── nf_conntrack_common.h
│ │ │ │ │ │ ├── nf_conntrack_ftp.h
│ │ │ │ │ │ ├── nf_conntrack_sctp.h
│ │ │ │ │ │ ├── nf_conntrack_tcp.h
│ │ │ │ │ │ ├── nf_conntrack_tuple_common.h
│ │ │ │ │ │ ├── nf_nat.h
│ │ │ │ │ │ ├── nf_tables.h
│ │ │ │ │ │ ├── nf_tables_compat.h
│ │ │ │ │ │ ├── nfnetlink.h
│ │ │ │ │ │ ├── nfnetlink_acct.h
│ │ │ │ │ │ ├── nfnetlink_compat.h
│ │ │ │ │ │ ├── nfnetlink_conntrack.h
│ │ │ │ │ │ ├── nfnetlink_cthelper.h
│ │ │ │ │ │ ├── nfnetlink_cttimeout.h
│ │ │ │ │ │ ├── nfnetlink_log.h
│ │ │ │ │ │ ├── nfnetlink_queue.h
│ │ │ │ │ │ ├── x_tables.h
│ │ │ │ │ │ ├── xt_AUDIT.h
│ │ │ │ │ │ ├── xt_CHECKSUM.h
│ │ │ │ │ │ ├── xt_CLASSIFY.h
│ │ │ │ │ │ ├── xt_CONNSECMARK.h
│ │ │ │ │ │ ├── xt_CT.h
│ │ │ │ │ │ ├── xt_HMARK.h
│ │ │ │ │ │ ├── xt_IDLETIMER.h
│ │ │ │ │ │ ├── xt_LED.h
│ │ │ │ │ │ ├── xt_LOG.h
│ │ │ │ │ │ ├── xt_NFLOG.h
│ │ │ │ │ │ ├── xt_NFQUEUE.h
│ │ │ │ │ │ ├── xt_SECMARK.h
│ │ │ │ │ │ ├── xt_SYNPROXY.h
│ │ │ │ │ │ ├── xt_TCPOPTSTRIP.h
│ │ │ │ │ │ ├── xt_TEE.h
│ │ │ │ │ │ ├── xt_TPROXY.h
│ │ │ │ │ │ ├── xt_addrtype.h
│ │ │ │ │ │ ├── xt_bpf.h
│ │ │ │ │ │ ├── xt_cgroup.h
│ │ │ │ │ │ ├── xt_cluster.h
│ │ │ │ │ │ ├── xt_comment.h
│ │ │ │ │ │ ├── xt_connbytes.h
│ │ │ │ │ │ ├── xt_connlabel.h
│ │ │ │ │ │ ├── xt_connlimit.h
│ │ │ │ │ │ ├── xt_connmark.h
│ │ │ │ │ │ ├── xt_conntrack.h
│ │ │ │ │ │ ├── xt_cpu.h
│ │ │ │ │ │ ├── xt_dccp.h
│ │ │ │ │ │ ├── xt_devgroup.h
│ │ │ │ │ │ ├── xt_dscp.h
│ │ │ │ │ │ ├── xt_ecn.h
│ │ │ │ │ │ ├── xt_esp.h
│ │ │ │ │ │ ├── xt_hashlimit.h
│ │ │ │ │ │ ├── xt_helper.h
│ │ │ │ │ │ ├── xt_ipcomp.h
│ │ │ │ │ │ ├── xt_iprange.h
│ │ │ │ │ │ ├── xt_ipvs.h
│ │ │ │ │ │ ├── xt_l2tp.h
│ │ │ │ │ │ ├── xt_length.h
│ │ │ │ │ │ ├── xt_limit.h
│ │ │ │ │ │ ├── xt_mac.h
│ │ │ │ │ │ ├── xt_mark.h
│ │ │ │ │ │ ├── xt_multiport.h
│ │ │ │ │ │ ├── xt_nfacct.h
│ │ │ │ │ │ ├── xt_osf.h
│ │ │ │ │ │ ├── xt_owner.h
│ │ │ │ │ │ ├── xt_physdev.h
│ │ │ │ │ │ ├── xt_pkttype.h
│ │ │ │ │ │ ├── xt_policy.h
│ │ │ │ │ │ ├── xt_quota.h
│ │ │ │ │ │ ├── xt_rateest.h
│ │ │ │ │ │ ├── xt_realm.h
│ │ │ │ │ │ ├── xt_recent.h
│ │ │ │ │ │ ├── xt_rpfilter.h
│ │ │ │ │ │ ├── xt_sctp.h
│ │ │ │ │ │ ├── xt_set.h
│ │ │ │ │ │ ├── xt_socket.h
│ │ │ │ │ │ ├── xt_state.h
│ │ │ │ │ │ ├── xt_statistic.h
│ │ │ │ │ │ ├── xt_string.h
│ │ │ │ │ │ ├── xt_tcpmss.h
│ │ │ │ │ │ ├── xt_tcpudp.h
│ │ │ │ │ │ ├── xt_time.h
│ │ │ │ │ │ └── xt_u32.h
│ │ │ │ │ ├── netfilter_arp.h
│ │ │ │ │ ├── netfilter_arp
│ │ │ │ │ │ ├── arp_tables.h
│ │ │ │ │ │ └── arpt_mangle.h
│ │ │ │ │ ├── netfilter_bridge.h
│ │ │ │ │ ├── netfilter_bridge
│ │ │ │ │ │ ├── ebt_802_3.h
│ │ │ │ │ │ ├── ebt_among.h
│ │ │ │ │ │ ├── ebt_arp.h
│ │ │ │ │ │ ├── ebt_arpreply.h
│ │ │ │ │ │ ├── ebt_ip.h
│ │ │ │ │ │ ├── ebt_ip6.h
│ │ │ │ │ │ ├── ebt_limit.h
│ │ │ │ │ │ ├── ebt_log.h
│ │ │ │ │ │ ├── ebt_mark_m.h
│ │ │ │ │ │ ├── ebt_mark_t.h
│ │ │ │ │ │ ├── ebt_nat.h
│ │ │ │ │ │ ├── ebt_nflog.h
│ │ │ │ │ │ ├── ebt_pkttype.h
│ │ │ │ │ │ ├── ebt_redirect.h
│ │ │ │ │ │ ├── ebt_stp.h
│ │ │ │ │ │ ├── ebt_ulog.h
│ │ │ │ │ │ ├── ebt_vlan.h
│ │ │ │ │ │ └── ebtables.h
│ │ │ │ │ ├── netfilter_decnet.h
│ │ │ │ │ ├── netfilter_ipv4.h
│ │ │ │ │ ├── netfilter_ipv4
│ │ │ │ │ │ ├── ip_tables.h
│ │ │ │ │ │ ├── ipt_CLUSTERIP.h
│ │ │ │ │ │ ├── ipt_LOG.h
│ │ │ │ │ │ ├── ipt_REJECT.h
│ │ │ │ │ │ ├── ipt_ULOG.h
│ │ │ │ │ │ ├── ipt_ah.h
│ │ │ │ │ │ ├── ipt_ecn.h
│ │ │ │ │ │ └── ipt_ttl.h
│ │ │ │ │ ├── netfilter_ipv6.h
│ │ │ │ │ ├── netfilter_ipv6
│ │ │ │ │ │ ├── ip6_tables.h
│ │ │ │ │ │ ├── ip6t_LOG.h
│ │ │ │ │ │ ├── ip6t_NPT.h
│ │ │ │ │ │ ├── ip6t_REJECT.h
│ │ │ │ │ │ ├── ip6t_ah.h
│ │ │ │ │ │ ├── ip6t_frag.h
│ │ │ │ │ │ ├── ip6t_hl.h
│ │ │ │ │ │ ├── ip6t_ipv6header.h
│ │ │ │ │ │ ├── ip6t_mh.h
│ │ │ │ │ │ ├── ip6t_opts.h
│ │ │ │ │ │ └── ip6t_rt.h
│ │ │ │ │ ├── netlink.h
│ │ │ │ │ ├── netlink_diag.h
│ │ │ │ │ ├── netrom.h
│ │ │ │ │ ├── nfc.h
│ │ │ │ │ ├── nfs.h
│ │ │ │ │ ├── nfs2.h
│ │ │ │ │ ├── nfs3.h
│ │ │ │ │ ├── nfs4.h
│ │ │ │ │ ├── nfs4_mount.h
│ │ │ │ │ ├── nfs_fs.h
│ │ │ │ │ ├── nfs_idmap.h
│ │ │ │ │ ├── nfs_mount.h
│ │ │ │ │ ├── nfsacl.h
│ │ │ │ │ ├── nfsd
│ │ │ │ │ │ ├── cld.h
│ │ │ │ │ │ ├── debug.h
│ │ │ │ │ │ ├── export.h
│ │ │ │ │ │ ├── nfsfh.h
│ │ │ │ │ │ └── stats.h
│ │ │ │ │ ├── nl80211.h
│ │ │ │ │ ├── nubus.h
│ │ │ │ │ ├── nvme.h
│ │ │ │ │ ├── nvram.h
│ │ │ │ │ ├── omap3isp.h
│ │ │ │ │ ├── omapfb.h
│ │ │ │ │ ├── oom.h
│ │ │ │ │ ├── openvswitch.h
│ │ │ │ │ ├── packet_diag.h
│ │ │ │ │ ├── param.h
│ │ │ │ │ ├── parport.h
│ │ │ │ │ ├── patchkey.h
│ │ │ │ │ ├── pci.h
│ │ │ │ │ ├── pci_regs.h
│ │ │ │ │ ├── perf_event.h
│ │ │ │ │ ├── personality.h
│ │ │ │ │ ├── pfkeyv2.h
│ │ │ │ │ ├── pg.h
│ │ │ │ │ ├── phantom.h
│ │ │ │ │ ├── phonet.h
│ │ │ │ │ ├── pkt_cls.h
│ │ │ │ │ ├── pkt_sched.h
│ │ │ │ │ ├── pktcdvd.h
│ │ │ │ │ ├── pmu.h
│ │ │ │ │ ├── poll.h
│ │ │ │ │ ├── posix_types.h
│ │ │ │ │ ├── ppdev.h
│ │ │ │ │ ├── ppp-comp.h
│ │ │ │ │ ├── ppp-ioctl.h
│ │ │ │ │ ├── ppp_defs.h
│ │ │ │ │ ├── pps.h
│ │ │ │ │ ├── prctl.h
│ │ │ │ │ ├── ptp_clock.h
│ │ │ │ │ ├── ptrace.h
│ │ │ │ │ ├── qnx4_fs.h
│ │ │ │ │ ├── qnxtypes.h
│ │ │ │ │ ├── quota.h
│ │ │ │ │ ├── radeonfb.h
│ │ │ │ │ ├── raid
│ │ │ │ │ │ ├── md_p.h
│ │ │ │ │ │ └── md_u.h
│ │ │ │ │ ├── random.h
│ │ │ │ │ ├── raw.h
│ │ │ │ │ ├── rds.h
│ │ │ │ │ ├── reboot.h
│ │ │ │ │ ├── reiserfs_fs.h
│ │ │ │ │ ├── reiserfs_xattr.h
│ │ │ │ │ ├── resource.h
│ │ │ │ │ ├── rfkill.h
│ │ │ │ │ ├── romfs_fs.h
│ │ │ │ │ ├── rose.h
│ │ │ │ │ ├── route.h
│ │ │ │ │ ├── rtc.h
│ │ │ │ │ ├── rtnetlink.h
│ │ │ │ │ ├── scc.h
│ │ │ │ │ ├── sched.h
│ │ │ │ │ ├── screen_info.h
│ │ │ │ │ ├── sctp.h
│ │ │ │ │ ├── sdla.h
│ │ │ │ │ ├── seccomp.h
│ │ │ │ │ ├── securebits.h
│ │ │ │ │ ├── selinux_netlink.h
│ │ │ │ │ ├── sem.h
│ │ │ │ │ ├── serial.h
│ │ │ │ │ ├── serial_core.h
│ │ │ │ │ ├── serial_reg.h
│ │ │ │ │ ├── serio.h
│ │ │ │ │ ├── shm.h
│ │ │ │ │ ├── signal.h
│ │ │ │ │ ├── signalfd.h
│ │ │ │ │ ├── snmp.h
│ │ │ │ │ ├── sock_diag.h
│ │ │ │ │ ├── socket.h
│ │ │ │ │ ├── sockios.h
│ │ │ │ │ ├── som.h
│ │ │ │ │ ├── sonet.h
│ │ │ │ │ ├── sonypi.h
│ │ │ │ │ ├── sound.h
│ │ │ │ │ ├── soundcard.h
│ │ │ │ │ ├── spi
│ │ │ │ │ │ └── spidev.h
│ │ │ │ │ ├── stat.h
│ │ │ │ │ ├── stddef.h
│ │ │ │ │ ├── string.h
│ │ │ │ │ ├── sunrpc
│ │ │ │ │ │ └── debug.h
│ │ │ │ │ ├── suspend_ioctls.h
│ │ │ │ │ ├── sw_sync.h
│ │ │ │ │ ├── swab.h
│ │ │ │ │ ├── sync.h
│ │ │ │ │ ├── synclink.h
│ │ │ │ │ ├── sysctl.h
│ │ │ │ │ ├── sysinfo.h
│ │ │ │ │ ├── taskstats.h
│ │ │ │ │ ├── tc_act
│ │ │ │ │ │ ├── tc_csum.h
│ │ │ │ │ │ ├── tc_defact.h
│ │ │ │ │ │ ├── tc_gact.h
│ │ │ │ │ │ ├── tc_ipt.h
│ │ │ │ │ │ ├── tc_mirred.h
│ │ │ │ │ │ ├── tc_nat.h
│ │ │ │ │ │ ├── tc_pedit.h
│ │ │ │ │ │ └── tc_skbedit.h
│ │ │ │ │ ├── tc_ematch
│ │ │ │ │ │ ├── tc_em_cmp.h
│ │ │ │ │ │ ├── tc_em_meta.h
│ │ │ │ │ │ ├── tc_em_nbyte.h
│ │ │ │ │ │ └── tc_em_text.h
│ │ │ │ │ ├── tcp.h
│ │ │ │ │ ├── tcp_metrics.h
│ │ │ │ │ ├── telephony.h
│ │ │ │ │ ├── termios.h
│ │ │ │ │ ├── time.h
│ │ │ │ │ ├── times.h
│ │ │ │ │ ├── timex.h
│ │ │ │ │ ├── tiocl.h
│ │ │ │ │ ├── tipc.h
│ │ │ │ │ ├── tipc_config.h
│ │ │ │ │ ├── toshiba.h
│ │ │ │ │ ├── tty.h
│ │ │ │ │ ├── tty_flags.h
│ │ │ │ │ ├── types.h
│ │ │ │ │ ├── udf_fs_i.h
│ │ │ │ │ ├── udp.h
│ │ │ │ │ ├── uhid.h
│ │ │ │ │ ├── uinput.h
│ │ │ │ │ ├── uio.h
│ │ │ │ │ ├── ultrasound.h
│ │ │ │ │ ├── un.h
│ │ │ │ │ ├── unistd.h
│ │ │ │ │ ├── unix_diag.h
│ │ │ │ │ ├── usb
│ │ │ │ │ │ ├── audio.h
│ │ │ │ │ │ ├── cdc-wdm.h
│ │ │ │ │ │ ├── cdc.h
│ │ │ │ │ │ ├── ch11.h
│ │ │ │ │ │ ├── ch9.h
│ │ │ │ │ │ ├── f_accessory.h
│ │ │ │ │ │ ├── f_mtp.h
│ │ │ │ │ │ ├── functionfs.h
│ │ │ │ │ │ ├── g_printer.h
│ │ │ │ │ │ ├── gadgetfs.h
│ │ │ │ │ │ ├── midi.h
│ │ │ │ │ │ ├── tmc.h
│ │ │ │ │ │ └── video.h
│ │ │ │ │ ├── usbdevice_fs.h
│ │ │ │ │ ├── utime.h
│ │ │ │ │ ├── utsname.h
│ │ │ │ │ ├── uuid.h
│ │ │ │ │ ├── uvcvideo.h
│ │ │ │ │ ├── v4l2-common.h
│ │ │ │ │ ├── v4l2-controls.h
│ │ │ │ │ ├── v4l2-dv-timings.h
│ │ │ │ │ ├── v4l2-mediabus.h
│ │ │ │ │ ├── v4l2-subdev.h
│ │ │ │ │ ├── version.h
│ │ │ │ │ ├── veth.h
│ │ │ │ │ ├── vfio.h
│ │ │ │ │ ├── vhost.h
│ │ │ │ │ ├── videodev2.h
│ │ │ │ │ ├── virtio_9p.h
│ │ │ │ │ ├── virtio_balloon.h
│ │ │ │ │ ├── virtio_blk.h
│ │ │ │ │ ├── virtio_config.h
│ │ │ │ │ ├── virtio_console.h
│ │ │ │ │ ├── virtio_ids.h
│ │ │ │ │ ├── virtio_net.h
│ │ │ │ │ ├── virtio_pci.h
│ │ │ │ │ ├── virtio_ring.h
│ │ │ │ │ ├── virtio_rng.h
│ │ │ │ │ ├── vm_sockets.h
│ │ │ │ │ ├── vsp1.h
│ │ │ │ │ ├── vt.h
│ │ │ │ │ ├── wait.h
│ │ │ │ │ ├── wanrouter.h
│ │ │ │ │ ├── watchdog.h
│ │ │ │ │ ├── wimax.h
│ │ │ │ │ ├── wimax
│ │ │ │ │ │ └── i2400m.h
│ │ │ │ │ ├── wireless.h
│ │ │ │ │ ├── x25.h
│ │ │ │ │ ├── xattr.h
│ │ │ │ │ ├── xfrm.h
│ │ │ │ │ ├── zorro.h
│ │ │ │ │ └── zorro_ids.h
│ │ │ │ │ ├── mac
│ │ │ │ │ ├── fcntl.h
│ │ │ │ │ └── signal.h
│ │ │ │ │ ├── mtd
│ │ │ │ │ ├── inftl-user.h
│ │ │ │ │ ├── mtd-abi.h
│ │ │ │ │ ├── mtd-user.h
│ │ │ │ │ ├── nftl-user.h
│ │ │ │ │ └── ubi-user.h
│ │ │ │ │ ├── rdma
│ │ │ │ │ ├── ib_user_cm.h
│ │ │ │ │ ├── ib_user_mad.h
│ │ │ │ │ ├── ib_user_sa.h
│ │ │ │ │ ├── ib_user_verbs.h
│ │ │ │ │ ├── rdma_netlink.h
│ │ │ │ │ └── rdma_user_cm.h
│ │ │ │ │ ├── scsi
│ │ │ │ │ ├── fc
│ │ │ │ │ │ ├── fc_els.h
│ │ │ │ │ │ ├── fc_fs.h
│ │ │ │ │ │ ├── fc_gs.h
│ │ │ │ │ │ └── fc_ns.h
│ │ │ │ │ ├── scsi_bsg_fc.h
│ │ │ │ │ ├── scsi_netlink.h
│ │ │ │ │ └── scsi_netlink_fc.h
│ │ │ │ │ ├── sound
│ │ │ │ │ ├── asequencer.h
│ │ │ │ │ ├── asound.h
│ │ │ │ │ ├── asound_fm.h
│ │ │ │ │ ├── compress_offload.h
│ │ │ │ │ ├── compress_params.h
│ │ │ │ │ ├── emu10k1.h
│ │ │ │ │ ├── firewire.h
│ │ │ │ │ ├── hdsp.h
│ │ │ │ │ ├── hdspm.h
│ │ │ │ │ ├── sb16_csp.h
│ │ │ │ │ └── sfnt_info.h
│ │ │ │ │ ├── video
│ │ │ │ │ ├── adf.h
│ │ │ │ │ ├── edid.h
│ │ │ │ │ ├── sisfb.h
│ │ │ │ │ └── uvesafb.h
│ │ │ │ │ └── xen
│ │ │ │ │ ├── evtchn.h
│ │ │ │ │ ├── gntalloc.h
│ │ │ │ │ ├── gntdev.h
│ │ │ │ │ └── privcmd.h
│ │ │ ├── lastlog.h
│ │ │ ├── libgen.h
│ │ │ ├── limits.h
│ │ │ ├── link.h
│ │ │ ├── locale.h
│ │ │ ├── mac
│ │ │ │ └── mac-calls.h
│ │ │ ├── machine
│ │ │ │ ├── ieee.h
│ │ │ │ └── wchar_limits.h
│ │ │ ├── malloc.h
│ │ │ ├── math.h
│ │ │ ├── memory.h
│ │ │ ├── mips
│ │ │ │ └── machine
│ │ │ │ │ └── fenv.h
│ │ │ ├── mntent.h
│ │ │ ├── net
│ │ │ │ ├── ethernet.h
│ │ │ │ ├── ethertypes.h
│ │ │ │ ├── if.h
│ │ │ │ ├── if_arp.h
│ │ │ │ ├── if_ether.h
│ │ │ │ ├── if_ieee1394.h
│ │ │ │ ├── if_packet.h
│ │ │ │ ├── if_types.h
│ │ │ │ └── route.h
│ │ │ ├── netdb.h
│ │ │ ├── netinet
│ │ │ │ ├── ether.h
│ │ │ │ ├── icmp6.h
│ │ │ │ ├── if_ether.h
│ │ │ │ ├── in.h
│ │ │ │ ├── in6.h
│ │ │ │ ├── in_systm.h
│ │ │ │ ├── ip.h
│ │ │ │ ├── ip6.h
│ │ │ │ ├── ip_icmp.h
│ │ │ │ ├── tcp.h
│ │ │ │ └── udp.h
│ │ │ ├── netpacket
│ │ │ │ └── packet.h
│ │ │ ├── nsswitch.h
│ │ │ ├── os-apis.h
│ │ │ ├── os-apis
│ │ │ │ ├── file.h
│ │ │ │ ├── host.h
│ │ │ │ ├── ipc-pipe.h
│ │ │ │ ├── ipc.h
│ │ │ │ ├── memory.h
│ │ │ │ ├── mutex.h
│ │ │ │ ├── os_return_codes.h
│ │ │ │ ├── pin-tls.h
│ │ │ │ ├── process-core.h
│ │ │ │ ├── process.h
│ │ │ │ ├── rw-lock.h
│ │ │ │ ├── sigaction_kernel.h
│ │ │ │ ├── signals-core.h
│ │ │ │ ├── signals.h
│ │ │ │ ├── threads-management.h
│ │ │ │ ├── threads.h
│ │ │ │ └── time.h
│ │ │ ├── pathconf.h
│ │ │ ├── paths.h
│ │ │ ├── poll.h
│ │ │ ├── pthread.h
│ │ │ ├── pwd.h
│ │ │ ├── regex.h
│ │ │ ├── resolv.h
│ │ │ ├── sched.h
│ │ │ ├── search.h
│ │ │ ├── semaphore.h
│ │ │ ├── setjmp.h
│ │ │ ├── sgidefs.h
│ │ │ ├── sgtty.h
│ │ │ ├── signal.h
│ │ │ ├── stdatomic.h
│ │ │ ├── stdint.h
│ │ │ ├── stdio.h
│ │ │ ├── stdio_ext.h
│ │ │ ├── stdlib.h
│ │ │ ├── string.h
│ │ │ ├── strings.h
│ │ │ ├── sys
│ │ │ │ ├── _errdefs.h
│ │ │ │ ├── _sigdefs.h
│ │ │ │ ├── _system_properties.h
│ │ │ │ ├── auxv.h
│ │ │ │ ├── cachectl.h
│ │ │ │ ├── capability.h
│ │ │ │ ├── cdefs.h
│ │ │ │ ├── cdefs_elf.h
│ │ │ │ ├── endian.h
│ │ │ │ ├── epoll.h
│ │ │ │ ├── errno.h
│ │ │ │ ├── eventfd.h
│ │ │ │ ├── file.h
│ │ │ │ ├── fsuid.h
│ │ │ │ ├── glibc-syscalls.h
│ │ │ │ ├── inotify.h
│ │ │ │ ├── ioctl.h
│ │ │ │ ├── ioctl_compat.h
│ │ │ │ ├── ipc.h
│ │ │ │ ├── klog.h
│ │ │ │ ├── limits.h
│ │ │ │ ├── mman.h
│ │ │ │ ├── mman_mac.h
│ │ │ │ ├── mman_nonmac.h
│ │ │ │ ├── mount.h
│ │ │ │ ├── msg.h
│ │ │ │ ├── param.h
│ │ │ │ ├── personality.h
│ │ │ │ ├── poll.h
│ │ │ │ ├── prctl.h
│ │ │ │ ├── ptrace.h
│ │ │ │ ├── queue.h
│ │ │ │ ├── reboot.h
│ │ │ │ ├── reg.h
│ │ │ │ ├── resource.h
│ │ │ │ ├── select.h
│ │ │ │ ├── sem.h
│ │ │ │ ├── sendfile.h
│ │ │ │ ├── shm.h
│ │ │ │ ├── signal.h
│ │ │ │ ├── signalfd.h
│ │ │ │ ├── socket.h
│ │ │ │ ├── socketcalls.h
│ │ │ │ ├── stat.h
│ │ │ │ ├── statfs.h
│ │ │ │ ├── statvfs.h
│ │ │ │ ├── swap.h
│ │ │ │ ├── syscall.h
│ │ │ │ ├── sysconf.h
│ │ │ │ ├── sysinfo.h
│ │ │ │ ├── syslimits.h
│ │ │ │ ├── sysmacros.h
│ │ │ │ ├── system_properties.h
│ │ │ │ ├── time.h
│ │ │ │ ├── timerfd.h
│ │ │ │ ├── times.h
│ │ │ │ ├── timex.h
│ │ │ │ ├── ttychars.h
│ │ │ │ ├── ttydefaults.h
│ │ │ │ ├── ttydev.h
│ │ │ │ ├── types.h
│ │ │ │ ├── ucontext.h
│ │ │ │ ├── uio.h
│ │ │ │ ├── un.h
│ │ │ │ ├── user.h
│ │ │ │ ├── utime.h
│ │ │ │ ├── utsname.h
│ │ │ │ ├── vfs.h
│ │ │ │ ├── vt.h
│ │ │ │ ├── wait.h
│ │ │ │ └── xattr.h
│ │ │ ├── syslog.h
│ │ │ ├── termio.h
│ │ │ ├── termios.h
│ │ │ ├── time.h
│ │ │ ├── time64.h
│ │ │ ├── tls-enum.h
│ │ │ ├── toolchains.h
│ │ │ ├── types.h
│ │ │ ├── types_marker.h
│ │ │ ├── uchar.h
│ │ │ ├── ucontext.h
│ │ │ ├── unistd.h
│ │ │ ├── ustat.h
│ │ │ ├── util.h
│ │ │ ├── utime.h
│ │ │ ├── utmp.h
│ │ │ ├── wchar.h
│ │ │ ├── wctype.h
│ │ │ ├── windows
│ │ │ │ ├── gcc_compat.h
│ │ │ │ ├── os_apis_override_win.h
│ │ │ │ ├── util-windows.h
│ │ │ │ └── win_syscalls.h
│ │ │ └── xlocale.h
│ │ └── tzdata
│ ├── libstdc++
│ │ └── include
│ │ │ ├── cassert
│ │ │ ├── cctype
│ │ │ ├── cerrno
│ │ │ ├── cfloat
│ │ │ ├── climits
│ │ │ ├── cmath
│ │ │ ├── csetjmp
│ │ │ ├── csignal
│ │ │ ├── cstddef
│ │ │ ├── cstdint
│ │ │ ├── cstdio
│ │ │ ├── cstdlib
│ │ │ ├── cstring
│ │ │ ├── ctime
│ │ │ ├── cwchar
│ │ │ ├── cwctype_is_not_supported
│ │ │ ├── new
│ │ │ ├── stl_pair.h
│ │ │ ├── typeinfo
│ │ │ └── utility
│ ├── libunwind
│ │ └── include
│ │ │ ├── __libunwind_config.h
│ │ │ ├── libunwind.h
│ │ │ ├── mach-o
│ │ │ └── compact_unwind_encoding.h
│ │ │ └── unwind.h
│ ├── stlport
│ │ └── include
│ │ │ ├── algorithm
│ │ │ ├── assert.h
│ │ │ ├── bitset
│ │ │ ├── cassert
│ │ │ ├── cctype
│ │ │ ├── cerrno
│ │ │ ├── cfloat
│ │ │ ├── ciso646
│ │ │ ├── climits
│ │ │ ├── clocale
│ │ │ ├── cmath
│ │ │ ├── complex
│ │ │ ├── csetjmp
│ │ │ ├── csignal
│ │ │ ├── cstdarg
│ │ │ ├── cstddef
│ │ │ ├── cstdio
│ │ │ ├── cstdlib
│ │ │ ├── cstring
│ │ │ ├── ctime
│ │ │ ├── ctype.h
│ │ │ ├── cwchar
│ │ │ ├── cwctype
│ │ │ ├── cxxabi.h
│ │ │ ├── deque
│ │ │ ├── errno.h
│ │ │ ├── exception
│ │ │ ├── exception.h
│ │ │ ├── float.h
│ │ │ ├── fstream
│ │ │ ├── fstream.h
│ │ │ ├── functional
│ │ │ ├── hash_map
│ │ │ ├── hash_set
│ │ │ ├── iomanip
│ │ │ ├── iomanip.h
│ │ │ ├── ios
│ │ │ ├── ios.h
│ │ │ ├── iosfwd
│ │ │ ├── iostream
│ │ │ ├── iostream.h
│ │ │ ├── iso646.h
│ │ │ ├── istream
│ │ │ ├── istream.h
│ │ │ ├── iterator
│ │ │ ├── limits
│ │ │ ├── limits.h
│ │ │ ├── list
│ │ │ ├── locale
│ │ │ ├── locale.h
│ │ │ ├── map
│ │ │ ├── math.h
│ │ │ ├── memory
│ │ │ ├── new
│ │ │ ├── new.h
│ │ │ ├── numeric
│ │ │ ├── ostream
│ │ │ ├── ostream.h
│ │ │ ├── pthread.h
│ │ │ ├── pthread_alloc
│ │ │ ├── queue
│ │ │ ├── rlocks.h
│ │ │ ├── rope
│ │ │ ├── set
│ │ │ ├── setjmp.h
│ │ │ ├── signal.h
│ │ │ ├── slist
│ │ │ ├── sstream
│ │ │ ├── stack
│ │ │ ├── stdarg.h
│ │ │ ├── stddef.h
│ │ │ ├── stdexcept
│ │ │ ├── stdio.h
│ │ │ ├── stdiostream.h
│ │ │ ├── stdlib.h
│ │ │ ├── stl
│ │ │ ├── _abbrevs.h
│ │ │ ├── _algo.c
│ │ │ ├── _algo.h
│ │ │ ├── _algobase.c
│ │ │ ├── _algobase.h
│ │ │ ├── _alloc.c
│ │ │ ├── _alloc.h
│ │ │ ├── _auto_ptr.h
│ │ │ ├── _bitset.c
│ │ │ ├── _bitset.h
│ │ │ ├── _bvector.h
│ │ │ ├── _carray.h
│ │ │ ├── _cctype.h
│ │ │ ├── _clocale.h
│ │ │ ├── _cmath.h
│ │ │ ├── _codecvt.h
│ │ │ ├── _collate.h
│ │ │ ├── _complex.c
│ │ │ ├── _complex.h
│ │ │ ├── _config_compat_post.h
│ │ │ ├── _construct.h
│ │ │ ├── _cprolog.h
│ │ │ ├── _csetjmp.h
│ │ │ ├── _csignal.h
│ │ │ ├── _cstdarg.h
│ │ │ ├── _cstddef.h
│ │ │ ├── _cstdio.h
│ │ │ ├── _cstdlib.h
│ │ │ ├── _cstring.h
│ │ │ ├── _ctime.h
│ │ │ ├── _ctraits_fns.h
│ │ │ ├── _ctype.h
│ │ │ ├── _cwchar.h
│ │ │ ├── _cwctype.h
│ │ │ ├── _deque.c
│ │ │ ├── _deque.h
│ │ │ ├── _epilog.h
│ │ │ ├── _exception.h
│ │ │ ├── _facets_fwd.h
│ │ │ ├── _fstream.c
│ │ │ ├── _fstream.h
│ │ │ ├── _function.h
│ │ │ ├── _function_adaptors.h
│ │ │ ├── _function_base.h
│ │ │ ├── _hash_fun.h
│ │ │ ├── _hash_map.h
│ │ │ ├── _hash_set.h
│ │ │ ├── _hashtable.c
│ │ │ ├── _hashtable.h
│ │ │ ├── _heap.c
│ │ │ ├── _heap.h
│ │ │ ├── _iomanip.h
│ │ │ ├── _ios.c
│ │ │ ├── _ios.h
│ │ │ ├── _ios_base.h
│ │ │ ├── _ioserr.h
│ │ │ ├── _iosfwd.h
│ │ │ ├── _iostream_string.h
│ │ │ ├── _istream.c
│ │ │ ├── _istream.h
│ │ │ ├── _istreambuf_iterator.h
│ │ │ ├── _iterator.h
│ │ │ ├── _iterator_base.h
│ │ │ ├── _iterator_old.h
│ │ │ ├── _limits.c
│ │ │ ├── _limits.h
│ │ │ ├── _list.c
│ │ │ ├── _list.h
│ │ │ ├── _locale.h
│ │ │ ├── _map.h
│ │ │ ├── _mbstate_t.h
│ │ │ ├── _messages_facets.h
│ │ │ ├── _monetary.c
│ │ │ ├── _monetary.h
│ │ │ ├── _move.h
│ │ │ ├── _move_construct_fwk.h
│ │ │ ├── _new.h
│ │ │ ├── _num_get.c
│ │ │ ├── _num_get.h
│ │ │ ├── _num_put.c
│ │ │ ├── _num_put.h
│ │ │ ├── _numeric.c
│ │ │ ├── _numeric.h
│ │ │ ├── _numpunct.h
│ │ │ ├── _ostream.c
│ │ │ ├── _ostream.h
│ │ │ ├── _ostreambuf_iterator.h
│ │ │ ├── _pair.h
│ │ │ ├── _prolog.h
│ │ │ ├── _pthread_alloc.h
│ │ │ ├── _ptrs_specialize.h
│ │ │ ├── _queue.h
│ │ │ ├── _range_errors.c
│ │ │ ├── _range_errors.h
│ │ │ ├── _raw_storage_iter.h
│ │ │ ├── _relops_cont.h
│ │ │ ├── _relops_hash_cont.h
│ │ │ ├── _rope.c
│ │ │ ├── _rope.h
│ │ │ ├── _set.h
│ │ │ ├── _slist.c
│ │ │ ├── _slist.h
│ │ │ ├── _slist_base.c
│ │ │ ├── _slist_base.h
│ │ │ ├── _sparc_atomic.h
│ │ │ ├── _sstream.c
│ │ │ ├── _sstream.h
│ │ │ ├── _stack.h
│ │ │ ├── _stdexcept.h
│ │ │ ├── _stdexcept_base.c
│ │ │ ├── _stdexcept_base.h
│ │ │ ├── _stlport_version.h
│ │ │ ├── _stream_iterator.h
│ │ │ ├── _streambuf.c
│ │ │ ├── _streambuf.h
│ │ │ ├── _string.c
│ │ │ ├── _string.h
│ │ │ ├── _string_base.h
│ │ │ ├── _string_fwd.h
│ │ │ ├── _string_hash.h
│ │ │ ├── _string_io.c
│ │ │ ├── _string_io.h
│ │ │ ├── _string_npos.h
│ │ │ ├── _string_operators.h
│ │ │ ├── _string_sum.h
│ │ │ ├── _string_sum_methods.h
│ │ │ ├── _string_workaround.h
│ │ │ ├── _strstream.h
│ │ │ ├── _tempbuf.c
│ │ │ ├── _tempbuf.h
│ │ │ ├── _threads.c
│ │ │ ├── _threads.h
│ │ │ ├── _time_facets.c
│ │ │ ├── _time_facets.h
│ │ │ ├── _tree.c
│ │ │ ├── _tree.h
│ │ │ ├── _typeinfo.h
│ │ │ ├── _uninitialized.h
│ │ │ ├── _unordered_map.h
│ │ │ ├── _unordered_set.h
│ │ │ ├── _valarray.c
│ │ │ ├── _valarray.h
│ │ │ ├── _vector.c
│ │ │ ├── _vector.h
│ │ │ ├── boost_type_traits.h
│ │ │ ├── c_locale.h
│ │ │ ├── char_traits.h
│ │ │ ├── concept_checks.h
│ │ │ ├── config
│ │ │ │ ├── _aix.h
│ │ │ │ ├── _android.h
│ │ │ │ ├── _apcc.h
│ │ │ │ ├── _apple.h
│ │ │ │ ├── _as400.h
│ │ │ │ ├── _auto_link.h
│ │ │ │ ├── _bc.h
│ │ │ │ ├── _clang.h
│ │ │ │ ├── _como.h
│ │ │ │ ├── _cray.h
│ │ │ │ ├── _cygwin.h
│ │ │ │ ├── _dec.h
│ │ │ │ ├── _dec_vms.h
│ │ │ │ ├── _detect_dll_or_lib.h
│ │ │ │ ├── _dm.h
│ │ │ │ ├── _epilog.h
│ │ │ │ ├── _evc.h
│ │ │ │ ├── _feedback.h
│ │ │ │ ├── _freebsd.h
│ │ │ │ ├── _fujitsu.h
│ │ │ │ ├── _gcc.h
│ │ │ │ ├── _hpacc.h
│ │ │ │ ├── _hpux.h
│ │ │ │ ├── _ibm.h
│ │ │ │ ├── _icc.h
│ │ │ │ ├── _intel.h
│ │ │ │ ├── _kai.h
│ │ │ │ ├── _linux.h
│ │ │ │ ├── _mac.h
│ │ │ │ ├── _macosx.h
│ │ │ │ ├── _mlc.h
│ │ │ │ ├── _msvc.h
│ │ │ │ ├── _mwerks.h
│ │ │ │ ├── _native_headers.h
│ │ │ │ ├── _openbsd.h
│ │ │ │ ├── _pin.h
│ │ │ │ ├── _prolog.h
│ │ │ │ ├── _sgi.h
│ │ │ │ ├── _solaris.h
│ │ │ │ ├── _sunprocc.h
│ │ │ │ ├── _system.h
│ │ │ │ ├── _warnings_off.h
│ │ │ │ ├── _watcom.h
│ │ │ │ ├── _windows.h
│ │ │ │ ├── compat.h
│ │ │ │ ├── features.h
│ │ │ │ ├── host.h
│ │ │ │ ├── stl_confix.h
│ │ │ │ ├── stl_mycomp.h
│ │ │ │ └── user_config.h
│ │ │ ├── debug
│ │ │ │ ├── _debug.c
│ │ │ │ ├── _debug.h
│ │ │ │ ├── _deque.h
│ │ │ │ ├── _hashtable.h
│ │ │ │ ├── _iterator.h
│ │ │ │ ├── _list.h
│ │ │ │ ├── _slist.h
│ │ │ │ ├── _string.h
│ │ │ │ ├── _string_sum_methods.h
│ │ │ │ ├── _tree.h
│ │ │ │ └── _vector.h
│ │ │ ├── msl_string.h
│ │ │ ├── pointers
│ │ │ │ ├── _deque.h
│ │ │ │ ├── _list.h
│ │ │ │ ├── _set.h
│ │ │ │ ├── _slist.h
│ │ │ │ ├── _tools.h
│ │ │ │ └── _vector.h
│ │ │ ├── type_manips.h
│ │ │ └── type_traits.h
│ │ │ ├── streambuf
│ │ │ ├── streambuf.h
│ │ │ ├── string
│ │ │ ├── string.h
│ │ │ ├── strstream
│ │ │ ├── strstream.h
│ │ │ ├── time.h
│ │ │ ├── type_traits
│ │ │ ├── typeinfo
│ │ │ ├── typeinfo.h
│ │ │ ├── unordered_map
│ │ │ ├── unordered_set
│ │ │ ├── using
│ │ │ ├── cstring
│ │ │ ├── export
│ │ │ ├── fstream
│ │ │ ├── h
│ │ │ │ ├── fstream.h
│ │ │ │ ├── iomanip.h
│ │ │ │ ├── iostream.h
│ │ │ │ ├── ostream.h
│ │ │ │ ├── streambuf.h
│ │ │ │ └── strstream.h
│ │ │ ├── iomanip
│ │ │ ├── ios
│ │ │ ├── iosfwd
│ │ │ ├── iostream
│ │ │ ├── istream
│ │ │ ├── locale
│ │ │ ├── ostream
│ │ │ ├── sstream
│ │ │ ├── streambuf
│ │ │ └── strstream
│ │ │ ├── utility
│ │ │ ├── valarray
│ │ │ ├── vector
│ │ │ ├── wchar.h
│ │ │ └── wctype.h
│ ├── xed-ia32
│ │ ├── LICENSE
│ │ ├── include
│ │ │ └── xed
│ │ │ │ ├── xed-address-width-enum.h
│ │ │ │ ├── xed-agen.h
│ │ │ │ ├── xed-attribute-enum.h
│ │ │ │ ├── xed-attributes.h
│ │ │ │ ├── xed-build-defines.h
│ │ │ │ ├── xed-category-enum.h
│ │ │ │ ├── xed-chip-enum.h
│ │ │ │ ├── xed-chip-features.h
│ │ │ │ ├── xed-common-defs.h
│ │ │ │ ├── xed-common-hdrs.h
│ │ │ │ ├── xed-convert-table-init.h
│ │ │ │ ├── xed-cpuid-bit-enum.h
│ │ │ │ ├── xed-cpuid-rec.h
│ │ │ │ ├── xed-decode.h
│ │ │ │ ├── xed-decoded-inst-api.h
│ │ │ │ ├── xed-decoded-inst.h
│ │ │ │ ├── xed-disas.h
│ │ │ │ ├── xed-encode.h
│ │ │ │ ├── xed-encoder-gen-defs.h
│ │ │ │ ├── xed-encoder-hl.h
│ │ │ │ ├── xed-encoder-iforms.h
│ │ │ │ ├── xed-error-enum.h
│ │ │ │ ├── xed-exception-enum.h
│ │ │ │ ├── xed-extension-enum.h
│ │ │ │ ├── xed-flag-action-enum.h
│ │ │ │ ├── xed-flag-enum.h
│ │ │ │ ├── xed-flags.h
│ │ │ │ ├── xed-format-options.h
│ │ │ │ ├── xed-gen-table-defs.h
│ │ │ │ ├── xed-get-time.h
│ │ │ │ ├── xed-iclass-enum.h
│ │ │ │ ├── xed-iform-enum.h
│ │ │ │ ├── xed-iform-map.h
│ │ │ │ ├── xed-iformfl-enum.h
│ │ │ │ ├── xed-ild.h
│ │ │ │ ├── xed-immdis.h
│ │ │ │ ├── xed-immed.h
│ │ │ │ ├── xed-init-pointer-names.h
│ │ │ │ ├── xed-init.h
│ │ │ │ ├── xed-inst.h
│ │ │ │ ├── xed-interface.h
│ │ │ │ ├── xed-isa-set-enum.h
│ │ │ │ ├── xed-isa-set.h
│ │ │ │ ├── xed-machine-mode-enum.h
│ │ │ │ ├── xed-nonterminal-enum.h
│ │ │ │ ├── xed-operand-accessors.h
│ │ │ │ ├── xed-operand-action-enum.h
│ │ │ │ ├── xed-operand-action.h
│ │ │ │ ├── xed-operand-convert-enum.h
│ │ │ │ ├── xed-operand-ctype-enum.h
│ │ │ │ ├── xed-operand-ctype-map.h
│ │ │ │ ├── xed-operand-element-type-enum.h
│ │ │ │ ├── xed-operand-element-xtype-enum.h
│ │ │ │ ├── xed-operand-enum.h
│ │ │ │ ├── xed-operand-storage.h
│ │ │ │ ├── xed-operand-type-enum.h
│ │ │ │ ├── xed-operand-values-interface.h
│ │ │ │ ├── xed-operand-visibility-enum.h
│ │ │ │ ├── xed-operand-width-enum.h
│ │ │ │ ├── xed-patch.h
│ │ │ │ ├── xed-portability.h
│ │ │ │ ├── xed-print-info.h
│ │ │ │ ├── xed-reg-class-enum.h
│ │ │ │ ├── xed-reg-class.h
│ │ │ │ ├── xed-reg-enum.h
│ │ │ │ ├── xed-reg-role-enum.h
│ │ │ │ ├── xed-rep-prefix.h
│ │ │ │ ├── xed-state.h
│ │ │ │ ├── xed-syntax-enum.h
│ │ │ │ ├── xed-types.h
│ │ │ │ ├── xed-util.h
│ │ │ │ └── xed-version.h
│ │ └── lib
│ │ │ └── libxed.so
│ └── xed-intel64
│ │ ├── LICENSE
│ │ ├── include
│ │ └── xed
│ │ │ ├── xed-address-width-enum.h
│ │ │ ├── xed-agen.h
│ │ │ ├── xed-attribute-enum.h
│ │ │ ├── xed-attributes.h
│ │ │ ├── xed-build-defines.h
│ │ │ ├── xed-category-enum.h
│ │ │ ├── xed-chip-enum.h
│ │ │ ├── xed-chip-features.h
│ │ │ ├── xed-common-defs.h
│ │ │ ├── xed-common-hdrs.h
│ │ │ ├── xed-convert-table-init.h
│ │ │ ├── xed-cpuid-bit-enum.h
│ │ │ ├── xed-cpuid-rec.h
│ │ │ ├── xed-decode.h
│ │ │ ├── xed-decoded-inst-api.h
│ │ │ ├── xed-decoded-inst.h
│ │ │ ├── xed-disas.h
│ │ │ ├── xed-encode.h
│ │ │ ├── xed-encoder-gen-defs.h
│ │ │ ├── xed-encoder-hl.h
│ │ │ ├── xed-encoder-iforms.h
│ │ │ ├── xed-error-enum.h
│ │ │ ├── xed-exception-enum.h
│ │ │ ├── xed-extension-enum.h
│ │ │ ├── xed-flag-action-enum.h
│ │ │ ├── xed-flag-enum.h
│ │ │ ├── xed-flags.h
│ │ │ ├── xed-format-options.h
│ │ │ ├── xed-gen-table-defs.h
│ │ │ ├── xed-get-time.h
│ │ │ ├── xed-iclass-enum.h
│ │ │ ├── xed-iform-enum.h
│ │ │ ├── xed-iform-map.h
│ │ │ ├── xed-iformfl-enum.h
│ │ │ ├── xed-ild.h
│ │ │ ├── xed-immdis.h
│ │ │ ├── xed-immed.h
│ │ │ ├── xed-init-pointer-names.h
│ │ │ ├── xed-init.h
│ │ │ ├── xed-inst.h
│ │ │ ├── xed-interface.h
│ │ │ ├── xed-isa-set-enum.h
│ │ │ ├── xed-isa-set.h
│ │ │ ├── xed-machine-mode-enum.h
│ │ │ ├── xed-nonterminal-enum.h
│ │ │ ├── xed-operand-accessors.h
│ │ │ ├── xed-operand-action-enum.h
│ │ │ ├── xed-operand-action.h
│ │ │ ├── xed-operand-convert-enum.h
│ │ │ ├── xed-operand-ctype-enum.h
│ │ │ ├── xed-operand-ctype-map.h
│ │ │ ├── xed-operand-element-type-enum.h
│ │ │ ├── xed-operand-element-xtype-enum.h
│ │ │ ├── xed-operand-enum.h
│ │ │ ├── xed-operand-storage.h
│ │ │ ├── xed-operand-type-enum.h
│ │ │ ├── xed-operand-values-interface.h
│ │ │ ├── xed-operand-visibility-enum.h
│ │ │ ├── xed-operand-width-enum.h
│ │ │ ├── xed-patch.h
│ │ │ ├── xed-portability.h
│ │ │ ├── xed-print-info.h
│ │ │ ├── xed-reg-class-enum.h
│ │ │ ├── xed-reg-class.h
│ │ │ ├── xed-reg-enum.h
│ │ │ ├── xed-reg-role-enum.h
│ │ │ ├── xed-rep-prefix.h
│ │ │ ├── xed-state.h
│ │ │ ├── xed-syntax-enum.h
│ │ │ ├── xed-types.h
│ │ │ ├── xed-util.h
│ │ │ └── xed-version.h
│ │ └── lib
│ │ └── libxed.so
│ ├── ia32
│ ├── bin
│ │ ├── pinbin
│ │ └── pindb
│ ├── lib-ext
│ │ └── libpin3dwarf.so
│ ├── lib
│ │ ├── libpin-icc.a
│ │ ├── libpin.a
│ │ ├── libpinjitprofiling.so
│ │ ├── libsapin-icc.a
│ │ └── libsapin.a
│ └── runtime
│ │ └── pincrt
│ │ ├── crtbegin.o
│ │ ├── crtbeginS.o
│ │ ├── crtend.o
│ │ ├── crtendS.o
│ │ ├── libc-dynamic.so
│ │ ├── libc-static.a
│ │ ├── libdl-dynamic.so
│ │ ├── libm-dynamic.so
│ │ ├── libos-apis.a
│ │ ├── libstlport-dynamic.so
│ │ ├── libunwind-dynamic.so
│ │ └── linker
│ ├── intel64
│ ├── bin
│ │ ├── pinbin
│ │ └── pindb
│ ├── lib-ext
│ │ └── libpin3dwarf.so
│ ├── lib
│ │ ├── libpin-icc.a
│ │ ├── libpin.a
│ │ ├── libpinjitprofiling.so
│ │ ├── libsapin-icc.a
│ │ └── libsapin.a
│ └── runtime
│ │ └── pincrt
│ │ ├── crtbegin.o
│ │ ├── crtbeginS.o
│ │ ├── crtend.o
│ │ ├── crtendS.o
│ │ ├── libc-dynamic.so
│ │ ├── libc-static.a
│ │ ├── libdl-dynamic.so
│ │ ├── libm-dynamic.so
│ │ ├── libos-apis.a
│ │ ├── libstlport-dynamic.so
│ │ ├── libunwind-dynamic.so
│ │ └── linker
│ ├── pin
│ ├── pin.log
│ ├── redist.txt
│ └── source
│ ├── include
│ └── pin
│ │ ├── compiler_version_check2.H
│ │ ├── foundation.PLH
│ │ ├── gen
│ │ ├── backtrace_u.PH
│ │ ├── base_ia32.PH
│ │ ├── bbl.PH
│ │ ├── cc_used_ia32_l.CVH
│ │ ├── cc_used_ia32e_l.CVH
│ │ ├── child_process.PH
│ │ ├── child_process_client.PH
│ │ ├── debug.PH
│ │ ├── debugger_client.PH
│ │ ├── deprecated_client.PH
│ │ ├── edg.PH
│ │ ├── exception.PH
│ │ ├── fpstate_ia32.PH
│ │ ├── fpstate_ia32e.PH
│ │ ├── image.PH
│ │ ├── image_elf.PH
│ │ ├── img.PH
│ │ ├── ins.PH
│ │ ├── ins_api_xed_ia32.PH
│ │ ├── ins_ia32.PH
│ │ ├── ins_syscall_ia32_unix.PH
│ │ ├── ins_xed_ia32.PH
│ │ ├── internal_exception_client.PH
│ │ ├── knob.PH
│ │ ├── lock.PH
│ │ ├── message.PH
│ │ ├── operand_ia32.PH
│ │ ├── opin_client.PH
│ │ ├── pin_client.PH
│ │ ├── pin_client_replay.PH
│ │ ├── pinsync.hpp
│ │ ├── probe_instrument.PH
│ │ ├── probe_instrument_ia32.PH
│ │ ├── reg_ia32.PH
│ │ ├── reg_partial_ia32.PH
│ │ ├── reginfo_ia32.PH
│ │ ├── regset.PH
│ │ ├── regset_ia32.PH
│ │ ├── sec.PH
│ │ ├── stopped_thread_client.PH
│ │ ├── symbol_elf.PH
│ │ ├── sysfuncs_linux.PH
│ │ ├── thread_client.PH
│ │ ├── tls.PH
│ │ ├── tls_client.PH
│ │ ├── types_base.TLH
│ │ ├── types_core.TLH
│ │ ├── types_foundation.TLH
│ │ ├── types_vmapi.TLH
│ │ ├── util.PH
│ │ ├── val.PH
│ │ └── versions_client.PH
│ │ ├── level_base.PLH
│ │ ├── level_core.PLH
│ │ ├── level_foundation.PLH
│ │ ├── level_pinclient.PLH
│ │ ├── level_vmapi.PLH
│ │ ├── pin-errtype.h
│ │ ├── pin.H
│ │ ├── pin_cache.H
│ │ ├── pin_profile.H
│ │ ├── pin_util.H
│ │ ├── pintool.exp
│ │ └── pintool.ver
│ ├── launcher
│ ├── launcher_u.c
│ ├── os_specific.h
│ ├── os_specific_l.c
│ ├── os_specific_m.c
│ ├── utils.c
│ └── utils.h
│ └── tools
│ ├── AlignChk
│ ├── alignchk.H
│ ├── alignchk.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── misaligned.c
│ ├── movdqa_test2.cpp
│ ├── movdqa_test2_ia32.s
│ ├── movdqa_test_ia32.asm
│ └── movdqa_test_intel64.asm
│ ├── AttachDetach
│ ├── attachReattachThreadDetachCallbacks_app.cpp
│ ├── attach_app.cpp
│ ├── attach_in_sighandler_app.cpp
│ ├── attach_read_stdin.py
│ ├── attach_removed_app.cpp
│ ├── change_mask.cpp
│ ├── change_mask_app.cpp
│ ├── chdir_app.cpp
│ ├── check_blocking_real_time_signals_app.cpp
│ ├── check_blocking_real_time_signals_tool.cpp
│ ├── detach_check_sigmask_app.cpp
│ ├── detach_check_tool.cpp
│ ├── detach_in_sighandler_app.cpp
│ ├── detach_probed_app.cpp
│ ├── detach_probed_tool.cpp
│ ├── detach_probed_wait_child_app.cpp
│ ├── detach_syscall.cpp
│ ├── detach_syscall_app.cpp
│ ├── fp_save_restore_ia32.s
│ ├── fp_save_restore_intel64.s
│ ├── hello_world.cpp
│ ├── jit_anls_detach.cpp
│ ├── jit_detach_tool.cpp
│ ├── jit_instr_detach.cpp
│ ├── jit_tool.cpp
│ ├── launchReattachThreadDetachCallbacks_app.cpp
│ ├── ld_linux_attach.cpp
│ ├── ld_linux_attach_app.cpp
│ ├── main_attach_app.cpp
│ ├── main_command_line_app.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── mt_attach.cpp
│ ├── mt_attach_and_execv.cpp
│ ├── mt_blocked.cpp
│ ├── mt_detach.cpp
│ ├── mt_fork_app.cpp
│ ├── mt_thread.cpp
│ ├── my_dll.c
│ ├── my_exe.c
│ ├── pause_msg_app.cpp
│ ├── probe_tool.cpp
│ ├── read_stdin.cpp
│ ├── read_stdin_app.cpp
│ ├── read_write_app.cpp
│ ├── reattachThreadDetachCallbacks_jit_tool.cpp
│ ├── reattachThreadDetachCallbacks_tool.cpp
│ ├── reattachZombie_tool.cpp
│ ├── reattach_jit_app.cpp
│ ├── reattach_jit_tool.cpp
│ ├── reattach_probed_app.cpp
│ ├── reattach_probed_tool.cpp
│ ├── reattach_verify_sigmask_app.cpp
│ ├── run_many
│ ├── run_many_win.bat
│ ├── secondary_attach_app.cpp
│ ├── secondary_command_line_app.cpp
│ ├── send_signals.sh
│ ├── short_func_app.cpp
│ ├── short_func_ia32.s
│ ├── short_func_intel64.s
│ ├── short_func_tool.cpp
│ ├── simple_tool.cpp
│ ├── threadOrder.cpp
│ ├── threadOrder_tool.cpp
│ ├── tls_app_ia32.cpp
│ ├── tls_app_intel64.cpp
│ ├── tls_app_mac.cpp
│ ├── tls_attach_detach_app_mac.cpp
│ ├── verify_fpstate_app.cpp
│ ├── verify_sigmask.cpp
│ ├── w_app1.cpp
│ ├── w_app2.cpp
│ ├── w_app3.cpp
│ ├── w_app4.cpp
│ ├── w_app_launcher.cpp
│ ├── w_app_launcher2.cpp
│ ├── w_attach_mt_thread_app.cpp
│ ├── w_attach_mt_thread_tool.cpp
│ ├── w_attach_tool1.cpp
│ ├── w_attach_tool2.cpp
│ ├── w_attach_tool3.cpp
│ ├── w_attach_tool4.cpp
│ ├── w_attach_tool5.cpp
│ ├── w_pin_service_launcher.cpp
│ ├── w_service_app1.cpp
│ ├── w_simple_app.cpp
│ ├── w_simple_attach_tool.cpp
│ ├── zombie_utils.cpp
│ └── zombie_utils.h
│ ├── Buffer
│ ├── allocate.cpp
│ ├── buffer-lengths.cpp
│ ├── buffer-predicate.cpp
│ ├── buffer-then.cpp
│ ├── buffer_invalid_reg.cpp
│ ├── bufferaddr.cpp
│ ├── buffererror.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── mlog_buffer.cpp
│ └── two_buffers.cpp
│ ├── ChildProcess
│ ├── 1.sh
│ ├── 2.sh
│ ├── arglist.cpp
│ ├── arglist.h
│ ├── badexec.c
│ ├── bind_now_app.c
│ ├── child_injection_ppid.c
│ ├── child_process.cpp
│ ├── execvp.c
│ ├── follow_child.cpp
│ ├── follow_child_3gen_tool.cpp
│ ├── follow_child_3gen_tool_initsym.cpp
│ ├── follow_child_tool.cpp
│ ├── fork_app.c
│ ├── fork_app2.c
│ ├── fork_hang_app.cpp
│ ├── fork_hang_tool.cpp
│ ├── fork_jit_tool.cpp
│ ├── fork_probed2.cpp
│ ├── fork_probed_tool.cpp
│ ├── grand_parent_tool.cpp
│ ├── injection_test_app.c
│ ├── makefile
│ ├── makefile.rules
│ ├── null_arg_check_tool.cpp
│ ├── null_check_app1.cpp
│ ├── null_check_app2.cpp
│ ├── parent_process.cpp
│ ├── parent_process_launcher.sh
│ ├── parent_process_popen.cpp
│ ├── parent_process_spawn.cpp
│ ├── parent_process_spawn2.cpp
│ ├── parent_process_waitpid_bug.cpp
│ ├── parent_process_waitpid_bug2.cpp
│ ├── parent_tool.cpp
│ ├── selfexec_app.c
│ ├── sigchld_app.cpp
│ ├── sigchld_app.reference
│ ├── simple_tool.cpp
│ ├── uname_script.sh
│ ├── unix_parent_tool.cpp
│ ├── vfork_app.c
│ ├── win_child_process.cpp
│ ├── win_early_termination.cpp
│ ├── win_launcher_debugged_process.cpp
│ ├── win_launcher_process.cpp
│ ├── win_parent_process.cpp
│ ├── win_parent_process1.reference
│ ├── win_parent_process1_probed.reference
│ ├── win_parent_process1_unicode_probed.reference
│ ├── win_parent_process1_unicode_probed_withsym.reference
│ ├── win_parent_process2.reference
│ ├── win_parent_process2_jjj.reference
│ ├── win_parent_process2_jjp.reference
│ ├── win_parent_process2_jpj.reference
│ ├── win_parent_process2_jpp.reference
│ ├── win_parent_process2_mt_ppp.reference
│ ├── win_parent_process2_pjj.reference
│ ├── win_parent_process2_pjp.reference
│ ├── win_parent_process2_ppj.reference
│ ├── win_parent_process2_ppp.reference
│ ├── win_parent_process2_unicode_ppp.reference
│ ├── win_parent_process_launcher.bat
│ ├── win_parent_process_mt.cpp
│ ├── win_parent_process_mt_launcher.bat
│ ├── win_parent_process_mt_test_launcher.bat
│ ├── win_parent_process_mt_test_launcher_w_pintool_args.bat
│ ├── win_parent_process_test_launcher.bat
│ ├── win_parent_process_test_launcher_w_pintool_args.bat
│ ├── win_parent_process_unicode.cpp
│ ├── win_parent_process_unicode_launcher.bat
│ └── win_terminate_process_dll.cpp
│ ├── Config
│ ├── makefile.config
│ ├── makefile.debug.rules
│ ├── makefile.default.rules
│ ├── makefile.rules.tmpl
│ ├── makefile.tmpl
│ ├── makefile.unix.config
│ └── unix.vars
│ ├── Cpp11Tests
│ ├── cpp11Threads.cpp
│ ├── cpp11ThreadsApp.cpp
│ ├── makefile
│ └── makefile.rules
│ ├── CrossIa32Intel64
│ ├── child_process_injection.cpp
│ ├── child_process_injection_app.c
│ ├── child_process_injection_app1.c
│ ├── child_process_linux.cpp
│ ├── child_process_mac.cpp
│ ├── child_process_windows.cpp
│ ├── compiler-env.bat
│ ├── early_termination.cpp
│ ├── follow_child_tool.cpp
│ ├── follow_child_tool_sym.cpp
│ ├── follow_child_tool_windows.cpp
│ ├── grand_child_process_linux.cpp
│ ├── grand_child_process_mac.cpp
│ ├── grand_child_process_windows.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── parent_process_linux.cpp
│ ├── parent_process_mac.cpp
│ ├── parent_process_windows.cpp
│ ├── parent_tool.cpp
│ ├── sigchld_app.cpp
│ ├── sigchld_app.reference
│ ├── w_terminate_process_dll.cpp
│ ├── win_launcher_debugged_process.cpp
│ └── win_launcher_process.cpp
│ ├── DebugInfo
│ ├── app_backtrace.cpp
│ ├── app_backtrace.reference
│ ├── app_backtrace_app.cpp
│ ├── backtrace.cpp
│ ├── backtrace.reference
│ ├── backtrace_dll.cpp
│ ├── backtrace_from_dll.cpp
│ ├── backtrace_from_dll.reference
│ ├── debugtest.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── omit_source_location.cpp
│ ├── pin_backtrace_on_assert.cpp
│ └── pin_backtrace_on_assert.reference
│ ├── DebugTrace
│ ├── debugtrace.cpp
│ ├── makefile
│ └── makefile.rules
│ ├── Debugger
│ ├── access-64-on-32.compare
│ ├── access-64-on-32.pindb
│ ├── action-pending-app.cpp
│ ├── action-pending-tool.cpp
│ ├── action-pending.compare
│ ├── action-pending.gdb
│ ├── app-pause-app.cpp
│ ├── app-pause-in-app-thread-tool.cpp
│ ├── app-pause-in-int-thread-tool.cpp
│ ├── bp-icount.compare
│ ├── bp-icount.gdb
│ ├── bphandler.compare
│ ├── bphandler.cpp
│ ├── bphandler.gdb
│ ├── bphandler_app.c
│ ├── bptest-asm-ia32.s
│ ├── bptest-asm-intel64.s
│ ├── bptest-ia32.compare
│ ├── bptest-ia32.compareICC
│ ├── bptest-ia32.gdb
│ ├── bptest-intel64.compare
│ ├── bptest-intel64.compareICC
│ ├── bptest-intel64.gdb
│ ├── bptest.cpp
│ ├── breaktool-wait.compare
│ ├── breaktool-wait.gdb
│ ├── breaktool.compare
│ ├── breaktool.cpp
│ ├── breaktool.gdb
│ ├── breaktool_const_context.compare
│ ├── breaktool_const_context.gdb
│ ├── callerapp.c
│ ├── check-if-thread-stopped.compare
│ ├── check-if-thread-stopped.cpp
│ ├── check-if-thread-stopped.pindb
│ ├── checkpoint-app.c
│ ├── checkpoint-app.compare
│ ├── checkpoint-gdb.compare
│ ├── checkpoint.cpp
│ ├── checkpoint.gdb
│ ├── debugger-shell-app-ia32.s
│ ├── debugger-shell-app-intel64.s
│ ├── debugger-shell-app.cpp
│ ├── debugger-type.cpp
│ ├── debugger-type.gdb
│ ├── dlopen-dlclose.c
│ ├── exec.cpp
│ ├── execfail.compare
│ ├── execfail.gdb
│ ├── fork.compare
│ ├── fork.cpp
│ ├── fork.gdb
│ ├── gdb-detach-reattach-1.gdb
│ ├── gdb-detach-reattach-2.gdb
│ ├── gdb-detach-reattach-app.compare
│ ├── gdb-detach-reattach-fixed-port-1.gdb
│ ├── gdb-detach-reattach-fixed-port-2.gdb
│ ├── gdb-detach-reattach-fixed-port-app.compare
│ ├── gdb-detach-reattach-fixed-port-gdb-1.compare
│ ├── gdb-detach-reattach-fixed-port-gdb-2.compare
│ ├── gdb-detach-reattach-gdb-1.compare
│ ├── gdb-detach-reattach-gdb-2.compare
│ ├── gdb-fixed-port.compare
│ ├── gdb-fixed-port.gdb
│ ├── gdb-pthread-step-exit.compare
│ ├── gdb-pthread-step-exit.gdb
│ ├── gdb-svr4-libraries-extension.compare
│ ├── gdb-svr4-libraries-extension.gdb
│ ├── int3-count.cpp
│ ├── intercept-app-asm-ia32.s
│ ├── intercept-app-asm-intel64.s
│ ├── intercept-app.cpp
│ ├── intercept-breakpoint-app.compare
│ ├── intercept-breakpoint-gdb.compare
│ ├── intercept-breakpoint.gdb
│ ├── intercept-tool.cpp
│ ├── interpreter-remove.cpp
│ ├── invalid-write.compare
│ ├── invalid-write.gdb
│ ├── invalidate-regs.cpp
│ ├── launch-gdb-tool.cpp
│ ├── launch-gdb.compare
│ ├── launch-gdb.gdb
│ ├── launch-gdb_const_context.compare
│ ├── launch-gdb_const_context.gdb
│ ├── launch-pin-attach-debugger.py
│ ├── library-load-tool.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── memlog.hpp
│ ├── mt-exit-tool.cpp
│ ├── mt-exit.cpp
│ ├── mt-exit.gdb
│ ├── null-emulator-ia32.cpp
│ ├── null-emulator-intel64.cpp
│ ├── pc-change-async-asm-ia32.s
│ ├── pc-change-async-asm-intel64.s
│ ├── pc-change-async-tool.cpp
│ ├── pc-change-async.compare
│ ├── pc-change-async.cpp
│ ├── pc-change-async.gdb
│ ├── pc-change-bp-asm-ia32.s
│ ├── pc-change-bp-asm-intel64.s
│ ├── pc-change-bp.compare
│ ├── pc-change-bp.cpp
│ ├── pc-change-bp.gdb
│ ├── pick-random-port.c
│ ├── pindb-abrupt-disconnect.pindb
│ ├── pindb-async-stop.pindb
│ ├── pindb-attach-after-custom-stop.compare
│ ├── pindb-attach-after-custom-stop.pindbin
│ ├── pindb-invalidate-regs.compare
│ ├── pindb-invalidate-regs.pindb
│ ├── pindb-kill-like-gdb.pindb
│ ├── pindb-noprompt-kill.pindb
│ ├── pindb-pthread-cont-exitgroup.compare
│ ├── pindb-pthread-cont-exitgroup.pindb
│ ├── pindb-pthread-step-exit.compare
│ ├── pindb-pthread-step-exit.pindb
│ ├── pindb-pthread-step-exitgroup.pindb
│ ├── pindb-simple-command.pindb
│ ├── pindb-simple-simultaneous-multi-serialize.compare1
│ ├── pindb-simple-simultaneous-multi-serialize.compare2
│ ├── pindb-simple-simultaneous-multi-serialize.pindb
│ ├── pindb-simple-simultaneous-multi.compare1
│ ├── pindb-simple-simultaneous-multi.compare2
│ ├── pindb-simple-simultaneous-multi.pindb
│ ├── pindb-simultaneous-multi-serialize.compare1
│ ├── pindb-simultaneous-multi-serialize.compare2
│ ├── pindb-simultaneous-multi-serialize.compare3
│ ├── pindb-simultaneous-multi-serialize.compare4
│ ├── pindb-simultaneous-multi-serialize.pindb
│ ├── pindb-simultaneous-multi.compare1
│ ├── pindb-simultaneous-multi.compare2
│ ├── pindb-simultaneous-multi.compare3
│ ├── pindb-simultaneous-multi.compare4
│ ├── pindb-simultaneous-multi.pindb
│ ├── pindb-simultaneous-toolbreak-attach.compare
│ ├── pindb-simultaneous-toolbreak-attach.pindbin
│ ├── pindb-simultaneous-toolbreak-change.compare
│ ├── pindb-simultaneous-toolbreak-change.pindb
│ ├── pindb-simultaneous-toolbreak-serialize.compare
│ ├── pindb-simultaneous-toolbreak-serialize.pindb
│ ├── pindb-simultaneous-toolbreak-squash.compare
│ ├── pindb-simultaneous-toolbreak-squash.pindb
│ ├── pindb-simultaneous-toolbreak-step.compare
│ ├── pindb-simultaneous-toolbreak-step.pindb
│ ├── pindb-simultaneous-toolbreak.compare
│ ├── pindb-simultaneous-toolbreak.pindb
│ ├── pindb-start-fini.pindb
│ ├── pindb-win-continued-exception1.compare
│ ├── pindb-win-continued-exception1.pindb
│ ├── pindb-win-continued-exception2.compare
│ ├── pindb-win-continued-exception2.pindb
│ ├── pindb-win-cpp-exception.compare
│ ├── pindb-win-cpp-exception.pindb
│ ├── pindb-win-exception-after-exit.pindb
│ ├── pindb-win-handled-exception.compare
│ ├── pindb-win-handled-exception.pindb
│ ├── pindb-win-library-notifications.compare
│ ├── pindb-win-library-notifications.pindb
│ ├── pindb-win-software-exception.compare
│ ├── pindb-win-software-exception.pindb
│ ├── pindb-win-squash-exception.compare
│ ├── pindb-win-squash-exception.pindb
│ ├── pindb-win-step-exception.compare
│ ├── pindb-win-step-exception.pindb
│ ├── pindb-win-step-library.compare
│ ├── pindb-win-step-library.pindb
│ ├── pindb-win-thread-stress.compare
│ ├── pindb-win-thread-stress.pindb
│ ├── pindb-win-unhandled-exception.compare
│ ├── pindb-win-unhandled-exception.pindb
│ ├── pindb-zmm.compare
│ ├── pindb-zmm.pindb
│ ├── pthread-bare-exit-asm-ia32.s
│ ├── pthread-bare-exit-asm-intel64.s
│ ├── pthread-bare-exit.cpp
│ ├── pthread-bare-exitgroup-asm-ia32.s
│ ├── pthread-bare-exitgroup-asm-intel64.s
│ ├── pthread-bare-exitgroup.cpp
│ ├── quit.gdb
│ ├── reattach-loop.cpp
│ ├── set-mode-tool.cpp
│ ├── set_xmm_scratches.cpp
│ ├── set_xmm_scratches_before_breakpoint.cpp
│ ├── set_xmm_scratches_before_breakpoint_and_set_xmm_reg.cpp
│ ├── set_xmm_scratches_for_ymmtest.cpp
│ ├── set_xmm_scratches_ia32.s
│ ├── set_xmm_scratches_intel64.s
│ ├── siginfo.compare
│ ├── siginfo.gdb
│ ├── signal-catch.cpp
│ ├── signal-step.compare
│ ├── signal-step.gdb
│ ├── simple-command-tool.cpp
│ ├── simple-pindb-asm-linux-ia32.s
│ ├── simple-pindb-asm-linux-intel64.s
│ ├── simple-pindb-asm-windows-ia32.asm
│ ├── simple-pindb-asm-windows-intel64.asm
│ ├── simple-pindb.cpp
│ ├── simple.c
│ ├── simple.compare
│ ├── simple.gdb
│ ├── simultaneous-toolbreak-attach.compare
│ ├── simultaneous-toolbreak-attach.gdb
│ ├── simultaneous-toolbreak-change.compare
│ ├── simultaneous-toolbreak-change.gdb
│ ├── simultaneous-toolbreak-squash.compare
│ ├── simultaneous-toolbreak-squash.gdb
│ ├── simultaneous-toolbreak.compare
│ ├── simultaneous-toolbreak.cpp
│ ├── simultaneous-toolbreak.gdb
│ ├── simultaneous-toolbreak_const_context.compare
│ ├── simultaneous-toolbreak_const_context.gdb
│ ├── sleep-unix.c
│ ├── stack-debugger-late.compare
│ ├── stack-debugger-late.gdb
│ ├── stack-debugger.compare
│ ├── stack-debugger.gdb
│ ├── start-fini-callback.cpp
│ ├── start-fini.reference
│ ├── stop-resume-when-suspended.cpp
│ ├── stop-resume-when-suspended.pindb
│ ├── stop-resume-when-suspended.reference
│ ├── thread-unix.cpp
│ ├── thread-win.cpp
│ ├── thread.compare
│ ├── thread.cpp
│ ├── thread.gdb
│ ├── use-debugger-shell.cpp
│ ├── watchpoint-app.c
│ ├── watchpoint.compare
│ ├── watchpoint.cpp
│ ├── watchpoint_const_context.compare
│ ├── win-continued-exception1.cpp
│ ├── win-continued-exception2.cpp
│ ├── win-cpp-exception.cpp
│ ├── win-exception-after-exit-dll.cpp
│ ├── win-exception-after-exit.cpp
│ ├── win-foo-library.cpp
│ ├── win-handled-exception.cpp
│ ├── win-load-library.cpp
│ ├── win-software-exception.cpp
│ ├── win-thread-stress.cpp
│ ├── win-unhandled-exception.cpp
│ ├── xmm-asm-ia32.s
│ ├── xmm-asm-intel64.s
│ ├── xmm-ia32.compare
│ ├── xmm-ia32.gdb
│ ├── xmm-ia32_with_set_xmm_scratch_regs_before_breakpoint_tool.compare
│ ├── xmm-ia32_with_set_xmm_scratch_regs_before_breakpoint_tool.gdb
│ ├── xmm-ia32_with_set_xmm_scratch_regs_before_breakpoint_tool_and_set_xmm_reg.gdb
│ ├── xmm-ia32_with_set_xmm_scratch_regs_before_breakpoint_tool_const_context.gdb
│ ├── xmm-ia32_with_set_xmm_scratch_regs_tool.compare
│ ├── xmm-ia32_with_set_xmm_scratch_regs_tool.gdb
│ ├── xmm-intel64.compare
│ ├── xmm-intel64.gdb
│ ├── xmm-intel64_with_set_xmm_scratch_regs_before_breakpoint_tool.compare
│ ├── xmm-intel64_with_set_xmm_scratch_regs_before_breakpoint_tool.gdb
│ ├── xmm-intel64_with_set_xmm_scratch_regs_before_breakpoint_tool_and_set_xmm_reg.gdb
│ ├── xmm-intel64_with_set_xmm_scratch_regs_before_breakpoint_tool_const_context.compare
│ ├── xmm-intel64_with_set_xmm_scratch_regs_before_breakpoint_tool_const_context.gdb
│ ├── xmm-intel64_with_set_xmm_scratch_regs_tool.compare
│ ├── xmm-intel64_with_set_xmm_scratch_regs_tool.gdb
│ ├── xmm.c
│ ├── ymm-asm-ia32.s
│ ├── ymm-asm-intel64.s
│ ├── ymm.compare
│ ├── ymm.cpp
│ ├── ymm.gdb
│ ├── ymm_with_set_xmm_scratch_regs_tool.compare
│ ├── ymm_with_set_xmm_scratch_regs_tool.gdb
│ ├── zmm-asm-ia32.asm
│ ├── zmm-asm-ia32.s
│ ├── zmm-asm-intel64.asm
│ ├── zmm-asm-intel64.s
│ ├── zmm.compare
│ ├── zmm.cpp
│ └── zmm.gdb
│ ├── GracefulExit
│ ├── applicationexit.cpp
│ ├── applicationexit.master
│ ├── create_and_exit_thread.cpp
│ ├── create_and_exit_thread_app.cpp
│ ├── create_and_exit_thread_utils.h
│ ├── exitApplicationLocked_app.cpp
│ ├── exitApplicationLocked_tool.cpp
│ ├── exitFromFini_app.cpp
│ ├── exitFromFini_tool.cpp
│ ├── exitFromInstCallback_tool.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── raceToEnterVm_app.cpp
│ ├── raceToExit_app.cpp
│ ├── threadFini_app.cpp
│ ├── threadFini_exception_app.cpp
│ ├── threadFini_sendsig.cpp
│ ├── threadFini_sig_app.cpp
│ ├── threadFini_tool.cpp
│ ├── threadUtils.h
│ ├── threadUtils_android.cpp
│ ├── threadUtils_linux.cpp
│ └── threadUtils_windows.cpp
│ ├── I18N
│ ├── i18n_tool.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── unix_i18n_tool.reference
│ ├── unix_unicode.cpp
│ ├── unix_unicode.reference
│ ├── unix_unicode_test_launcher.cpp
│ ├── win_i18n_tool.reference
│ ├── win_unicode.cpp
│ ├── win_unicode.reference
│ ├── win_unicode_ia32.exe
│ ├── win_unicode_ia32.pdb
│ ├── win_unicode_intel64.exe
│ ├── win_unicode_intel64.pdb
│ └── win_unicode_test_launcher.cpp
│ ├── IArg
│ ├── DoFxsave.asm
│ ├── DoFxsave.s
│ ├── fxsave_app.cpp
│ ├── fxsave_size.cpp
│ ├── iarg_explicit_memory_ea.cpp
│ ├── iarg_explicit_memory_ea_app.cpp
│ ├── iarg_explicit_memory_ea_app_asm_ia32.asm
│ ├── iarg_explicit_memory_ea_app_asm_intel64.asm
│ ├── iarg_inst_ptr_error_msg.cpp
│ ├── iarg_uint64.cpp
│ ├── iarg_uint64.reference
│ ├── makefile
│ └── makefile.rules
│ ├── ImageTests
│ ├── attachReattachImageLoadCallbacks_app.cpp
│ ├── badmunmap_app.cpp
│ ├── badmunmap_tool.cpp
│ ├── dummy_dll.c
│ ├── full_path_app.cpp
│ ├── full_path_tool.cpp
│ ├── gnu_hash.cpp
│ ├── gnu_hash_app.cpp
│ ├── hasLinesData.cpp
│ ├── hasLinesData_app_main.cpp
│ ├── imageLoad_tool.cpp
│ ├── imageUnload_app.c
│ ├── imageUnload_tool.cpp
│ ├── image_load.cpp
│ ├── images_on_attach_app.cpp
│ ├── images_on_attach_tool.cpp
│ ├── img_find_by_addr.cpp
│ ├── img_open_win.cpp
│ ├── l_imageLoad_app.cpp
│ ├── l_vdso_image.cpp
│ ├── l_vdso_image_app.cpp
│ ├── launchReattachImageLoadCallbacks_app.cpp
│ ├── load_dummy_dll.c
│ ├── load_dummy_dll_tool.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── my_dll.c
│ ├── one.c
│ ├── reattachImageLoadCallback_tool.cpp
│ ├── rebase_dll.c
│ ├── rebase_dll_tool.cpp
│ ├── region_compare.py
│ ├── single_segment.cpp
│ ├── single_segment_app.s
│ ├── split_image_linux.cpp
│ ├── split_image_linux_app.cpp
│ ├── split_image_linux_lib.cpp
│ ├── split_image_mac.cpp
│ ├── split_image_mac_app.cpp
│ ├── two.c
│ ├── w_app_launcher.cpp
│ ├── w_imageLoad_app.cpp
│ ├── win_load_ntdll.c
│ └── x86dll_app.cpp
│ ├── InlinedFuncsOpt
│ ├── inlined_funcs_ia32.asm
│ ├── inlined_funcs_intel64.asm
│ ├── inlined_funcs_opt.cpp
│ ├── inlined_shr.cpp
│ ├── inlined_shr_asm.asm
│ ├── inlined_shr_asm.s
│ ├── inscount_for_lea_opt.cpp
│ ├── makefile
│ ├── makefile.rules
│ └── update_icount_intel64.asm
│ ├── Insmix
│ ├── insmix.cpp
│ ├── makefile
│ └── makefile.rules
│ ├── InstLib
│ ├── alarm_manager.H
│ ├── alarm_manager.cpp
│ ├── alarms.H
│ ├── alarms.cpp
│ ├── asm_macros.h
│ ├── asm_macros.inc
│ ├── call-stack.H
│ ├── call-stack.cpp
│ ├── cntrl_client.py
│ ├── control_chain.H
│ ├── control_chain.cpp
│ ├── control_manager.H
│ ├── control_manager.cpp
│ ├── controller_events.H
│ ├── controller_events.cpp
│ ├── debugger-shell.H
│ ├── debugger-shell.cpp
│ ├── filter.H
│ ├── follow_child.H
│ ├── ialarm.H
│ ├── ialarm.cpp
│ ├── icount.H
│ ├── init_alarm.H
│ ├── init_alarm.cpp
│ ├── instlib.H
│ ├── interactive_listener.H
│ ├── interactive_listener.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── parse_control.H
│ ├── parse_control.cpp
│ ├── pcregions_control.H
│ ├── region_utils.H
│ ├── regions_control.H
│ ├── skipper.H
│ ├── time_warp.H
│ └── tool_macros.h
│ ├── InstLibExamples
│ ├── control.cpp
│ ├── control_detach.cpp
│ ├── filter.cpp
│ ├── filter_app.c
│ ├── follow_child.cpp
│ ├── icount.cpp
│ ├── int3-test.c
│ ├── itext-marker-test.c
│ ├── makefile
│ ├── makefile.rules
│ ├── multi-start-stop-test.c
│ ├── one.c
│ └── test-mt3.cpp
│ ├── InstructionTests
│ ├── clflush.asm
│ ├── clflush.s
│ ├── flush_cache_line.cpp
│ ├── flush_cache_line_app.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── pushpopcall_riprelative.s
│ └── rewritememop1.cpp
│ ├── InstrumentationOrderAndVersion
│ ├── callbacks_order.cpp
│ ├── callbacks_order.reference
│ ├── instrumentation_order.cpp
│ ├── instrumentation_order.ref
│ ├── instrumentation_order1.cpp
│ ├── instrumentation_order1.ref
│ ├── instrumentation_order10.cpp
│ ├── instrumentation_order10.ref
│ ├── instrumentation_order11.cpp
│ ├── instrumentation_order11.ref
│ ├── instrumentation_order12.cpp
│ ├── instrumentation_order12.ref
│ ├── instrumentation_order13.cpp
│ ├── instrumentation_order13.ref
│ ├── instrumentation_order14.cpp
│ ├── instrumentation_order15.cpp
│ ├── instrumentation_order15.ref
│ ├── instrumentation_order16.cpp
│ ├── instrumentation_order16.ref
│ ├── instrumentation_order17.cpp
│ ├── instrumentation_order17.ref
│ ├── instrumentation_order18.cpp
│ ├── instrumentation_order18.ref
│ ├── instrumentation_order19.cpp
│ ├── instrumentation_order19.ref
│ ├── instrumentation_order2.cpp
│ ├── instrumentation_order2.ref
│ ├── instrumentation_order20.cpp
│ ├── instrumentation_order21.cpp
│ ├── instrumentation_order22.cpp
│ ├── instrumentation_order23.cpp
│ ├── instrumentation_order3.cpp
│ ├── instrumentation_order3.ref
│ ├── instrumentation_order4.cpp
│ ├── instrumentation_order4.ref
│ ├── instrumentation_order5.cpp
│ ├── instrumentation_order5.ref
│ ├── instrumentation_order6.cpp
│ ├── instrumentation_order6.ref
│ ├── instrumentation_order7.cpp
│ ├── instrumentation_order7.ref
│ ├── instrumentation_order8.cpp
│ ├── instrumentation_order8.ref
│ ├── instrumentation_order9.cpp
│ ├── instrumentation_order9.ref
│ ├── instrumentation_order_app.cpp
│ ├── instrumentation_order_app.h
│ ├── makefile
│ ├── makefile.rules
│ ├── redblue.cpp
│ ├── redblue.s
│ ├── redblue_ia32.asm
│ ├── redblue_intel64.asm
│ ├── special.cpp
│ ├── special.ref
│ ├── special_case.cpp
│ ├── special_case.ref
│ ├── special_case1.cpp
│ ├── special_case1.ref
│ ├── special_case2.cpp
│ ├── special_case3.cpp
│ ├── special_case_aoti.cpp
│ ├── special_case_aoti.ref
│ ├── special_case_aoti1.cpp
│ ├── special_case_aoti1.ref
│ └── special_case_app.cpp
│ ├── JitProfilingApiTests
│ ├── DynamicFuncInstrument.cpp
│ ├── DynamicInsCount.cpp
│ ├── makefile
│ └── makefile.rules
│ ├── LinuxTests
│ ├── makefile
│ ├── makefile.rules
│ ├── plt_syms.cpp
│ ├── plt_syms_app.cpp
│ ├── unmap_relro.cpp
│ └── unmap_relro_app.cpp
│ ├── Maid
│ ├── CallStack.H
│ ├── CallStack.cpp
│ ├── Maid.cpp
│ ├── README
│ ├── addrfile.txt
│ ├── argv_readparam.cpp
│ ├── argv_readparam.h
│ ├── makefile
│ ├── makefile.rules
│ ├── syscall_names.H
│ └── syscall_names.cpp
│ ├── ManualExamples
│ ├── buffer_linux.cpp
│ ├── buffer_windows.cpp
│ ├── countreps.cpp
│ ├── detach.cpp
│ ├── divide_by_zero_unix.c
│ ├── divide_by_zero_win.c
│ ├── emudiv.cpp
│ ├── fibonacci.cpp
│ ├── follow_child_app1.cpp
│ ├── follow_child_app2.cpp
│ ├── follow_child_tool.cpp
│ ├── fork_app.cpp
│ ├── fork_jit_tool.cpp
│ ├── imageload.cpp
│ ├── inscount0.cpp
│ ├── inscount1.cpp
│ ├── inscount2.cpp
│ ├── inscount_tls.cpp
│ ├── invocation.cpp
│ ├── isampling.cpp
│ ├── itrace.cpp
│ ├── little_malloc.c
│ ├── makefile
│ ├── makefile.rules
│ ├── malloc_mt.cpp
│ ├── malloctrace.cpp
│ ├── nonstatica.cpp
│ ├── pinatrace.cpp
│ ├── proccount.cpp
│ ├── replacesigprobed.cpp
│ ├── safecopy.cpp
│ ├── stack-debugger-tutorial.sln
│ ├── stack-debugger-tutorial.vcxproj
│ ├── stack-debugger-tutorial.vcxproj.filters
│ ├── stack-debugger.cpp
│ ├── statica.cpp
│ ├── staticcount.cpp
│ ├── strace.cpp
│ └── w_malloctrace.cpp
│ ├── MemTrace
│ ├── atomic_increment_ia32.asm
│ ├── atomic_increment_ia32.s
│ ├── atomic_increment_intel64.asm
│ ├── atomic_increment_intel64.s
│ ├── makefile
│ ├── makefile.rules
│ ├── membuffer.cpp
│ ├── membuffer_simple.cpp
│ ├── membuffer_simple_tid.cpp
│ ├── membuffer_threadpool.cpp
│ ├── memtrace.cpp
│ ├── memtrace_simple.cpp
│ ├── memtrace_threadpool.cpp
│ ├── thread.c
│ ├── thread2.cpp
│ ├── threadpool_statistics.h
│ ├── traceaddress.cpp
│ └── traceaddressapp.cpp
│ ├── MemTranslate
│ ├── indirect_jmp.asm
│ ├── indirect_jmp.s
│ ├── indirect_jmp_with_translation.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── malloc_translation.cpp
│ ├── malloc_translation_app.c
│ ├── memory_addr_callback.cpp
│ ├── memory_addr_callback_then.cpp
│ ├── memory_callback_error.cpp
│ ├── rewrite_memory_ptr.cpp
│ ├── translate_32bit_register.cpp
│ └── translate_32bit_register_app.cpp
│ ├── Memory
│ ├── README
│ ├── access_protection_app.cpp
│ ├── address_mapping.cpp
│ ├── address_mapping_probe.cpp
│ ├── allcache.cpp
│ ├── big_malloc.cpp
│ ├── cache.H
│ ├── dcache.cpp
│ ├── dcache_xscale_config.cpp
│ ├── footprint.H
│ ├── footprint.cpp
│ ├── icache.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── malloc_stress.cpp
│ ├── memalign.cpp
│ ├── memalloc.cpp
│ ├── memalloc2.cpp
│ ├── memory_allocation_from_app_access_protection_tool.cpp
│ ├── memory_allocation_from_tool_access_protection_tool.cpp
│ ├── memory_limit.cpp
│ ├── mmap_reader_app.cpp
│ ├── new_delete_app.cpp
│ ├── new_delete_tool.cpp
│ ├── print_stack.c
│ ├── print_vdso.c
│ ├── print_vvar.cpp
│ └── restrict_memory_vdso.cpp
│ ├── Mix
│ ├── README
│ ├── assy-support-ia32.asm
│ ├── assy-support-intel64.asm
│ ├── makefile
│ ├── makefile.rules
│ ├── marker-example.cpp
│ ├── mix-fp-state.H
│ ├── mix-mt.cpp
│ ├── summarize.py
│ └── test-mt.cpp
│ ├── Mmx
│ ├── fpstack_ia32_win.asm
│ ├── makefile
│ ├── makefile.rules
│ ├── mmx_test1_app.cpp
│ ├── mmx_test1_tool.cpp
│ ├── mmx_test2_app.cpp
│ ├── mmx_test2_tool.cpp
│ └── mmxsequence_ia32_win.asm
│ ├── MyPinTool
│ ├── MyPinTool.cpp
│ ├── makefile
│ └── makefile.rules
│ ├── NonInlinedFuncsOpt
│ ├── makefile
│ ├── makefile.rules
│ └── multiple_analysis.cpp
│ ├── Probes
│ ├── app_trace.c
│ ├── arglist.cpp
│ ├── arglist.h
│ ├── atfork_callbacks.cpp
│ ├── atfork_callbacks.h
│ ├── atfork_callbacks_app.cpp
│ ├── bad_call.c
│ ├── bad_jump.c
│ ├── before_after_defaultcall.cpp
│ ├── before_after_defaultcall_app.c
│ ├── before_after_defaultcall_app_ia32.exe
│ ├── before_after_defaultcall_app_ia32.pdb
│ ├── before_after_defaultcall_app_intel64.exe
│ ├── before_after_defaultcall_app_intel64.pdb
│ ├── before_after_fastcall.cpp
│ ├── before_after_fastcall_app.c
│ ├── before_after_fastcall_app_ia32.exe
│ ├── before_after_fastcall_app_ia32.pdb
│ ├── before_after_fastcall_app_intel64.exe
│ ├── before_after_fastcall_app_intel64.pdb
│ ├── before_after_stdcall.cpp
│ ├── before_after_stdcall_app.c
│ ├── before_after_stdcall_app_ia32.exe
│ ├── before_after_stdcall_app_ia32.pdb
│ ├── before_after_stdcall_app_intel64.exe
│ ├── before_after_stdcall_app_intel64.pdb
│ ├── child_process.cpp
│ ├── code_range.cpp
│ ├── context_probe.cpp
│ ├── create_process_app.cpp
│ ├── deadlock_in_ipc.cpp
│ ├── default_probe_size.cpp
│ ├── dltest_unix.c
│ ├── dltest_win.c
│ ├── do_nothing_ia32.asm
│ ├── do_nothing_ia32.s
│ ├── do_nothing_intel64.asm
│ ├── do_nothing_intel64.s
│ ├── empty.c
│ ├── emptysub.c
│ ├── err_call.c
│ ├── err_replace.c
│ ├── error-main.c
│ ├── error-sub.c
│ ├── error-unix-jit.cpp
│ ├── error-unix-probe.cpp
│ ├── error-win-jit.cpp
│ ├── error-win-probe.cpp
│ ├── exc.cpp
│ ├── exception_in_dll_app.cpp
│ ├── exception_in_dll_tool.cpp
│ ├── exception_in_mt_attach.cpp
│ ├── exception_in_mt_attach_app.cpp
│ ├── exception_in_probe.cpp
│ ├── exception_in_probe_app.c
│ ├── exception_in_probe_on_probe.cpp
│ ├── exception_in_probe_on_probe_sig.cpp
│ ├── exception_in_probe_sig.cpp
│ ├── exception_in_probed_call.cpp
│ ├── exception_in_probed_call_after.cpp
│ ├── exception_in_probed_call_after_app.c
│ ├── exception_in_probed_call_app.c
│ ├── exception_in_probed_call_cpp_after_app.cpp
│ ├── exception_in_probed_call_cpp_app.cpp
│ ├── exception_in_probed_call_sig.cpp
│ ├── exit_app.cpp
│ ├── exit_repl.cpp
│ ├── fall_thru.c
│ ├── fork_app.cpp
│ ├── func_nops.c
│ ├── func_nops_asm.asm
│ ├── func_nops_asm.s
│ ├── getesp_ia32.asm
│ ├── getesp_intel64.asm
│ ├── getstack_ia32.s
│ ├── getstack_intel64.s
│ ├── good_jump.c
│ ├── heavy_stack_win.c
│ ├── high_target.c
│ ├── init.cpp
│ ├── ins_fetch_overrun.cpp
│ ├── ins_fetch_overrun_app.asm
│ ├── ins_fetch_overrun_app.c
│ ├── ins_fetch_overrun_app.s
│ ├── insert1.cpp
│ ├── insert10.cpp
│ ├── insert11.cpp
│ ├── insert12.cpp
│ ├── insert1win.cpp
│ ├── insert2.cpp
│ ├── insert2win.cpp
│ ├── insert3.cpp
│ ├── insert3win.cpp
│ ├── insert4.cpp
│ ├── insert5.cpp
│ ├── insert6.cpp
│ ├── insert7.cpp
│ ├── insert8.cpp
│ ├── insert9.cpp
│ ├── insert_call_probed.cpp
│ ├── insert_call_probed.reference
│ ├── insert_call_probed_app.c
│ ├── insertfast.cpp
│ ├── insertstd.cpp
│ ├── ipr.c
│ ├── iprtool.cpp
│ ├── jmp_in_probe.cpp
│ ├── jmp_in_probe_app.cpp
│ ├── jmp_in_probe_app1.cpp
│ ├── jmp_in_probe_intel64.asm
│ ├── jmp_in_probe_intel64.s
│ ├── little_malloc.c
│ ├── load_map.cpp
│ ├── load_map_app.cpp
│ ├── local_branch_ia32.s
│ ├── local_branch_intel64.s
│ ├── makefile
│ ├── makefile.rules
│ ├── malloctrace2.cpp
│ ├── malloctrace2win.cpp
│ ├── malloctrace_locktest.cpp
│ ├── mallocwrappers_unix.c
│ ├── move_ip.c
│ ├── one_unix.c
│ ├── one_win.c
│ ├── parent_process.cpp
│ ├── pc64.s
│ ├── probe1.cpp
│ ├── probe10.cpp
│ ├── probe2.cpp
│ ├── probe3.cpp
│ ├── probe4.cpp
│ ├── probe5.cpp
│ ├── probe6.cpp
│ ├── probe7.cpp
│ ├── probe8.cpp
│ ├── probe9.cpp
│ ├── probe_close.cpp
│ ├── probe_err1.cpp
│ ├── probe_err2.cpp
│ ├── probe_err4.cpp
│ ├── probe_err5.cpp
│ ├── probe_err6.cpp
│ ├── probe_movip.cpp
│ ├── probe_on_probe1.cpp
│ ├── probe_on_probe1.reference
│ ├── probe_on_probe2.cpp
│ ├── probe_overlap.cpp
│ ├── probe_safe_test_ia32.s
│ ├── probe_safe_test_intel64.s
│ ├── probe_stdcall_fastcall.h
│ ├── probecdecl.cpp
│ ├── probefastcall.cpp
│ ├── probefastcall_app.c
│ ├── probefastcall_app.exe
│ ├── probefastcall_app.pdb
│ ├── probeheapalloc.cpp
│ ├── probemalloctrace.cpp
│ ├── probesafetest.cpp
│ ├── probesafetest_app.c
│ ├── probesleep.cpp
│ ├── probestdcall.cpp
│ ├── probestdcall_app.c
│ ├── probestdcall_app.exe
│ ├── probestdcall_app.pdb
│ ├── proto1.cpp
│ ├── proto1win-err.cpp
│ ├── proto1win.cpp
│ ├── proto2.cpp
│ ├── proto3.cpp
│ ├── proto3win.cpp
│ ├── proto4.cpp
│ ├── protobar.c
│ ├── protofoo.c
│ ├── protorbar.c
│ ├── pthread_exit_after_fork_app.c
│ ├── pthread_exit_app.c
│ ├── pthread_exit_tool.cpp
│ ├── redzone.cpp
│ ├── redzone_app.c
│ ├── redzone_app_asm.s
│ ├── relocate_app.cpp
│ ├── relocate_asm_ia32.s
│ ├── relocate_asm_intel64.s
│ ├── relocate_rtn.cpp
│ ├── remove_probe.cpp
│ ├── remove_probe2.cpp
│ ├── replace_empty.cpp
│ ├── replace_empty_twice.cpp
│ ├── replace_exit.cpp
│ ├── replaceapp.c
│ ├── replaceapp.def
│ ├── replacecall.c
│ ├── replacedisp.c
│ ├── replacefun.c
│ ├── replacejmp.c
│ ├── replaceshorty.c
│ ├── replacesig_empty.cpp
│ ├── scan_all_rtns_for_probe.cpp
│ ├── sectest.cpp
│ ├── sempost_app.cpp
│ ├── sempost_repl.cpp
│ ├── set_tp.s
│ ├── shortBB.cpp
│ ├── shortBB64.cpp
│ ├── shortBB64app.c
│ ├── shortBB64foo.asm
│ ├── shortBBapp.c
│ ├── signals.cpp
│ ├── signals_app.cpp
│ ├── simplebar.c
│ ├── simplefoo.c
│ ├── simplefoo10.c
│ ├── simplefoo9.c
│ ├── simplesp.s
│ ├── simplestd10.c
│ ├── sleep_unix.c
│ ├── sleep_win.c
│ ├── spawn_internal_thread_probe.cpp
│ ├── spawn_internal_thread_probe_app.cpp
│ ├── spin_lock_app.c
│ ├── spinlock_insert.cpp
│ ├── spinlock_repl.cpp
│ ├── spinlock_replsig.cpp
│ ├── ssewin.cpp
│ ├── svcraw_app.cpp
│ ├── svcraw_repl.cpp
│ ├── symbolnames.cpp
│ ├── syscall_in_probe.cpp
│ ├── syscall_in_probe_app.c
│ ├── syscall_yield64.s
│ ├── thd_malloc.c
│ ├── tpss.cpp
│ ├── tpss_lin_libc.c
│ ├── tpss_lin_libc_tool.cpp
│ ├── tpss_lin_libdl.cpp
│ ├── tpss_lin_libncurses.cpp
│ ├── tpss_lin_libpthread.c
│ ├── tpss_lin_libpthread_tool.cpp
│ ├── tpss_lin_librt.c
│ ├── tpss_lin_librt_tool.cpp
│ ├── two_unix.c
│ ├── two_win.c
│ ├── unix_parent_tool.cpp
│ ├── unloadtest_unix.c
│ ├── unloadtest_win.c
│ └── win_child_process.cpp
│ ├── Regvalue
│ ├── changeRegs_ia32.asm
│ ├── changeRegs_ia32.s
│ ├── changeRegs_intel64.asm
│ ├── changeRegs_intel64.s
│ ├── change_context_regvalue.cpp
│ ├── change_context_rflags.cpp
│ ├── checkXStateBV_app.cpp
│ ├── checkXStateBV_tool.cpp
│ ├── context_perf.cpp
│ ├── context_regvalue.cpp
│ ├── context_utils.cpp
│ ├── context_utils.h
│ ├── doXsave_ia32.asm
│ ├── doXsave_ia32.s
│ ├── doXsave_intel64.asm
│ ├── doXsave_intel64.s
│ ├── doXsavec.asm
│ ├── doXsavec.s
│ ├── emu_context_regvalue.cpp
│ ├── iarg_reg_reference.cpp
│ ├── iarg_reg_reference_flags.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── print_flags.c
│ ├── print_flags_asm.asm
│ ├── print_flags_asm.s
│ ├── register_modification_utils.cpp
│ ├── register_modification_utils.h
│ ├── regvalue_app.cpp
│ ├── regvalue_test_utils.cpp
│ ├── regvalue_test_utils.h
│ ├── regvalues.cpp
│ ├── regvalues.h
│ ├── xsave_iarg_mem.cpp
│ ├── xsave_iarg_mem_app.cpp
│ ├── xsave_memoryXXX_size_IPAFTER.compare
│ ├── xsave_memoryXXX_size_IPBEFORE.compare
│ ├── xsavec_iarg_mem_app.cpp
│ ├── xsavec_memoryXXX_size_IPAFTER.compare
│ ├── xsavec_memoryXXX_size_IPBEFORE.compare
│ ├── xstateBVUtils.cpp
│ └── xstateBVUtils.h
│ ├── Replay
│ ├── call_function_natively.cpp
│ ├── call_function_natively.reference
│ ├── call_function_natively_app.cpp
│ ├── expand_replayed_rtn.cpp
│ ├── expand_replayed_rtn_app.asm
│ ├── expand_replayed_rtn_app.c
│ ├── expand_replayed_rtn_app.s
│ ├── ia32_cross_os_replay.record
│ ├── ia32_cross_os_replay.reference
│ ├── intel64_cross_os_replay.record
│ ├── intel64_cross_os_replay.reference
│ ├── makefile
│ ├── makefile.rules
│ ├── record_imageload.cpp
│ ├── record_imageload2.cpp
│ ├── replay_syscall.cpp
│ ├── set_loader_info_shift.cpp
│ ├── win_exception.c
│ └── win_replay_exception.cpp
│ ├── RtnTests
│ ├── checkflags.asm
│ ├── checkflags.s
│ ├── checkflags_app.c
│ ├── checkflags_tool.cpp
│ ├── ifuncInstrumentation.cpp
│ ├── ifuncInstrumentationApp.c
│ ├── ifunc_complex_resolver.cpp
│ ├── ifunc_complex_resolver_app.c
│ ├── ifunc_complex_resolver_lib_app.c
│ ├── is_ifunc_supported.py
│ ├── makefile
│ └── makefile.rules
│ ├── SegTrace
│ ├── disasm_container.H
│ ├── hello.c
│ ├── makefile
│ ├── makefile.rules
│ ├── pending_syscalls.H
│ ├── segtrace.cpp
│ └── thread.c
│ ├── SegmentsVirtualization
│ ├── fixed_base_reg.cpp
│ ├── gcc_thread_local_vars.reference
│ ├── gcc_thread_local_vars_app.c
│ ├── load_far_pointer_ia32.cpp
│ ├── load_far_pointer_ia32.s
│ ├── load_far_pointer_intel64.cpp
│ ├── load_far_pointer_intel64.s
│ ├── makefile
│ ├── makefile.rules
│ ├── modify_ldt.cpp
│ ├── movs.s
│ ├── set_thread_area1.cpp
│ ├── set_thread_area2.cpp
│ └── set_thread_area3.cpp
│ ├── SignalTests
│ ├── action-pending.cpp
│ ├── altstack.c
│ ├── async_exceptions.c
│ ├── async_multithreadingapp.c
│ ├── async_multithreadingtool.cpp
│ ├── asyncfpe.c
│ ├── bad-stack-alt-android.reference
│ ├── bad-stack-alt-android.toolreference
│ ├── bad-stack-alt-linux.reference
│ ├── bad-stack-alt-linux.toolreference
│ ├── bad-stack-alt-mac.reference
│ ├── bad-stack-alt-mac.toolreference
│ ├── bad-stack-ia32-asm.s
│ ├── bad-stack-intel64-asm.s
│ ├── bad-stack-noalt-android.reference
│ ├── bad-stack-noalt-android.toolreference
│ ├── bad-stack-noalt-linux.reference
│ ├── bad-stack-noalt-linux.toolreference
│ ├── bad-stack-noalt-mac.reference
│ ├── bad-stack-noalt-mac.toolreference
│ ├── bad-stack-sigret-android.reference
│ ├── bad-stack-sigret-android.toolreference
│ ├── bad-stack-sigret-linux.reference
│ ├── bad-stack-sigret-linux.toolreference
│ ├── bad-stack-sigret-mac.reference
│ ├── bad-stack-sigret-mac.toolreference
│ ├── bad-stack.c
│ ├── blockingsyscall.c
│ ├── blockingsyscall.reference
│ ├── blockloop.c
│ ├── call-app-stress-tool.cpp
│ ├── call-app-stress.cpp
│ ├── call-app-tool.cpp
│ ├── call-app.cpp
│ ├── call-app.reference
│ ├── copywithxmm_ia32.s
│ ├── copywithxmm_intel64.s
│ ├── deprecated-intercept.app-handle.reference
│ ├── deprecated-intercept.app-nohandle.reference
│ ├── deprecated-intercept.cpp
│ ├── deprecated-intercept.tool.reference
│ ├── dfcheck.c
│ ├── dfcheck_ia32.s
│ ├── dfcheck_intel64.s
│ ├── double.c
│ ├── efault.c
│ ├── errcheck.c
│ ├── exithandler.c
│ ├── exittool.cpp
│ ├── fastsigchecktool.cpp
│ ├── fatal.c
│ ├── fatal_block_sync.c
│ ├── fatal_block_sync.reference
│ ├── fatallog.reference
│ ├── fatalsync.c
│ ├── faultcheck-ia32-asm.s
│ ├── faultcheck-intel64-asm.s
│ ├── faultcheck-target.h
│ ├── faultcheck-x86.c
│ ├── faultcheck.c
│ ├── faultcheck_flags.c
│ ├── faultcheck_flags_ia32_asm.s
│ ├── faultcheck_flags_tool1.cpp
│ ├── faultcheck_flags_tool2.cpp
│ ├── faultcheck_flags_tool3.cpp
│ ├── faulttool.cpp
│ ├── forktest_altstack.c
│ ├── fpcheck.c
│ ├── fptags.c
│ ├── fptags_ia32.s
│ ├── futex.c
│ ├── handle-usr1.c
│ ├── handlerAlignment.cpp
│ ├── handlerAlignment_ia32.s
│ ├── hlt.c
│ ├── insfault-intel64-asm.s
│ ├── insfault-intel64.h
│ ├── insfault-linux-intel64.cpp
│ ├── insfault.cpp
│ ├── inst-type-app.cpp
│ ├── inst-type-tool.cpp
│ ├── intercept.tool.reference
│ ├── interceptall.cpp
│ ├── interceptor_for_regbindings_cache_test.cpp
│ ├── interceptsegv.compare
│ ├── interceptsegv.cpp
│ ├── intercepttool.cpp
│ ├── log.reference
│ ├── logtool.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── maskcheck.c
│ ├── movsbtest.c
│ ├── movsbtest_ia32.s
│ ├── movsbtest_intel64.s
│ ├── mtstress.cpp
│ ├── nestmask.c
│ ├── null-rewrite-tool.cpp
│ ├── num_segvs.h
│ ├── raise-exception-addrs.h
│ ├── raise-exception-tool.cpp
│ ├── recursive.c
│ ├── reg-pressure-tool.cpp
│ ├── regbindings_cache_test_checker.c
│ ├── replay-signal-app.c
│ ├── replay-signal-tool.cpp
│ ├── replay-signal.reference
│ ├── reporter.cpp
│ ├── resetcont.c
│ ├── resetcont.reference
│ ├── resetsegv-safecopy.cpp
│ ├── resetsegv.c
│ ├── resetsegv.reference
│ ├── segv.c
│ ├── segv_for_regbindings_cache_test.c
│ ├── segv_on_fetch.c
│ ├── setcontext.c
│ ├── shortmask.c
│ ├── sig64.cpp
│ ├── sigaltstack.c
│ ├── sigcont.c
│ ├── sigenable.cpp
│ ├── sigenable.reference
│ ├── sigenableapp.c
│ ├── sigenableapp2.c
│ ├── sigflowcheck.cpp
│ ├── sigflowcheck1.reference
│ ├── sigflowcheck2.reference
│ ├── sigprocmask_short.cpp
│ ├── sigsegv_attach.cpp
│ ├── sigsegv_attach_app.c
│ ├── sigsuspend.c
│ ├── sigusr2.c
│ ├── simple.c
│ ├── simpleasync.reference
│ ├── simplesync.reference
│ ├── spilltool.cpp
│ ├── suspendmask.c
│ ├── syncasyncapp.c
│ ├── syncasynctool.cpp
│ ├── then-stress-app.cpp
│ ├── then-stress-tool.cpp
│ ├── threadtest_altstack.c
│ ├── xmmcheck.c
│ └── xmmfaultcheck.c
│ ├── SimpleExamples
│ ├── bsr_bsf.cpp
│ ├── bsr_bsf.reference
│ ├── bsr_bsf_app.cpp
│ ├── bsr_bsf_asm.asm
│ ├── bsr_bsf_asm.s
│ ├── callgraph.py
│ ├── calltrace.cpp
│ ├── catmix.cpp
│ ├── coco.cpp
│ ├── dcache.H
│ ├── dcache.cpp
│ ├── edgcnt.cpp
│ ├── emuload.cpp
│ ├── extmix.cpp
│ ├── fence.cpp
│ ├── flowgraph.py
│ ├── get_source_app.cpp
│ ├── get_source_location.cpp
│ ├── icount.cpp
│ ├── ilenmix.cpp
│ ├── inscount2_mt.cpp
│ ├── inscount2_vregs.cpp
│ ├── inscount_and_check_tls.cpp
│ ├── jumpmix.cpp
│ ├── ldstmix.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── malloctrace.cpp
│ ├── objdump-routine.csh
│ ├── opcodemix.cpp
│ ├── oper-imm.cpp
│ ├── oper-imm.ia32.reference
│ ├── oper-imm.intel64.reference
│ ├── oper_imm_app.cpp
│ ├── oper_imm_asm.asm
│ ├── oper_imm_asm.s
│ ├── pinatrace.cpp
│ ├── regmix.cpp
│ ├── regval.cpp
│ ├── regval_app.cpp
│ ├── topopcode.cpp
│ ├── toprtn.cpp
│ ├── trace.cpp
│ ├── xed-print.cpp
│ └── xed-use.cpp
│ ├── Smc
│ ├── flag_ac_app.c
│ ├── flag_ac_app_ia32_unix.s
│ ├── flag_ac_app_ia32_win.asm
│ ├── flag_ac_app_intel64_unix.s
│ ├── flag_ac_app_intel64_win.asm
│ ├── flag_ac_inline.reference
│ ├── flag_ac_tool.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── smc_callback.cpp
│ ├── smc_disable.cpp
│ ├── smc_util.cpp
│ ├── smc_util.h
│ ├── smcapp.cpp
│ ├── smcapp1.cpp
│ ├── smcapp2.cpp
│ ├── smcapp3.cpp
│ ├── smcapp_bbl.cpp
│ ├── smcapp_except.cpp
│ ├── smcapp_ia32.cpp
│ ├── smcapp_mt.cpp
│ ├── sse-ref.cpp
│ ├── sse-ref.reference
│ ├── sse-ref_ia32.asm
│ ├── sse-ref_ia32.s
│ ├── sse-ref_intel64.asm
│ ├── sse-ref_intel64.s
│ └── sse.cpp
│ ├── SyncTests
│ ├── lock-tester.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── mt-worker-unix.cpp
│ ├── mt-worker-win.cpp
│ ├── rt-locks-app.cpp
│ ├── rt-locks-tool.cpp
│ ├── stress-client-lock-app.cpp
│ └── stress-client-lock-tool.cpp
│ ├── SyscallsEmulation
│ ├── check_prctl_app.c
│ ├── close_all_files.cpp
│ ├── close_all_files_app.c
│ ├── exit_restartable_syscall_app.c
│ ├── makefile
│ ├── makefile.rules
│ ├── mmap.cpp
│ ├── mmap_app.c
│ ├── pin_clone_app.cpp
│ ├── ppollEmulation_app.cpp
│ ├── syscall_time.cpp
│ ├── syscalls_and_locks_app.cpp
│ └── syscalls_and_locks_tool.cpp
│ ├── Tests
│ ├── IARGList.cpp
│ ├── after.cpp
│ ├── alah.cpp
│ ├── bblFallThrough.cpp
│ ├── bblnull.cpp
│ ├── brtaken.cpp
│ ├── callargs.cpp
│ ├── callargs_probe_tool.cpp
│ ├── cflowcheck.cpp
│ ├── check_env.cpp
│ ├── check_env.sh
│ ├── checkaddress.cpp
│ ├── checkaddressapp.s
│ ├── child_sig_while_execv_app.c
│ ├── child_sig_while_execv_simple_app.c
│ ├── clear_df_flag_tool.cpp
│ ├── const_context_at_ins.cpp
│ ├── context-pc.cpp
│ ├── context.cpp
│ ├── context_stack_and_spill.cpp
│ ├── correct_winapp_runs_pin_cmdline.cpp
│ ├── detach.cpp
│ ├── df_flag_utils.asm
│ ├── df_flag_utils.s
│ ├── ea_verifier.cpp
│ ├── emu.cpp
│ ├── exitProcess.cpp
│ ├── exitProcessApp.c
│ ├── finiRemove.cpp
│ ├── foobar.c
│ ├── hello.cpp
│ ├── icount1.cpp
│ ├── icount2.cpp
│ ├── icount3.cpp
│ ├── icount4.cpp
│ ├── icount5.cpp
│ ├── icountcheck.cpp
│ ├── ifunc_tst.cpp
│ ├── ifuncmemcpy.cpp
│ ├── illegalEnvp_app.c
│ ├── imageLoad.cpp
│ ├── imageLoadBackward.cpp
│ ├── insMix.cpp
│ ├── insMixApp.s
│ ├── inscount2_mt_debuginfo.cpp
│ ├── inscount_per_image.cpp
│ ├── int3test.c
│ ├── jecxz_ia32.asm
│ ├── jecxz_ia32.s
│ ├── jecxz_intel64.asm
│ ├── jecxz_intel64.s
│ ├── lasterror.cpp
│ ├── launcher_app.cpp
│ ├── launcher_tool.cpp
│ ├── loop.s
│ ├── makefile
│ ├── makefile.rules
│ ├── malloc.cpp
│ ├── memcpy_app.c
│ ├── memident.cpp
│ ├── mtest.cpp
│ ├── multipleinstrumentation.cpp
│ ├── mysetenv.c
│ ├── new.cpp
│ ├── operand.cpp
│ ├── pagetable.H
│ ├── parse_executed_rtns.cpp
│ ├── pin_tests_util.H
│ ├── prefix.cpp
│ ├── prefixApp.s
│ ├── probe.cpp
│ ├── reg.cpp
│ ├── reg_ref_inlined.cpp
│ ├── rep_ip_at_ipoint_after_app.c
│ ├── rep_ip_at_ipoint_after_app_unix.s
│ ├── rep_ip_at_ipoint_after_tool.cpp
│ ├── rtnNumIns.cpp
│ ├── rtn_create_at_dup.cpp
│ ├── rtn_insert_call_probed.cpp
│ ├── sampleApp.s
│ ├── sec.cpp
│ ├── segv.cpp
│ ├── sequence.cpp
│ ├── sequencecheck.cpp
│ ├── set_df_flag_tool.cpp
│ ├── set_status_flags_tool.cpp
│ ├── smc_check.cpp
│ ├── smc_test_l.c
│ ├── snprintf.cpp
│ ├── sourceLocation_app.cpp
│ ├── sourceLocation_img1.cpp
│ ├── sourceLocation_img2.cpp
│ ├── sourceLocation_tool.cpp
│ ├── statdyn_app.cpp
│ ├── statdyn_tool.cpp
│ ├── strcmp_app.c
│ ├── swizzle1.cpp
│ ├── symOutOfBound.cpp
│ ├── syntax.cpp
│ ├── syntax_tst.cpp
│ ├── test_ebx_in_exceptions_ia32_unix.s
│ ├── test_ebx_in_exceptions_ia32_win.asm
│ ├── test_ebx_in_exceptions_unix.cpp
│ ├── test_ebx_in_exceptions_win.cpp
│ ├── test_ebx_in_exceptions_xed_interface.cpp
│ ├── thread.cpp
│ ├── threadApp.cpp
│ ├── tracecount.cpp
│ ├── traceusage.cpp
│ ├── util.cpp
│ ├── verify.cpp
│ ├── win_cvapp_test_tool.cpp
│ ├── winapp_runs_pin.cpp
│ ├── winapp_runs_pin.h
│ ├── winapp_runs_pin.ico
│ ├── winapp_runs_pin.sln
│ ├── winapp_runs_pin.vcxproj
│ ├── winapp_runs_pin_ia32.exe
│ ├── winapp_runs_pin_intel64.exe
│ └── xedReg.cpp
│ ├── ToolUnitTests
│ ├── addit.c
│ ├── addr32_override_app.cpp
│ ├── addr32_override_app_asm.s
│ ├── align_access.cpp
│ ├── align_access_app.c
│ ├── analysis_flag_overwrite_app.c
│ ├── analysis_flag_overwrite_app_win.asm
│ ├── analysis_flag_overwrite_test1_inline.reference
│ ├── analysis_flag_overwrite_test1_noinline.reference
│ ├── analysis_flag_overwrite_test1_noinline_bridge.reference
│ ├── analysis_flag_overwrite_test2_inline.reference
│ ├── analysis_flag_overwrite_test2_noinline.reference
│ ├── analysis_flag_overwrite_test2_noinline_bridge.reference
│ ├── analysis_flag_overwrite_test3_inline.reference
│ ├── analysis_flag_overwrite_test3_noinline.reference
│ ├── analysis_flag_overwrite_test3_noinline_bridge.reference
│ ├── analysis_flag_overwrite_tool1.cpp
│ ├── analysis_flag_overwrite_tool1_win.asm
│ ├── analysis_flag_overwrite_tool2.cpp
│ ├── analysis_flag_overwrite_tool2_win.asm
│ ├── analysis_flag_overwrite_tool3.cpp
│ ├── analysis_flag_overwrite_tool3_win.asm
│ ├── and.s
│ ├── aoti_mutation_target.c
│ ├── aoti_mutation_tool.cpp
│ ├── apc_monitor.cpp
│ ├── apc_monitor.reference
│ ├── app_inspects_internal_thread_win.cpp
│ ├── app_inspects_internal_thread_win_app.c
│ ├── args.cpp
│ ├── args.reference
│ ├── args_err.cpp
│ ├── args_lineno.cpp
│ ├── attach.cpp
│ ├── attach_app.cpp
│ ├── attach_tool.reference
│ ├── badfile.reference
│ ├── badpath.reference
│ ├── baserel_in_probe_tool.cpp
│ ├── big_bss.c
│ ├── bigrange.address
│ ├── branch_target_addr.cpp
│ ├── btc.s
│ ├── btc_app.c
│ ├── callapp0.cpp
│ ├── callapp0i.cpp
│ ├── callapp1.cpp
│ ├── callapp10.cpp
│ ├── callapp10i.cpp
│ ├── callapp12.cpp
│ ├── callapp13.cpp
│ ├── callapp14.cpp
│ ├── callapp15.cpp
│ ├── callapp1i.cpp
│ ├── callapp2.cpp
│ ├── callapp3.cpp
│ ├── callapp4.cpp
│ ├── callapp5.cpp
│ ├── callapp6.cpp
│ ├── callapp7.cpp
│ ├── callapp8.cpp
│ ├── callapp9.cpp
│ ├── callapp_64bit_param_app_1.c
│ ├── callapp_64bit_param_app_2.c
│ ├── callapp_64bit_param_tool.cpp
│ ├── callapp_nested_app.c
│ ├── callapp_nested_app1.c
│ ├── callapp_nested_tool.cpp
│ ├── callapp_perf_app.c
│ ├── callapp_perf_app1.c
│ ├── callapp_perf_tool.cpp
│ ├── callappfast10.cpp
│ ├── callappstd10.cpp
│ ├── callsp_ia32.s
│ ├── callsp_intel64.s
│ ├── cancel.c
│ ├── change_syscall.cpp
│ ├── change_syscall_app.c
│ ├── check_acall_inline_opt.cpp
│ ├── check_env.cpp
│ ├── check_env_app.cpp
│ ├── check_fpstate.cpp
│ ├── check_fpstate_app.c
│ ├── check_legal_callbacks.cpp
│ ├── check_tool_malloc.sh
│ ├── checkerrorfile.cpp
│ ├── checkexecuting.cpp
│ ├── checkinline.cpp
│ ├── checkreps.cpp
│ ├── claim_regs.cpp
│ ├── clobber.cpp
│ ├── clobber_asm.s
│ ├── cmovstest.c
│ ├── cmpxchg8b_unix.s
│ ├── cmpxchg8b_win.asm
│ ├── cmpxchg8b_with_explicit_ebx_win.asm
│ ├── code_cache_block_overflow1.cpp
│ ├── code_cache_block_overflow2.cpp
│ ├── context.cpp
│ ├── context_state_apis.cpp
│ ├── control_init.cpp
│ ├── create_rtn.cpp
│ ├── create_rtn.strip
│ ├── create_rtn_app.cpp
│ ├── data_in_code_win.cpp
│ ├── data_in_code_win_app.c
│ ├── datasym.cpp
│ ├── datasym_app.c
│ ├── debugservice_monitor.cpp
│ ├── debugservice_monitor.reference
│ ├── deepbind.cpp
│ ├── deepbind.ver
│ ├── deepbind_app.c
│ ├── deepbind_syscalls.c
│ ├── df_test1_inline.reference
│ ├── df_test1_noinline.reference
│ ├── df_test1_noinline_bridge.reference
│ ├── df_test2_inline.reference
│ ├── df_test2_noinline.reference
│ ├── df_test2_noinline_bridge.reference
│ ├── df_test3_inline.reference
│ ├── df_test3_noinline.reference
│ ├── df_test3_noinline_bridge.reference
│ ├── df_test4_inline.reference
│ ├── df_test4_noinline.reference
│ ├── df_test4_noinline_bridge.reference
│ ├── df_test5_inline.reference
│ ├── df_test5_noinline.reference
│ ├── df_test5_noinline_bridge.reference
│ ├── df_test_app.c
│ ├── df_test_app_win.asm
│ ├── df_test_tool1.cpp
│ ├── df_test_tool1_win.asm
│ ├── df_test_tool2.cpp
│ ├── df_test_tool2_win.asm
│ ├── df_test_tool3.cpp
│ ├── df_test_tool3_win.asm
│ ├── df_test_tool4.cpp
│ ├── df_test_tool4_win.asm
│ ├── df_test_tool5.cpp
│ ├── df_test_tool5_win.asm
│ ├── dlclose.cpp
│ ├── dlclose_app.cpp
│ ├── dltest.c
│ ├── dltest2.c
│ ├── doint.c
│ ├── doint_ia32.s
│ ├── dummy_dll.c
│ ├── dynamic_secondary_dll.cpp
│ ├── ea_verifier_addr16.cpp
│ ├── ea_verifier_addr16_win.asm
│ ├── ea_verifier_bt.cpp
│ ├── earlymalloc.cpp
│ ├── earlyout.cpp
│ ├── elf_symbols.cpp
│ ├── elf_symsize.cpp
│ ├── emu_jumps.cpp
│ ├── emu_stack.cpp
│ ├── error_log.cpp
│ ├── error_log_app.cpp
│ ├── exceptionAddress_lin.cpp
│ ├── exceptionAddress_lin_app.cpp
│ ├── exception_app_ia32.s
│ ├── exception_app_intel64.s
│ ├── exception_context_monitor.cpp
│ ├── exception_monitor.cpp
│ ├── exception_monitor_for_cpp_exception_test.reference
│ ├── exception_monitor_for_divide_by_zero_test.reference
│ ├── exception_monitor_for_iret_order.cpp
│ ├── exception_tool_ia32.s
│ ├── exception_tool_intel64.s
│ ├── executeat_callback.cpp
│ ├── executeat_lock.cpp
│ ├── execvp.c
│ ├── execvp.reference
│ ├── exports_only_tool.cpp
│ ├── factorial.c
│ ├── far.s
│ ├── farmain.cpp
│ ├── findthreadwithappstack.reference
│ ├── fini.cpp
│ ├── flag_ac_app.c
│ ├── flag_ac_app_ia32_unix.s
│ ├── flag_ac_app_ia32_win.asm
│ ├── flag_ac_app_intel64_unix.s
│ ├── flag_ac_app_intel64_win.asm
│ ├── flag_ac_app_u_64.s
│ ├── flag_ac_inline.reference
│ ├── flag_ac_noinline.reference
│ ├── flag_ac_noinline_bridge.reference
│ ├── flag_ac_tool.cpp
│ ├── flag_ac_win_app.c
│ ├── flag_ac_win_inline.reference
│ ├── flag_ac_win_noinline.reference
│ ├── flag_ac_win_noinline_bridge.reference
│ ├── flag_ac_win_tool.cpp
│ ├── flag_spill_fill_app.c
│ ├── flag_spill_fill_app_win.asm
│ ├── flag_spill_fill_test1_inline.reference
│ ├── flag_spill_fill_test1_noinline.reference
│ ├── flag_spill_fill_test1_noinline_bridge.reference
│ ├── flag_spill_fill_tool1.cpp
│ ├── flag_spill_fill_tool1.dll.reference
│ ├── flag_spill_fill_tool1_win.asm
│ ├── flags_at_analysis_app.c
│ ├── flags_at_analysis_app_win.asm
│ ├── flags_at_analysis_tool.cpp
│ ├── fp_args.cpp
│ ├── fp_args.reference
│ ├── fp_args_app.cpp
│ ├── fp_context_set_const_context.cpp
│ ├── fp_insert.cpp
│ ├── fp_replace.cpp
│ ├── fp_replace_app.c
│ ├── funcarg_ep.cpp
│ ├── funcarg_ep_app.cpp
│ ├── funcarg_ep_ia32.reference
│ ├── funcarg_ep_intel64.reference
│ ├── funreplace.reference
│ ├── funreplace_alert.cpp
│ ├── funreplace_alert.reference
│ ├── guard_page.cpp
│ ├── guard_page_app.cpp
│ ├── hello.reference
│ ├── htab.c
│ ├── iarg_tsc1.cpp
│ ├── iarg_tsc2.cpp
│ ├── iarg_tsc3.cpp
│ ├── iarg_tsc4.cpp
│ ├── iarg_tsc5.cpp
│ ├── iarg_tsc_probed1.cpp
│ ├── illegal_call_app.cpp
│ ├── illegal_instrumentation.cpp
│ ├── image_entry.cpp
│ ├── image_entry.reference
│ ├── image_load.cpp
│ ├── import_forwarder_error.cpp
│ ├── incebx.cpp
│ ├── indirect_call_branch_target_addr.cpp
│ ├── inline_opt_test.cpp
│ ├── inline_opt_test_app.cpp
│ ├── inline_opt_test_app_ia32.asm
│ ├── inline_opt_test_app_ia32.s
│ ├── inline_opt_test_app_intel64.asm
│ ├── inline_opt_test_app_intel64.s
│ ├── inline_opt_test_df1.cpp
│ ├── inline_opt_test_df3.cpp
│ ├── inline_opt_test_df_app.cpp
│ ├── inline_opt_test_df_app_ia32.asm
│ ├── inline_opt_test_df_ia32.asm
│ ├── inline_opt_test_ia32.asm
│ ├── inline_opt_test_ia32.s
│ ├── inline_opt_test_intel64.asm
│ ├── inline_opt_test_intel64.s
│ ├── inlinecall.cpp
│ ├── inlinecall.reference
│ ├── inlined-stack-arg.cpp
│ ├── inlined-stack-arg.reference
│ ├── inlined-stack-arg1.cpp
│ ├── inlined-stack-arg1.reference
│ ├── inlined-stack-arg2.cpp
│ ├── inlined-stack-arg2.reference
│ ├── inlined-stack-arg2_win.asm
│ ├── inlined-stack-arg2_win_intel64.asm
│ ├── inner.c
│ ├── ins_check_fetcher.cpp
│ ├── inscount2_fornoinline.cpp
│ ├── insert_if_then_call.cpp
│ ├── insert_if_then_call1.cpp
│ ├── insert_if_then_call2.cpp
│ ├── insert_if_then_call_app.cpp
│ ├── insertand.cpp
│ ├── insfetch_tool.cpp
│ ├── int3del.cpp
│ ├── int3test.c
│ ├── internal_exception_handler.cpp
│ ├── internal_exception_handler_app.cpp
│ ├── internal_exception_handler_app_lin.cpp
│ ├── internal_exception_handler_lin.cpp
│ ├── intrin.cpp
│ ├── iret_ia32.asm
│ ├── iret_ia32.s
│ ├── iret_intel64.asm
│ ├── iret_intel64.s
│ ├── iretmain.c
│ ├── isret.cpp
│ ├── isret_app.cpp
│ ├── jcx_addr16_app.c
│ ├── jcx_addr16_tool.cpp
│ ├── jcx_addr16_tool.reference
│ ├── jitmalloctrace.cpp
│ ├── knob_duplicate_name.cpp
│ ├── knob_writeonce.cpp
│ ├── kthread.c
│ ├── kthread.reference
│ ├── large.address
│ ├── leave.cpp
│ ├── line.cpp
│ ├── line.reference
│ ├── little_malloc.c
│ ├── load_resource_app.c
│ ├── lpd.c
│ ├── main_dll.cpp
│ ├── makefile
│ ├── makefile.rules
│ ├── malmalloc.cpp
│ ├── malmalloc.reference
│ ├── memalign.cpp
│ ├── memory_displacement.cpp
│ ├── memory_displacement_app.cpp
│ ├── memory_displacement_app.s
│ ├── mmap.cpp
│ ├── move_then_test.cpp
│ ├── mt_app.cpp
│ ├── mt_tool.cpp
│ ├── mtstatic.reference
│ ├── multimem.cpp
│ ├── mxcsr_ia32.asm
│ ├── mxcsr_ia32.s
│ ├── mxcsr_intel64.asm
│ ├── mxcsr_intel64.s
│ ├── nops.cpp
│ ├── one.c
│ ├── oneprog.c
│ ├── operandtool.cpp
│ ├── partialinline.cpp
│ ├── partialinline.reference
│ ├── passthru_context_xmm_regs_app.cpp
│ ├── passthru_context_xmm_regs_callapp.cpp
│ ├── passthru_context_xmm_regs_executeat.cpp
│ ├── pipeapp.c
│ ├── popea_verifier.cpp
│ ├── posix_memalign.cpp
│ ├── pusha_popa.cpp
│ ├── pusha_popa_asm.asm
│ ├── pusha_popa_asm.s
│ ├── pushtest.c
│ ├── pushw.s
│ ├── raise_exception.cpp
│ ├── raise_exception_app.cpp
│ ├── realloc.cpp
│ ├── rebase_dll.c
│ ├── rebase_dll_tool.cpp
│ ├── reg_context_fp_st.cpp
│ ├── reg_context_set_const_context.cpp
│ ├── reg_context_set_fp_st.cpp
│ ├── reg_context_set_x87.cpp
│ ├── reg_context_set_xmm.cpp
│ ├── reg_context_set_ymm.cpp
│ ├── reg_context_x87.cpp
│ ├── reg_context_xmm.cpp
│ ├── reg_context_ymm.cpp
│ ├── reg_inst_gx.cpp
│ ├── reg_inst_gx.reference
│ ├── reg_inst_gx.tool.reference
│ ├── reg_operands_test.reference
│ ├── reg_operands_test_app.c
│ ├── reg_operands_test_app_win.asm
│ ├── reg_operands_test_tool.cpp
│ ├── reg_ref_fp_st.cpp
│ ├── reg_ref_x87.cpp
│ ├── reg_ref_xmm.cpp
│ ├── reg_ref_ymm.cpp
│ ├── reg_value_fp_st.cpp
│ ├── reg_value_x87.cpp
│ ├── reg_value_xmm.cpp
│ ├── reg_value_ymm.cpp
│ ├── rep_ia32.s
│ ├── rep_intel64.s
│ ├── repcmpsz.c
│ ├── repcmpsz.s
│ ├── repcmpsz_tool.cpp
│ ├── repcmpsz_tool.reference
│ ├── replace_free.cpp
│ ├── replace_malloc_inst.cpp
│ ├── replace_rtl_alloc_heap.cpp
│ ├── reppredicate_ia32.reference
│ ├── reppredicate_intel64.reference
│ ├── reptool.cpp
│ ├── reptool_ia32.reference
│ ├── reptool_intel64.reference
│ ├── reserve_memory.c
│ ├── returnflags.cpp
│ ├── returnflags_and_ref.cpp
│ ├── returnreg.cpp
│ ├── rewritememop.cpp
│ ├── rewritememop1.cpp
│ ├── rip_relative_prefix_67_app_intel64.c
│ ├── rip_relative_prefix_67_asm_intel64.s
│ ├── rtn_insert_call1.cpp
│ ├── rtn_insert_call2.cpp
│ ├── safecopy.cpp
│ ├── safecopy_mxcsr.cpp
│ ├── secname_app.cpp
│ ├── secname_tool.cpp
│ ├── seg_override_app1.c
│ ├── seg_override_app1_win.asm
│ ├── segmented_ea_verifier.cpp
│ ├── segmented_ea_verifier_lin_ia32.s
│ ├── segmented_ea_verifier_lin_intel64.s
│ ├── segmented_ea_verifier_win1_ia32.asm
│ ├── segmented_ea_verifier_win1_intel64.asm
│ ├── set_fp_context_xmm_regs.cpp
│ ├── set_fp_context_xmm_regs_app.cpp
│ ├── set_fp_context_xmm_regs_ia32.reference
│ ├── set_fp_context_xmm_regs_intel64.reference
│ ├── short_name.cpp
│ ├── sigmask-mac.reference
│ ├── sigmask.c
│ ├── sigmask.reference
│ ├── simple.c
│ ├── simplebar.c
│ ├── simplebar64.c
│ ├── simplefast10.c
│ ├── simplefoo.c
│ ├── simplefoo1.c
│ ├── simplefoo10.c
│ ├── simplefoo12.c
│ ├── simplefoo13.c
│ ├── simplefoo14.c
│ ├── simplefoo2.c
│ ├── simplefoo3.c
│ ├── simplefoo4.c
│ ├── simplefoo6.c
│ ├── simplefoo7.c
│ ├── simplefoo8.c
│ ├── simplefoo9.c
│ ├── simplesp.s
│ ├── simplestd10.c
│ ├── smallpush_ia32.s
│ ├── smallpush_intel64.s
│ ├── socket_app.cpp
│ ├── soload.cpp
│ ├── soload.reference
│ ├── soloadrange.cpp
│ ├── sp_argument.cpp
│ ├── sp_argument_app.c
│ ├── spalign.cpp
│ ├── spalign_asm_intel64_unix.s
│ ├── spalign_asm_intel64_win.asm
│ ├── spawntool.cpp
│ ├── spawntool_app.c
│ ├── sse-ref.cpp
│ ├── sse-ref.reference
│ ├── sse-ref_ia32.asm
│ ├── sse-ref_ia32.s
│ ├── sse-ref_intel64.asm
│ ├── sse-ref_intel64.s
│ ├── sse-unaligned-class.cpp
│ ├── sse-unaligned-class2.cpp
│ ├── sse.cpp
│ ├── stackalign.cpp
│ ├── static_secondary_dll.cpp
│ ├── statica_locktest.cpp
│ ├── str2flt.cpp
│ ├── str2int.cpp
│ ├── str2int64.cpp
│ ├── str2int64.reference
│ ├── strace_ia32.cpp
│ ├── stracewin_ia32.cpp
│ ├── stress_const_context.cpp
│ ├── stress_const_context2.cpp
│ ├── stress_const_context_app.cpp
│ ├── stringtest.c
│ ├── suspend-mxcsr-asm.asm
│ ├── suspend-mxcsr.cpp
│ ├── suspend_app_win.cpp
│ ├── suspend_context_app_win.cpp
│ ├── suspend_win.cpp
│ ├── sw_interrupt.cpp
│ ├── sw_interrupt_app.cpp
│ ├── swizzle2.cpp
│ ├── swizzle2.reference
│ ├── swizzle3.cpp
│ ├── swizzle5.cpp
│ ├── swizzle5.reference
│ ├── swizzle_seg.cpp
│ ├── swizzle_seg.reference
│ ├── swizzle_seg_app.cpp
│ ├── swizzle_seg_app.def
│ ├── swizzle_seg_app_ia32_unix.s
│ ├── swizzle_seg_app_ia32_win.asm
│ ├── swizzle_seg_app_intel64_unix.s
│ ├── swizzle_util.h
│ ├── swizzlealloc.c
│ ├── symsize.c
│ ├── symsize_asm.s
│ ├── sys_memory.h
│ ├── sys_memory_unix.c
│ ├── sys_memory_win.c
│ ├── syscall.cpp
│ ├── syscall_std.cpp
│ ├── syscall_std.reference
│ ├── syscall_std_app.cpp
│ ├── tcreatehook.reference
│ ├── teb.cpp
│ ├── teb.reference
│ ├── teb_app.cpp
│ ├── test_iarg_partial_context.cpp
│ ├── test_iarg_partial_context_app.cpp
│ ├── test_iarg_preserve.cpp
│ ├── test_iarg_preserve2.cpp
│ ├── test_iarg_preserve_app.cpp
│ ├── test_iarg_preserve_app2.cpp
│ ├── test_iarg_preserve_ia32_unix.s
│ ├── test_iarg_preserve_ia32_win.asm
│ ├── test_iarg_preserve_intel64_unix.s
│ ├── test_iarg_preserve_intel64_win.asm
│ ├── test_iarg_preserve_mxcsr.cpp
│ ├── test_iarg_preserve_mxcsr1.cpp
│ ├── test_iarg_preserve_mxcsr_app.cpp
│ ├── test_iarg_preserve_probe.cpp
│ ├── test_iarg_preserve_probe_app.cpp
│ ├── test_inlined_consts.cpp
│ ├── test_inlined_consts_intel64.asm
│ ├── test_ip_access.cpp
│ ├── test_ip_access_app.cpp
│ ├── test_ip_access_app_intel64.asm
│ ├── test_lea_rip_app.cpp
│ ├── test_lea_rip_intel64.asm
│ ├── test_sysenter_win.cpp
│ ├── thenpredicated.cpp
│ ├── thread.c
│ ├── thread_callback.cpp
│ ├── thread_count.cpp
│ ├── thread_count.reference
│ ├── thread_count2.cpp
│ ├── thread_count2_debug_service.ia32.reference
│ ├── thread_count2_debug_service.intel64.reference
│ ├── thread_count2_divide_by_zero.reference
│ ├── thread_count_cpp_exception.ia32.reference
│ ├── thread_count_cpp_exception.intel64.reference
│ ├── thread_count_load_library.reference
│ ├── thread_count_queue_apc.reference
│ ├── thread_count_thread_creation.reference
│ ├── thread_ea_addr16.c
│ ├── thread_segmented_ea.c
│ ├── thread_usestack.c
│ ├── thread_wait.c
│ ├── threadtestwin.c
│ ├── tool_fetch_app.c
│ ├── tool_full_path.cpp
│ ├── tool_malloc.cpp
│ ├── toolfetch_sub.cpp
│ ├── toolfetch_sub.reference
│ ├── tstcmpxchg8b.c
│ ├── tstcmpxchg8b_with_explicit_ebx.c
│ ├── tstcmpxchg8b_with_explicit_ebx.reference
│ ├── two.c
│ ├── undecorate.cpp
│ ├── undecorateOperator_app.cpp
│ ├── undecorate_app.cpp
│ ├── unsup_syscall.s
│ ├── waitpidbug.c
│ ├── win_callback.cpp
│ ├── win_callback_app.cpp
│ ├── win_code_on_reused_memory.cpp
│ ├── win_code_on_reused_memory.reference
│ ├── win_cpp_exception.cpp
│ ├── win_cpp_exception.reference
│ ├── win_debug_service.cpp
│ ├── win_debug_service.reference
│ ├── win_divide_by_zero_exception.cpp
│ ├── win_divide_by_zero_exception.reference
│ ├── win_early_thread.cpp
│ ├── win_early_thread_dll.cpp
│ ├── win_exception_test.cpp
│ ├── win_load_library.cpp
│ ├── win_load_library.reference
│ ├── win_mxcsr_app.cpp
│ ├── win_no_dependencies.cpp
│ ├── win_queue_apc.cpp
│ ├── win_queue_apc.reference
│ ├── win_syscallenum.cpp
│ ├── win_thread_create_apc.cpp
│ ├── win_thread_create_apc.reference
│ ├── win_tls_dll.cpp
│ ├── winapp_exception_context.cpp
│ ├── write_debugger_error.cpp
│ ├── write_user_error.cpp
│ ├── x87_regs_in_context.cpp
│ ├── x87_regs_in_context_app.cpp
│ ├── xmmapp.cpp
│ └── xmmtest.cpp
│ ├── Utils
│ ├── attachLauncher_unix.cpp
│ ├── avx2_check.c
│ ├── avx512f_check.c
│ ├── avx_check.c
│ ├── avx_check_ia32.asm
│ ├── avx_check_ia32.s
│ ├── avx_check_intel64.asm
│ ├── avx_check_intel64.s
│ ├── compare.py
│ ├── cp-pin.cpp
│ ├── disable-aslr.c
│ ├── hello.c
│ ├── mac-cmp
│ ├── makefile
│ ├── makefile.rules
│ ├── regvalue_utils.cpp
│ ├── regvalue_utils.h
│ ├── runnable.cpp
│ ├── runnable.h
│ ├── set_xmm_scratches_ia32.asm
│ ├── set_xmm_scratches_intel64.asm
│ ├── supports_avx2_ia32.asm
│ ├── supports_avx2_ia32.s
│ ├── supports_avx2_intel64.asm
│ ├── supports_avx2_intel64.s
│ ├── supports_avx512f_ia32.asm
│ ├── supports_avx512f_ia32.s
│ ├── supports_avx512f_intel64.asm
│ ├── supports_avx512f_intel64.s
│ ├── supports_avx_ia32.asm
│ ├── supports_avx_ia32.s
│ ├── supports_avx_intel64.asm
│ ├── supports_avx_intel64.s
│ ├── sys_memory.h
│ ├── sys_memory_unix.c
│ ├── sys_memory_win.c
│ ├── testGccVersion
│ ├── testLibcVersion
│ ├── testReleaseVersion
│ ├── testReleaseVersionPython.py
│ ├── testStaticLibs
│ ├── testsummary
│ ├── thread_pool.cpp
│ ├── thread_pool.h
│ ├── thread_unix.c
│ ├── thread_win.c
│ ├── threadlib.h
│ ├── threadlib_unix.c
│ ├── threadlib_win.c
│ ├── tsx_check.c
│ ├── tsx_check_ia32.asm
│ ├── tsx_check_ia32.s
│ ├── tsx_check_intel64.asm
│ └── tsx_check_intel64.s
│ ├── makefile
│ └── pintool.tscons-extension
└── traceAnalyzer
├── Makefile
├── field.cpp
├── field.hpp
├── fieldValue.cpp
├── fieldValue.hpp
├── logging.cpp
├── logging.hpp
├── operand.cpp
├── operand.hpp
├── reduction.cpp
├── reduction.hpp
├── solver.cpp
├── solver.hpp
├── trace.cpp
├── trace.hpp
├── traceAnalyzer.cpp
├── traceAnalyzer.hpp
├── type.hpp
├── utils.cpp
└── utils.hpp
/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/.gitmodules
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/README.md
--------------------------------------------------------------------------------
/bin/run_intriguer.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/bin/run_intriguer.py
--------------------------------------------------------------------------------
/intriguer_afl/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/Makefile
--------------------------------------------------------------------------------
/intriguer_afl/afl-analyze.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-analyze.c
--------------------------------------------------------------------------------
/intriguer_afl/afl-as.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-as.c
--------------------------------------------------------------------------------
/intriguer_afl/afl-as.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-as.h
--------------------------------------------------------------------------------
/intriguer_afl/afl-cmin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-cmin
--------------------------------------------------------------------------------
/intriguer_afl/afl-fuzz.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-fuzz.c
--------------------------------------------------------------------------------
/intriguer_afl/afl-gcc.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-gcc.c
--------------------------------------------------------------------------------
/intriguer_afl/afl-gotcpu.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-gotcpu.c
--------------------------------------------------------------------------------
/intriguer_afl/afl-plot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-plot
--------------------------------------------------------------------------------
/intriguer_afl/afl-showmap.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-showmap.c
--------------------------------------------------------------------------------
/intriguer_afl/afl-tmin.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-tmin.c
--------------------------------------------------------------------------------
/intriguer_afl/afl-whatsup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/afl-whatsup
--------------------------------------------------------------------------------
/intriguer_afl/alloc-inl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/alloc-inl.h
--------------------------------------------------------------------------------
/intriguer_afl/config.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/config.h
--------------------------------------------------------------------------------
/intriguer_afl/debug.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/debug.h
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/README.dictionaries:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/README.dictionaries
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/gif.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/gif.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/html_tags.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/html_tags.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/jpeg.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/jpeg.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/js.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/js.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/pdf.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/pdf.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/png.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/png.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/sql.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/sql.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/tiff.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/tiff.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/webp.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/webp.dict
--------------------------------------------------------------------------------
/intriguer_afl/dictionaries/xml.dict:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/dictionaries/xml.dict
--------------------------------------------------------------------------------
/intriguer_afl/docs/COPYING:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/COPYING
--------------------------------------------------------------------------------
/intriguer_afl/docs/ChangeLog:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/ChangeLog
--------------------------------------------------------------------------------
/intriguer_afl/docs/INSTALL:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/INSTALL
--------------------------------------------------------------------------------
/intriguer_afl/docs/QuickStartGuide.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/QuickStartGuide.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/README
--------------------------------------------------------------------------------
/intriguer_afl/docs/env_variables.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/env_variables.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/historical_notes.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/historical_notes.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/life_pro_tips.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/life_pro_tips.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/notes_for_asan.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/notes_for_asan.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/parallel_fuzzing.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/parallel_fuzzing.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/perf_tips.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/perf_tips.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/sister_projects.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/sister_projects.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/status_screen.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/status_screen.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/technical_details.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/technical_details.txt
--------------------------------------------------------------------------------
/intriguer_afl/docs/visualization/afl_gzip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/visualization/afl_gzip.png
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/bash-cmd-exec.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/bash-cmd-exec.var
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/bash-uninit-mem.var:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/bash-uninit-mem.var
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/ffmpeg-h264-bad-ptr-800m.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/ffmpeg-h264-bad-ptr-800m.mp4
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/ffmpeg-h264-bad-read.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/ffmpeg-h264-bad-read.mp4
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/ffmpeg-h264-call-stack-overflow.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/ffmpeg-h264-call-stack-overflow.mp4
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/file-fpu-exception.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/file-fpu-exception.elf
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/firefox-bmp-leak.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/firefox-bmp-leak.bmp
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/firefox-chrome-leak.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/firefox-chrome-leak.jpg
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/firefox-gif-leak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/firefox-gif-leak.gif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/firefox-gif-leak2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/firefox-gif-leak2.gif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/jxrlib-crash.jxr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/jxrlib-crash.jxr
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/jxrlib-crash2.jxr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/jxrlib-crash2.jxr
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/jxrlib-crash3.jxr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/jxrlib-crash3.jxr
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/jxrlib-crash4.jxr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/jxrlib-crash4.jxr
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/lesspipe-cpio-bad-write.cpio:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/lesspipe-cpio-bad-write.cpio
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libjpeg-sos-leak.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libjpeg-sos-leak.jpg
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libjpeg-turbo-dht-leak.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libjpeg-turbo-dht-leak.jpg
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libtiff-bad-write.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libtiff-bad-write.tif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem.tif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem2.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem2.tif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem3.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem3.tif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem4.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libtiff-uninit-mem4.tif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/libxml2-bad-read.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/libxml2-bad-read.xml
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/msie-dht-leak.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/msie-dht-leak.jpg
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/msie-jxr-mem-leak.jxr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/msie-jxr-mem-leak.jxr
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/msie-png-mem-leak.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/msie-png-mem-leak.png
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/msie-tiff-mem-leak.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/msie-tiff-mem-leak.tif
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/msie-zlib-dos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/msie-zlib-dos.png
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/openssl-null-ptr.der:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/openssl-null-ptr.der
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/openssl-null-ptr2.der:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/openssl-null-ptr2.der
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/photoshop-mem-leak.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/photoshop-mem-leak.jpg
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-bad-free.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-bad-free.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-bad-ptr.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-bad-ptr.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-bad-ptr2.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-bad-ptr2.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-bad-ptr3.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-bad-ptr3.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-heap-overflow.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-heap-overflow.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-heap-overwrite.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-heap-overwrite.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-negative-memset.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-negative-memset.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr1.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr1.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr10.sql:
--------------------------------------------------------------------------------
1 | SELECT fts3_tokenizer(@0());
2 |
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr11.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr11.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr12.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr12.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr13.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr13.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr14.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr14.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr15.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr15.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr2.sql:
--------------------------------------------------------------------------------
1 | DETACH(select group_concat(q));
2 |
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr3.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr3.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr4.sql:
--------------------------------------------------------------------------------
1 | select n()AND+#00;
2 |
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr5.sql:
--------------------------------------------------------------------------------
1 | select e.*,0 from(s,(L))e;
2 |
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr6.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr6.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr7.sql:
--------------------------------------------------------------------------------
1 | CREATE VIRTUAL TABLE t USING fts4(tokenize=);
2 |
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr8.sql:
--------------------------------------------------------------------------------
1 | CREATE TABLE p(a UNIQUE,PRIMARY KEY('a'))WITHOUT rowid;
2 |
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-null-ptr9.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-null-ptr9.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-oob-read.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-oob-read.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-oob-write.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-oob-write.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-stack-buf-overflow.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-stack-buf-overflow.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-stack-exhaustion.sql:
--------------------------------------------------------------------------------
1 | CREATE VIRTUAL TABLE t0 USING fts4(content=t0);
2 |
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-unint-mem.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-unint-mem.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/sqlite-use-after-free.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/sqlite-use-after-free.sql
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/strings-bfd-badptr.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/strings-bfd-badptr.elf
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/strings-bfd-badptr2.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/strings-bfd-badptr2.elf
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/strings-stack-overflow:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/strings-stack-overflow
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/strings-unchecked-ctr.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/strings-unchecked-ctr.elf
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/tcpdump-arp-crash.pcap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/tcpdump-arp-crash.pcap
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/tcpdump-ppp-crash.pcap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/tcpdump-ppp-crash.pcap
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/unrtf-arbitrary-read.rtf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/unrtf-arbitrary-read.rtf
--------------------------------------------------------------------------------
/intriguer_afl/docs/vuln_samples/unzip-t-mem-corruption.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/docs/vuln_samples/unzip-t-mem-corruption.zip
--------------------------------------------------------------------------------
/intriguer_afl/experimental/README.experiments:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/README.experiments
--------------------------------------------------------------------------------
/intriguer_afl/experimental/argv_fuzzing/argv-fuzz-inl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/argv_fuzzing/argv-fuzz-inl.h
--------------------------------------------------------------------------------
/intriguer_afl/experimental/asan_cgroups/limit_memory.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/asan_cgroups/limit_memory.sh
--------------------------------------------------------------------------------
/intriguer_afl/experimental/bash_shellshock/shellshock-fuzz.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/bash_shellshock/shellshock-fuzz.diff
--------------------------------------------------------------------------------
/intriguer_afl/experimental/canvas_harness/canvas_harness.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/canvas_harness/canvas_harness.html
--------------------------------------------------------------------------------
/intriguer_afl/experimental/clang_asm_normalize/as:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/clang_asm_normalize/as
--------------------------------------------------------------------------------
/intriguer_afl/experimental/crash_triage/triage_crashes.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/crash_triage/triage_crashes.sh
--------------------------------------------------------------------------------
/intriguer_afl/experimental/distributed_fuzzing/sync_script.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/distributed_fuzzing/sync_script.sh
--------------------------------------------------------------------------------
/intriguer_afl/experimental/libpng_no_checksum/libpng-nocrc.patch:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/libpng_no_checksum/libpng-nocrc.patch
--------------------------------------------------------------------------------
/intriguer_afl/experimental/persistent_demo/persistent_demo.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/persistent_demo/persistent_demo.c
--------------------------------------------------------------------------------
/intriguer_afl/experimental/post_library/post_library.so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/post_library/post_library.so.c
--------------------------------------------------------------------------------
/intriguer_afl/experimental/post_library/post_library_png.so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/experimental/post_library/post_library_png.so.c
--------------------------------------------------------------------------------
/intriguer_afl/hash.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/hash.h
--------------------------------------------------------------------------------
/intriguer_afl/libdislocator/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/libdislocator/Makefile
--------------------------------------------------------------------------------
/intriguer_afl/libdislocator/README.dislocator:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/libdislocator/README.dislocator
--------------------------------------------------------------------------------
/intriguer_afl/libdislocator/libdislocator.so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/libdislocator/libdislocator.so.c
--------------------------------------------------------------------------------
/intriguer_afl/libtokencap/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/libtokencap/Makefile
--------------------------------------------------------------------------------
/intriguer_afl/libtokencap/README.tokencap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/libtokencap/README.tokencap
--------------------------------------------------------------------------------
/intriguer_afl/libtokencap/libtokencap.so.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/libtokencap/libtokencap.so.c
--------------------------------------------------------------------------------
/intriguer_afl/llvm_mode/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/llvm_mode/Makefile
--------------------------------------------------------------------------------
/intriguer_afl/llvm_mode/README.llvm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/llvm_mode/README.llvm
--------------------------------------------------------------------------------
/intriguer_afl/llvm_mode/afl-clang-fast.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/llvm_mode/afl-clang-fast.c
--------------------------------------------------------------------------------
/intriguer_afl/llvm_mode/afl-llvm-pass.so.cc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/llvm_mode/afl-llvm-pass.so.cc
--------------------------------------------------------------------------------
/intriguer_afl/llvm_mode/afl-llvm-rt.o.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/llvm_mode/afl-llvm-rt.o.c
--------------------------------------------------------------------------------
/intriguer_afl/qemu_mode/README.qemu:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/qemu_mode/README.qemu
--------------------------------------------------------------------------------
/intriguer_afl/qemu_mode/build_qemu_support.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/qemu_mode/build_qemu_support.sh
--------------------------------------------------------------------------------
/intriguer_afl/qemu_mode/patches/afl-qemu-cpu-inl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/qemu_mode/patches/afl-qemu-cpu-inl.h
--------------------------------------------------------------------------------
/intriguer_afl/qemu_mode/patches/cpu-exec.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/qemu_mode/patches/cpu-exec.diff
--------------------------------------------------------------------------------
/intriguer_afl/qemu_mode/patches/elfload.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/qemu_mode/patches/elfload.diff
--------------------------------------------------------------------------------
/intriguer_afl/qemu_mode/patches/syscall.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/qemu_mode/patches/syscall.diff
--------------------------------------------------------------------------------
/intriguer_afl/qemu_mode/patches/translate-all.diff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/qemu_mode/patches/translate-all.diff
--------------------------------------------------------------------------------
/intriguer_afl/test-instr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/test-instr.c
--------------------------------------------------------------------------------
/intriguer_afl/testcases/README.testcases:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/README.testcases
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/ar/small_archive.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/ar/small_archive.a
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/bzip2/small_archive.bz2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/bzip2/small_archive.bz2
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/cab/small_archive.cab:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/cab/small_archive.cab
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/compress/small_archive.Z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/compress/small_archive.Z
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/cpio/small_archive.cpio:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/cpio/small_archive.cpio
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/gzip/small_archive.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/gzip/small_archive.gz
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/lzo/small_archive.lzo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/lzo/small_archive.lzo
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/rar/small_archive.rar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/rar/small_archive.rar
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/tar/small_archive.tar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/tar/small_archive.tar
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/xz/small_archive.xz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/xz/small_archive.xz
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/common/zip/small_archive.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/common/zip/small_archive.zip
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/exotic/arj/small_archive.arj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/exotic/arj/small_archive.arj
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/exotic/lha/small_archive.lha:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/exotic/lha/small_archive.lha
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/exotic/lrzip/small_archive.lrz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/exotic/lrzip/small_archive.lrz
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/exotic/lzip/small_archive.lz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/exotic/lzip/small_archive.lz
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/exotic/lzma/small_archive.lzma:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/exotic/lzma/small_archive.lzma
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/exotic/rzip/small_archive.rz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/exotic/rzip/small_archive.rz
--------------------------------------------------------------------------------
/intriguer_afl/testcases/archives/exotic/zoo/small_archive.zoo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/archives/exotic/zoo/small_archive.zoo
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/bmp/not_kitty.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/bmp/not_kitty.bmp
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/gif/not_kitty.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/gif/not_kitty.gif
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/ico/not_kitty.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/ico/not_kitty.ico
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/jp2/not_kitty.jp2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/jp2/not_kitty.jp2
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/jpeg/not_kitty.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/jpeg/not_kitty.jpg
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/jxr/not_kitty.jxr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/jxr/not_kitty.jxr
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/png/not_kitty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/png/not_kitty.png
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/png/not_kitty_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/png/not_kitty_alpha.png
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/png/not_kitty_gamma.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/png/not_kitty_gamma.png
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/png/not_kitty_icc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/png/not_kitty_icc.png
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/tiff/not_kitty.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/tiff/not_kitty.tiff
--------------------------------------------------------------------------------
/intriguer_afl/testcases/images/webp/not_kitty.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/images/webp/not_kitty.webp
--------------------------------------------------------------------------------
/intriguer_afl/testcases/multimedia/h264/small_movie.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/multimedia/h264/small_movie.mp4
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/elf/small_exec.elf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/others/elf/small_exec.elf
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/js/small_script.js:
--------------------------------------------------------------------------------
1 | if (1==1) eval('1');
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/pcap/small_capture.pcap:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/others/pcap/small_capture.pcap
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/pdf/small.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/others/pdf/small.pdf
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/rtf/small_document.rtf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/others/rtf/small_document.rtf
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/sql/simple_queries.sql:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/testcases/others/sql/simple_queries.sql
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/text/hello_world.txt:
--------------------------------------------------------------------------------
1 | hello
2 |
--------------------------------------------------------------------------------
/intriguer_afl/testcases/others/xml/small_document.xml:
--------------------------------------------------------------------------------
1 | d
2 |
--------------------------------------------------------------------------------
/intriguer_afl/types.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/intriguer_afl/types.h
--------------------------------------------------------------------------------
/pintool/analysis.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/analysis.cpp
--------------------------------------------------------------------------------
/pintool/analysis.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/analysis.hpp
--------------------------------------------------------------------------------
/pintool/executionMonitor.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/executionMonitor.cpp
--------------------------------------------------------------------------------
/pintool/executionMonitor.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/executionMonitor.hpp
--------------------------------------------------------------------------------
/pintool/field_log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/field_log
--------------------------------------------------------------------------------
/pintool/instruction.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/instruction.cpp
--------------------------------------------------------------------------------
/pintool/instruction.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/instruction.hpp
--------------------------------------------------------------------------------
/pintool/instrument.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/instrument.cpp
--------------------------------------------------------------------------------
/pintool/instrument.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/instrument.hpp
--------------------------------------------------------------------------------
/pintool/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/makefile
--------------------------------------------------------------------------------
/pintool/makefile.rules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/makefile.rules
--------------------------------------------------------------------------------
/pintool/syscall.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/syscall.cpp
--------------------------------------------------------------------------------
/pintool/syscall.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/syscall.hpp
--------------------------------------------------------------------------------
/pintool/trace.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/trace.cpp
--------------------------------------------------------------------------------
/pintool/trace.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/pintool/trace.hpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/1
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/LICENSE
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/README
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/annotated.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/annotated.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/bc_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/bc_s.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/classes.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/classes.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/closed.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/doxygen.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/doxygen.css
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/doxygen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/doxygen.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_enum.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_enum.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_eval.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_eval.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_func.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_func.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_vars.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/functions_vars.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__ALARM.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__ALARM.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__API__REF.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__API__REF.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__DEBUG__API.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__DEBUG__API.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__FILTER.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__FILTER.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__ICOUNT.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__ICOUNT.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__INSTLIB.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__INSTLIB.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__INST__ARGS.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__INST__ARGS.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__KNOBS.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__KNOBS.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__KNOB__API.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__KNOB__API.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__LOCK.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__LOCK.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__MISC.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__MISC.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__PROTO.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__PROTO.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__PROTO__API.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__PROTO__API.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__SKIPPER.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__SKIPPER.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__SKIP__INT3.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__SKIP__INT3.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__TYPE__BASE.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__TYPE__BASE.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__UTILS.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/group__UTILS.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/hierarchy.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/hierarchy.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/index.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/installdox:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/installdox
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/jquery.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/jquery.js
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/modules.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/modules.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/namespacemembers.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/namespacemembers.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/namespaces.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/namespaces.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/nav_f.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/nav_f.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/nav_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/nav_h.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/open.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_5f.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_5f.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_61.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_61.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_62.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_62.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_63.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_63.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_64.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_64.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_65.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_65.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_66.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_66.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_67.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_67.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_68.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_68.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_69.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_69.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6a.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6a.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6b.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6b.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6c.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6c.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6d.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6d.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6e.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6e.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6f.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_6f.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_70.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_70.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_72.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_72.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_73.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_73.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_74.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_74.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_75.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_75.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_76.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_76.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_78.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_78.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_7e.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/all_7e.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_5f.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_5f.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_61.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_61.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_63.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_63.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_64.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_64.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_66.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_66.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_69.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_69.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_6c.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_6c.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_70.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_70.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_72.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_72.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_73.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_73.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_74.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/classes_74.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/close.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_61.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_61.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_62.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_62.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_63.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_63.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_65.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_65.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_66.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_66.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_69.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_69.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_6b.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_6b.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_6c.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_6c.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_6d.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_6d.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_70.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_70.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_72.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_72.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_73.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_73.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_75.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_75.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_76.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/enums_76.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/mag_sel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/mag_sel.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/nomatches.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/nomatches.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search.css
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search.js
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search_l.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search_l.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search_m.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search_m.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search_r.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/search/search_r.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/structDEBUG__MODE.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/structDEBUG__MODE.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/structPARG__T.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/structPARG__T.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_a.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_b.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_h.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tab_s.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tabs.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/doc/html/tabs.css
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extlicense/LICENSE-FreeBSD:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extlicense/LICENSE-FreeBSD
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extlicense/LICENSE-llvm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extlicense/LICENSE-llvm
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extlicense/LICENSE-stlport:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extlicense/LICENSE-stlport
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-libc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-libc
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-libdl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-libdl
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-libm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-libm
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-linker:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extlicense/NOTICE-linker
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/components/include/asm.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/components/include/asm.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/bc_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/bc_s.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/closed.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/doxygen.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/doxygen.css
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/doxygen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/doxygen.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/index.html
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/installdox:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/installdox
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/jquery.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/jquery.js
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/nav_f.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/nav_f.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/nav_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/nav_h.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/open.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_a.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_b.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_h.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tab_s.png
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tabs.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/doc/html/tabs.css
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/alloca.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/alloca.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ar.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ar.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/arpa/inet.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/arpa/inet.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/assert.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/assert.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/byteswap.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/byteswap.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/complex.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/complex.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ctype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ctype.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/dirent.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/dirent.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/dlfcn.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/dlfcn.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/elf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/elf.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/endian.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/endian.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/err.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/err.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/errno.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/errno.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/execinfo.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/execinfo.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fcntl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fcntl.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/features.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/features.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fenv.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fenv.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fnmatch.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fnmatch.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fts.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/fts.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ftw.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ftw.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/getopt.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/getopt.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/grp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/grp.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/inttypes.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/inttypes.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/lastlog.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/libgen.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/libgen.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/limits.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/limits.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/link.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/link.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/locale.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/locale.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/malloc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/malloc.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/math.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/math.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/memory.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/mntent.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/mntent.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/net/if.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/net/if.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/net/if_arp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/net/if_arp.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/net/if_packet.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/net/route.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/netdb.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/netdb.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/netinet/in.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/netinet/in.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/netinet/ip.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/netinet/ip.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/netpacket/packet.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/nsswitch.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/nsswitch.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/os-apis.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/os-apis.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/pathconf.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/pathconf.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/paths.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/paths.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/poll.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/poll.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/pthread.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/pthread.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/pwd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/pwd.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/regex.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/regex.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/resolv.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/resolv.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sched.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sched.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/search.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/search.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/semaphore.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/semaphore.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/setjmp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/setjmp.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sgidefs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sgidefs.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sgtty.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sgtty.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/signal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/signal.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdatomic.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdatomic.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdint.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdint.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdio.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdio.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdio_ext.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdio_ext.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdlib.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/stdlib.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/string.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/string.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/strings.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/strings.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/auxv.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/auxv.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/cdefs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/cdefs.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/endian.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/endian.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/epoll.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/epoll.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/errno.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/file.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/file.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/fsuid.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/fsuid.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ioctl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ioctl.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ipc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ipc.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/klog.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/klog.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/limits.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/limits.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/mman.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/mman.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/mount.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/mount.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/msg.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/msg.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/param.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/param.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/poll.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/prctl.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/prctl.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ptrace.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ptrace.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/queue.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/queue.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/reboot.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/reboot.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/reg.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/reg.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/select.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/select.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/sem.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/sem.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/shm.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/shm.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/signal.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/socket.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/socket.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/stat.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/stat.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/statfs.h:
--------------------------------------------------------------------------------
1 | #include
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/swap.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/swap.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/syslimits.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/time.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/time.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/times.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/times.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/timex.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/timex.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ttychars.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/ttydev.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/types.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/types.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/uio.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/uio.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/un.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/un.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/user.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/user.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/utime.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/utime.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/vfs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/vfs.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/vt.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/vt.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/wait.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/wait.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/xattr.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/sys/xattr.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/syslog.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/syslog.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/termio.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/termio.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/termios.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/termios.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/time.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/time.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/time64.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/time64.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/tls-enum.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/tls-enum.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/toolchains.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/toolchains.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/types.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/types.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/uchar.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/uchar.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ucontext.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ucontext.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/unistd.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/unistd.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ustat.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/ustat.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/util.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/utime.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/utime.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/utmp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/utmp.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/wchar.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/wchar.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/wctype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/wctype.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/xlocale.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/include/xlocale.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/tzdata:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/crt/tzdata
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cctype:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cctype
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cerrno:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cerrno
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cfloat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cfloat
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cmath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cmath
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cstdio:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cstdio
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/ctime:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/ctime
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cwchar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/cwchar
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/new:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/libstdc++/include/new
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/assert.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/assert.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/bitset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/bitset
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cassert:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cassert
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cctype:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cctype
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cerrno:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cerrno
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cfloat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cfloat
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ciso646:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ciso646
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/climits:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/climits
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/clocale:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/clocale
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cmath:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cmath
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/complex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/complex
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/csetjmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/csetjmp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/csignal:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/csignal
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstdarg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstdarg
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstddef:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstddef
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstdio:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstdio
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstdlib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstdlib
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstring:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cstring
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ctime:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ctime
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ctype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ctype.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cwchar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cwchar
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cwctype:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cwctype
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cxxabi.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/cxxabi.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/deque:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/deque
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/errno.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/errno.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/float.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/float.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/fstream:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/fstream
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/hash_map:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/hash_map
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/hash_set:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/hash_set
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iomanip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iomanip
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ios:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ios
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ios.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ios.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iosfwd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iosfwd
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iostream:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iostream
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iso646.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iso646.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/istream:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/istream
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iterator:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/iterator
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/limits:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/limits
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/limits.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/limits.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/list:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/list
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/locale:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/locale
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/locale.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/locale.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/map:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/map
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/math.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/math.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/memory:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/memory
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/new:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/new
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/new.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/new.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/numeric:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/numeric
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ostream:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/ostream
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/queue:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/queue
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/rlocks.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/rlocks.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/rope:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/rope
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/set:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/set
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/setjmp.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/setjmp.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/signal.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/signal.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/slist:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/slist
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/sstream:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/sstream
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stack:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stack
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stdarg.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stdarg.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stddef.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stddef.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stdio.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stdio.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stdlib.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/stdlib.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/string:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/string
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/string.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/string.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/time.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/time.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/typeinfo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/typeinfo
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/using/h/streambuf.h:
--------------------------------------------------------------------------------
1 | using ::streambuf;
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/utility:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/utility
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/valarray:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/valarray
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/vector:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/vector
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/wchar.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/wchar.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/wctype.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/stlport/include/wctype.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/xed-ia32/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/xed-ia32/LICENSE
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/xed-ia32/lib/libxed.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/xed-ia32/lib/libxed.so
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/extras/xed-intel64/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/extras/xed-intel64/LICENSE
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/bin/pinbin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/bin/pinbin
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/bin/pindb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/bin/pindb
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib-ext/libpin3dwarf.so:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib-ext/libpin3dwarf.so
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libpin-icc.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libpin-icc.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libpin.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libpin.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libsapin-icc.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libsapin-icc.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libsapin.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/lib/libsapin.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/runtime/pincrt/crtend.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/runtime/pincrt/crtend.o
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/ia32/runtime/pincrt/linker:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/ia32/runtime/pincrt/linker
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/intel64/bin/pinbin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/intel64/bin/pinbin
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/intel64/bin/pindb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/intel64/bin/pindb
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libpin-icc.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libpin-icc.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libpin.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libpin.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libsapin-icc.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libsapin-icc.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libsapin.a:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/intel64/lib/libsapin.a
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/pin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/pin
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/pin.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/pin.log
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/redist.txt:
--------------------------------------------------------------------------------
1 | Files in the source/tools directory tree
2 |
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/include/pin/pin.H:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/include/pin/pin.H
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/include/pin/pintool.exp:
--------------------------------------------------------------------------------
1 | _main
2 | _ClientIntC
3 | _PinCommitHashC
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/launcher/launcher_u.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/launcher/launcher_u.c
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/launcher/utils.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/launcher/utils.c
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/launcher/utils.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/launcher/utils.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Buffer/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Buffer/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ChildProcess/1.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | export var=SUCCESS
3 | $SHELL ./2.sh
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ChildProcess/2.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | echo $var
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ChildProcess/sigchld_app.reference:
--------------------------------------------------------------------------------
1 | SA handler of the child process is SIG_IGN
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/CrossIa32Intel64/sigchld_app.reference:
--------------------------------------------------------------------------------
1 | SA handler of the child process is SIG_IGN
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/access-64-on-32.compare:
--------------------------------------------------------------------------------
1 | 0x12345678abcdef\s*\[Not Accessible\]
2 | Program exited with 0$
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/access-64-on-32.pindb:
--------------------------------------------------------------------------------
1 | x/1b 0x12345678abcdef
2 | k
3 | q
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/breaktool-wait.gdb:
--------------------------------------------------------------------------------
1 | cont
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/debugger-type.gdb:
--------------------------------------------------------------------------------
1 | cont
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/gdb-pthread-step-exit.compare:
--------------------------------------------------------------------------------
1 | (Thread 2 hit )?Breakpoint 1,.*BareExitTrap
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/gdb-pthread-step-exit.gdb:
--------------------------------------------------------------------------------
1 | break *&BareExitTrap
2 | cont
3 | stepi
4 | kill
5 | quit
6 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/invalid-write.gdb:
--------------------------------------------------------------------------------
1 | break main
2 | cont
3 | x/x 0
4 | quit
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pc-change-async.compare:
--------------------------------------------------------------------------------
1 | Value is 2
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pc-change-bp.compare:
--------------------------------------------------------------------------------
1 | Value is 2
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-abrupt-disconnect.pindb:
--------------------------------------------------------------------------------
1 | abrupt-disconnect
2 | q
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-async-stop.pindb:
--------------------------------------------------------------------------------
1 | c
2 | k
3 | q
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-attach-after-custom-stop.pindbin:
--------------------------------------------------------------------------------
1 | c
2 | q
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-invalidate-regs.compare:
--------------------------------------------------------------------------------
1 | Changed \$SP to 0
2 | ^0x0+$
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-invalidate-regs.pindb:
--------------------------------------------------------------------------------
1 | monitor clear-sp
2 | invalidate-regs
3 | p $sp
4 | q
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-kill-like-gdb.pindb:
--------------------------------------------------------------------------------
1 | kill-like-gdb
2 | q
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-noprompt-kill.pindb:
--------------------------------------------------------------------------------
1 | q
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-pthread-cont-exitgroup.compare:
--------------------------------------------------------------------------------
1 | Program exited with 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-pthread-cont-exitgroup.pindb:
--------------------------------------------------------------------------------
1 | c
2 | q
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-pthread-step-exit.pindb:
--------------------------------------------------------------------------------
1 | b thread exit
2 | c
3 | s
4 | k
5 | q
6 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-pthread-step-exitgroup.pindb:
--------------------------------------------------------------------------------
1 | b thread exit
2 | c
3 | s
4 | q
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-simultaneous-toolbreak-attach.pindbin:
--------------------------------------------------------------------------------
1 | monitor list-pending
2 | c
3 | q
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-simultaneous-toolbreak-squash.pindb:
--------------------------------------------------------------------------------
1 | c
2 | monitor squash-pending all
3 | c
4 | q
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-simultaneous-toolbreak.pindb:
--------------------------------------------------------------------------------
1 | c
2 | monitor list-pending
3 | c
4 | q
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-start-fini.pindb:
--------------------------------------------------------------------------------
1 | k
2 | q
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-continued-exception1.pindb:
--------------------------------------------------------------------------------
1 | c
2 | c
3 | c
4 | q
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-continued-exception2.pindb:
--------------------------------------------------------------------------------
1 | c
2 | c
3 | q
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-cpp-exception.pindb:
--------------------------------------------------------------------------------
1 | c
2 | c
3 | q
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-exception-after-exit.pindb:
--------------------------------------------------------------------------------
1 | c
2 | q
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-handled-exception.pindb:
--------------------------------------------------------------------------------
1 | c
2 | c
3 | q
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-software-exception.pindb:
--------------------------------------------------------------------------------
1 | c
2 | c
3 | c
4 | q
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-thread-stress.compare:
--------------------------------------------------------------------------------
1 | Program exited with 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/pindb-win-unhandled-exception.pindb:
--------------------------------------------------------------------------------
1 | c
2 | c
3 | c
4 | q
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/quit.gdb:
--------------------------------------------------------------------------------
1 | quit
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/siginfo.compare:
--------------------------------------------------------------------------------
1 | .*= [.*si_signo = 10|void]
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/siginfo.gdb:
--------------------------------------------------------------------------------
1 | cont
2 | p $_siginfo
3 | kill
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/simultaneous-toolbreak-squash.gdb:
--------------------------------------------------------------------------------
1 | cont
2 | monitor squash-pending all
3 | cont
4 | quit
5 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/stack-debugger-late.gdb:
--------------------------------------------------------------------------------
1 | set width 200
2 | bt
3 | quit
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/stop-resume-when-suspended.reference:
--------------------------------------------------------------------------------
1 | OnExit
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/xmm.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Debugger/xmm.c
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/I18N/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/I18N/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/I18N/unix_unicode.reference:
--------------------------------------------------------------------------------
1 | equal
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/I18N/win_unicode.reference:
--------------------------------------------------------------------------------
1 | equal
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/IArg/DoFxsave.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/IArg/DoFxsave.s
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/IArg/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/IArg/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Insmix/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Insmix/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/InstrumentationOrderAndVersion/instrumentation_order15.ref:
--------------------------------------------------------------------------------
1 | Ins instrumentation2
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Maid/Maid.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Maid/Maid.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Maid/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Maid/README
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Maid/addrfile.txt:
--------------------------------------------------------------------------------
1 | 0x1234abcd
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Maid/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Maid/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Memory/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Memory/README
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Memory/cache.H:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Memory/cache.H
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Memory/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Memory/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/README:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/README
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/mix-mt.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/mix-mt.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/test-mt.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mix/test-mt.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mmx/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Mmx/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/empty.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/empty.c
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/exc.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/exc.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/init.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/init.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/ipr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/ipr.c
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/pc64.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/pc64.s
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/set_tp.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/set_tp.s
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/tpss.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Probes/tpss.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Replay/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Replay/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-alt-android.reference:
--------------------------------------------------------------------------------
1 | Got signal SEGV
2 | Returning normally
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-alt-linux.reference:
--------------------------------------------------------------------------------
1 | Got signal SEGV
2 | Returning normally
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-alt-mac.reference:
--------------------------------------------------------------------------------
1 | Got signal ILL
2 | Returning normally
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-noalt-android.reference:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-noalt-linux.reference:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-noalt-mac.reference:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-sigret-android.reference:
--------------------------------------------------------------------------------
1 | Got signal SEGV
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-sigret-linux.reference:
--------------------------------------------------------------------------------
1 | Got signal SEGV
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/bad-stack-sigret-mac.toolreference:
--------------------------------------------------------------------------------
1 | Program exited
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/deprecated-intercept.app-handle.reference:
--------------------------------------------------------------------------------
1 | Application got SIGUSR1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/deprecated-intercept.app-nohandle.reference:
--------------------------------------------------------------------------------
1 | Application did not get SIGUSR1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/deprecated-intercept.tool.reference:
--------------------------------------------------------------------------------
1 | Got signal SIGUSR1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/fatal_block_sync.reference:
--------------------------------------------------------------------------------
1 | Tool sees exit
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/fatallog.reference:
--------------------------------------------------------------------------------
1 | Received fatal signal SIGINT on thread 0
2 | Exiting
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/sigflowcheck1.reference:
--------------------------------------------------------------------------------
1 | Program exitted with 0 signal frames pending
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/sigflowcheck2.reference:
--------------------------------------------------------------------------------
1 | Program exitted with 2 signal frames pending
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/SignalTests/simplesync.reference:
--------------------------------------------------------------------------------
1 | Got signal 11
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/flag_ac_inline.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smc_util.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smc_util.h
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp1.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp1.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp2.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp2.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp3.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/smcapp3.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/sse-ref.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/sse-ref.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/sse-ref.reference:
--------------------------------------------------------------------------------
1 | 6
2 | 7
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/sse.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Smc/sse.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/after.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/after.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/alah.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/alah.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/emu.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/emu.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/foobar.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/foobar.c
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/hello.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/hello.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/loop.s:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/loop.s
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/mtest.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/mtest.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/new.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/new.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/probe.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/probe.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/reg.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/reg.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/sec.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/sec.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/segv.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/segv.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/util.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Tests/util.cpp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test1_inline.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test1_noinline.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test1_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test2_inline.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test2_noinline.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test2_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test3_inline.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test3_noinline.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/analysis_flag_overwrite_test3_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | addcVal 1
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/apc_monitor.reference:
--------------------------------------------------------------------------------
1 | Number of APCs = 10
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/args.reference:
--------------------------------------------------------------------------------
1 | 1
2 | 2
3 | 3
4 | 4
5 | 5
6 | 6
7 | 7
8 | 8
9 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/attach_tool.reference:
--------------------------------------------------------------------------------
1 | Replacing PinAttached
2 | Fini
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/badfile.reference:
--------------------------------------------------------------------------------
1 | E:Application exec failed: Permission denied
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/badpath.reference:
--------------------------------------------------------------------------------
1 | BadAPPpAth : No such file or directory
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test1_inline.reference:
--------------------------------------------------------------------------------
1 | Finished: numTimesDfIsSet 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test1_noinline.reference:
--------------------------------------------------------------------------------
1 | Finished: numTimesDfIsSet 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test1_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | Finished: numTimesDfIsSet 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test2_inline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test2_noinline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test2_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test3_inline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test3_noinline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test3_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test4_inline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test4_noinline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test4_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test5_inline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test5_noinline.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/df_test5_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | Finished: hadFailure 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/execvp.reference:
--------------------------------------------------------------------------------
1 | ./execvp
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_ac_inline.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_ac_noinline.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_ac_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_ac_win_inline.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_ac_win_noinline.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_ac_win_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_spill_fill_test1_inline.reference:
--------------------------------------------------------------------------------
1 | flagsVal ed7
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_spill_fill_test1_noinline.reference:
--------------------------------------------------------------------------------
1 | flagsVal ed7
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_spill_fill_test1_noinline_bridge.reference:
--------------------------------------------------------------------------------
1 | flagsVal ed7
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/flag_spill_fill_tool1.dll.reference:
--------------------------------------------------------------------------------
1 | flagsVal ed7
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/hello.reference:
--------------------------------------------------------------------------------
1 | Hello world
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/inlinecall.reference:
--------------------------------------------------------------------------------
1 | Found one
2 | In 2
3 | Result 2
4 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/inlined-stack-arg.reference:
--------------------------------------------------------------------------------
1 | Type r
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/inlined-stack-arg1.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/inlined-stack-arg2.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/jcx_addr16_tool.reference:
--------------------------------------------------------------------------------
1 | taken
2 | pass
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/line.reference:
--------------------------------------------------------------------------------
1 | File hello.c line 5
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/partialinline.reference:
--------------------------------------------------------------------------------
1 | Counts matched
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/reg_inst_gx.tool.reference:
--------------------------------------------------------------------------------
1 | (eof)
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/reg_operands_test.reference:
--------------------------------------------------------------------------------
1 | SUCCESS
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/sse-ref.reference:
--------------------------------------------------------------------------------
1 | 6
2 | 7
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/teb.reference:
--------------------------------------------------------------------------------
1 | In GetLastError
2 | Success
3 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/toolfetch_sub.reference:
--------------------------------------------------------------------------------
1 | x is 2
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/ToolUnitTests/win_debug_service.reference:
--------------------------------------------------------------------------------
1 | After OutputDebugString, i = 0
2 |
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Utils/hello.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Utils/hello.c
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Utils/mac-cmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Utils/mac-cmp
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Utils/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/Utils/makefile
--------------------------------------------------------------------------------
/third_party/pin-3.7-97619-0d0c92f4f/source/tools/makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/third_party/pin-3.7-97619-0d0c92f4f/source/tools/makefile
--------------------------------------------------------------------------------
/traceAnalyzer/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/Makefile
--------------------------------------------------------------------------------
/traceAnalyzer/field.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/field.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/field.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/field.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/fieldValue.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/fieldValue.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/fieldValue.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/fieldValue.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/logging.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/logging.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/logging.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/logging.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/operand.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/operand.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/operand.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/operand.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/reduction.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/reduction.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/reduction.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/reduction.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/solver.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/solver.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/solver.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/solver.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/trace.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/trace.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/trace.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/trace.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/traceAnalyzer.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/traceAnalyzer.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/traceAnalyzer.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/traceAnalyzer.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/type.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/type.hpp
--------------------------------------------------------------------------------
/traceAnalyzer/utils.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/utils.cpp
--------------------------------------------------------------------------------
/traceAnalyzer/utils.hpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/seclab-yonsei/intriguer/HEAD/traceAnalyzer/utils.hpp
--------------------------------------------------------------------------------