awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectServer MCPDespreCum realizăm clasamentulPresă
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 repository-uri

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

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • raphw/byte-buddyAvatar raphw

    raphw/byte-buddy

    6,856Vezi pe 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
    Vezi pe GitHub↗6,856
  • epasveer/seerAvatar epasveer

    epasveer/seer

    3,351Vezi pe 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
    Vezi pe GitHub↗3,351
  • benaadams/ben.demystifierAvatar benaadams

    benaadams/Ben.Demystifier

    2,867Vezi pe 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
    Vezi pe GitHub↗2,867
  • go-errors/errorsAvatar go-errors

    go-errors/errors

    1,005Vezi pe 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
    Vezi pe GitHub↗1,005
  1. Home
  2. Development Tools & Productivity
  3. Stack Frame Navigators

Explorează sub-etichetele

  • 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.