//! JIT compilation for Shift-Or engine.
//!
//! Compiles the Shift-Or bit-parallel NFA to native code.
//! This eliminates interpreter overhead and keeps all state in registers.
//!
//! # Architecture Support
//!
//! - **x86_64**: Uses dynasm for code generation
//! - **aarch64**: Uses dynasm for code generation
pub use JitShiftOr;