svf-lib 1.0.2643 → 1.0.2655
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish-svf-lib.yml +44 -12
- package/SVF-linux-aarch64/bin/ae +0 -0
- package/SVF-linux-aarch64/bin/cfl +0 -0
- package/SVF-linux-aarch64/bin/mta +0 -0
- package/SVF-linux-aarch64/bin/svf-ex +0 -0
- package/SVF-linux-aarch64/bin/wpa +0 -0
- package/SVF-linux-aarch64/include/AE/Core/AbstractState.h +1 -1
- package/SVF-linux-aarch64/include/AE/Core/ICFGWTO.h +4 -1
- package/SVF-linux-aarch64/include/AE/Core/NumericValue.h +2 -1
- package/SVF-linux-aarch64/include/AE/Core/RelExeState.h +1 -0
- package/SVF-linux-aarch64/include/AE/Core/RelationSolver.h +5 -1
- package/SVF-linux-aarch64/include/AE/Svfexe/AbsExtAPI.h +9 -3
- package/SVF-linux-aarch64/include/AE/Svfexe/SparseAbstractInterpretation.h +3 -1
- package/SVF-linux-aarch64/include/CFL/CFGNormalizer.h +2 -1
- package/SVF-linux-aarch64/include/CFL/CFGrammar.h +8 -4
- package/SVF-linux-aarch64/include/CFL/CFLAlias.h +3 -2
- package/SVF-linux-aarch64/include/CFL/CFLBase.h +4 -9
- package/SVF-linux-aarch64/include/CFL/CFLGramGraphChecker.h +3 -1
- package/SVF-linux-aarch64/include/CFL/CFLGraphBuilder.h +1 -0
- package/SVF-linux-aarch64/include/CFL/CFLSVFGBuilder.h +5 -0
- package/SVF-linux-aarch64/include/CFL/CFLSolver.h +2 -1
- package/SVF-linux-aarch64/include/CFL/CFLStat.h +2 -2
- package/SVF-linux-aarch64/include/CFL/CFLVF.h +5 -2
- package/SVF-linux-aarch64/include/CFL/GrammarBuilder.h +3 -1
- package/SVF-linux-aarch64/include/DDA/ContextDDA.h +1 -0
- package/SVF-linux-aarch64/include/DDA/DDAClient.h +2 -2
- package/SVF-linux-aarch64/include/DDA/DDAPass.h +5 -1
- package/SVF-linux-aarch64/include/DDA/DDAStat.h +2 -1
- package/SVF-linux-aarch64/include/DDA/DDAVFSolver.h +3 -1
- package/SVF-linux-aarch64/include/DDA/FlowDDA.h +2 -1
- package/SVF-linux-aarch64/include/Graphs/CDG.h +6 -0
- package/SVF-linux-aarch64/include/Graphs/ICFGNode.h +1 -0
- package/SVF-linux-aarch64/include/Graphs/IRGraph.h +2 -3
- package/SVF-linux-aarch64/include/Graphs/SCC.h +4 -3
- package/SVF-linux-aarch64/include/Graphs/WTO.h +2 -3
- package/SVF-linux-aarch64/include/MSSA/MSSAMuChi.h +2 -1
- package/SVF-linux-aarch64/include/MSSA/MemPartition.h +1 -0
- package/SVF-linux-aarch64/include/MSSA/MemRegion.h +6 -2
- package/SVF-linux-aarch64/include/MSSA/SVFGBuilder.h +1 -1
- package/SVF-linux-aarch64/include/MTA/MHP.h +1 -0
- package/SVF-linux-aarch64/include/MTA/MTA.h +1 -5
- package/SVF-linux-aarch64/include/MTA/TCT.h +3 -2
- package/SVF-linux-aarch64/include/MemoryModel/AbstractPointsToDS.h +0 -2
- package/SVF-linux-aarch64/include/MemoryModel/AccessPath.h +6 -2
- package/SVF-linux-aarch64/include/MemoryModel/MutablePointsToDS.h +0 -1
- package/SVF-linux-aarch64/include/MemoryModel/PersistentPointsToCache.h +1 -1
- package/SVF-linux-aarch64/include/MemoryModel/PersistentPointsToDS.h +0 -1
- package/SVF-linux-aarch64/include/MemoryModel/PointerAnalysis.h +2 -7
- package/SVF-linux-aarch64/include/MemoryModel/PointerAnalysisImpl.h +5 -1
- package/SVF-linux-aarch64/include/MemoryModel/PointsTo.h +2 -1
- package/SVF-linux-aarch64/include/MemoryModel/SVFLoop.h +4 -1
- package/SVF-linux-aarch64/include/SABER/ProgSlice.h +0 -1
- package/SVF-linux-aarch64/include/SABER/SaberCheckerAPI.h +1 -2
- package/SVF-linux-aarch64/include/SABER/SaberSVFGBuilder.h +5 -1
- package/SVF-linux-aarch64/include/SABER/SrcSnkDDA.h +1 -1
- package/SVF-linux-aarch64/include/SVF-LLVM/LLVMLoopAnalysis.h +0 -1
- package/SVF-linux-aarch64/include/SVF-LLVM/LLVMUtil.h +2 -0
- package/SVF-linux-aarch64/include/SVFIR/ObjTypeInfo.h +3 -2
- package/SVF-linux-aarch64/include/SVFIR/PAGBuilderFromFile.h +1 -0
- package/SVF-linux-aarch64/include/SVFIR/SVFIR.h +3 -1
- package/SVF-linux-aarch64/include/SVFIR/SVFStatements.h +1 -0
- package/SVF-linux-aarch64/include/SVFIR/SVFType.h +0 -59
- package/SVF-linux-aarch64/include/SVFIR/SVFValue.h +2 -3
- package/SVF-linux-aarch64/include/SVFIR/SVFVariables.h +7 -1
- package/SVF-linux-aarch64/include/Util/CDGBuilder.h +8 -2
- package/SVF-linux-aarch64/include/Util/CallGraphBuilder.h +0 -2
- package/SVF-linux-aarch64/include/Util/CoreBitVector.h +1 -1
- package/SVF-linux-aarch64/include/Util/CxtStmt.h +0 -2
- package/SVF-linux-aarch64/include/Util/DPItem.h +2 -1
- package/SVF-linux-aarch64/include/Util/ExtAPI.h +3 -4
- package/SVF-linux-aarch64/include/Util/GeneralType.h +52 -48
- package/SVF-linux-aarch64/include/Util/Hash.h +56 -0
- package/SVF-linux-aarch64/include/Util/NodeIDAllocator.h +1 -1
- package/SVF-linux-aarch64/include/Util/Options.h +0 -1
- package/SVF-linux-aarch64/include/Util/PTAStat.h +3 -4
- package/SVF-linux-aarch64/include/Util/SVFBugReport.h +7 -9
- package/SVF-linux-aarch64/include/Util/SVFLoopAndDomInfo.h +7 -4
- package/SVF-linux-aarch64/include/Util/SVFStat.h +1 -0
- package/SVF-linux-aarch64/include/Util/SVFUtil.h +5 -5
- package/SVF-linux-aarch64/include/Util/SparseBitVector.h +13 -0
- package/SVF-linux-aarch64/include/Util/ThreadAPI.h +1 -1
- package/SVF-linux-aarch64/include/Util/WorkList.h +2 -2
- package/SVF-linux-aarch64/include/Util/Z3Expr.h +1 -1
- package/SVF-linux-aarch64/include/WPA/Andersen.h +3 -3
- package/SVF-linux-aarch64/include/WPA/AndersenPWC.h +2 -1
- package/SVF-linux-aarch64/include/WPA/CSC.h +5 -5
- package/SVF-linux-aarch64/include/WPA/FlowSensitive.h +1 -2
- package/SVF-linux-aarch64/include/WPA/Steensgaard.h +5 -0
- package/SVF-linux-aarch64/include/WPA/TypeAnalysis.h +5 -0
- package/SVF-linux-aarch64/include/WPA/VersionedFlowSensitive.h +1 -4
- package/SVF-linux-aarch64/include/WPA/WPAFSSolver.h +1 -0
- package/SVF-linux-aarch64/include/WPA/WPAPass.h +5 -1
- package/SVF-linux-aarch64/include/WPA/WPASolver.h +1 -0
- package/SVF-linux-aarch64/include/WPA/WPAStat.h +1 -0
- package/SVF-linux-aarch64/lib/cmake/SVF/SVFTargets.cmake +1 -1
- package/SVF-linux-aarch64/lib/libSvfCore.so.3.4 +0 -0
- package/SVF-linux-aarch64/lib/libSvfLLVM.so.3.4 +0 -0
- package/SVF-linux-x86_64/bin/ae +0 -0
- package/SVF-linux-x86_64/bin/mta +0 -0
- package/SVF-linux-x86_64/bin/saber +0 -0
- package/SVF-linux-x86_64/bin/svf-ex +0 -0
- package/SVF-linux-x86_64/bin/wpa +0 -0
- package/SVF-linux-x86_64/include/AE/Core/AbstractState.h +1 -1
- package/SVF-linux-x86_64/include/AE/Core/ICFGWTO.h +4 -1
- package/SVF-linux-x86_64/include/AE/Core/NumericValue.h +2 -1
- package/SVF-linux-x86_64/include/AE/Core/RelExeState.h +1 -0
- package/SVF-linux-x86_64/include/AE/Core/RelationSolver.h +5 -1
- package/SVF-linux-x86_64/include/AE/Svfexe/AbsExtAPI.h +9 -3
- package/SVF-linux-x86_64/include/AE/Svfexe/SparseAbstractInterpretation.h +3 -1
- package/SVF-linux-x86_64/include/CFL/CFGNormalizer.h +2 -1
- package/SVF-linux-x86_64/include/CFL/CFGrammar.h +8 -4
- package/SVF-linux-x86_64/include/CFL/CFLAlias.h +3 -2
- package/SVF-linux-x86_64/include/CFL/CFLBase.h +4 -9
- package/SVF-linux-x86_64/include/CFL/CFLGramGraphChecker.h +3 -1
- package/SVF-linux-x86_64/include/CFL/CFLGraphBuilder.h +1 -0
- package/SVF-linux-x86_64/include/CFL/CFLSVFGBuilder.h +5 -0
- package/SVF-linux-x86_64/include/CFL/CFLSolver.h +2 -1
- package/SVF-linux-x86_64/include/CFL/CFLStat.h +2 -2
- package/SVF-linux-x86_64/include/CFL/CFLVF.h +5 -2
- package/SVF-linux-x86_64/include/CFL/GrammarBuilder.h +3 -1
- package/SVF-linux-x86_64/include/DDA/ContextDDA.h +1 -0
- package/SVF-linux-x86_64/include/DDA/DDAClient.h +2 -2
- package/SVF-linux-x86_64/include/DDA/DDAPass.h +5 -1
- package/SVF-linux-x86_64/include/DDA/DDAStat.h +2 -1
- package/SVF-linux-x86_64/include/DDA/DDAVFSolver.h +3 -1
- package/SVF-linux-x86_64/include/DDA/FlowDDA.h +2 -1
- package/SVF-linux-x86_64/include/Graphs/CDG.h +6 -0
- package/SVF-linux-x86_64/include/Graphs/ICFGNode.h +1 -0
- package/SVF-linux-x86_64/include/Graphs/IRGraph.h +2 -3
- package/SVF-linux-x86_64/include/Graphs/SCC.h +4 -3
- package/SVF-linux-x86_64/include/Graphs/WTO.h +2 -3
- package/SVF-linux-x86_64/include/MSSA/MSSAMuChi.h +2 -1
- package/SVF-linux-x86_64/include/MSSA/MemPartition.h +1 -0
- package/SVF-linux-x86_64/include/MSSA/MemRegion.h +6 -2
- package/SVF-linux-x86_64/include/MSSA/SVFGBuilder.h +1 -1
- package/SVF-linux-x86_64/include/MTA/MHP.h +1 -0
- package/SVF-linux-x86_64/include/MTA/MTA.h +1 -5
- package/SVF-linux-x86_64/include/MTA/TCT.h +3 -2
- package/SVF-linux-x86_64/include/MemoryModel/AbstractPointsToDS.h +0 -2
- package/SVF-linux-x86_64/include/MemoryModel/AccessPath.h +6 -2
- package/SVF-linux-x86_64/include/MemoryModel/MutablePointsToDS.h +0 -1
- package/SVF-linux-x86_64/include/MemoryModel/PersistentPointsToCache.h +1 -1
- package/SVF-linux-x86_64/include/MemoryModel/PersistentPointsToDS.h +0 -1
- package/SVF-linux-x86_64/include/MemoryModel/PointerAnalysis.h +2 -7
- package/SVF-linux-x86_64/include/MemoryModel/PointerAnalysisImpl.h +5 -1
- package/SVF-linux-x86_64/include/MemoryModel/PointsTo.h +2 -1
- package/SVF-linux-x86_64/include/MemoryModel/SVFLoop.h +4 -1
- package/SVF-linux-x86_64/include/SABER/ProgSlice.h +0 -1
- package/SVF-linux-x86_64/include/SABER/SaberCheckerAPI.h +1 -2
- package/SVF-linux-x86_64/include/SABER/SaberSVFGBuilder.h +5 -1
- package/SVF-linux-x86_64/include/SABER/SrcSnkDDA.h +1 -1
- package/SVF-linux-x86_64/include/SVF-LLVM/LLVMLoopAnalysis.h +0 -1
- package/SVF-linux-x86_64/include/SVF-LLVM/LLVMUtil.h +2 -0
- package/SVF-linux-x86_64/include/SVFIR/ObjTypeInfo.h +3 -2
- package/SVF-linux-x86_64/include/SVFIR/PAGBuilderFromFile.h +1 -0
- package/SVF-linux-x86_64/include/SVFIR/SVFIR.h +3 -1
- package/SVF-linux-x86_64/include/SVFIR/SVFStatements.h +1 -0
- package/SVF-linux-x86_64/include/SVFIR/SVFType.h +0 -59
- package/SVF-linux-x86_64/include/SVFIR/SVFValue.h +2 -3
- package/SVF-linux-x86_64/include/SVFIR/SVFVariables.h +7 -1
- package/SVF-linux-x86_64/include/Util/CDGBuilder.h +8 -2
- package/SVF-linux-x86_64/include/Util/CallGraphBuilder.h +0 -2
- package/SVF-linux-x86_64/include/Util/CoreBitVector.h +1 -1
- package/SVF-linux-x86_64/include/Util/CxtStmt.h +0 -2
- package/SVF-linux-x86_64/include/Util/DPItem.h +2 -1
- package/SVF-linux-x86_64/include/Util/ExtAPI.h +3 -4
- package/SVF-linux-x86_64/include/Util/GeneralType.h +52 -48
- package/SVF-linux-x86_64/include/Util/Hash.h +56 -0
- package/SVF-linux-x86_64/include/Util/NodeIDAllocator.h +1 -1
- package/SVF-linux-x86_64/include/Util/Options.h +0 -1
- package/SVF-linux-x86_64/include/Util/PTAStat.h +3 -4
- package/SVF-linux-x86_64/include/Util/SVFBugReport.h +7 -9
- package/SVF-linux-x86_64/include/Util/SVFLoopAndDomInfo.h +7 -4
- package/SVF-linux-x86_64/include/Util/SVFStat.h +1 -0
- package/SVF-linux-x86_64/include/Util/SVFUtil.h +5 -5
- package/SVF-linux-x86_64/include/Util/SparseBitVector.h +13 -0
- package/SVF-linux-x86_64/include/Util/ThreadAPI.h +1 -1
- package/SVF-linux-x86_64/include/Util/WorkList.h +2 -2
- package/SVF-linux-x86_64/include/Util/Z3Expr.h +1 -1
- package/SVF-linux-x86_64/include/WPA/Andersen.h +3 -3
- package/SVF-linux-x86_64/include/WPA/AndersenPWC.h +2 -1
- package/SVF-linux-x86_64/include/WPA/CSC.h +5 -5
- package/SVF-linux-x86_64/include/WPA/FlowSensitive.h +1 -2
- package/SVF-linux-x86_64/include/WPA/Steensgaard.h +5 -0
- package/SVF-linux-x86_64/include/WPA/TypeAnalysis.h +5 -0
- package/SVF-linux-x86_64/include/WPA/VersionedFlowSensitive.h +1 -4
- package/SVF-linux-x86_64/include/WPA/WPAFSSolver.h +1 -0
- package/SVF-linux-x86_64/include/WPA/WPAPass.h +5 -1
- package/SVF-linux-x86_64/include/WPA/WPASolver.h +1 -0
- package/SVF-linux-x86_64/include/WPA/WPAStat.h +1 -0
- package/SVF-linux-x86_64/lib/cmake/SVF/SVFTargets.cmake +1 -1
- package/SVF-linux-x86_64/lib/libSvfCore.so.3.4 +0 -0
- package/SVF-linux-x86_64/lib/libSvfLLVM.so.3.4 +0 -0
- package/SVF-osx/bin/ae +0 -0
- package/SVF-osx/bin/cfl +0 -0
- package/SVF-osx/bin/dvf +0 -0
- package/SVF-osx/bin/llvm2svf +0 -0
- package/SVF-osx/bin/mta +0 -0
- package/SVF-osx/bin/saber +0 -0
- package/SVF-osx/bin/svf-ex +0 -0
- package/SVF-osx/bin/wpa +0 -0
- package/SVF-osx/include/AE/Core/AbstractState.h +1 -1
- package/SVF-osx/include/AE/Core/ICFGWTO.h +4 -1
- package/SVF-osx/include/AE/Core/NumericValue.h +2 -1
- package/SVF-osx/include/AE/Core/RelExeState.h +1 -0
- package/SVF-osx/include/AE/Core/RelationSolver.h +5 -1
- package/SVF-osx/include/AE/Svfexe/AbsExtAPI.h +9 -3
- package/SVF-osx/include/AE/Svfexe/SparseAbstractInterpretation.h +3 -1
- package/SVF-osx/include/CFL/CFGNormalizer.h +2 -1
- package/SVF-osx/include/CFL/CFGrammar.h +8 -4
- package/SVF-osx/include/CFL/CFLAlias.h +3 -2
- package/SVF-osx/include/CFL/CFLBase.h +4 -9
- package/SVF-osx/include/CFL/CFLGramGraphChecker.h +3 -1
- package/SVF-osx/include/CFL/CFLGraphBuilder.h +1 -0
- package/SVF-osx/include/CFL/CFLSVFGBuilder.h +5 -0
- package/SVF-osx/include/CFL/CFLSolver.h +2 -1
- package/SVF-osx/include/CFL/CFLStat.h +2 -2
- package/SVF-osx/include/CFL/CFLVF.h +5 -2
- package/SVF-osx/include/CFL/GrammarBuilder.h +3 -1
- package/SVF-osx/include/DDA/ContextDDA.h +1 -0
- package/SVF-osx/include/DDA/DDAClient.h +2 -2
- package/SVF-osx/include/DDA/DDAPass.h +5 -1
- package/SVF-osx/include/DDA/DDAStat.h +2 -1
- package/SVF-osx/include/DDA/DDAVFSolver.h +3 -1
- package/SVF-osx/include/DDA/FlowDDA.h +2 -1
- package/SVF-osx/include/Graphs/CDG.h +6 -0
- package/SVF-osx/include/Graphs/ICFGNode.h +1 -0
- package/SVF-osx/include/Graphs/IRGraph.h +2 -3
- package/SVF-osx/include/Graphs/SCC.h +4 -3
- package/SVF-osx/include/Graphs/WTO.h +2 -3
- package/SVF-osx/include/MSSA/MSSAMuChi.h +2 -1
- package/SVF-osx/include/MSSA/MemPartition.h +1 -0
- package/SVF-osx/include/MSSA/MemRegion.h +6 -2
- package/SVF-osx/include/MSSA/SVFGBuilder.h +1 -1
- package/SVF-osx/include/MTA/MHP.h +1 -0
- package/SVF-osx/include/MTA/MTA.h +1 -5
- package/SVF-osx/include/MTA/TCT.h +3 -2
- package/SVF-osx/include/MemoryModel/AbstractPointsToDS.h +0 -2
- package/SVF-osx/include/MemoryModel/AccessPath.h +6 -2
- package/SVF-osx/include/MemoryModel/MutablePointsToDS.h +0 -1
- package/SVF-osx/include/MemoryModel/PersistentPointsToCache.h +1 -1
- package/SVF-osx/include/MemoryModel/PersistentPointsToDS.h +0 -1
- package/SVF-osx/include/MemoryModel/PointerAnalysis.h +2 -7
- package/SVF-osx/include/MemoryModel/PointerAnalysisImpl.h +5 -1
- package/SVF-osx/include/MemoryModel/PointsTo.h +2 -1
- package/SVF-osx/include/MemoryModel/SVFLoop.h +4 -1
- package/SVF-osx/include/SABER/ProgSlice.h +0 -1
- package/SVF-osx/include/SABER/SaberCheckerAPI.h +1 -2
- package/SVF-osx/include/SABER/SaberSVFGBuilder.h +5 -1
- package/SVF-osx/include/SABER/SrcSnkDDA.h +1 -1
- package/SVF-osx/include/SVF-LLVM/LLVMLoopAnalysis.h +0 -1
- package/SVF-osx/include/SVF-LLVM/LLVMUtil.h +2 -0
- package/SVF-osx/include/SVFIR/ObjTypeInfo.h +3 -2
- package/SVF-osx/include/SVFIR/PAGBuilderFromFile.h +1 -0
- package/SVF-osx/include/SVFIR/SVFIR.h +3 -1
- package/SVF-osx/include/SVFIR/SVFStatements.h +1 -0
- package/SVF-osx/include/SVFIR/SVFType.h +0 -59
- package/SVF-osx/include/SVFIR/SVFValue.h +2 -3
- package/SVF-osx/include/SVFIR/SVFVariables.h +7 -1
- package/SVF-osx/include/Util/CDGBuilder.h +8 -2
- package/SVF-osx/include/Util/CallGraphBuilder.h +0 -2
- package/SVF-osx/include/Util/CoreBitVector.h +1 -1
- package/SVF-osx/include/Util/CxtStmt.h +0 -2
- package/SVF-osx/include/Util/DPItem.h +2 -1
- package/SVF-osx/include/Util/ExtAPI.h +3 -4
- package/SVF-osx/include/Util/GeneralType.h +52 -48
- package/SVF-osx/include/Util/Hash.h +56 -0
- package/SVF-osx/include/Util/NodeIDAllocator.h +1 -1
- package/SVF-osx/include/Util/Options.h +0 -1
- package/SVF-osx/include/Util/PTAStat.h +3 -4
- package/SVF-osx/include/Util/SVFBugReport.h +7 -9
- package/SVF-osx/include/Util/SVFLoopAndDomInfo.h +7 -4
- package/SVF-osx/include/Util/SVFStat.h +1 -0
- package/SVF-osx/include/Util/SVFUtil.h +5 -5
- package/SVF-osx/include/Util/SparseBitVector.h +13 -0
- package/SVF-osx/include/Util/ThreadAPI.h +1 -1
- package/SVF-osx/include/Util/WorkList.h +2 -2
- package/SVF-osx/include/Util/Z3Expr.h +1 -1
- package/SVF-osx/include/WPA/Andersen.h +3 -3
- package/SVF-osx/include/WPA/AndersenPWC.h +2 -1
- package/SVF-osx/include/WPA/CSC.h +5 -5
- package/SVF-osx/include/WPA/FlowSensitive.h +1 -2
- package/SVF-osx/include/WPA/Steensgaard.h +5 -0
- package/SVF-osx/include/WPA/TypeAnalysis.h +5 -0
- package/SVF-osx/include/WPA/VersionedFlowSensitive.h +1 -4
- package/SVF-osx/include/WPA/WPAFSSolver.h +1 -0
- package/SVF-osx/include/WPA/WPAPass.h +5 -1
- package/SVF-osx/include/WPA/WPASolver.h +1 -0
- package/SVF-osx/include/WPA/WPAStat.h +1 -0
- package/SVF-osx/lib/cmake/SVF/SVFTargets.cmake +1 -1
- package/SVF-osx/lib/extapi.bc +2 -2
- package/SVF-osx/lib/libSvfCore.3.4.dylib +0 -0
- package/SVF-osx/lib/libSvfLLVM.3.4.dylib +0 -0
- package/package.json +1 -1
|
@@ -1,34 +1,66 @@
|
|
|
1
|
-
name: svf-
|
|
1
|
+
name: svf-publish
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
pull_request:
|
|
5
8
|
|
|
6
9
|
permissions:
|
|
7
10
|
contents: read
|
|
8
|
-
id-token: write
|
|
11
|
+
id-token: write
|
|
9
12
|
|
|
10
13
|
jobs:
|
|
11
14
|
build:
|
|
15
|
+
if: github.event_name == 'push'
|
|
12
16
|
runs-on: ubuntu-latest
|
|
13
17
|
environment: npm-publish
|
|
18
|
+
|
|
14
19
|
steps:
|
|
15
20
|
- uses: actions/checkout@v4
|
|
16
21
|
|
|
17
22
|
- uses: actions/setup-node@v4
|
|
18
23
|
with:
|
|
19
|
-
node-version:
|
|
20
|
-
registry-url: https://registry.npmjs.org/
|
|
21
|
-
|
|
24
|
+
node-version: 22.14.0
|
|
25
|
+
registry-url: "https://registry.npmjs.org/"
|
|
26
|
+
|
|
27
|
+
- name: Update npm
|
|
28
|
+
run: npm install -g npm@11
|
|
29
|
+
|
|
22
30
|
- name: publish-svf-lib
|
|
23
|
-
env:
|
|
24
|
-
NODE_AUTH_TOKEN: ""
|
|
25
|
-
NPM_CONFIG_USERCONFIG: ""
|
|
26
31
|
run: |
|
|
27
|
-
|
|
28
|
-
|
|
32
|
+
node --version
|
|
33
|
+
npm --version
|
|
29
34
|
cat package.json
|
|
30
35
|
npm publish --access public
|
|
31
36
|
|
|
37
|
+
- name: Verify published package
|
|
38
|
+
run: |
|
|
39
|
+
VERSION=$(node -p "require('./package.json').version")
|
|
40
|
+
echo "Checking svf-lib@$VERSION on npm..."
|
|
41
|
+
|
|
42
|
+
for i in {1..10}; do
|
|
43
|
+
if npm view svf-lib@$VERSION version; then
|
|
44
|
+
break
|
|
45
|
+
fi
|
|
46
|
+
echo "Package not visible yet, retrying in 10s..."
|
|
47
|
+
sleep 10
|
|
48
|
+
done
|
|
49
|
+
|
|
50
|
+
npm pack svf-lib@$VERSION
|
|
51
|
+
|
|
52
|
+
echo "Listing published tarball contents..."
|
|
53
|
+
tar -tzf svf-lib-$VERSION.tgz | tee published-files.txt
|
|
54
|
+
|
|
55
|
+
echo "Checking Linux x64 binary..."
|
|
56
|
+
grep -E 'SVF-linux-x86_64|linux.*x64|linux.*x86_64' published-files.txt
|
|
57
|
+
|
|
58
|
+
echo "Checking Linux ARM binary..."
|
|
59
|
+
grep -E 'SVF-linux-arm64|SVF-linux-aarch64|linux.*arm64|linux.*aarch64' published-files.txt
|
|
60
|
+
|
|
61
|
+
echo "Checking macOS binary..."
|
|
62
|
+
grep -E 'SVF-darwin|SVF-macos|SVF-osx|darwin|macos' published-files.txt
|
|
63
|
+
|
|
32
64
|
trigger-svf-python:
|
|
33
65
|
if: github.event_name == 'push' # Only run on push events
|
|
34
66
|
needs: build
|
package/SVF-linux-aarch64/bin/ae
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -34,13 +34,16 @@
|
|
|
34
34
|
#ifndef SVF_ICFGWTO_H
|
|
35
35
|
#define SVF_ICFGWTO_H
|
|
36
36
|
|
|
37
|
+
#include <vector>
|
|
38
|
+
|
|
37
39
|
#include "Graphs/ICFG.h"
|
|
38
40
|
#include "Graphs/WTO.h"
|
|
39
|
-
#include "Graphs/CallGraph.h"
|
|
40
41
|
|
|
41
42
|
namespace SVF
|
|
42
43
|
{
|
|
43
44
|
|
|
45
|
+
class FunObjVar;
|
|
46
|
+
|
|
44
47
|
typedef WTOComponent<ICFG> ICFGWTOComp;
|
|
45
48
|
typedef WTONode<ICFG> ICFGSingletonWTO;
|
|
46
49
|
typedef WTOCycle<ICFG> ICFGCycleWTO;
|
|
@@ -33,11 +33,12 @@
|
|
|
33
33
|
#ifndef SVF_NUMERICVALUE_H
|
|
34
34
|
#define SVF_NUMERICVALUE_H
|
|
35
35
|
|
|
36
|
-
#include "SVFIR/SVFType.h"
|
|
37
36
|
#include <cfloat> // For DBL_MAX
|
|
38
37
|
#include <cmath>
|
|
39
38
|
#include <utility>
|
|
40
39
|
|
|
40
|
+
#include "Util/GeneralType.h"
|
|
41
|
+
|
|
41
42
|
#define epsilon std::numeric_limits<double>::epsilon();
|
|
42
43
|
namespace SVF
|
|
43
44
|
{
|
|
@@ -30,11 +30,15 @@
|
|
|
30
30
|
#ifndef Z3_EXAMPLE_RELATIONSOLVER_H
|
|
31
31
|
#define Z3_EXAMPLE_RELATIONSOLVER_H
|
|
32
32
|
|
|
33
|
-
#include "AE/Core/
|
|
33
|
+
#include "AE/Core/NumericValue.h"
|
|
34
34
|
#include "Util/Z3Expr.h"
|
|
35
|
+
#include "Util/GeneralType.h"
|
|
35
36
|
|
|
36
37
|
namespace SVF
|
|
37
38
|
{
|
|
39
|
+
|
|
40
|
+
class AbstractState;
|
|
41
|
+
|
|
38
42
|
class RelationSolver
|
|
39
43
|
{
|
|
40
44
|
public:
|
|
@@ -25,15 +25,21 @@
|
|
|
25
25
|
// Author: Xiao Cheng, Jiawei Wang
|
|
26
26
|
//
|
|
27
27
|
#pragma once
|
|
28
|
+
|
|
29
|
+
#include <functional>
|
|
30
|
+
|
|
28
31
|
#include "AE/Core/AbstractState.h"
|
|
29
|
-
#include "AE/Core/
|
|
30
|
-
#include "
|
|
31
|
-
#include "Util/
|
|
32
|
+
#include "AE/Core/IntervalValue.h"
|
|
33
|
+
#include "SVFIR/SVFIR.h"
|
|
34
|
+
#include "Util/GeneralType.h"
|
|
32
35
|
|
|
33
36
|
namespace SVF
|
|
34
37
|
{
|
|
35
38
|
|
|
36
39
|
class AbstractInterpretation;
|
|
40
|
+
class AbstractState;
|
|
41
|
+
class CallICFGNode;
|
|
42
|
+
class ICFGNode;
|
|
37
43
|
|
|
38
44
|
/**
|
|
39
45
|
* @class AbsExtAPI
|
|
@@ -23,9 +23,11 @@
|
|
|
23
23
|
#ifndef INCLUDE_AE_SVFEXE_SPARSEABSTRACTINTERPRETATION_H_
|
|
24
24
|
#define INCLUDE_AE_SVFEXE_SPARSEABSTRACTINTERPRETATION_H_
|
|
25
25
|
|
|
26
|
-
#include "AE/Svfexe/AbstractInterpretation.h"
|
|
27
26
|
#include <memory>
|
|
28
27
|
|
|
28
|
+
#include "AE/Svfexe/AbstractInterpretation.h"
|
|
29
|
+
#include "MSSA/SVFGBuilder.h"
|
|
30
|
+
|
|
29
31
|
namespace SVF
|
|
30
32
|
{
|
|
31
33
|
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
#define INCLUDE_CFL_CFGNORMALIZER_H_
|
|
32
32
|
|
|
33
33
|
#include "CFGrammar.h"
|
|
34
|
+
#include "Util/GeneralType.h"
|
|
34
35
|
|
|
35
36
|
namespace SVF
|
|
36
37
|
{
|
|
@@ -81,4 +82,4 @@ private:
|
|
|
81
82
|
|
|
82
83
|
} // End namespace SVF
|
|
83
84
|
|
|
84
|
-
#endif /* INCLUDE_CFL_CFGNORMALIZER_H_*/
|
|
85
|
+
#endif /* INCLUDE_CFL_CFGNORMALIZER_H_*/
|
|
@@ -28,7 +28,11 @@
|
|
|
28
28
|
*/
|
|
29
29
|
#ifndef CFLGrammar_H_
|
|
30
30
|
#define CFLGrammar_H_
|
|
31
|
-
|
|
31
|
+
|
|
32
|
+
#include <deque>
|
|
33
|
+
#include <vector>
|
|
34
|
+
|
|
35
|
+
#include "Util/GeneralType.h"
|
|
32
36
|
|
|
33
37
|
namespace SVF
|
|
34
38
|
{
|
|
@@ -147,11 +151,11 @@ public:
|
|
|
147
151
|
template<typename Key, typename Value, typename Hash = SymbolHash,
|
|
148
152
|
typename KeyEqual = std::equal_to<Key>,
|
|
149
153
|
typename Allocator = std::allocator<std::pair<const Key, Value>>>
|
|
150
|
-
using SymbolMap =
|
|
154
|
+
using SymbolMap = Map<Key, Value, Hash, KeyEqual, Allocator>;
|
|
151
155
|
|
|
152
156
|
template <typename Key, typename Hash = SymbolVectorHash, typename KeyEqual = std::equal_to<Key>,
|
|
153
157
|
typename Allocator = std::allocator<Key>>
|
|
154
|
-
using SymbolSet =
|
|
158
|
+
using SymbolSet = Set<Key, Hash, KeyEqual, Allocator>;
|
|
155
159
|
|
|
156
160
|
typedef std::vector<Symbol> Production;
|
|
157
161
|
typedef SymbolSet<Production> Productions;
|
|
@@ -465,4 +469,4 @@ private:
|
|
|
465
469
|
};
|
|
466
470
|
|
|
467
471
|
}
|
|
468
|
-
#endif /* CFLGrammar_H_ */
|
|
472
|
+
#endif /* CFLGrammar_H_ */
|
|
@@ -32,12 +32,13 @@
|
|
|
32
32
|
|
|
33
33
|
#include "CFL/CFLBase.h"
|
|
34
34
|
#include "CFL/CFLStat.h"
|
|
35
|
+
#include "MemoryModel/PTATY.h"
|
|
36
|
+
#include "SVFIR/SVFType.h"
|
|
37
|
+
#include "Util/GeneralType.h"
|
|
35
38
|
|
|
36
39
|
namespace SVF
|
|
37
40
|
{
|
|
38
41
|
|
|
39
|
-
class CFLStat;
|
|
40
|
-
|
|
41
42
|
class CFLAlias : public CFLBase
|
|
42
43
|
{
|
|
43
44
|
|
|
@@ -31,21 +31,16 @@
|
|
|
31
31
|
#define INCLUDE_CFL_CFLBASE_H_
|
|
32
32
|
|
|
33
33
|
#include "CFL/CFLSolver.h"
|
|
34
|
-
#include "CFL/
|
|
35
|
-
#include "CFL/GrammarBuilder.h"
|
|
36
|
-
#include "CFL/CFLGraphBuilder.h"
|
|
37
|
-
#include "CFL/CFLGramGraphChecker.h"
|
|
38
|
-
#include "MemoryModel/PointerAnalysis.h"
|
|
34
|
+
#include "CFL/CFGrammar.h"
|
|
39
35
|
#include "MemoryModel/PointerAnalysisImpl.h"
|
|
40
|
-
#include "
|
|
41
|
-
#include "Util/Options.h"
|
|
42
|
-
#include "Util/PTAStat.h"
|
|
43
|
-
#include "SVFIR/SVFType.h"
|
|
36
|
+
#include "MemoryModel/PTATY.h"
|
|
44
37
|
|
|
45
38
|
namespace SVF
|
|
46
39
|
{
|
|
47
40
|
|
|
41
|
+
class CFLGraph;
|
|
48
42
|
class CFLStat;
|
|
43
|
+
class SVFIR;
|
|
49
44
|
|
|
50
45
|
/// CFL Client Base Class
|
|
51
46
|
class CFLBase : public BVDataPTAImpl
|
|
@@ -30,7 +30,9 @@
|
|
|
30
30
|
#define INCLUDE_CFL_CFLGRAMGRAPHCHECKER_H_
|
|
31
31
|
|
|
32
32
|
#include "CFL/CFGrammar.h"
|
|
33
|
+
#include "CFL/CFLGraphBuilder.h"
|
|
33
34
|
#include "Graphs/CFLGraph.h"
|
|
35
|
+
|
|
34
36
|
namespace SVF
|
|
35
37
|
{
|
|
36
38
|
|
|
@@ -71,4 +73,4 @@ public:
|
|
|
71
73
|
|
|
72
74
|
}// SVF
|
|
73
75
|
|
|
74
|
-
#endif /* INCLUDE_CFL_CFLGRAMGRAPHCHECKER_H_*/
|
|
76
|
+
#endif /* INCLUDE_CFL_CFLGRAMGRAPHCHECKER_H_*/
|
|
@@ -27,11 +27,16 @@
|
|
|
27
27
|
#ifndef SVF_CFLSVFGBUILDER_H
|
|
28
28
|
#define SVF_CFLSVFGBUILDER_H
|
|
29
29
|
|
|
30
|
+
#include "Graphs/SVFG.h"
|
|
30
31
|
#include "SABER/SaberSVFGBuilder.h"
|
|
32
|
+
#include "Util/WorkList.h"
|
|
33
|
+
#include "Util/GeneralType.h"
|
|
31
34
|
|
|
32
35
|
namespace SVF
|
|
33
36
|
{
|
|
34
37
|
|
|
38
|
+
class BVDataPTAImpl;
|
|
39
|
+
|
|
35
40
|
class CFLSVFGBuilder: public SaberSVFGBuilder
|
|
36
41
|
{
|
|
37
42
|
public:
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
#include "Graphs/CFLGraph.h"
|
|
34
34
|
#include "CFL/CFGrammar.h"
|
|
35
|
+
#include "Util/GeneralType.h"
|
|
35
36
|
#include "Util/WorkList.h"
|
|
36
37
|
|
|
37
38
|
using namespace std;
|
|
@@ -371,4 +372,4 @@ public:
|
|
|
371
372
|
};
|
|
372
373
|
}
|
|
373
374
|
|
|
374
|
-
#endif /* INCLUDE_CFL_CFLSolver_H_*/
|
|
375
|
+
#endif /* INCLUDE_CFL_CFLSolver_H_*/
|
|
@@ -32,12 +32,15 @@
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
#include "CFL/CFLBase.h"
|
|
35
|
-
#include "CFL/CFLStat.h"
|
|
36
35
|
#include "CFL/CFLSVFGBuilder.h"
|
|
37
|
-
#include "
|
|
36
|
+
#include "Graphs/SVFG.h"
|
|
37
|
+
#include "MemoryModel/PTATY.h"
|
|
38
38
|
|
|
39
39
|
namespace SVF
|
|
40
40
|
{
|
|
41
|
+
|
|
42
|
+
class SVFIR;
|
|
43
|
+
|
|
41
44
|
class CFLVF : public CFLBase
|
|
42
45
|
{
|
|
43
46
|
|
|
@@ -30,11 +30,13 @@
|
|
|
30
30
|
#ifndef INCLUDE_CFL_GRAMMARBUILDER_H_
|
|
31
31
|
#define INCLUDE_CFL_GRAMMARBUILDER_H_
|
|
32
32
|
|
|
33
|
-
#include "
|
|
33
|
+
#include "Util/GeneralType.h"
|
|
34
34
|
|
|
35
35
|
namespace SVF
|
|
36
36
|
{
|
|
37
37
|
|
|
38
|
+
class GrammarBase;
|
|
39
|
+
|
|
38
40
|
/**
|
|
39
41
|
* Build Grammar from a user specified grammar text
|
|
40
42
|
*
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
#define DDACLIENT_H_
|
|
36
36
|
|
|
37
37
|
#include "SVFIR/SVFIR.h"
|
|
38
|
-
#include "MemoryModel/PointerAnalysisImpl.h"
|
|
39
38
|
#include "Graphs/SVFG.h"
|
|
40
|
-
#include "SVFIR/SVFValue.h"
|
|
41
39
|
|
|
42
40
|
namespace SVF
|
|
43
41
|
{
|
|
44
42
|
|
|
43
|
+
class PointerAnalysis;
|
|
44
|
+
|
|
45
45
|
/**
|
|
46
46
|
* General DDAClient which queries all top level pointers by default.
|
|
47
47
|
*/
|
|
@@ -33,12 +33,16 @@
|
|
|
33
33
|
#define DDAPASS_H_
|
|
34
34
|
|
|
35
35
|
#include "DDA/DDAClient.h"
|
|
36
|
+
#include "MemoryModel/PointerAnalysis.h"
|
|
36
37
|
#include "Graphs/SCC.h"
|
|
37
|
-
#include "
|
|
38
|
+
#include "Graphs/SVFG.h"
|
|
39
|
+
#include "Util/GeneralType.h"
|
|
38
40
|
|
|
39
41
|
namespace SVF
|
|
40
42
|
{
|
|
41
43
|
|
|
44
|
+
class PointerAnalysis;
|
|
45
|
+
|
|
42
46
|
/*!
|
|
43
47
|
* Demand-Driven Pointer Analysis.
|
|
44
48
|
* This class performs various pointer analysis on the given module.
|
|
@@ -30,12 +30,14 @@
|
|
|
30
30
|
#ifndef VALUEFLOWDDA_H_
|
|
31
31
|
#define VALUEFLOWDDA_H_
|
|
32
32
|
|
|
33
|
+
#include <algorithm>
|
|
34
|
+
|
|
33
35
|
#include "DDA/DDAStat.h"
|
|
34
36
|
#include "Graphs/SCC.h"
|
|
35
37
|
#include "MSSA/SVFGBuilder.h"
|
|
36
38
|
#include "MemoryModel/PointsTo.h"
|
|
37
39
|
#include "WPA/Andersen.h"
|
|
38
|
-
#include
|
|
40
|
+
#include "Util/GeneralType.h"
|
|
39
41
|
|
|
40
42
|
namespace SVF
|
|
41
43
|
{
|
|
@@ -30,12 +30,18 @@
|
|
|
30
30
|
#ifndef SVF_CONTROLDG_H
|
|
31
31
|
#define SVF_CONTROLDG_H
|
|
32
32
|
|
|
33
|
+
#include "Graphs/GenericGraph.h"
|
|
34
|
+
#include "Graphs/GraphPrinter.h"
|
|
35
|
+
#include "Graphs/ICFGNode.h"
|
|
33
36
|
#include "SVFIR/SVFIR.h"
|
|
37
|
+
#include "Util/GeneralType.h"
|
|
38
|
+
#include "Util/SVFUtil.h"
|
|
34
39
|
|
|
35
40
|
namespace SVF
|
|
36
41
|
{
|
|
37
42
|
|
|
38
43
|
class CDGNode;
|
|
44
|
+
class SVFVar;
|
|
39
45
|
|
|
40
46
|
typedef GenericEdge<CDGNode> GenericCDGEdgeTy;
|
|
41
47
|
|
|
@@ -31,17 +31,16 @@
|
|
|
31
31
|
#ifndef IRGRAPH_H_
|
|
32
32
|
#define IRGRAPH_H_
|
|
33
33
|
|
|
34
|
+
#include "Graphs/GenericGraph.h"
|
|
34
35
|
#include "SVFIR/SVFStatements.h"
|
|
35
36
|
#include "SVFIR/SVFVariables.h"
|
|
36
|
-
#include "Util/NodeIDAllocator.h"
|
|
37
|
-
#include "Util/SVFUtil.h"
|
|
38
|
-
#include "Graphs/ICFG.h"
|
|
39
37
|
|
|
40
38
|
namespace SVF
|
|
41
39
|
{
|
|
42
40
|
typedef SVFVar PAGNode;
|
|
43
41
|
typedef SVFStmt PAGEdge;
|
|
44
42
|
|
|
43
|
+
class ICFGNode;
|
|
45
44
|
class ObjTypeInfo;
|
|
46
45
|
|
|
47
46
|
/*
|
|
@@ -40,11 +40,12 @@
|
|
|
40
40
|
#ifndef SCC_H_
|
|
41
41
|
#define SCC_H_
|
|
42
42
|
|
|
43
|
-
#include "SVFIR/SVFValue.h" // for NodeBS
|
|
44
|
-
#include "Util/WorkList.h" // for NodeBS
|
|
45
43
|
#include <limits.h>
|
|
46
44
|
#include <stack>
|
|
47
|
-
|
|
45
|
+
|
|
46
|
+
#include "Graphs/GraphPrinter.h"
|
|
47
|
+
#include "Util/GeneralType.h"
|
|
48
|
+
#include "Util/WorkList.h"
|
|
48
49
|
|
|
49
50
|
namespace SVF
|
|
50
51
|
{
|
|
@@ -34,8 +34,7 @@
|
|
|
34
34
|
#ifndef WTO_H_
|
|
35
35
|
#define WTO_H_
|
|
36
36
|
|
|
37
|
-
#include "
|
|
38
|
-
#include "SVFIR/SVFValue.h"
|
|
37
|
+
#include "Util/GeneralType.h"
|
|
39
38
|
#include <functional>
|
|
40
39
|
|
|
41
40
|
namespace SVF
|
|
@@ -872,4 +871,4 @@ protected:
|
|
|
872
871
|
|
|
873
872
|
} // namespace SVF
|
|
874
873
|
|
|
875
|
-
#endif /* WTO_H_ */
|
|
874
|
+
#endif /* WTO_H_ */
|
|
@@ -34,8 +34,6 @@
|
|
|
34
34
|
#ifndef MEMORYREGION_H_
|
|
35
35
|
#define MEMORYREGION_H_
|
|
36
36
|
|
|
37
|
-
#include "Graphs/ICFG.h"
|
|
38
|
-
#include "Graphs/CallGraph.h"
|
|
39
37
|
#include "Graphs/SCC.h"
|
|
40
38
|
#include "SVFIR/SVFIR.h"
|
|
41
39
|
#include "Util/WorkList.h"
|
|
@@ -47,6 +45,12 @@ namespace SVF
|
|
|
47
45
|
|
|
48
46
|
class BVDataPTAImpl;
|
|
49
47
|
|
|
48
|
+
class CallICFGNode;
|
|
49
|
+
|
|
50
|
+
class CallGraph;
|
|
51
|
+
class CallGraphSCC;
|
|
52
|
+
class CallGraphNode;
|
|
53
|
+
|
|
50
54
|
typedef NodeID MRID;
|
|
51
55
|
typedef NodeID MRVERID;
|
|
52
56
|
typedef NodeID MRVERSION;
|
|
@@ -34,11 +34,6 @@
|
|
|
34
34
|
#ifndef MTA_H_
|
|
35
35
|
#define MTA_H_
|
|
36
36
|
|
|
37
|
-
#include <set>
|
|
38
|
-
#include <vector>
|
|
39
|
-
#include "SVFIR/SVFIR.h"
|
|
40
|
-
#include "SVFIR/SVFValue.h"
|
|
41
|
-
|
|
42
37
|
namespace SVF
|
|
43
38
|
{
|
|
44
39
|
|
|
@@ -49,6 +44,7 @@ class MTAStat;
|
|
|
49
44
|
class TCT;
|
|
50
45
|
class MHP;
|
|
51
46
|
class LockAnalysis;
|
|
47
|
+
class SVFIR;
|
|
52
48
|
|
|
53
49
|
/*!
|
|
54
50
|
* Base data race detector
|