Dead Code Detection
Detection Workflow
- Build call graph: Use
disasm to build control flow, identify all functions, map function call relationships
- Identify entry points: Find main/entry functions, locate exported functions, identify callback registrations, map interrupt handlers
- Trace reachability: Perform forward reachability analysis from entry points, mark all reachable functions and blocks, identify unreachable code
- Analyze dead code: Categorize dead code types, assess security implications, identify potential vulnerabilities, estimate size reduction
Key Patterns
- Unreachable functions: functions with no callers, functions only called from dead code, functions after infinite loops, functions after exit() calls
- Unreachable blocks: basic blocks after return statements, code after unconditional jumps, blocks with no incoming edges, code guarded by always-false conditions
- Unused data: global variables never referenced, string constants never used, data sections with no references, debug symbols in production builds
- Conditional dead code: code in always-false branches, debug-only code in release builds, platform-specific code for other platforms, feature flags permanently disabled
Output Format
Report with: id, type, subtype, severity, confidence, location, dead_code_type, reason, callers, references, size_estimate, security_implications, potential_vulnerabilities, recommendation.
Severity Guidelines
- MEDIUM: Dead code containing security vulnerabilities
- LOW: Dead code with no security impact
See Also
patterns.md - Detailed detection patterns and exploitation scenarios
examples.md - Example analysis cases and code samples
references.md - CWE references and mitigation strategies
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: detecting-dead-code3description: Identifies unreachable functions, unused variables, and abandoned code in binary programs. Use when optimizing binary size, analyzing code coverage, or investigating abandoned functionality. Use when this capability is needed.4---56# Dead Code Detection78## Detection Workflow9101. **Build call graph**: Use `disasm` to build control flow, identify all functions, map function call relationships112. **Identify entry points**: Find main/entry functions, locate exported functions, identify callback registrations, map interrupt handlers123. **Trace reachability**: Perform forward reachability analysis from entry points, mark all reachable functions and blocks, identify unreachable code134. **Analyze dead code**: Categorize dead code types, assess security implications, identify potential vulnerabilities, estimate size reduction1415## Key Patterns1617- Unreachable functions: functions with no callers, functions only called from dead code, functions after infinite loops, functions after exit() calls18- Unreachable blocks: basic blocks after return statements, code after unconditional jumps, blocks with no incoming edges, code guarded by always-false conditions19- Unused data: global variables never referenced, string constants never used, data sections with no references, debug symbols in production builds20- Conditional dead code: code in always-false branches, debug-only code in release builds, platform-specific code for other platforms, feature flags permanently disabled2122## Output Format2324Report with: id, type, subtype, severity, confidence, location, dead_code_type, reason, callers, references, size_estimate, security_implications, potential_vulnerabilities, recommendation.2526## Severity Guidelines2728- **MEDIUM**: Dead code containing security vulnerabilities29- **LOW**: Dead code with no security impact3031## See Also3233- `patterns.md` - Detailed detection patterns and exploitation scenarios34- `examples.md` - Example analysis cases and code samples35- `references.md` - CWE references and mitigation strategies3637---38> Converted and distributed by [TomeVault](https://tomevault.io/claim/waiwai24) — claim your Tome and manage your conversions.39<!-- tomevault:4.0:skill_md:2026-04-13 -->