在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例iPhone手机开发 → C++基于区块链的指纹系统

C++基于区块链的指纹系统

iPhone手机开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:26.12M
  • 下载次数:35
  • 浏览次数:199
  • 发布时间:2022-03-23
  • 实例类别:iPhone手机开发
  • 发 布 人:狗狗主人
  • 文件格式:.tar
  • 所需积分:0
 相关标签: C++primer Primer c++ PRI Pr

实例介绍

【实例简介】C 基于区块链的指纹系统

【实例截图】

from clipboard

【核心代码】

.
├── C 基于区块链的指纹系统.tar
└── dyninst-9.3.1
    ├── CHANGELOG.md
    ├── CMakeLists.txt
    ├── COPYRIGHT
    ├── ChangeLog
    ├── DyninstConfigVersion.cmake
    ├── INSTALL
    ├── LGPL
    ├── README.md
    ├── appveyor.yml
    ├── cmake
    │   ├── CheckCXX11Features
    │   │   ├── cxx11-test-__func__.cpp
    │   │   ├── cxx11-test-auto.cpp
    │   │   ├── cxx11-test-auto_fail_compile.cpp
    │   │   ├── cxx11-test-auto_ret_type.cpp
    │   │   ├── cxx11-test-class_override_final.cpp
    │   │   ├── cxx11-test-class_override_final_fail_compile.cpp
    │   │   ├── cxx11-test-constexpr.cpp
    │   │   ├── cxx11-test-cstdint.cpp
    │   │   ├── cxx11-test-decltype.cpp
    │   │   ├── cxx11-test-initializer_list.cpp
    │   │   ├── cxx11-test-lambda.cpp
    │   │   ├── cxx11-test-long_long.cpp
    │   │   ├── cxx11-test-nullptr.cpp
    │   │   ├── cxx11-test-nullptr_fail_compile.cpp
    │   │   ├── cxx11-test-regex.cpp
    │   │   ├── cxx11-test-rvalue-references.cpp
    │   │   ├── cxx11-test-sizeof_member.cpp
    │   │   ├── cxx11-test-sizeof_member_fail.cpp
    │   │   ├── cxx11-test-static_assert.cpp
    │   │   ├── cxx11-test-static_assert_fail_compile.cpp
    │   │   └── cxx11-test-variadic_templates.cpp
    │   ├── CheckCXX11Features.cmake
    │   ├── DyninstConfig.cmake.in
    │   ├── DyninstConfigVersion.cmake.in
    │   ├── Modules
    │   │   ├── FindLibDwarf.cmake
    │   │   ├── FindLibElf.cmake
    │   │   ├── FindLibIberty.cmake
    │   │   └── FindThreadDB.cmake
    │   ├── c 11.cmake
    │   ├── cap_arch_def.cmake
    │   ├── cotire.cmake
    │   ├── optimization.cmake
    │   ├── options.cmake
    │   ├── packages.cmake
    │   ├── platform.cmake
    │   ├── platform_unix.cmake
    │   ├── platform_windows.cmake
    │   ├── shared.cmake
    │   ├── version.h.in
    │   ├── visibility.cmake
    │   └── warnings.cmake
    ├── common
    │   ├── CMakeLists.txt
    │   ├── doc
    │   │   ├── manual_commands.tex
    │   │   └── manual_frontpage.tex
    │   ├── docs
    │   │   ├── libutil.1
    │   │   ├── libutilPVM.1
    │   │   └── rpcUtil.1
    │   ├── h
    │   │   ├── Annotatable.h
    │   │   ├── Buffer.h
    │   │   ├── Display
    │   │   ├── DynAST.h
    │   │   ├── Edge.h
    │   │   ├── FileType
    │   │   ├── Graph.h
    │   │   ├── IBSTree-fast.h
    │   │   ├── IBSTree.h
    │   │   ├── Initial
    │   │   ├── MachSyscall.h
    │   │   ├── Node.h
    │   │   ├── Others
    │   │   ├── ProcReader.h
    │   │   ├── Serialization.h
    │   │   ├── SymReader.h
    │   │   ├── VariableLocation.h
    │   │   ├── aarch64_sys_regs.h
    │   │   ├── dyn_regs.h
    │   │   ├── dyn_syscalls.h
    │   │   ├── dyntypes.h
    │   │   ├── entryIDs.h
    │   │   ├── stl_utils.h
    │   │   └── util.h
    │   └── src
    │       ├── AST.C
    │       ├── Annotatable.C
    │       ├── BG_AuxvReader.C
    │       ├── BG_AuxvReader.h
    │       ├── Buffer.C
    │       ├── DOT.C
    │       ├── Edge.C
    │       ├── Graph.C
    │       ├── Ident.C
    │       ├── Ident.h
    │       ├── IntervalTree.h
    │       ├── Line.h
    │       ├── List.C
    │       ├── List.h
    │       ├── MachSyscall.C
    │       ├── MappedFile.C
    │       ├── MappedFile.h
    │       ├── Node.C
    │       ├── NodeIterator.h
    │       ├── Pair.h
    │       ├── Singleton.h
    │       ├── SyscallInformation.C
    │       ├── Time.C
    │       ├── Time.h
    │       ├── Timer.C
    │       ├── Timer.h
    │       ├── Types.C
    │       ├── Types.h
    │       ├── VariableLocation.C
    │       ├── Vector.h
    │       ├── addrRange.h
    │       ├── addrtranslate-auxv.C
    │       ├── addrtranslate-bluegene.C
    │       ├── addrtranslate-freebsd.C
    │       ├── addrtranslate-linux.C
    │       ├── addrtranslate-static.C
    │       ├── addrtranslate-sysv.C
    │       ├── addrtranslate-sysv.h
    │       ├── addrtranslate-win.C
    │       ├── addrtranslate.C
    │       ├── addrtranslate.h
    │       ├── arch-aarch64.C
    │       ├── arch-aarch64.h
    │       ├── arch-power.C
    │       ├── arch-power.h
    │       ├── arch-x86.C
    │       ├── arch-x86.h
    │       ├── arch.h
    │       ├── auxvtypes.C
    │       ├── auxvtypes.h
    │       ├── bg_compute_headers.h
    │       ├── bluegeneKludges.C
    │       ├── cstring.h
    │       ├── debugOstream.C
    │       ├── debugOstream.h
    │       ├── debug_common.C
    │       ├── debug_common.h
    │       ├── dthread-unix.C
    │       ├── dthread-win.C
    │       ├── dthread.C
    │       ├── dthread.h
    │       ├── dyn_regs.C
    │       ├── fraction.C
    │       ├── fraction.h
    │       ├── freebsdHeaders.h
    │       ├── freebsdKludges.C
    │       ├── freebsdKludges.h
    │       ├── headers.h
    │       ├── ia32_locations.h
    │       ├── int64iostream.C
    │       ├── int64iostream.h
    │       ├── keylist.h
    │       ├── klist.h
    │       ├── language.h
    │       ├── linuxHeaders.h
    │       ├── linuxKludges.C
    │       ├── linuxKludges.h
    │       ├── lprintf.C
    │       ├── lprintf.h
    │       ├── lru_cache.h
    │       ├── machineType.h
    │       ├── matherr.h
    │       ├── mmtimer.c
    │       ├── ntHeaders.h
    │       ├── ntKludges.C
    │       ├── parseauxv.C
    │       ├── parseauxv.h
    │       ├── pathName.C
    │       ├── pathName.h
    │       ├── pool_allocators.h
    │       ├── refCounter.h
    │       ├── serialize-bin.C
    │       ├── serialize-xml.C
    │       ├── serialize.h
    │       ├── sha1.C
    │       ├── sha1.h
    │       ├── singleton_object_pool.h
    │       ├── stats.C
    │       ├── stats.h
    │       ├── std_namesp.h
    │       ├── string-regex.C
    │       ├── string-regex.h
    │       ├── stringDecl.h
    │       ├── timing-bluegene.C
    │       ├── timing-freebsd.C
    │       ├── timing-linux.C
    │       ├── timing-nt.C
    │       ├── timing.C
    │       ├── timing.h
    │       ├── triple.h
    │       ├── tunableConst.h
    │       ├── util.C
    │       ├── vectorSet.C
    │       ├── vectorSet.h
    │       ├── vxworksHeaders.h
    │       ├── wtxKludges.C
    │       └── wtxKludges.h
    ├── dataflowAPI
    │   ├── README.md
    │   ├── doc
    │   │   ├── AST.tex
    │   │   ├── AbsLocs.tex
    │   │   ├── Abstractions.tex
    │   │   ├── Assignment.tex
    │   │   ├── Examples.tex
    │   │   ├── Graph.tex
    │   │   ├── Intro.tex
    │   │   ├── README
    │   │   ├── Slicing.tex
    │   │   ├── StackAnalysis.tex
    │   │   ├── SymEval.tex
    │   │   ├── dataflowAPI.pdf
    │   │   ├── dataflowAPI.tex
    │   │   └── paradyn_logo.pdf
    │   ├── h
    │   │   ├── ABI.h
    │   │   ├── Absloc.h
    │   │   ├── AbslocInterface.h
    │   │   ├── InstructionCache.h
    │   │   ├── SymEval.h
    │   │   ├── bitArray.h
    │   │   ├── liveness.h
    │   │   ├── slicing.h
    │   │   └── stackanalysis.h
    │   ├── rose
    │   │   ├── COPYRIGHT
    │   │   ├── ExtentMap.C
    │   │   ├── ExtentMap.h
    │   │   ├── RegisterDescriptor.h
    │   │   ├── SgAsmArmv8Instruction.h
    │   │   ├── SgAsmExpression.h
    │   │   ├── SgAsmInstruction.h
    │   │   ├── SgAsmOperandList.h
    │   │   ├── SgAsmPowerpcInstruction.h
    │   │   ├── SgAsmType.h
    │   │   ├── SgAsmx86Instruction.h
    │   │   ├── SgNode.h
    │   │   ├── conversions.h
    │   │   ├── integerOps.h
    │   │   ├── powerpcInstructionSemantics.h
    │   │   ├── rangemap.C
    │   │   ├── rangemap.h
    │   │   ├── rose.h
    │   │   ├── semantics
    │   │   │   ├── BaseSemantics2.C
    │   │   │   ├── BaseSemantics2.h
    │   │   │   ├── BinarySymbolicExpr.C
    │   │   │   ├── BinarySymbolicExpr.h
    │   │   │   ├── ByteOrder.C
    │   │   │   ├── ByteOrder.h
    │   │   │   ├── ConcreteSemantics2.C
    │   │   │   ├── ConcreteSemantics2.h
    │   │   │   ├── DispatcherARM64.C
    │   │   │   ├── DispatcherARM64.h
    │   │   │   ├── MemoryMap.C
    │   │   │   ├── MemoryMap.h
    │   │   │   ├── RegisterParts.C
    │   │   │   ├── RegisterParts.h
    │   │   │   ├── RegisterStateGeneric.C
    │   │   │   ├── RegisterStateGeneric.h
    │   │   │   ├── Registers.C
    │   │   │   ├── Registers.h
    │   │   │   ├── SMTSolver.C
    │   │   │   ├── SMTSolver.h
    │   │   │   ├── SymEvalSemantics.C
    │   │   │   └── SymEvalSemantics.h
    │   │   ├── semanticsModule.h
    │   │   ├── typedefs.h
    │   │   ├── util
    │   │   │   ├── Access.h
    │   │   │   ├── AddressMap.h
    │   │   │   ├── AddressSegment.h
    │   │   │   ├── AllocatingBuffer.h
    │   │   │   ├── Assert.C
    │   │   │   ├── Assert.h
    │   │   │   ├── Attribute.C
    │   │   │   ├── Attribute.h
    │   │   │   ├── BiMap.h
    │   │   │   ├── BitVector.h
    │   │   │   ├── BitVectorSupport.h
    │   │   │   ├── Buffer.h
    │   │   │   ├── Callbacks.h
    │   │   │   ├── Combinatorics.C
    │   │   │   ├── Combinatorics.h
    │   │   │   ├── Exception.h
    │   │   │   ├── FileSystem.C
    │   │   │   ├── FileSystem.h
    │   │   │   ├── FormatRestorer.h
    │   │   │   ├── Interval.h
    │   │   │   ├── IntervalMap.h
    │   │   │   ├── IntervalSet.h
    │   │   │   ├── IntervalSetMap.h
    │   │   │   ├── LinearCongruentialGenerator.C
    │   │   │   ├── LinearCongruentialGenerator.h
    │   │   │   ├── Map.h
    │   │   │   ├── MappedBuffer.h
    │   │   │   ├── Message.C
    │   │   │   ├── Message.h
    │   │   │   ├── NullBuffer.h
    │   │   │   ├── Optional.h
    │   │   │   ├── PoolAllocator.h
    │   │   │   ├── Sawyer.C
    │   │   │   ├── Sawyer.h
    │   │   │   ├── Set.h
    │   │   │   ├── SharedPointer.h
    │   │   │   ├── SmallObject.C
    │   │   │   ├── SmallObject.h
    │   │   │   ├── StaticBuffer.h
    │   │   │   ├── Stopwatch.C
    │   │   │   ├── Stopwatch.h
    │   │   │   ├── StringUtility.C
    │   │   │   ├── StringUtility.h
    │   │   │   ├── Synchronization.C
    │   │   │   ├── Synchronization.h
    │   │   │   ├── WarningsOff.h
    │   │   │   ├── WarningsRestore.h
    │   │   │   ├── rose_getline.C
    │   │   │   ├── rose_getline.h
    │   │   │   ├── rose_strtoull.C
    │   │   │   └── rose_strtoull.h
    │   │   ├── x86InstructionSemantics-notemplate.h
    │   │   ├── x86InstructionSemantics.h
    │   │   └── x86_64InstructionSemantics.h
    │   ├── src
    │   │   ├── ABI.C
    │   │   ├── Absloc.C
    │   │   ├── AbslocInterface.C
    │   │   ├── ExpressionConversionVisitor.C
    │   │   ├── ExpressionConversionVisitor.h
    │   │   ├── InstructionCache.C
    │   │   ├── Operations.h
    │   │   ├── RegisterMap.C
    │   │   ├── RegisterMap.h
    │   │   ├── RoseImpl.C
    │   │   ├── RoseInsnFactory.C
    │   │   ├── RoseInsnFactory.h
    │   │   ├── SymEval.C
    │   │   ├── SymEvalPolicy.C
    │   │   ├── SymEvalPolicy.h
    │   │   ├── SymEvalVisitors.h
    │   │   ├── SymbolicExpansion.C
    │   │   ├── SymbolicExpansion.h
    │   │   ├── Visitors.C
    │   │   ├── convertOpcodes.C
    │   │   ├── debug_dataflow.C
    │   │   ├── debug_dataflow.h
    │   │   ├── liveness.C
    │   │   ├── slicing.C
    │   │   ├── stackanalysis.C
    │   │   └── templates.C
    │   └── tests
    │       └── inst2ast
    │           ├── Makefile
    │           ├── foo.c
    │           ├── inst.txt
    │           └── inst2ast.C
    ├── dwarf
    │   ├── CMakeLists.txt
    │   ├── h
    │   │   ├── dwarfExprParser.h
    │   │   ├── dwarfFrameParser.h
    │   │   ├── dwarfHandle.h
    │   │   └── dwarfResult.h
    │   └── src
    │       ├── dwarfExprParser.C
    │       ├── dwarfFrameParser.C
    │       ├── dwarfHandle.C
    │       └── dwarfResult.C
    ├── dynC_API
    │   ├── CMakeLists.txt
    │   ├── doc
    │   │   ├── 1-DynC.tex
    │   │   ├── 2-Language.tex
    │   │   ├── A-TheDyninstDomain.tex
    │   │   ├── dynC_API.pdf
    │   │   ├── dynC_API.tex
    │   │   └── paradyn_logo.pdf
    │   ├── h
    │   │   ├── dynC.h
    │   │   └── snippetGen.h
    │   ├── make.test.module.tmpl
    │   ├── src
    │   │   ├── C.l
    │   │   ├── C.y
    │   │   ├── dynC.C
    │   │   ├── dynC.tab.C
    │   │   ├── dynC.tab.h
    │   │   ├── lex.dynC.C
    │   │   └── snippetGen.C
    │   └── tests
    │       ├── i386-unknown-linux2.4
    │       │   └── Makefile
    │       ├── i386-unknown-nt4.0
    │       │   └── Makefile
    │       ├── i386-unknown-winXP
    │       │   └── Makefile
    │       ├── ppc32_linux
    │       │   └── Makefile
    │       ├── ppc64_linux
    │       │   └── Makefile
    │       ├── testMutatee.cpp
    │       ├── testMutator.cpp
    │       ├── testStatements
    │       ├── testStatements2
    │       ├── testStatements3
    │       └── x86_64-unknown-linux2.4
    │           ├── Makefile
    │           └── foo.txt
    ├── dyninstAPI
    │   ├── CMakeLists.txt
    │   ├── ClassDiagram1.cd
    │   ├── README.md
    │   ├── doc
    │   │   ├── dyninstAPI.doc
    │   │   └── dyninstAPI.pdf
    │   ├── h
    │   │   ├── BPatch.h
    │   │   ├── BPatch_Set.h
    │   │   ├── BPatch_Vector.h
    │   │   ├── BPatch_addressSpace.h
    │   │   ├── BPatch_basicBlock.h
    │   │   ├── BPatch_basicBlockLoop.h
    │   │   ├── BPatch_binaryEdit.h
    │   │   ├── BPatch_callbacks.h
    │   │   ├── BPatch_dependenceGraphEdge.h
    │   │   ├── BPatch_dependenceGraphNode.h
    │   │   ├── BPatch_dll.h
    │   │   ├── BPatch_edge.h
    │   │   ├── BPatch_enums.h
    │   │   ├── BPatch_flowGraph.h
    │   │   ├── BPatch_frame.h
    │   │   ├── BPatch_function.h
    │   │   ├── BPatch_image.h
    │   │   ├── BPatch_instruction.h
    │   │   ├── BPatch_loopTreeNode.h
    │   │   ├── BPatch_memoryAccess_NP.h
    │   │   ├── BPatch_module.h
    │   │   ├── BPatch_object.h
    │   │   ├── BPatch_parRegion.h
    │   │   ├── BPatch_point.h
    │   │   ├── BPatch_process.h
    │   │   ├── BPatch_snippet.h
    │   │   ├── BPatch_sourceBlock.h
    │   │   ├── BPatch_sourceObj.h
    │   │   ├── BPatch_statement.h
    │   │   ├── BPatch_thread.h
    │   │   ├── BPatch_type.h
    │   │   └── StackMod.h
    │   ├── nosynchfuncs.txt
    │   └── src
    │       ├── BPatch.C
    │       ├── BPatch_addressSpace.C
    │       ├── BPatch_basicBlock.C
    │       ├── BPatch_basicBlockLoop.C
    │       ├── BPatch_binaryEdit.C
    │       ├── BPatch_collections.C
    │       ├── BPatch_collections.h
    │       ├── BPatch_dependenceGraphEdge.C
    │       ├── BPatch_dependenceGraphNode.C
    │       ├── BPatch_edge.C
    │       ├── BPatch_flowGraph.C
    │       ├── BPatch_frame.C
    │       ├── BPatch_function.C
    │       ├── BPatch_image.C
    │       ├── BPatch_instruction.C
    │       ├── BPatch_libInfo.h
    │       ├── BPatch_loopTreeNode.C
    │       ├── BPatch_memoryAccess.C
    │       ├── BPatch_memoryAccessAdapter.C
    │       ├── BPatch_memoryAccessAdapter.h
    │       ├── BPatch_module.C
    │       ├── BPatch_object.C
    │       ├── BPatch_parRegion.C
    │       ├── BPatch_point.C
    │       ├── BPatch_private.h
    │       ├── BPatch_process.C
    │       ├── BPatch_snippet.C
    │       ├── BPatch_sourceBlock.C
    │       ├── BPatch_statement.C
    │       ├── BPatch_templates.C
    │       ├── BPatch_thread.C
    │       ├── BPatch_type.C
    │       ├── BPatch_typePrivate.h
    │       ├── ELF_Section.h
    │       ├── IAPI_to_AST.C
    │       ├── IAPI_to_AST.h
    │       ├── InstructionCache.C
    │       ├── LinearVariable.h
    │       ├── MemoryEmulator
    │       │   ├── memEmulator.C
    │       │   ├── memEmulator.h
    │       │   ├── memEmulatorStub.h
    │       │   ├── memEmulatorTransformer.C
    │       │   ├── memEmulatorTransformer.h
    │       │   ├── memEmulatorWidget.C
    │       │   └── memEmulatorWidget.h
    │       ├── NTTypes.h
    │       ├── Parsing-arch.C
    │       ├── Parsing.C
    │       ├── Parsing.h
    │       ├── Patching.C
    │       ├── Patching.h
    │       ├── RegisterConversion-aarch64.C
    │       ├── RegisterConversion-ppc.C
    │       ├── RegisterConversion-x86.C
    │       ├── RegisterConversion.h
    │       ├── Relocation
    │       │   ├── CFG
    │       │   │   ├── RelocBlock.C
    │       │   │   ├── RelocBlock.h
    │       │   │   ├── RelocEdge.C
    │       │   │   ├── RelocEdge.h
    │       │   │   ├── RelocGraph.C
    │       │   │   ├── RelocGraph.h
    │       │   │   ├── RelocTarget.C
    │       │   │   └── RelocTarget.h
    │       │   ├── CodeBuffer.C
    │       │   ├── CodeBuffer.h
    │       │   ├── CodeMover.C
    │       │   ├── CodeMover.h
    │       │   ├── CodeTracker.C
    │       │   ├── CodeTracker.h
    │       │   ├── DynAddrSpace.C
    │       │   ├── DynAddrSpace.h
    │       │   ├── DynCFGMaker.C
    │       │   ├── DynCommon.h
    │       │   ├── DynInstrumenter.C
    │       │   ├── DynInstrumenter.h
    │       │   ├── DynObject.C
    │       │   ├── DynObject.h
    │       │   ├── DynPointMaker.C
    │       │   ├── DynPointMaker.h
    │       │   ├── Relocation.h
    │       │   ├── Springboard.C
    │       │   ├── Springboard.h
    │       │   ├── Transformers
    │       │   │   ├── Defensive.C
    │       │   │   ├── Include.h
    │       │   │   ├── Instrumenter.C
    │       │   │   ├── Instrumenter.h
    │       │   │   ├── Modification.C
    │       │   │   ├── Modification.h
    │       │   │   ├── Movement-adhoc.C
    │       │   │   ├── Movement-adhoc.h
    │       │   │   ├── Movement-analysis.C
    │       │   │   ├── Movement-analysis.h
    │       │   │   ├── Transformer.C
    │       │   │   └── Transformer.h
    │       │   ├── Widgets
    │       │   │   ├── ASTWidget.C
    │       │   │   ├── ASTWidget.h
    │       │   │   ├── CFPatch.C
    │       │   │   ├── CFWidget-aarch64.C
    │       │   │   ├── CFWidget-ppc.C
    │       │   │   ├── CFWidget-x86.C
    │       │   │   ├── CFWidget.C
    │       │   │   ├── CFWidget.h
    │       │   │   ├── CallbackWidget.C
    │       │   │   ├── CallbackWidget.h
    │       │   │   ├── Include.h
    │       │   │   ├── InsnWidget.C
    │       │   │   ├── InsnWidget.h
    │       │   │   ├── InstWidget.C
    │       │   │   ├── InstWidget.h
    │       │   │   ├── PCWidget.C
    │       │   │   ├── PCWidget.h
    │       │   │   ├── RelDataWidget.C
    │       │   │   ├── RelDataWidget.h
    │       │   │   ├── StackModWidget.C
    │       │   │   ├── StackModWidget.h
    │       │   │   └── Widget.h
    │       │   └── patchapi_debug.C
    │       ├── StackMod
    │       │   ├── OffsetVector.C
    │       │   ├── OffsetVector.h
    │       │   ├── StackAccess.C
    │       │   ├── StackAccess.h
    │       │   ├── StackLocation.C
    │       │   ├── StackLocation.h
    │       │   ├── StackMod.C
    │       │   ├── StackModChecker.C
    │       │   ├── StackModChecker.h
    │       │   ├── StackModExpr.C
    │       │   ├── StackModExpr.h
    │       │   ├── TMap.C
    │       │   └── TMap.h
    │       ├── addressSpace.C
    │       ├── addressSpace.h
    │       ├── arch-forward-decl.h
    │       ├── asmExterns.h
    │       ├── ast.C
    │       ├── ast.h
    │       ├── baseTramp.C
    │       ├── baseTramp.h
    │       ├── binaryEdit.C
    │       ├── binaryEdit.h
    │       ├── block.C
    │       ├── block.h
    │       ├── clock.h
    │       ├── codeRange.C
    │       ├── codeRange.h
    │       ├── codebuffer.h
    │       ├── codegen-aarch64.C
    │       ├── codegen-aarch64.h
    │       ├── codegen-power.C
    │       ├── codegen-power.h
    │       ├── codegen-x86.C
    │       ├── codegen-x86.h
    │       ├── codegen.C
    │       ├── codegen.h
    │       ├── cpuid-x86.S
    │       ├── debug.C
    │       ├── debug.h
    │       ├── dummy.C
    │       ├── dynProcess-x86.C
    │       ├── dynProcess.C
    │       ├── dynProcess.h
    │       ├── dynThread.C
    │       ├── dynThread.h
    │       ├── dyninst.h
    │       ├── edge.C
    │       ├── emit-aarch64.h
    │       ├── emit-power.h
    │       ├── emit-x86.C
    │       ├── emit-x86.h
    │       ├── emitter.h
    │       ├── frame.C
    │       ├── frame.h
    │       ├── frameChecker.C
    │       ├── frameChecker.h
    │       ├── freebsd-x86.C
    │       ├── freebsd-x86.h
    │       ├── freebsd.C
    │       ├── freebsd.h
    │       ├── function.C
    │       ├── function.h
    │       ├── hybridAnalysis.h
    │       ├── hybridCallbacks.C
    │       ├── hybridInstrumentation.C
    │       ├── hybridOverwrites.C
    │       ├── image.C
    │       ├── image.h
    │       ├── infHeap.C
    │       ├── infHeap.h
    │       ├── inst-aarch64.C
    │       ├── inst-aarch64.h
    │       ├── inst-linux.C
    │       ├── inst-power.C
    │       ├── inst-power.h
    │       ├── inst-winnt.C
    │       ├── inst-x86.C
    │       ├── inst-x86.h
    │       ├── inst.C
    │       ├── inst.h
    │       ├── instP.h
    │       ├── instPoint.C
    │       ├── instPoint.h
    │       ├── legacy-instruction.h
    │       ├── linux-aarch64.C
    │       ├── linux-aarch64.h
    │       ├── linux-power.C
    │       ├── linux-power.h
    │       ├── linux-x86.C
    │       ├── linux-x86.h
    │       ├── linux.C
    │       ├── linux.h
    │       ├── mapped_module.C
    │       ├── mapped_module.h
    │       ├── mapped_object.C
    │       ├── mapped_object.h
    │       ├── ntDL.h
    │       ├── nt_signal_emul.h
    │       ├── opcode.h
    │       ├── os.h
    │       ├── parRegion.C
    │       ├── parRegion.h
    │       ├── parse-aarch64.C
    │       ├── parse-cfg.C
    │       ├── parse-cfg.h
    │       ├── parse-power.C
    │       ├── parse-x86.C
    │       ├── patch.h
    │       ├── pcEventHandler.C
    │       ├── pcEventHandler.h
    │       ├── pcEventMuxer.C
    │       ├── pcEventMuxer.h
    │       ├── pcrel.h
    │       ├── pdwinnt.C
    │       ├── pdwinnt.h
    │       ├── pdwinntDL.C
    │       ├── registerSpace.C
    │       ├── registerSpace.h
    │       ├── stackwalk-aarch64.C
    │       ├── stackwalk-ppc.C
    │       ├── stackwalk-x86.C
    │       ├── syscall-freebsd.C
    │       ├── syscall-linux.C
    │       ├── syscall-nt.C
    │       ├── syscall-vxworks.C
    │       ├── syscallNotification.C
    │       ├── syscallNotification.h
    │       ├── syscalltrap.h
    │       ├── trapMappings.h
    │       ├── unix.C
    │       ├── unix.h
    │       ├── util.C
    │       ├── util.h
    │       ├── variable.C
    │       ├── vxworks.C
    │       └── vxworks.h
    ├── dyninstAPI_RT
    │   ├── CMakeLists.txt
    │   ├── h
    │   │   ├── dyninstAPI_RT.h
    │   │   └── dyninstRTExport.h
    │   └── src
    │       ├── DYNINSTAPI_RT_EXPORTS
    │       ├── RTcommon.c
    │       ├── RTcommon.h
    │       ├── RTfreebsd.c
    │       ├── RTheap-freebsd.c
    │       ├── RTheap-linux.c
    │       ├── RTheap-svr4.c
    │       ├── RTheap-win.c
    │       ├── RTheap.c
    │       ├── RTheap.h
    │       ├── RTlinux.c
    │       ├── RTmemEmulator.c
    │       ├── RTmutatedBinary.c
    │       ├── RTmutatedBinary_ELF.c
    │       ├── RTposix.c
    │       ├── RTsigill-x86.S
    │       ├── RTsignal-x86.S
    │       ├── RTsignal-x86_64.S
    │       ├── RTsignal.c
    │       ├── RTspace-smallmem.s
    │       ├── RTspace.S
    │       ├── RTstatic_ctors_dtors-aarch64.c
    │       ├── RTstatic_ctors_dtors-ppc32.c
    │       ├── RTstatic_ctors_dtors-ppc64.c
    │       ├── RTstatic_ctors_dtors-x86.c
    │       ├── RTstatic_ctors_dtors_begin.c
    │       ├── RTstatic_ctors_dtors_end.c
    │       ├── RTthread-aarch64.c
    │       ├── RTthread-power-asm.s
    │       ├── RTthread-power.c
    │       ├── RTthread-powerpc-asm.S
    │       ├── RTthread-powerpc.c
    │       ├── RTthread-x86-64.c
    │       ├── RTthread-x86.c
    │       ├── RTthread.c
    │       ├── RTthread.h
    │       ├── RTtlsgetaddr-x86.S
    │       ├── RTtlsgetaddr-x86_64.S
    │       ├── RTvxworks.c
    │       ├── RTwinnt.c
    │       ├── libSpace.s
    │       └── libSpace64.s
    ├── elf
    │   ├── CMakeLists.txt
    │   ├── h
    │   │   └── Elf_X.h
    │   └── src
    │       ├── Elf_X.C
    │       ├── SystemTap.C
    │       └── SystemTap.h
    ├── external
    │   ├── bluegene
    │   │   ├── MessageHeader.h
    │   │   ├── ToolctlMessages.h
    │   │   └── bgp-debugger-interface.h
    │   ├── cvconst
    │   │   ├── LICENSE
    │   │   ├── README
    │   │   └── cvconst.h
    │   ├── inttypes-win.h
    │   ├── rose
    │   │   ├── armv8InstructionEnum.h
    │   │   ├── powerpcInstructionEnum.h
    │   │   ├── rose-compat.h
    │   │   └── rose_msvc.h
    │   ├── stdint-win.h
    │   └── variantComparer.py
    ├── instructionAPI
    │   ├── CMakeLists.txt
    │   ├── aarch64_manual_parser.py
    │   ├── aarch64_sysreg_builder.py
    │   ├── doc
    │   │   ├── 1-Intro.tex
    │   │   ├── 2-Abstractions.tex
    │   │   ├── 3-API.tex
    │   │   ├── API
    │   │   │   ├── BinaryFunction.tex
    │   │   │   ├── Dereference.tex
    │   │   │   ├── Expression.tex
    │   │   │   ├── Immediate.tex
    │   │   │   ├── Instruction.tex
    │   │   │   ├── InstructionAST.tex
    │   │   │   ├── InstructionDecoder.tex
    │   │   │   ├── InstructionDecoder_x86.tex
    │   │   │   ├── Operand.tex
    │   │   │   ├── Operation.tex
    │   │   │   ├── RegisterAST.tex
    │   │   │   ├── Result.tex
    │   │   │   └── Visitor.tex
    │   │   ├── examples
    │   │   │   ├── Visitor-noop.C
    │   │   │   └── Visitor-regexample.C
    │   │   ├── fig
    │   │   │   ├── ast_ownership.eps
    │   │   │   ├── ast_ownership.pdf
    │   │   │   ├── decoder_use.eps
    │   │   │   ├── decoder_use.pdf
    │   │   │   ├── deref-eval.eps
    │   │   │   ├── deref-eval.pdf
    │   │   │   ├── full_inheritance_graph.eps
    │   │   │   ├── full_inheritance_graph.pdf
    │   │   │   ├── instruction_representation.eps
    │   │   │   ├── instruction_representation.pdf
    │   │   │   ├── ownership_graph.eps
    │   │   │   ├── ownership_graph.pdf
    │   │   │   └── refman.pdf
    │   │   ├── instructionAPI.pdf
    │   │   ├── instructionAPI.tex
    │   │   └── paradyn_logo.pdf
    │   ├── h
    │   │   ├── BinaryFunction.h
    │   │   ├── Dereference.h
    │   │   ├── Expression.h
    │   │   ├── Immediate.h
    │   │   ├── Instruction.h
    │   │   ├── InstructionAST.h
    │   │   ├── InstructionCategories.h
    │   │   ├── InstructionDecoder.h
    │   │   ├── Operand.h
    │   │   ├── Operation.h
    │   │   ├── Register.h
    │   │   ├── RegisterIDs.h
    │   │   ├── Result.h
    │   │   └── Visitor.h
    │   ├── instructionAPI.conf
    │   ├── ppc_manual_parser.pl
    │   └── src
    │       ├── BinaryFunction.C
    │       ├── Expression.C
    │       ├── Immediate.C
    │       ├── Instruction.C
    │       ├── InstructionAST.C
    │       ├── InstructionCategories.C
    │       ├── InstructionDecoder-aarch64.C
    │       ├── InstructionDecoder-aarch64.h
    │       ├── InstructionDecoder-power.C
    │       ├── InstructionDecoder-power.h
    │       ├── InstructionDecoder-x86.C
    │       ├── InstructionDecoder-x86.h
    │       ├── InstructionDecoder.C
    │       ├── InstructionDecoderImpl.C
    │       ├── InstructionDecoderImpl.h
    │       ├── InstructionTest.C
    │       ├── MainDocPage.C
    │       ├── Operand.C
    │       ├── Operation.C
    │       ├── Register.C
    │       ├── aarch64_opcode_tables.C
    │       ├── ast_ownership.dot
    │       ├── decoder_use.dot
    │       ├── deref-eval.dot
    │       ├── full_inheritance_graph.dot
    │       ├── groups.C
    │       ├── instruction_representation.dot
    │       ├── ownership_graph.dot
    │       ├── power_opcode_tables.C
    │       └── test
    │           ├── aarch64.output
    │           ├── geninput.sh
    │           ├── input
    │           ├── test_aarch64_decoder.C
    │           └── test_aarch64_decoder_table.h
    ├── parseAPI
    │   ├── CMakeLists.txt
    │   ├── README.md
    │   ├── doc
    │   │   ├── 1-Intro.tex
    │   │   ├── 2-Abstractions.tex
    │   │   ├── 3-Example.tex
    │   │   ├── 4-ParseAPI.tex
    │   │   ├── 5-Extending.tex
    │   │   ├── 6-Defensive.tex
    │   │   ├── API
    │   │   │   ├── Block.tex
    │   │   │   ├── CodeObject.tex
    │   │   │   ├── CodeRegion.tex
    │   │   │   ├── CodeSource.tex
    │   │   │   ├── Containers.tex
    │   │   │   ├── Edge.tex
    │   │   │   ├── EdgePredicate.tex
    │   │   │   ├── FuncExtent.tex
    │   │   │   ├── Function.tex
    │   │   │   ├── Loop.tex
    │   │   │   ├── LoopTreeNode.tex
    │   │   │   └── ParseCallback.tex
    │   │   ├── README
    │   │   ├── code_sample.cc
    │   │   ├── example.cc
    │   │   ├── paradyn_logo.pdf
    │   │   ├── parseAPI.pdf
    │   │   └── parseAPI.tex
    │   ├── h
    │   │   ├── CFG.h
    │   │   ├── CFGFactory.h
    │   │   ├── CFGModifier.h
    │   │   ├── CodeObject.h
    │   │   ├── CodeSource.h
    │   │   ├── GraphAdapter.h
    │   │   ├── InstructionAdapter.h
    │   │   ├── InstructionSource.h
    │   │   ├── Location.h
    │   │   ├── ParseCallback.h
    │   │   ├── ParseContainers.h
    │   │   └── SymLiteCodeSource.h
    │   └── src
    │       ├── Block.C
    │       ├── BoundFactCalculator.C
    │       ├── BoundFactCalculator.h
    │       ├── BoundFactData.C
    │       ├── BoundFactData.h
    │       ├── CFGFactory.C
    │       ├── CFGModifier.C
    │       ├── CodeObject.C
    │       ├── CodeSource.C
    │       ├── Function.C
    │       ├── GraphAdapter.C
    │       ├── IA_IAPI.C
    │       ├── IA_IAPI.h
    │       ├── IA_InstrucIter.C
    │       ├── IA_InstrucIter.h
    │       ├── IA_aarch64.C
    │       ├── IA_aarch64Details.C
    │       ├── IA_aarch64Details.h
    │       ├── IA_platformDetails.h
    │       ├── IA_platformDetailsFactory.C
    │       ├── IA_power.C
    │       ├── IA_power.h
    │       ├── IA_powerDetails.C
    │       ├── IA_powerDetails.h
    │       ├── IA_x86.C
    │       ├── IA_x86Details.C
    │       ├── IA_x86Details.h
    │       ├── IdiomModelDesc.C
    │       ├── IndirectASTVisitor.C
    │       ├── IndirectASTVisitor.h
    │       ├── IndirectAnalyzer.C
    │       ├── IndirectAnalyzer.h
    │       ├── InstructionAdapter.C
    │       ├── InstructionSource-aarch64.C
    │       ├── InstructionSource-power.C
    │       ├── InstructionSource-x86.C
    │       ├── JumpTablePred.C
    │       ├── JumpTablePred.h
    │       ├── Loop.C
    │       ├── LoopAnalyzer.C
    │       ├── LoopAnalyzer.h
    │       ├── LoopTreeNode.C
    │       ├── ParseCallback.C
    │       ├── ParseData.C
    │       ├── ParseData.h
    │       ├── Parser-speculative.C
    │       ├── Parser.C
    │       ├── Parser.h
    │       ├── ParserDetails.C
    │       ├── ParserDetails.h
    │       ├── ProbabilisticParser.C
    │       ├── ProbabilisticParser.h
    │       ├── StackTamperVisitor.C
    │       ├── StackTamperVisitor.h
    │       ├── SymLiteCodeSource.C
    │       ├── SymtabCodeSource.C
    │       ├── ThunkData.C
    │       ├── ThunkData.h
    │       ├── debug_parse.C
    │       ├── debug_parse.h
    │       ├── dominator.C
    │       ├── dominator.h
    │       └── util.h
    ├── parseThat
    │   ├── CMakeLists.txt
    │   ├── Makefile.in
    │   ├── README.md
    │   ├── config.guess
    │   ├── config.sub
    │   ├── configure
    │   ├── configure.ac
    │   ├── install-sh
    │   └── src
    │       ├── config.C
    │       ├── config.h
    │       ├── dyninstCompat.h
    │       ├── dyninstCompat.v4.C
    │       ├── dyninstCompat.v5.C
    │       ├── dyninstCore.C
    │       ├── dyninstCore.h
    │       ├── ipc.C
    │       ├── ipc.h
    │       ├── log.C
    │       ├── log.h
    │       ├── parseThat.C
    │       ├── record.C
    │       ├── record.h
    │       ├── reglist.C
    │       ├── reglist.h
    │       ├── sha1.C
    │       ├── sha1.h
    │       ├── strlist.C
    │       ├── strlist.h
    │       ├── utils.C
    │       └── utils.h
    ├── patchAPI
    │   ├── CMakeLists.txt
    │   ├── doc
    │   │   ├── Makefile.doc
    │   │   ├── figure
    │   │   │   ├── abstraction
    │   │   │   │   ├── img.eps
    │   │   │   │   ├── img.graffle
    │   │   │   │   └── img.pdf
    │   │   │   └── command
    │   │   │       ├── img.graffle
    │   │   │       └── img.pdf
    │   │   ├── paradyn_logo.pdf
    │   │   ├── patchAPI.pdf
    │   │   ├── patchAPI.tex
    │   │   └── section
    │   │       ├── 1_intro.tex
    │   │       ├── 2_abs.tex
    │   │       ├── 3_example.tex
    │   │       ├── 4_api_public.tex
    │   │       ├── 5_api_modification.tex
    │   │       ├── 6_api_plugin.tex
    │   │       └── 7_dyninst.tex
    │   ├── h
    │   │   ├── AddrSpace.h
    │   │   ├── CFGMaker.h
    │   │   ├── Command.h
    │   │   ├── Instrumenter.h
    │   │   ├── PatchCFG.h
    │   │   ├── PatchCallback.h
    │   │   ├── PatchCommon.h
    │   │   ├── PatchMgr.h
    │   │   ├── PatchModifier.h
    │   │   ├── PatchObject.h
    │   │   ├── Point.h
    │   │   └── Snippet.h
    │   ├── src
    │   │   ├── AddrSpace.C
    │   │   ├── CFGMaker.C
    │   │   ├── Command.C
    │   │   ├── Instrumenter.C
    │   │   ├── ParseCallback.C
    │   │   ├── ParseCallback.h
    │   │   ├── PatchBlock.C
    │   │   ├── PatchCallback.C
    │   │   ├── PatchEdge.C
    │   │   ├── PatchFunction.C
    │   │   ├── PatchLoop.C
    │   │   ├── PatchLoopTreeNode.C
    │   │   ├── PatchMgr.C
    │   │   ├── PatchModifier.C
    │   │   ├── PatchObject.C
    │   │   ├── Point.C
    │   │   └── PointMaker.C
    │   └── test
    │       └── findPoint
    │           ├── Makefile
    │           ├── main.C
    │           ├── mutatee
    │           │   ├── Makefile
    │           │   ├── lib.c
    │           │   └── main.c
    │           └── run.sh
    ├── proccontrol
    │   ├── CMakeLists.txt
    │   ├── README.md
    │   ├── doc
    │   │   ├── proccontrol.docx
    │   │   └── proccontrol.pdf
    │   ├── dumplibpthread.asm
    │   ├── h
    │   │   ├── Decoder.h
    │   │   ├── Event.h
    │   │   ├── EventType.h
    │   │   ├── Generator.h
    │   │   ├── Handler.h
    │   │   ├── Mailbox.h
    │   │   ├── PCErrors.h
    │   │   ├── PCProcess.h
    │   │   ├── PlatFeatures.h
    │   │   └── ProcessSet.h
    │   └── src
    │       ├── DecoderWindows.C
    │       ├── DecoderWindows.h
    │       ├── Display
    │       ├── FileType
    │       ├── GeneratorWindows.C
    │       ├── GeneratorWindows.h
    │       ├── Initial
    │       ├── Others
    │       ├── arm_process.C
    │       ├── arm_process.h
    │       ├── bgq-messages.C
    │       ├── bgq-transactions.h
    │       ├── bluegenep.C
    │       ├── bluegenep.h
    │       ├── bluegeneq.C
    │       ├── bluegeneq.h
    │       ├── event.C
    │       ├── freebsd.C
    │       ├── freebsd.h
    │       ├── generator.C
    │       ├── handler.C
    │       ├── int_event.h
    │       ├── int_handler.h
    │       ├── int_process.h
    │       ├── int_thread_db.C
    │       ├── int_thread_db.h
    │       ├── irpc.C
    │       ├── irpc.h
    │       ├── linux.C
    │       ├── linux.h
    │       ├── loadLibrary
    │       │   ├── codegen-aarch64.C
    │       │   ├── codegen-freebsd.C
    │       │   ├── codegen-linux.C
    │       │   ├── codegen-ppc.C
    │       │   ├── codegen-stub.C
    │       │   ├── codegen-win.C
    │       │   ├── codegen-x86.C
    │       │   ├── codegen.C
    │       │   ├── codegen.h
    │       │   ├── injector.C
    │       │   └── injector.h
    │       ├── mailbox.C
    │       ├── memcache.C
    │       ├── memcache.h
    │       ├── mmapalloc.C
    │       ├── mmapalloc.h
    │       ├── notify_pipe.C
    │       ├── notify_pipe.h
    │       ├── pcerrors.C
    │       ├── pcmachsyscall.C
    │       ├── ppc_process.C
    │       ├── ppc_process.h
    │       ├── proc_service_wrapper.h
    │       ├── process.C
    │       ├── processplat.C
    │       ├── processplat.h
    │       ├── procpool.C
    │       ├── procpool.h
    │       ├── procset.C
    │       ├── resp.C
    │       ├── resp.h
    │       ├── response.C
    │       ├── response.h
    │       ├── snippets.h
    │       ├── sysv.C
    │       ├── sysv.h
    │       ├── unix.C
    │       ├── unix.h
    │       ├── windows_handler.C
    │       ├── windows_handler.h
    │       ├── windows_process.C
    │       ├── windows_process.h
    │       ├── windows_thread.C
    │       ├── windows_thread.h
    │       ├── x86_process.C
    │       └── x86_process.h
    ├── scripts
    │   ├── buildstamp
    │   ├── dynsysname
    │   └── sysname
    ├── stackwalk
    │   ├── CMakeLists.txt
    │   ├── README.md
    │   ├── doc
    │   │   ├── 1-Introduction.tex
    │   │   ├── 2-Abstractions.tex
    │   │   ├── 3-API.tex
    │   │   ├── 4-Callbacks.tex
    │   │   ├── API
    │   │   │   ├── Frame.tex
    │   │   │   ├── FrameStepper.tex
    │   │   │   ├── ProcessState.tex
    │   │   │   ├── StepperGroup.tex
    │   │   │   ├── SymbolLookup.tex
    │   │   │   └── Walker.tex
    │   │   ├── fig
    │   │   │   ├── layout-armv8.tex
    │   │   │   ├── layout.tex
    │   │   │   └── object-ownership.tex
    │   │   ├── paradyn_logo.pdf
    │   │   ├── stackwalk.pdf
    │   │   └── stackwalk.tex
    │   ├── h
    │   │   ├── basetypes.h
    │   │   ├── frame.h
    │   │   ├── framestepper.h
    │   │   ├── local_var.h
    │   │   ├── procstate.h
    │   │   ├── steppergroup.h
    │   │   ├── sw_c.h
    │   │   ├── swk_errors.h
    │   │   ├── symlookup.h
    │   │   └── walker.h
    │   └── src
    │       ├── aarch64-swk.C
    │       ├── aarch64-swk.h
    │       ├── analysis_stepper.C
    │       ├── analysis_stepper.h
    │       ├── bg_firstparty.C
    │       ├── bluegene-swk.C
    │       ├── bluegene-swk.h
    │       ├── bluegenel-swk.C
    │       ├── bluegenel-swk.h
    │       ├── bluegenep-swk.C
    │       ├── bluegenep-swk.h
    │       ├── bluegeneq-swk.C
    │       ├── bluegeneq-swk.h
    │       ├── callchecker-IAPI.C
    │       ├── callchecker.C
    │       ├── dbginfo-stepper.C
    │       ├── dbgstepper-impl.h
    │       ├── firstparty.C
    │       ├── frame.C
    │       ├── framestepper.C
    │       ├── framestepper_pimple.h
    │       ├── freebsd-swk.C
    │       ├── freebsd-swk.h
    │       ├── freebsd-x86-swk.C
    │       ├── get_trap_instruction.h
    │       ├── libstate.C
    │       ├── libstate.h
    │       ├── linux-aarch64-swk.C
    │       ├── linux-ppc-swk.C
    │       ├── linux-swk.C
    │       ├── linux-swk.h
    │       ├── linux-x86-swk.C
    │       ├── linuxbsd-swk.C
    │       ├── linuxbsd-swk.h
    │       ├── linuxbsd-x86-swk.C
    │       ├── ppc-swk.C
    │       ├── procstate.C
    │       ├── steppergroup.C
    │       ├── sw.h
    │       ├── sw_c.C
    │       ├── sw_pcontrol.C
    │       ├── swk_errors.C
    │       ├── symlookup.C
    │       ├── symtab-swk.C
    │       ├── symtab-swk.h
    │       ├── walker.C
    │       ├── win-x86-swk.C
    │       ├── x86-swk.C
    │       ├── x86-swk.h
    │       └── x86-wanderer.C
    ├── symlite
    │   ├── CMakeLists.txt
    │   ├── README.md
    │   ├── h
    │   │   └── SymLite-elf.h
    │   └── src
    │       └── SymLite-elf.C
    ├── symtabAPI
    │   ├── CMakeLists.txt
    │   ├── README.md
    │   ├── doc
    │   │   ├── 1-Intro.tex
    │   │   ├── 2-Abstractions.tex
    │   │   ├── 3-Examples.tex
    │   │   ├── 4-Definitions.tex
    │   │   ├── 5-Namespace.tex
    │   │   ├── 6-SymtabAPI.tex
    │   │   ├── 7-LineNumberInterface.tex
    │   │   ├── 8-Types.tex
    │   │   ├── 9-Dynamic.tex
    │   │   ├── A-Appendix.tex
    │   │   ├── API
    │   │   │   ├── LineInfo
    │   │   │   │   ├── Iterating.tex
    │   │   │   │   ├── LineInformation.tex
    │   │   │   │   └── Statement.tex
    │   │   │   ├── Symtab
    │   │   │   │   ├── Archive.tex
    │   │   │   │   ├── ExceptionBlock.tex
    │   │   │   │   ├── Function.tex
    │   │   │   │   ├── FunctionBase.tex
    │   │   │   │   ├── InlinedFunction.tex
    │   │   │   │   ├── LocalVar.tex
    │   │   │   │   ├── Module.tex
    │   │   │   │   ├── Region.tex
    │   │   │   │   ├── Symbol.tex
    │   │   │   │   ├── Symtab.tex
    │   │   │   │   ├── Variable.tex
    │   │   │   │   └── VariableLocation.tex
    │   │   │   └── Types
    │   │   │       └── Type.tex
    │   │   ├── README
    │   │   ├── paradyn_logo.pdf
    │   │   ├── symtab-text.txt
    │   │   ├── symtabAPI.pdf
    │   │   └── symtabAPI.tex
    │   ├── h
    │   │   ├── AddrLookup.h
    │   │   ├── Aggregate.h
    │   │   ├── Archive.h
    │   │   ├── Collections.h
    │   │   ├── Function.h
    │   │   ├── LineInformation.h
    │   │   ├── Module.h
    │   │   ├── RangeLookup.h
    │   │   ├── Region.h
    │   │   ├── StringTable.h
    │   │   ├── Symbol.h
    │   │   ├── Symtab.h
    │   │   ├── SymtabReader.h
    │   │   ├── Type.h
    │   │   ├── Variable.h
    │   │   └── symutil.h
    │   └── src
    │       ├── AddrLookup.C
    │       ├── Aggregate.C
    │       ├── Archive-elf.C
    │       ├── Archive.C
    │       ├── Collections.C
    │       ├── Function.C
    │       ├── LineInformation.C
    │       ├── LinkMap.C
    │       ├── LinkMap.h
    │       ├── Module.C
    │       ├── Object-elf.C
    │       ├── Object-elf.h
    │       ├── Object-nt.C
    │       ├── Object-nt.h
    │       ├── Object.C
    │       ├── Object.h
    │       ├── Region.C
    │       ├── Symbol.C
    │       ├── Symtab-deprecated.C
    │       ├── Symtab-edit.C
    │       ├── Symtab-lookup.C
    │       ├── Symtab.C
    │       ├── SymtabReader.C
    │       ├── Type-mem.h
    │       ├── Type.C
    │       ├── Variable.C
    │       ├── annotations.C
    │       ├── annotations.h
    │       ├── debug.C
    │       ├── debug.h
    │       ├── dwarfWalker.C
    │       ├── dwarfWalker.h
    │       ├── emitElf.C
    │       ├── emitElf.h
    │       ├── emitElfStatic-aarch64.C
    │       ├── emitElfStatic-ppc32.C
    │       ├── emitElfStatic-ppc64.C
    │       ├── emitElfStatic-stub.C
    │       ├── emitElfStatic-x86.C
    │       ├── emitElfStatic.C
    │       ├── emitElfStatic.h
    │       ├── emitWin.C
    │       ├── emitWin.h
    │       ├── exportXML_schema.xsd
    │       ├── parseDwarf.C
    │       ├── parseStab.C
    │       ├── relocationEntry-elf-aarch64.C
    │       ├── relocationEntry-elf-ppc32.C
    │       ├── relocationEntry-elf-ppc64.C
    │       ├── relocationEntry-elf-x86.C
    │       ├── relocationEntry-stub.C
    │       └── staticRewrite.C
    ├── syscalls
    │   ├── README
    │   ├── generateSyscallInformation.py
    │   └── unistd-by-platform
    │       └── Linux
    │           ├── Arch_aarch64
    │           │   └── unistd.h
    │           ├── Arch_ppc32
    │           │   └── unistd.h.20130604
    │           ├── Arch_ppc64
    │           │   └── unistd.h.20130604
    │           ├── Arch_x86
    │           │   └── unistd_32.h.20130603
    │           └── Arch_x86_64
    │               └── unistd_64.h.20130603
    └── valueAdded
        ├── MakefileTemplate
        ├── sharedMem
        │   ├── h
        │   │   └── SharedMem.h
        │   ├── i386-unknown-linux2.4
        │   │   └── Makefile
        │   ├── i386-unknown-nt4.0
        │   │   └── Makefile
        │   ├── i386-unknown-winXP
        │   │   └── Makefile
        │   ├── make.module.tmpl
        │   ├── ppc32_linux
        │   │   └── Makefile
        │   ├── ppc64_linux
        │   │   └── Makefile
        │   ├── src
        │   │   ├── RTshared-unix.c
        │   │   ├── RTshared-win.c
        │   │   ├── sharedMemInternal.h
        │   │   ├── shmMgr.C
        │   │   ├── shmSegment-nt.C
        │   │   ├── shmSegment-unix.C
        │   │   ├── shmSegment-win.C
        │   │   ├── shmSegment.C
        │   │   └── shmSegment.h
        │   └── x86_64-unknown-linux2.4
        │       └── Makefile
        └── wrapper
            ├── amd64
            │   ├── Makefile
            │   └── specfile
            └── src
                ├── lib_wrapper.c
                ├── test.c
                └── wrapper.C

122 directories, 1318 files


标签: C++primer Primer c++ PRI Pr

实例下载地址

C++基于区块链的指纹系统

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警