caml-urm

A OCaml module for manipulating unlimited register machines

NameSizeMode
..
urm.ml 3780B -rw-r--r--
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
open Array
open Genlex

type instruction =
  | T of int * int
  | Z of int
  | S of int
  | P of int
  | J of int * int * int

type t =
  { instruction_pointer : int;
    registers : int -> int;
  }

type machine = t

let of_registers f =
  { instruction_pointer = 0;
    registers = f
  }

let of_list xs =
  let f acc (reg_n, reg_val) = fun n -> if n = reg_n then reg_val else acc n
  in xs |> List.fold_left f (fun _ -> 0) |> of_registers

let zeros = of_registers (fun _ -> 0)

let register m = m.registers

(** Executes the next instruction. Returns [Some _] is the instruction pointer
 points to a valid adress and [None] otherwise. *)
let step (program : instruction array) (m : machine) : machine option =
  if m.instruction_pointer >= length program then None
  else
    let updated =
      match program.(m.instruction_pointer) with
      | T (r1, r2) ->
        { registers =
            (fun n -> if n == r2 then m.registers r1 else m.registers n);
          instruction_pointer = m.instruction_pointer + 1;
        }
      | Z r ->
        { registers = (fun n -> if n == r then 0 else m.registers n);
          instruction_pointer = m.instruction_pointer + 1;
        }
      | S r ->
        { registers =
            (fun n -> if n == r then 1 + (m.registers n) else m.registers n);
          instruction_pointer = m.instruction_pointer + 1;
        }
      | P r ->
        { registers =
            (fun n -> if n == r then (m.registers n) - 1 else m.registers n);
          instruction_pointer = m.instruction_pointer + 1;
        }
      | J (r1, r2, i) when m.registers r1 == m.registers r2 ->
        (* [i - 1] is used so that the instruction count starts at 1 instead of
         0 *)
        if i > 0 then { m with instruction_pointer = i - 1 }
        else
          let e = Printf.sprintf "invalid jump address: J(%d, %d, %d)" r1 r2 i
          in raise (Invalid_argument e)
      | J _ ->
        { m with instruction_pointer = m.instruction_pointer + 1 }
    in Some updated

let rec exec program m =
  match step program m with
  | None -> { m with instruction_pointer = 0 }
  | Some n -> exec program n

let nexec max program m =
  if max <= 0
  then raise (Invalid_argument "the number of clock-cycles must be positive ")
  else
    let rec exec_safe_tail m clock_cycles =
      if clock_cycles <= max
      then
        match step program m with
        | None -> Some { m with instruction_pointer = 0 }
        | Some n -> exec_safe_tail n (clock_cycles + 1)
      else None
    in exec_safe_tail m 0


(********************************** Parsing **********************************)

exception Syntax_error of string

(** A simple lexer for instructions *)
let lex = make_lexer ["T"; "Z"; "S"; "P"; "J"; "("; ")"; ","]

(** Parse a single instruction *)
let parse_instruction (i : token list) : instruction =
  match i with
  | [ Kwd "T"; Kwd "("; Int r1; Kwd ","; Int r2; Kwd ")" ] ->
      T (r1, r2)
  | [ Kwd "Z"; Kwd "("; Int r; Kwd ")" ] ->
      Z r
  | [ Kwd "S"; Kwd "("; Int r; Kwd ")" ] ->
      S r
  | [ Kwd "P"; Kwd "("; Int r; Kwd ")" ] ->
      P r
  | [ Kwd "J"; Kwd "("; Int r1; Kwd ","; Int r2; Kwd ","; Int i; Kwd ")" ]
  when i > 0 ->
      J (r1, r2, i)
  | [ Kwd "J"; Kwd "("; Int _; Kwd ","; Int _; Kwd ","; Int i; Kwd ")" ] ->
      raise (Syntax_error (Printf.sprintf "invalid jump address: %d" i))
  | _ ->
      raise (Syntax_error "invalid syntax")

let parse (s : string) : instruction array =
    let f s =
      let s = String.trim s in
      if s = "" then None
      else
          s |> Stream.of_string
            |> lex
            |> Stream.npeek 8
            |> parse_instruction
            |> Option.some
    in
      s |> String.split_on_char '\n'
        |> List.filter_map f
        |> Array.of_list