Skip to main content

A compiler for the Alecci programming language

Project description

Alecci Programming Language

Alecci is a compiled programming language designed for teaching concurrent and parallel programming. It provides built-in primitives for threading, synchronization, and inter-thread communication, and compiles to native code via LLVM.

The language is used in operating systems and parallel programming courses to help students write, analyze, and debug concurrent programs without the overhead of a general-purpose systems language.

Installation

pip install alecci

If the alecci command is not found after installation, add the user bin directory to your PATH:

echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc

You can also invoke the compiler directly without installing the command:

python3 -m alecci

System Requirements

  • Python 3.8 or later
  • LLVM 14 or later (provided via llvmlite)
  • GCC or Clang for linking

Usage

alecci program.ale -o program
./program

Sanitizer options

ThreadSanitizer is enabled by default to detect data races at runtime:

alecci program.ale -o program          # ThreadSanitizer enabled (default)
alecci program.ale --no-tsan -o program  # Sanitizers disabled

Language Overview

Variables

mutable x := 42
const message := "Hello"
mutable arr := array(10, 0)

Procedures and functions

procedure main(argc, argv)
  print("Hello, Alecci!")
end procedure

Threads

procedure worker(thread_number as int)
  print `Worker {thread_number} running`
end procedure

procedure main(argc, argv)
  shared const thread_count := 4
  mutable threads := create_threads(thread_count, worker)
  join_threads(threads)
  print("All workers done")
end procedure

Synchronization primitives

shared mutable counter := 0
shared mutable mtx as mutex := mutex()

procedure increment(thread_number as int)
  lock(mtx)
  counter := counter + 1
  unlock(mtx)
end procedure

Available primitives: mutex, semaphore, barrier, queue, thread.

Concurrency Validation

The package includes a test suite (concurrency_validation/) with annotated example programs covering common concurrency patterns and bugs, including data races, deadlocks, and thread leaks. These are used to evaluate ThreadSanitizer detection rates.

Source

Source code is available at github.com/citic/alecci.

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

alecci-1.4.3.tar.gz (113.1 kB view details)

Uploaded Source

Built Distribution

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

alecci-1.4.3-py3-none-any.whl (96.7 kB view details)

Uploaded Python 3

File details

Details for the file alecci-1.4.3.tar.gz.

File metadata

  • Download URL: alecci-1.4.3.tar.gz
  • Upload date:
  • Size: 113.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for alecci-1.4.3.tar.gz
Algorithm Hash digest
SHA256 2b1f74d91c7d70c863bdaf0b96adde75e89f9c5c87afc7d44a30f62e789d096b
MD5 ad934d3e7fa5122fd06c504d0ae45c88
BLAKE2b-256 abee329da876bd92c6eb5100d26eb23aba5cd91bd98238d1a51d135215079f93

See more details on using hashes here.

File details

Details for the file alecci-1.4.3-py3-none-any.whl.

File metadata

  • Download URL: alecci-1.4.3-py3-none-any.whl
  • Upload date:
  • Size: 96.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for alecci-1.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 d94b7fa574711fc23dd41a769b511e0725858d51614637378399b0bc6482ded8
MD5 062228043501ca6225c4ac161c969a73
BLAKE2b-256 685317153c4726faedb139ec188dbcbed9cc3e07e14dfb732760e820a35b1727

See more details on using hashes here.

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