//! Static Analysis Passes
//!
//! This module contains the static analysis passes for PTX code:
//! - Type Checker: Validates register types match operations
//! - Control Flow Analyzer: Constructs CFG, validates barrier synchronization
//! - Data Flow Analyzer: Tracks value propagation, detects "loaded value" bug
//! - Address Space Validator: Validates correct address space usage
pub use ;
pub use ;
pub use ;
pub use TypeChecker;