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
    • Conditional statements
    • Memory access operations
    • Vector/SIMD operations
  • 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])
  • 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
  • VS Code Extension: Full IDE support with syntax highlighting, code completion, and error diagnostics

Testing

The project includes a comprehensive test suite with 126 automated tests covering all features. All tests pass successfully.

Test Status:

  • ✅ All 126 Python tests passing
  • ✅ All 18 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.2.0.tar.gz (190.3 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.2.0-py3-none-any.whl (67.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: isa_dsl-0.2.0.tar.gz
  • Upload date:
  • Size: 190.3 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.2.0.tar.gz
Algorithm Hash digest
SHA256 b33aa8c62cbc838f751ae24b97f4447a39ad545d0f861d6dee2838a427466835
MD5 9c1cab37893a3c95b069a79feda0222e
BLAKE2b-256 32855eae8fafa177644393ab37626f62832a2fb91dc8092f1d693e949d28129b

See more details on using hashes here.

Provenance

The following attestation bundles were made for isa_dsl-0.2.0.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.2.0-py3-none-any.whl.

File metadata

  • Download URL: isa_dsl-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 67.6 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.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 ebde18fb07c665e2fef793bf716cdd947686bf4bb3ec134f54121356683e0b43
MD5 6b966c35683bdbec21867f4786fe1d23
BLAKE2b-256 fbc8ac8eca29d97567a2bdb98ab5a4820968d16379526d4e4d600f363b8e140d

See more details on using hashes here.

Provenance

The following attestation bundles were made for isa_dsl-0.2.0-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