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.0.tar.gz (130.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.7.0-py3-none-any.whl (114.6 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for alecci-1.7.0.tar.gz
Algorithm Hash digest
SHA256 d841f01d070179b4a3f24710715972bf826f869e8edc336a54d88b07c7e00af4
MD5 f3b1c8318376f578b80d1b5415e4f3be
BLAKE2b-256 0afefe0ab4b0c1443be6e828e33e5602cc08d51b2b8baed5cf03370f893be918

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for alecci-1.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 865b88b86ea911b9936135a8a652ff9d4cca37b286bc843d7712c63470829ac9
MD5 a44869bbd808d795170ffe763fe744a8
BLAKE2b-256 f503f13e08153bbd673f31d835e6dacb62862056fcd2d76049acd5a549639f78

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