ghostscope-compiler 0.1.5

Compiles GhostScope trace definitions into DWARF-aware eBPF programs ready for injection.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! GhostScope script processing module
//!
//! This module handles GS script parsing, AST generation, and compilation
//! into eBPF uprobe configurations.

pub mod ast;
pub mod compiler;
pub mod format_validator;
pub mod parser;

// Re-export main types for convenience
pub use ast::*;
pub use compiler::*;
pub use format_validator::*;
pub use parser::*;