Expand description
Optimized log matcher with early discriminator filtering
Performance strategy:
- SIMD-based log type detection (~50ns)
- Extract discriminator BEFORE full parsing (~50ns)
- Check filter at discriminator level - skip parsing if not needed
- Only parse events user actually configured
- Compiler-optimized base64 decoding (auto-vectorized with target-cpu=native)
Modules§
- program_
id_ strings - 预计算的程序 ID 字符串常量
Enums§
- LogType
- 快速日志类型枚举
Functions§
- detect_
log_ type - SIMD 优化的日志类型检测器 - 激进早期退出
- detect_
pumpfun_ create - parse_
invoke_ info - 从日志中解析指令调用信息 (SIMD 优化版本) 返回 (program_id, depth)
- parse_
log_ optimized - Optimized unified log parser with single-decode, early-filter strategy