项目作者: francisvm

项目描述 :
Asynchronous language extension for the Tiger Language based on LLVM
高级语言: C
项目地址: git://github.com/francisvm/jaguar.git
创建时间: 2016-07-11T00:45:47Z
项目社区:https://github.com/francisvm/jaguar

开源协议:

下载


Jaguar Compiler

Jaguar Compiler (Async Tiger Compiler)

The Jaguar Compiler project aims at adding asynchronous support to the Tiger
language.

Take a look at the
proposal.md
in order to see more about the specifications of the project.

Authors

Project

The project has been done for the PRPA class, (parallel programming). The code
we want to achieve at the end is something similar to this:

  1. let
  2. var buf := async read(10) /* Asynchronous call */
  3. in /* This happens in parallel with the read. */
  4. for i := 0 to 300000 do /* ... */
  5. (); /* ... */
  6. /* ... */
  7. print_int(buf) /* Here, we wait for the asynchronous call to be */
  8. /* finished, and return the value. */
  9. end

The sources of the Tiger Compiler itself cannnot be open-sourced, since it
remains an assignment to the EPITA students.

Tiger Compiler

The Tiger Compiler, also called TC, is a project aiming at the implementation
of a Tiger language compiler, in C++.

The compiler implementation is based on the book “Modern Compiler
Implementation” by Andrew W. Appel.

TC compiles Tiger source to:

  • x86
  • ARM
  • MIPS

or LLVM, which allows us to target more architectures.