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

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

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

4 مستودعات

Awesome GitHub RepositoriesStack Frame Navigators

Tools for switching execution contexts between different stack frames to inspect local variables and arguments.

Distinct from Frame-by-Frame Debuggers: Candidates focus on animation frames or OS context switching; none cover debugger stack frame scope switching.

Explore 4 awesome GitHub repositories matching development tools & productivity · Stack Frame Navigators. Refine with filters or upvote what's useful.

Awesome Stack Frame Navigators GitHub Repositories

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

    raphw/byte-buddy

    6,856عرض على GitHub↗

    Byte Buddy is a runtime code generation and bytecode manipulation library for Java. It provides a fluent API for creating and modifying Java classes during execution, enabling developers to define class structures, methods, and fields programmatically without requiring a compiler or direct bytecode assembly. The library supports agent-based class transformation, allowing loaded classes to be modified during JVM startup or runtime through a Java agent that intercepts class loading. It offers bytecode-level method interception for fine-grained control over method behavior, annotation-based code

    Automatically computes and inserts stack map frames required by the JVM verifier.

    Javabyte-codedynamic-proxyinstrumentation
    عرض على GitHub↗6,856
  • epasveer/seerالصورة الرمزية لـ epasveer

    epasveer/seer

    3,351عرض على GitHub↗

    Seer is a graphical frontend for GDB that provides a visual interface for inspecting variables, managing breakpoints, and stepping through code. It functions as a low-level debugger visualizer with specialized tools for call stack inspection and register visualization. The project distinguishes itself by integrating low-level program analysis directly into the visual experience, featuring a synchronized assembly overlay that maps CPU registers and assembly instructions to source code lines. It also includes memory bug detection capabilities by randomizing the program starting address during t

    Enables switching the active context to selected stack frames to update variable and source views.

    C++cppdebugdebugger
    عرض على GitHub↗3,351
  • benaadams/ben.demystifierالصورة الرمزية لـ benaadams

    benaadams/Ben.Demystifier

    2,867عرض على GitHub↗

    Ben.Demystifier is a .NET library that transforms raw stack traces into modern C# 7+ syntax. It reads compiler-generated frames produced by async methods, iterators, lambdas, local functions, and generic types, then rewrites them to match the original source code, making exception call stacks and debug output immediately readable. The library resolves common compiler artifacts such as MoveNext frames back into their original async method or iterator names, shows declaring method names and ordinals for lambdas and local functions instead of generated identifiers, and displays resolved generi

    Replaces compiler-generated async frames with original method names for readable stack traces.

    C#aspnet-coredotnetdotnet-core
    عرض على GitHub↗2,867
  • go-errors/errorsالصورة الرمزية لـ go-errors

    go-errors/errors

    1,005عرض على GitHub↗

    errors is a Go error handling library and stack trace utility that wraps standard errors with execution call stacks and contextual information. It captures program execution paths at the exact moment an error is initialized, extracting granular file paths, line numbers, and function symbols from raw program counter addresses. The library maintains parent-child relationships between wrapped errors to allow deep inspection, unwrapping of root causes, and combination of multiple errors into unified structures. It implements standard error interfaces so enhanced error objects can be used intercha

    Extracts granular file paths, line numbers, and function symbols from raw program counter addresses.

    Go
    عرض على GitHub↗1,005
  1. Home
  2. Development Tools & Productivity
  3. Stack Frame Navigators

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

  • Async Stack Frame ResolversReplaces compiler-generated MoveNext frames with original async method names and overloads for clearer call stacks. **Distinct from Stack Frame Navigators:** Distinct from Stack Frame Navigators: focuses on resolving async compiler-generated frames into readable names, not switching between execution contexts.
  • Stack Map Frame GeneratorsAutomatically computes and inserts stack map frames required by the JVM verifier during bytecode generation. **Distinct from Stack Frame Navigators:** Distinct from Stack Frame Navigators: generates stack map frames for bytecode verification, not navigation.