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.7.1.tar.gz (135.4 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.7.1-py3-none-any.whl (115.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for alecci-1.7.1.tar.gz
Algorithm Hash digest
SHA256 53df1411802ad7a67b5b0cf9d201d24452856f1cb0d38de61a5337b33b3116ed
MD5 a9e9ec0e9837de92fc036d10d8c70e63
BLAKE2b-256 c2b25531ec58956d62e466e19180878662c36a66a59f636a5e7745f228ae7d4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: alecci-1.7.1-py3-none-any.whl
  • Upload date:
  • Size: 115.9 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.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a5c7db64d32460eab8cd6a9dc977e0fc18bc40447c24225f34c91503dea920c9
MD5 54b03f05169d764157cf671e37f12418
BLAKE2b-256 edbde07b961757e077e6e8604d21fe9fb774708963fccb04f6714480c5e1330f

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