awesome-repositories.com
المدونة
MCP
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعخادم MCPحولكيفية ترتيب النتائجالصحافة
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 مستودعات

Awesome GitHub RepositoriesStatic Single Assignment Forms

Intermediate representations where each variable is assigned exactly once to simplify data flow analysis.

Distinct from Intermediate Representations: Specializes general intermediate representations into the specific Static Single Assignment (SSA) form.

Explore 3 awesome GitHub repositories matching programming languages & runtimes · Static Single Assignment Forms. Refine with filters or upvote what's useful.

Awesome Static Single Assignment Forms GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • chai2010/go-ast-bookالصورة الرمزية لـ chai2010

    chai2010/go-ast-book

    5,510عرض على GitHub↗

    go-ast-book is a collection of educational and technical resources focused on abstract syntax tree analysis, compiler development, and static code verification. It provides guides and manuals for parsing, traversing, and analyzing Go source code to extract semantic meaning. The project serves as a reference for building compiler frontends, covering the translation of high-level code into intermediate representations and single static assignment forms. It also provides instructions for using these techniques to develop language tooling and perform static code analysis. The resources cover a b

    Details the transformation of high-level syntax trees into single static assignment form for optimized execution.

    Go
    عرض على GitHub↗5,510
  • llvm-mirror/llvmالصورة الرمزية لـ llvm-mirror

    llvm-mirror/llvm

    4,580عرض على GitHub↗

    LLVM هي بنية تحتية معيارية للمترجمات (compiler infrastructure) وإطار عمل يتكون من مجموعة من المكتبات القابلة لإعادة الاستخدام لبناء واجهات اللغات وأدوات التحسين. تعمل كآلة افتراضية منخفضة المستوى توفر تمثيلاً وسيطاً (intermediate representation) وخط أنابيب للتحسين لتمكين توليد كود مستقل عن لغة البرمجة. يوفر المشروع مجموعة أدوات للترجمة في الوقت الفعلي (JIT compilation)، حيث يقوم بتحويل التمثيلات الوسيطة إلى كود آلة أثناء التشغيل للتنفيذ الفوري. يتيح تصميمه المعياري للمطورين إنشاء واجهات لغات مخصصة وبيئات تشغيل عالية الأداء عبر معماريات مستهدفة متعددة. تغطي البنية التحتية تحسين الكود عالي الأداء وتنسيق سلاسل أدوات البرمجيات عبر المنصات، بما في ذلك دمج المترجمات، وبيئات التشغيل، والمصححات (debuggers).

    Implements an intermediate representation using static single assignment form to simplify data flow analysis and optimization.

    LLVMcode-generationintermediate-representationllvm
    عرض على GitHub↗4,580
  • svf-tools/svfالصورة الرمزية لـ SVF-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

    Annotates indirect memory accesses with explicit definition and use functions to convert address-taken variables into static single assignment form.

    C++code-analysiscode-securitydependency-analysis
    عرض على GitHub↗1,684
  1. Home
  2. Programming Languages & Runtimes
  3. Machine Code Generation
  4. Intermediate Representations
  5. Static Single Assignment Forms

استكشف الوسوم الفرعية

  • MemoryConverts address-taken variables and indirect memory accesses into explicit definition-use chains using inserted use and change functions. **Distinct from Static Single Assignment Forms:** Distinct from general static single assignment forms by focusing on memory SSA conversions for indirect accesses and address-taken variables.
  • Memory SSA Form ConstructionsAnnotates indirect memory accesses with explicit definition and use functions to convert address-taken variables into static single assignment form. **Distinct from Static Single Assignment Forms:** Distinct from general static single assignment forms by focusing specifically on memory-level SSA for indirect accesses and address-taken variables.