Skip to main content

Domain Specific Language for Instruction Set Architecture descriptions

Project description

ISA DSL - Instruction Set Architecture Domain Specific Language

A powerful Domain Specific Language (DSL) for describing Instruction Set Architectures (ISA) using textX. This DSL enables you to specify instruction formats, registers, instruction encodings, and behavior in RTL (Register Transfer Level) notation, with automatic code generation for simulators, assemblers, disassemblers, and documentation.

Repository: https://github.com/ajithpadman/isadsl.git

Features

  • Complete ISA Specification: Define instruction formats, registers (GPRs, SFRs, and vector registers), and instruction encodings
  • RTL Behavior: Specify instruction behavior using Register Transfer Level notation with support for:
    • Arithmetic and logical operations
    • Bitwise shift operations (<<, >>)
    • Ternary conditional expressions (condition ? then : else)
    • Conditional statements
    • Memory access operations
    • Vector/SIMD operations
    • Bitfield access (value[msb:lsb])
    • Built-in functions (sign_extend, zero_extend, extract_bits)
  • Automatic Code Generation: Generate production-ready tools:
    • Python-based instruction simulators
    • Assemblers for your ISA
    • Disassemblers for binary code
    • Markdown documentation
  • SIMD Support: Built-in support for vector registers and SIMD instructions
  • Validation: Comprehensive semantic validation of ISA specifications
  • Language Server Protocol (LSP) Support: Full IDE integration with VS Code extension providing:
    • Real-time syntax highlighting
    • Code completion
    • Hover documentation
    • Error diagnostics

Installation

From PyPI (Recommended)

Install the package directly from PyPI using pip:

pip install isa-dsl

From Source

If you want to install from source or contribute to the project:

Prerequisites:

  • Python 3.8 or higher
  • UV (recommended) or pip

Using UV:

# Install UV first
curl -LsSf https://astral.sh/uv/install.sh | sh
# Or on Windows: powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

# Clone the repository
git clone https://github.com/ajithpadman/isadsl.git
cd isadsl

# Install the project and dependencies
uv sync

# Or install in development mode with test dependencies
uv sync --dev

Using pip:

# Clone the repository
git clone https://github.com/ajithpadman/isadsl.git
cd isadsl

# Install dependencies
pip install -r requirements.txt

# Or install in editable mode
pip install -e .

Quick Start

1. Create an ISA Specification

Create a .isa file defining your instruction set architecture. Here's a simple example:

architecture SimpleRISC {
    word_size: 32
    endianness: little
    
    registers {
        gpr R 32 [8]
        sfr PC 32
    }
    
    formats {
        format R_TYPE 32 {
            opcode: [0:5]
            rd: [6:8]
            rs1: [9:11]
            rs2: [12:14]
        }
    }
    
    instructions {
        instruction ADD {
            format: R_TYPE
            encoding: { opcode=0 }
            operands: rd, rs1, rs2
            assembly_syntax: "ADD R{rd}, R{rs1}, R{rs2}"
            behavior: {
                R[rd] = R[rs1] + R[rs2];
            }
        }
    }
}

2. Generate Tools

Generate simulator, assembler, disassembler, and documentation:

isa-dsl generate your_isa.isa --output output/

This creates:

  • output/simulator.py - Instruction simulator
  • output/assembler.py - Assembler for your ISA
  • output/disassembler.py - Disassembler for binary code
  • output/documentation.md - ISA documentation

3. Use the Generated Tools

Validate your ISA:

isa-dsl validate your_isa.isa

Get ISA information:

isa-dsl info your_isa.isa

Assemble code:

python output/assembler.py program.s -o program.bin

Disassemble binary:

python output/disassembler.py program.bin

Run simulator:

python output/simulator.py program.bin

For more complex examples, see the examples directory or check the DSL Specification.

Documentation

All technical documentation is available in the docs/ folder:

  • INDEX.md: Documentation index and navigation guide - Start here to find what you need
  • DSL_Specification.md: Complete DSL specification covering all features including syntax, registers, formats, instructions, RTL behavior, variable-length instructions, bundling, SIMD, and more
  • EXAMPLES.md: Detailed documentation of example ISA specifications with learning paths and common patterns
  • TESTING.md: Complete testing documentation including test suite overview, how to run tests, and how to add new tests
  • LANGUAGE_SERVER.md: Language Server Protocol (LSP) setup and usage guide for VS Code extension

Examples

The examples/ directory contains reference ISA specifications demonstrating best practices:

  • arm_cortex_a9.isa: Main ARM Cortex-A9 ISA specification (multi-file reference)
    • arm_cortex_a9_registers.isa - Register definitions
    • arm_cortex_a9_formats.isa - Instruction format definitions
    • arm_cortex_a9_instructions.isa - Instruction definitions

This demonstrates the multi-file approach using #include directives and cross-file format reference resolution.

Note: Test-specific ISA examples are located in tests/*/test_data/ directories.

To generate tools from the reference example:

uv run isa-dsl generate examples/arm_cortex_a9.isa --output output/

Command-Line Interface

After installation, the isa-dsl command is available. It provides several subcommands:

Generate Tools

isa-dsl generate <isa_file> --output <output_dir>

Options:

  • --simulator / --no-simulator: Generate simulator (default: enabled)
  • --assembler / --no-assembler: Generate assembler (default: enabled)
  • --disassembler / --no-disassembler: Generate disassembler (default: enabled)
  • --docs / --no-docs: Generate documentation (default: enabled)

Example:

isa-dsl generate examples/arm_cortex_a9.isa --output output/

Validate ISA

isa-dsl validate <isa_file>

Validates the ISA specification and reports any errors or warnings.

Display ISA Information

isa-dsl info <isa_file>

Displays summary information about the ISA specification.

Features

  • Virtual Registers: Concatenate multiple registers to form wider virtual registers
  • Register Aliases: Define alternative names for registers (e.g., SP = R[13])
  • Register Fields: Access register fields like C union members (e.g., PSW.V, PSW.C)
  • Instruction Aliases: Define alternative mnemonics with custom assembly syntax
  • Variable-Length Instructions: Support for instructions of different widths
  • Instruction Bundling: Bundle multiple instructions into a single instruction word
  • SIMD/Vector Support: Built-in support for vector registers and SIMD operations
  • Multi-File Support: Organize large ISA specifications across multiple files using #include
  • Shift Operations: Left shift (<<) and arithmetic right shift (>>) operators
  • Ternary Expressions: Conditional value selection (condition ? then : else)
  • Bitfield Access: Extract bit ranges from values (value[msb:lsb])
  • Built-in Functions: Sign/zero extension and bit extraction functions
  • VS Code Extension: Full IDE support with syntax highlighting, code completion, and error diagnostics

Testing

The project includes a comprehensive test suite with 170+ test cases covering all features. All tests pass successfully.

Test Status:

  • ✅ All Python tests passing (170+ test cases, 200+ test functions including parametrized tests)
  • ✅ All VS Code extension tests passing
  • ✅ Continuous Integration (CI) runs all tests automatically

To run tests from source:

# After cloning and installing from source
pytest

Development

To contribute to the project:

# Clone the repository
git clone https://github.com/ajithpadman/isadsl.git
cd isadsl

# Install in development mode
pip install -e ".[dev]"

# Or using UV
uv sync --dev

# Run tests
pytest

Requirements

  • Python 3.8 or higher
  • textX >= 3.0.0
  • Jinja2 >= 3.1.0
  • Click >= 8.1.0

Dependencies are automatically installed when installing from PyPI.

License

MIT License - see LICENSE file for details.

Contributing

Contributions are welcome! Please see the GitHub repository for contribution guidelines.

Before contributing:

  • Ensure all tests pass (pytest)
  • Follow existing code style conventions
  • Update documentation for new features
  • Add tests for new functionality

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

isa_dsl-0.3.4.tar.gz (215.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

isa_dsl-0.3.4-py3-none-any.whl (71.9 kB view details)

Uploaded Python 3

File details

Details for the file isa_dsl-0.3.4.tar.gz.

File metadata

  • Download URL: isa_dsl-0.3.4.tar.gz
  • Upload date:
  • Size: 215.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for isa_dsl-0.3.4.tar.gz
Algorithm Hash digest
SHA256 c1655ee2b79c225a6ee4ee6a9bbbc8b1a78b22476d50de6ca6732e1b422388ad
MD5 491c319b48f4a0797bef76d723eebc5c
BLAKE2b-256 646825f61363af591c2d9755e821015fb524754bdedbb494c112fc3ef78c2b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for isa_dsl-0.3.4.tar.gz:

Publisher: publish-to-pypi.yml on ajithpadman/isadsl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file isa_dsl-0.3.4-py3-none-any.whl.

File metadata

  • Download URL: isa_dsl-0.3.4-py3-none-any.whl
  • Upload date:
  • Size: 71.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for isa_dsl-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 87d6949697c419c45112fdb5401cf27d5c122a39079903f0fbbe53cc575f1fb7
MD5 f0308edb009670e8917b867a52243f1f
BLAKE2b-256 342deeaa0ec20d82fd7dcd45054bb46cf7de99e316d6a4d86e9641460d9ad501

See more details on using hashes here.

Provenance

The following attestation bundles were made for isa_dsl-0.3.4-py3-none-any.whl:

Publisher: publish-to-pypi.yml on ajithpadman/isadsl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page