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.
compilateurMIPS/mips.ml
2022-12-06 22:22:48 +01:00

32 lines
751 B
OCaml

type reg = V0
type label = string
type instr = Li of reg * int
type directive = Asciiz of string
type decl = label * directive
type asm =
{ text : instr list
; data : decl list
}
let ps = Printf.sprintf (* alias raccourci *)
let fmt_reg = function
| V0 -> "$v0"
;;
let fmt_instr = function
| Li (r, i) -> ps " li %s, %d" (fmt_reg r) i
;;
let fmt_dir = function
| Asciiz s -> ps ".asciiz \"%s\"" s
;;
let emit oc asm =
Printf.fprintf oc ".text\n.globl main\nmain:\n";
List.iter (fun i -> Printf.fprintf oc "%s\n" (fmt_instr i)) asm.text;
Printf.fprintf oc " move $a0, $v0\n li $v0, 1\n syscall\n jr $ra\n";
Printf.fprintf oc "\n.data\n";
List.iter (fun (l, d) -> Printf.fprintf oc "%s: %s\n" l (fmt_dir d)) asm.data
;;