awesome-repositories.com
博客
MCP
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目MCP 服务器关于排名机制媒体报道
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 个仓库

Awesome GitHub RepositoriesInterprocedural Pointer Analysis

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.

Awesome Interprocedural Pointer Analysis GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • ondrajz/go-callvisondrajz 的头像

    ondrajz/go-callvis

    6,488在 GitHub 上查看↗

    Visualize call graph of a Go program using Graphviz

    Uses Go's pointer analysis to resolve indirect function calls through interfaces and pointers.

    Goawesome-gocallgraphgolang
    在 GitHub 上查看↗6,488
  • uber-go/nilawayuber-go 的头像

    uber-go/nilaway

    3,765在 GitHub 上查看↗

    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.

    Gogonil-pointernilability
    在 GitHub 上查看↗3,765
  • svf-tools/svfSVF-tools 的头像

    SVF-tools/SVF

    1,684在 GitHub 上查看↗

    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.

    C++code-analysiscode-securitydependency-analysis
    在 GitHub 上查看↗1,684
  • secure-software-engineering/phasarsecure-software-engineering 的头像

    secure-software-engineering/phasar

    1,045在 GitHub 上查看↗

    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.

    C++ccppdata-flow-analysis
    在 GitHub 上查看↗1,045
  1. Home
  2. Programming Languages & Runtimes
  3. Interprocedural Pointer Analysis

探索子标签

  • Interprocedural Control Flow MappingsConstructs connected function call boundaries and basic block transition paths to model whole-program execution behavior. **Distinct from Interprocedural Pointer Analysis:** Distinct from general interprocedural pointer analysis by specifically focusing on control flow and basic block mapping across functions.
  • Interprocedural Data-Flow SolversAlgorithms that propagate information across function boundaries by iteratively computing state transitions through a global call graph. **Distinct from Interprocedural Pointer Analysis:** Distinct from general pointer analysis: focuses on the iterative solver engine for data-flow propagation rather than just pointer tracking.