4 مستودعات
Analysis that tracks pointer values across function boundaries and package borders.
Distinct from Function-Pointer Callbacks: Candidates focus on native pointers or UI mouse pointers, not interprocedural data flow.
Explore 4 awesome GitHub repositories matching programming languages & runtimes · Interprocedural Pointer Analysis. Refine with filters or upvote what's useful.
Visualize call graph of a Go program using Graphviz
Uses Go's pointer analysis to resolve indirect function calls through interfaces and pointers.
Nilaway is a static analysis tool and linter plugin for Go designed to identify potential nil pointer dereferences in source code to prevent runtime panics. It functions as an inter-procedural pointer analyzer that tracks data flow across functions and packages to detect memory safety issues. The tool differentiates itself by tracking pointer states through anonymous functions, closures, and struct initializations. It employs a pointer analysis framework that monitors how values flow through a program to determine if a variable is safe to dereference at a specific point. The analyzer can be
Provides inter-procedural pointer analysis to track values across function and package boundaries.
SVF is an open-source static program analysis framework and points-to analysis library that tracks memory references, variable aliases, and data dependencies across whole programs. The platform translates compiled intermediate code formats into unified internal representations, constructing constraint graphs, call graphs, and control-flow graphs to model interprocedural execution behavior and memory state. The framework incorporates specialized engines for flow-sensitive, flow-insensitive, and context-sensitive pointer analysis alongside sparse value-flow graph generation. It features memory
Investigates memory pointer relationships, alias sets, and points-to relations using flow-insensitive and flow-sensitive solvers.
Phasar is a static analysis framework designed for the inspection of software logic through the processing of compiler intermediate representations. It provides a modular pipeline for building program representations, including call graphs, control flow graphs, and type hierarchies, which serve as the foundation for deep structural analysis of software behavior. The framework specializes in interprocedural data flow analysis and pointer alias resolution, enabling the tracking of information movement across function boundaries and the identification of indirect memory access patterns. By lever
Tracks information movement across function boundaries to identify security vulnerabilities and logic errors.