Compilateur en OCaml vers du MIPS
This repository has been archived on 2022-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
Find a file
2022-12-13 14:50:26 +01:00
tests add example of string collect 2022-12-13 14:50:26 +01:00
.gitignore ignore .conflicts files 2022-12-09 22:14:41 +01:00
.ocamlformat use ocamlformat 2022-12-06 22:22:48 +01:00
ast.ml add string support 2022-12-11 03:35:52 +01:00
baselib.ml add puts and geti 2022-12-13 14:36:45 +01:00
compiler.ml add string support 2022-12-11 03:35:52 +01:00
errors.ml add string support 2022-12-11 03:35:52 +01:00
lexer.mll support newlines 2022-12-13 14:36:38 +01:00
main.ml add string support 2022-12-11 03:35:52 +01:00
Makefile update tests 2022-12-08 21:30:56 +01:00
mips.ml WIP Function implementation 2022-12-10 01:55:15 +01:00
parser.mly add string support 2022-12-11 03:35:52 +01:00
README.md typo 2022-12-11 23:46:47 +01:00
semantics.ml add string support 2022-12-11 03:35:52 +01:00
simplifier.ml remove data duplicata 2022-12-13 14:50:18 +01:00
test.ml add quotes 2022-12-11 03:40:17 +01:00

Compilateur vers du MIPS en OCaml

Usage

Compilation

$ make

Utilisation

$ ./main.byte {fichier source} > sortie.s

Une fois le fichier assembleur créé, il est possible d'utiliser spim : spim -file sortie.s

Lance les tests

$ make test

Fonctionnalités

  • Type int
  • Type bool
  • Type string
  • Déclaration / assignation de variables
  • Librairie standard (multiplication, addition, comparateur, print, ...)
  • Conditions
  • Boucles
  • Fonctions utilisateurs (arguments et valeur de retour typé)

Améliorations

  • Fonctions de la baselib sont inlinées