ssair-design
SolidExpert skill for designing intermediate representations and implementing SSA construction
AI & Automation 1,160 stars
71 forks Updated today MIT
Install
Quality Score: 94/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# SSA/IR Design Skill
## Overview
Expert skill for designing intermediate representations and implementing SSA (Static Single Assignment) construction.
## Capabilities
- Design control flow graph (CFG) structures
- Implement dominance tree computation
- Implement SSA construction algorithms (Cytron et al.)
- Design phi function placement and pruning
- Implement SSA destruction for register allocation
- Design sea-of-nodes IR representations
- Implement basic block reordering
- Design IR verification passes
## Target Processes
- ir-design.js
- code-generation-llvm.js
- jit-compiler-development.js
- semantic-analysis.js
## Dependencies
Compiler optimization textbooks (Engineering a Compiler, Modern Compiler Implementation)
## Usage Guidelines
1. **CFG Design**: Start with a clear CFG representation with explicit entry/exit blocks
2. **Dominance**: Implement dominance computation before SSA construction
3. **Phi Placement**: Use dominance frontiers for minimal phi placement
4. **Verification**: Build IR verification passes to catch malformed IR early
5. **Debugging**: Include IR pretty-printing from the start for debugging
## Output Schema
```json
{
"type": "object",
"properties": {
"irStyle": {
"type": "string",
"enum": ["basic-blocks", "sea-of-nodes", "continuation-passing"]
},
"ssaConstruction": {
"type": "string",
"enum": ["cytron", "braun", "sreedhar"]
},
"passes": {
"type": "array",
"items": { "type": ...
Details
- Author
- a5c-ai
- Repository
- a5c-ai/babysitter
- Created
- 4 months ago
- Last Updated
- today
- Language
- JavaScript
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
Code & Development Solid
ssa-transformation-library
SSA-form transformations and optimizations for compiler development
1,160 Updated today
a5c-ai AI & Automation Solid
llvm-backend
Expert skill for LLVM integration including IR generation, optimization passes, and native code emission
1,160 Updated today
a5c-ai AI & Automation Solid
grammar-design
Expert skill for formal grammar design including disambiguation, precedence, and validation
1,160 Updated today
a5c-ai AI & Automation Solid
parser-generator
Expert skill for parser generation and implementation using LL, LR, LALR, PEG, and Pratt parsing techniques
1,160 Updated today
a5c-ai AI & Automation Solid
ast-manipulation
Expert skill for abstract syntax tree design, traversal, transformation, and manipulation patterns
1,160 Updated today
a5c-ai