ligo/src/proto/alpha/script_ir_translator.ml

2079 lines
81 KiB
OCaml
Raw Normal View History

2016-09-08 19:13:10 +02:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Tezos_context
open Micheline
2016-09-08 19:13:10 +02:00
open Script
open Script_typed_ir
(* ---- Error definitions ---------------------------------------------------*)
2016-09-08 19:13:10 +02:00
(* Auxiliary types for error documentation *)
type namespace = Type_namespace | Constant_namespace | Instr_namespace | Keyword_namespace
type kind = Int_kind | String_kind | Prim_kind | Seq_kind
type type_map = (int * (Script.expr list * Script.expr list)) list
2016-09-08 19:13:10 +02:00
(* Structure errors *)
type error += Invalid_arity of Script.location * prim * int * int
type error += Invalid_namespace of Script.location * prim * namespace * namespace
type error += Invalid_primitive of Script.location * prim list * prim
type error += Invalid_kind of Script.location * kind list * kind
type error += Missing_field of prim
type error += Duplicate_field of Script.location * prim
2016-09-08 19:13:10 +02:00
(* Instruction typing errors *)
type error += Fail_not_in_tail_position of Script.location
type error += Undefined_binop : Script.location * prim * _ ty * _ ty -> error
type error += Undefined_unop : Script.location * prim * _ ty -> error
type error += Bad_return : Script.location * _ stack_ty * _ ty -> error
type error += Bad_stack : Script.location * prim * int * _ stack_ty -> error
type error += Unmatched_branches : Script.location * _ stack_ty * _ stack_ty -> error
2016-09-08 19:13:10 +02:00
type error += Transfer_in_lambda of Script.location
2017-10-10 20:22:42 +02:00
type error += Transfer_in_dip of Script.location
type error += Bad_stack_length
type error += Bad_stack_item of int
2016-09-08 19:13:10 +02:00
(* Value typing errors *)
type error += Invalid_constant : Script.location * Script.expr * _ ty -> error
2016-09-08 19:13:10 +02:00
type error += Invalid_contract of Script.location * Contract.t
type error += Comparable_type_expected : Script.location * _ ty -> error
type error += Inconsistent_types : _ ty * _ ty -> error
2017-08-16 14:26:45 +02:00
type error += Unordered_map_keys of Script.location * Script.expr
type error += Unordered_set_values of Script.location * Script.expr
type error += Duplicate_map_keys of Script.location * Script.expr
type error += Duplicate_set_values of Script.location * Script.expr
(* Toplevel errors *)
type error += Ill_typed_data : string option * Script.expr * _ ty -> error
type error += Ill_formed_type of string option * Script.expr * Script.location
type error += Ill_typed_contract : Script.expr * type_map -> error
2017-10-10 20:22:42 +02:00
type ex_comparable_ty = Ex_comparable_ty : 'a comparable_ty -> ex_comparable_ty
type ex_ty = Ex_ty : 'a ty -> ex_ty
type ex_stack_ty = Ex_stack_ty : 'a stack_ty -> ex_stack_ty
type tc_context =
| Lambda : tc_context
| Dip : 'a stack_ty -> tc_context
| Toplevel : { storage_type : 'a ty } -> tc_context
let add_dip ty = function
| Lambda | Toplevel _ -> Dip (Item_t (ty, Empty_t))
| Dip stack -> Dip (Item_t (ty, stack))
(* ---- Error helpers -------------------------------------------------------*)
2016-09-08 19:13:10 +02:00
let location = function
| Prim (loc, _, _, _)
2016-09-08 19:13:10 +02:00
| Int (loc, _)
| String (loc, _)
| Seq (loc, _, _) -> loc
2016-09-08 19:13:10 +02:00
let kind = function
| Int _ -> Int_kind
| String _ -> String_kind
| Prim _ -> Prim_kind
| Seq _ -> Seq_kind
2016-09-08 19:13:10 +02:00
let namespace = function
| K_parameter
| K_return
| K_storage
| K_code -> Keyword_namespace
| D_False
| D_Item
| D_Left
| D_List
| D_Map
| D_None
| D_Pair
| D_Right
| D_Set
| D_Some
| D_True
| D_Unit -> Constant_namespace
| I_H
| I_ABS
| I_ADD
| I_AMOUNT
| I_AND
| I_BALANCE
| I_CAR
| I_CDR
| I_CHECK_SIGNATURE
| I_COMPARE
| I_CONCAT
| I_CONS
| I_CREATE_ACCOUNT
| I_CREATE_CONTRACT
| I_DEFAULT_ACCOUNT
| I_DIP
| I_DROP
| I_DUP
| I_EDIV
| I_EMPTY_MAP
| I_EMPTY_SET
| I_EQ
| I_EXEC
| I_FAIL
| I_GE
| I_GET
| I_GT
| I_HASH_KEY
| I_IF
| I_IF_CONS
| I_IF_LEFT
| I_IF_NONE
| I_INT
| I_LAMBDA
| I_LE
| I_LEFT
| I_LOOP
| I_LSL
| I_LSR
| I_LT
| I_MANAGER
| I_MAP
| I_MEM
| I_MUL
| I_NEG
| I_NEQ
| I_NIL
| I_NONE
| I_NOT
| I_NOW
| I_OR
| I_PAIR
| I_PUSH
| I_REDUCE
| I_RIGHT
| I_SIZE
| I_SOME
| I_SOURCE
| I_STEPS_TO_QUOTA
| I_SUB
| I_SWAP
| I_TRANSFER_TOKENS
| I_UNIT
| I_UPDATE
| I_XOR -> Instr_namespace
| T_bool
| T_contract
| T_int
| T_key
| T_key_hash
| T_lambda
| T_list
| T_map
| T_nat
| T_option
| T_or
| T_pair
| T_set
| T_signature
| T_string
| T_tez
| T_timestamp
| T_unit -> Type_namespace
let unexpected expr exp_kinds exp_ns exp_prims =
match expr with
| Int (loc, _) -> Invalid_kind (loc, Prim_kind :: exp_kinds, Int_kind)
| String (loc, _ ) -> Invalid_kind (loc, Prim_kind :: exp_kinds, String_kind)
| Seq (loc, _, _) -> Invalid_kind (loc, Prim_kind :: exp_kinds, Seq_kind)
| Prim (loc, name, _, _) ->
match namespace name, exp_ns with
| Type_namespace, Type_namespace
| Instr_namespace, Instr_namespace
| Constant_namespace, Constant_namespace ->
Invalid_primitive (loc, exp_prims, name)
| ns, _ ->
Invalid_namespace (loc, name, exp_ns, ns)
2016-09-08 19:13:10 +02:00
let check_kind kinds expr =
let kind = kind expr in
if List.mem kind kinds then
return ()
else
let loc = location expr in
fail (Invalid_kind (loc, kinds, kind))
2016-09-08 19:13:10 +02:00
(* ---- Sets and Maps -------------------------------------------------------*)
let compare_comparable
: type a. a comparable_ty -> a -> a -> int
= fun kind x y -> match kind with
| String_key -> Compare.String.compare x y
| Bool_key -> Compare.Bool.compare x y
| Tez_key -> Tez.compare x y
2017-09-15 16:32:50 +02:00
| Key_hash_key -> Ed25519.Public_key_hash.compare x y
| Int_key ->
let res = (Script_int.compare x y) in
if Compare.Int.(res = 0) then 0
else if Compare.Int.(res > 0) then 1
else -1
| Nat_key ->
let res = (Script_int.compare x y) in
if Compare.Int.(res = 0) then 0
else if Compare.Int.(res > 0) then 1
else -1
2017-10-11 17:41:02 +02:00
| Timestamp_key -> Script_timestamp.compare x y
let empty_set
: type a. a comparable_ty -> a set
= fun ty ->
let module OPS = Set.Make (struct
type t = a
let compare = compare_comparable ty
end) in
(module struct
type elt = a
module OPS = OPS
let boxed = OPS.empty
end)
let set_update
: type a. a -> bool -> a set -> a set
= fun v b (module Box) ->
(module struct
type elt = a
module OPS = Box.OPS
let boxed =
if b then
Box.OPS.add v Box.boxed
else
Box.OPS.remove v Box.boxed
end)
let set_mem
: type elt. elt -> elt set -> bool
= fun v (module Box) ->
Box.OPS.mem v Box.boxed
let set_fold
: type elt acc. (elt -> acc -> acc) -> elt set -> acc -> acc
= fun f (module Box) ->
Box.OPS.fold f Box.boxed
2017-08-03 17:21:43 +02:00
let set_size
: type elt. elt set -> Script_int.n Script_int.num =
fun (module Box) ->
Script_int.(abs (of_int (Box.OPS.cardinal Box.boxed)))
let map_key_ty
: type a b. (a, b) map -> a comparable_ty
= fun (module Box) -> Box.key_ty
let empty_map
: type a b. a comparable_ty -> (a, b) map
= fun ty ->
let module OPS = Map.Make (struct
type t = a
let compare = compare_comparable ty
end) in
(module struct
type key = a
type value = b
let key_ty = ty
module OPS = OPS
let boxed = OPS.empty
end)
let map_get
: type key value. key -> (key, value) map -> value option
= fun k (module Box) ->
try Some (Box.OPS.find k Box.boxed) with Not_found -> None
let map_update
: type a b. a -> b option -> (a, b) map -> (a, b) map
= fun k v (module Box) ->
(module struct
type key = a
type value = b
let key_ty = Box.key_ty
module OPS = Box.OPS
let boxed =
match v with
| Some v -> Box.OPS.add k v Box.boxed
| None -> Box.OPS.remove k Box.boxed
end)
let map_mem
: type key value. key -> (key, value) map -> bool
= fun k (module Box) ->
Box.OPS.mem k Box.boxed
let map_fold
: type key value acc. (key -> value -> acc -> acc) -> (key, value) map -> acc -> acc
= fun f (module Box) ->
Box.OPS.fold f Box.boxed
2017-08-03 17:21:43 +02:00
let map_size
: type key value. (key, value) map -> Script_int.n Script_int.num =
fun (module Box) ->
Script_int.(abs (of_int (Box.OPS.cardinal Box.boxed)))
(* ---- Unparsing (Typed IR -> Untyped epressions) --------------------------*)
let ty_of_comparable_ty
: type a. a comparable_ty -> a ty = function
| Int_key -> Int_t
| Nat_key -> Nat_t
| String_key -> String_t
| Tez_key -> Tez_t
| Bool_key -> Bool_t
2017-09-15 16:32:50 +02:00
| Key_hash_key -> Key_hash_t
| Timestamp_key -> Timestamp_t
let unparse_comparable_ty
: type a. a comparable_ty -> Script.node = function
| Int_key -> Prim (-1, T_int, [], None)
| Nat_key -> Prim (-1, T_nat, [], None)
| String_key -> Prim (-1, T_string, [], None)
| Tez_key -> Prim (-1, T_tez, [], None)
| Bool_key -> Prim (-1, T_bool, [], None)
| Key_hash_key -> Prim (-1, T_key_hash, [], None)
| Timestamp_key -> Prim (-1, T_timestamp, [], None)
let rec unparse_ty
: type a. a ty -> Script.node = function
| Unit_t -> Prim (-1, T_unit, [], None)
| Int_t -> Prim (-1, T_int, [], None)
| Nat_t -> Prim (-1, T_nat, [], None)
| String_t -> Prim (-1, T_string, [], None)
| Tez_t -> Prim (-1, T_tez, [], None)
| Bool_t -> Prim (-1, T_bool, [], None)
| Key_hash_t -> Prim (-1, T_key_hash, [], None)
| Key_t -> Prim (-1, T_key, [], None)
| Timestamp_t -> Prim (-1, T_timestamp, [], None)
| Signature_t -> Prim (-1, T_signature, [], None)
| Contract_t (utl, utr) ->
let tl = unparse_ty utl in
let tr = unparse_ty utr in
Prim (-1, T_contract, [ tl; tr ], None)
| Pair_t (utl, utr) ->
let tl = unparse_ty utl in
let tr = unparse_ty utr in
Prim (-1, T_pair, [ tl; tr ], None)
| Union_t (utl, utr) ->
let tl = unparse_ty utl in
let tr = unparse_ty utr in
Prim (-1, T_or, [ tl; tr ], None)
| Lambda_t (uta, utr) ->
let ta = unparse_ty uta in
let tr = unparse_ty utr in
Prim (-1, T_lambda, [ ta; tr ], None)
| Option_t ut ->
let t = unparse_ty ut in
Prim (-1, T_option, [ t ], None)
| List_t ut ->
let t = unparse_ty ut in
Prim (-1, T_list, [ t ], None)
| Set_t ut ->
let t = unparse_comparable_ty ut in
Prim (-1, T_set, [ t ], None)
| Map_t (uta, utr) ->
let ta = unparse_comparable_ty uta in
let tr = unparse_ty utr in
Prim (-1, T_map, [ ta; tr ], None)
let rec unparse_data
: type a. a ty -> a -> Script.node
= fun ty a -> match ty, a with
| Unit_t, () ->
Prim (-1, D_Unit, [], None)
| Int_t, v ->
Int (-1, Script_int.to_string v)
| Nat_t, v ->
Int (-1, Script_int.to_string v)
| String_t, s ->
String (-1, s)
| Bool_t, true ->
Prim (-1, D_True, [], None)
| Bool_t, false ->
Prim (-1, D_False, [], None)
| Timestamp_t, t ->
2017-10-11 17:41:02 +02:00
begin
match Script_timestamp.to_notation t with
| None -> Int (-1, Script_timestamp.to_num_str t)
| Some s -> String (-1, s)
end
| Contract_t _, (_, _, c) ->
String (-1, Contract.to_b58check c)
| Signature_t, s ->
let text =
Hex_encode.hex_encode
(MBytes.to_string (Data_encoding.Binary.to_bytes Ed25519.Signature.encoding s)) in
String (-1, text)
| Tez_t, v ->
String (-1, Tez.to_string v)
| Key_t, k ->
2017-09-15 16:32:50 +02:00
String (-1, Ed25519.Public_key.to_b58check k)
| Key_hash_t, k ->
String (-1, Ed25519.Public_key_hash.to_b58check k)
| Pair_t (tl, tr), (l, r) ->
let l = unparse_data tl l in
let r = unparse_data tr r in
Prim (-1, D_Pair, [ l; r ], None)
| Union_t (tl, _), L l ->
let l = unparse_data tl l in
Prim (-1, D_Left, [ l ], None)
| Union_t (_, tr), R r ->
let r = unparse_data tr r in
Prim (-1, D_Right, [ r ], None)
| Option_t t, Some v ->
let v = unparse_data t v in
Prim (-1, D_Some, [ v ], None)
| Option_t _, None ->
Prim (-1, D_None, [], None)
| List_t t, items ->
let items = List.map (unparse_data t) items in
Prim (-1, D_List, items, None)
| Set_t t, set ->
let t = ty_of_comparable_ty t in
let items =
set_fold
(fun item acc ->
unparse_data t item :: acc )
set [] in
Prim (-1, D_Set, List.rev items, None)
| Map_t (kt, vt), map ->
let kt = ty_of_comparable_ty kt in
let items =
map_fold (fun k v acc ->
Prim (-1, D_Item,
[ unparse_data kt k;
unparse_data vt v ],
2017-10-11 17:41:02 +02:00
None)
:: acc)
map [] in
Prim (-1, D_Map, List.rev items, None)
| Lambda_t _, Lam (_, original_code) ->
root original_code
(* ---- Equality witnesses --------------------------------------------------*)
type ('ta, 'tb) eq = Eq : 'same * 'same -> ('same, 'same) eq
let eq
: type t. t -> t -> (t, t) eq tzresult
= fun ta tb -> Ok (Eq (ta, tb))
let comparable_ty_eq
: type ta tb.
ta comparable_ty -> tb comparable_ty ->
(ta comparable_ty, tb comparable_ty) eq tzresult
= fun ta tb -> match ta, tb with
| Int_key, Int_key -> eq ta tb
| Nat_key, Nat_key -> eq ta tb
| String_key, String_key -> eq ta tb
| Tez_key, Tez_key -> eq ta tb
| Bool_key, Bool_key -> eq ta tb
2017-09-15 16:32:50 +02:00
| Key_hash_key, Key_hash_key -> eq ta tb
| Timestamp_key, Timestamp_key -> eq ta tb
| _, _ -> error (Inconsistent_types (ty_of_comparable_ty ta, ty_of_comparable_ty tb))
let rec ty_eq
: type ta tb. ta ty -> tb ty -> (ta ty, tb ty) eq tzresult
= fun ta tb ->
match ta, tb with
| Unit_t, Unit_t -> eq ta tb
| Int_t, Int_t -> eq ta tb
| Nat_t, Nat_t -> eq ta tb
| Key_t, Key_t -> eq ta tb
2017-09-15 16:32:50 +02:00
| Key_hash_t, Key_hash_t -> eq ta tb
| String_t, String_t -> eq ta tb
| Signature_t, Signature_t -> eq ta tb
| Tez_t, Tez_t -> eq ta tb
| Timestamp_t, Timestamp_t -> eq ta tb
| Bool_t, Bool_t -> eq ta tb
| Map_t (tal, tar), Map_t (tbl, tbr) ->
(comparable_ty_eq tal tbl >>? fun (Eq _) ->
ty_eq tar tbr >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| Set_t ea, Set_t eb ->
(comparable_ty_eq ea eb >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| Pair_t (tal, tar), Pair_t (tbl, tbr) ->
(ty_eq tal tbl >>? fun (Eq _) ->
ty_eq tar tbr >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| Union_t (tal, tar), Union_t (tbl, tbr) ->
(ty_eq tal tbl >>? fun (Eq _) ->
ty_eq tar tbr >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| Lambda_t (tal, tar), Lambda_t (tbl, tbr) ->
(ty_eq tal tbl >>? fun (Eq _) ->
ty_eq tar tbr >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| Contract_t (tal, tar), Contract_t (tbl, tbr) ->
(ty_eq tal tbl >>? fun (Eq _) ->
ty_eq tar tbr >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| Option_t tva, Option_t tvb ->
(ty_eq tva tvb >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| List_t tva, List_t tvb ->
(ty_eq tva tvb >>? fun (Eq _) ->
(eq ta tb : (ta ty, tb ty) eq tzresult)) |>
record_trace (Inconsistent_types (ta, tb))
| _, _ -> error (Inconsistent_types (ta, tb))
let rec stack_ty_eq
: type ta tb. int -> ta stack_ty -> tb stack_ty ->
(ta stack_ty, tb stack_ty) eq tzresult = fun lvl ta tb ->
match ta, tb with
| Item_t (tva, ra), Item_t (tvb, rb) ->
ty_eq tva tvb |>
record_trace (Bad_stack_item lvl) >>? fun (Eq _) ->
stack_ty_eq (lvl + 1) ra rb >>? fun (Eq _) ->
(eq ta tb : (ta stack_ty, tb stack_ty) eq tzresult)
| Empty_t, Empty_t -> eq ta tb
| _, _ -> error Bad_stack_length
2016-09-08 19:13:10 +02:00
(* ---- Type checker resuls -------------------------------------------------*)
type 'bef judgement =
| Typed : ('bef, 'aft) descr -> 'bef judgement
| Failed : { descr : 'aft. 'aft stack_ty -> ('bef, 'aft) descr } -> 'bef judgement
2016-09-08 19:13:10 +02:00
(* ---- Type checker (Untyped expressions -> Typed IR) ----------------------*)
2016-09-08 19:13:10 +02:00
2016-11-10 14:29:12 +01:00
type ('t, 'f, 'b) branch =
{ branch : 'r. ('t, 'r) descr -> ('f, 'r) descr -> ('b, 'r) descr } [@@unboxed]
2016-11-10 14:29:12 +01:00
let merge_branches
: type bef a b. int -> a judgement -> b judgement ->
(a, b, bef) branch ->
bef judgement tzresult Lwt.t
= fun loc btr bfr { branch } ->
match btr, bfr with
| Typed ({ aft = aftbt } as dbt), Typed ({ aft = aftbf } as dbf) ->
2016-11-10 14:29:12 +01:00
trace
(Unmatched_branches (loc, aftbt, aftbf))
(Lwt.return (stack_ty_eq 1 aftbt aftbf)) >>=? fun (Eq _) ->
return (Typed (branch dbt dbf))
| Failed { descr = descrt }, Failed { descr = descrf } ->
let descr ret =
branch (descrt ret) (descrf ret) in
return (Failed { descr })
| Typed dbt, Failed { descr = descrf } ->
return (Typed (branch dbt (descrf dbt.aft)))
| Failed { descr = descrt }, Typed dbf ->
return (Typed (branch (descrt dbf.aft) dbf))
2016-11-10 14:29:12 +01:00
let rec parse_comparable_ty : Script.node -> ex_comparable_ty tzresult = function
| Prim (_, T_int, [], _) -> ok (Ex_comparable_ty Int_key)
| Prim (_, T_nat, [], _) -> ok (Ex_comparable_ty Nat_key)
| Prim (_, T_string, [], _) -> ok (Ex_comparable_ty String_key)
| Prim (_, T_tez, [], _) -> ok (Ex_comparable_ty Tez_key)
| Prim (_, T_bool, [], _) -> ok (Ex_comparable_ty Bool_key)
| Prim (_, T_key_hash, [], _) -> ok (Ex_comparable_ty Key_hash_key)
| Prim (_, T_timestamp, [], _) -> ok (Ex_comparable_ty Timestamp_key)
| Prim (loc, (T_int | T_nat
| T_string | T_tez | T_bool
| T_key | T_timestamp as prim), l, _) ->
error (Invalid_arity (loc, prim, 0, List.length l))
| Prim (loc, (T_pair | T_or | T_set | T_map
| T_list | T_option | T_lambda
| T_unit | T_signature | T_contract), _, _) as expr ->
parse_ty expr >>? fun (Ex_ty ty) ->
error (Comparable_type_expected (loc, ty))
| expr ->
error @@ unexpected expr [] Type_namespace
[ T_int ; T_nat ;
T_string ; T_tez ; T_bool ;
T_key ; T_key_hash ; T_timestamp ]
and parse_ty : Script.node -> ex_ty tzresult = function
| Prim (_, T_unit, [], _) -> ok (Ex_ty Unit_t)
| Prim (_, T_int, [], _) -> ok (Ex_ty (Int_t))
| Prim (_, T_nat, [], _) -> ok (Ex_ty (Nat_t))
| Prim (_, T_string, [], _) -> ok (Ex_ty String_t)
| Prim (_, T_tez, [], _) -> ok (Ex_ty Tez_t)
| Prim (_, T_bool, [], _) -> ok (Ex_ty Bool_t)
| Prim (_, T_key, [], _) -> ok (Ex_ty Key_t)
| Prim (_, T_key_hash, [], _) -> ok (Ex_ty Key_hash_t)
| Prim (_, T_timestamp, [], _) -> ok (Ex_ty Timestamp_t)
| Prim (_, T_signature, [], _) -> ok (Ex_ty Signature_t)
| Prim (_, T_contract, [ utl; utr ], _) ->
parse_ty utl >>? fun (Ex_ty tl) ->
parse_ty utr >>? fun (Ex_ty tr) ->
ok (Ex_ty (Contract_t (tl, tr)))
| Prim (_, T_pair, [ utl; utr ], _) ->
parse_ty utl >>? fun (Ex_ty tl) ->
parse_ty utr >>? fun (Ex_ty tr) ->
ok (Ex_ty (Pair_t (tl, tr)))
| Prim (_, T_or, [ utl; utr ], _) ->
parse_ty utl >>? fun (Ex_ty tl) ->
parse_ty utr >>? fun (Ex_ty tr) ->
ok (Ex_ty (Union_t (tl, tr)))
| Prim (_, T_lambda, [ uta; utr ], _) ->
parse_ty uta >>? fun (Ex_ty ta) ->
parse_ty utr >>? fun (Ex_ty tr) ->
ok (Ex_ty (Lambda_t (ta, tr)))
| Prim (_, T_option, [ ut ], _) ->
parse_ty ut >>? fun (Ex_ty t) ->
ok (Ex_ty (Option_t t))
| Prim (_, T_list, [ ut ], _) ->
parse_ty ut >>? fun (Ex_ty t) ->
ok (Ex_ty (List_t t))
| Prim (_, T_set, [ ut ], _) ->
parse_comparable_ty ut >>? fun (Ex_comparable_ty t) ->
ok (Ex_ty (Set_t t))
| Prim (_, T_map, [ uta; utr ], _) ->
parse_comparable_ty uta >>? fun (Ex_comparable_ty ta) ->
parse_ty utr >>? fun (Ex_ty tr) ->
ok (Ex_ty (Map_t (ta, tr)))
| Prim (loc, (T_pair | T_or | T_map as prim), l, _) ->
error (Invalid_arity (loc, prim, 2, List.length l))
| Prim (loc, (T_set | T_list | T_option as prim), l, _) ->
error (Invalid_arity (loc, prim, 1, List.length l))
| Prim (loc, ( T_unit | T_signature | T_contract
| T_int | T_nat
| T_string | T_tez | T_bool
| T_key | T_key_hash | T_timestamp as prim), l, _) ->
error (Invalid_arity (loc, prim, 0, List.length l))
| expr ->
error @@ unexpected expr [] Type_namespace
[ T_pair ; T_or ; T_set ; T_map ;
T_list ; T_option ; T_lambda ;
T_unit ; T_signature ; T_contract ;
T_int ; T_nat ;
T_string ; T_tez ; T_bool ;
T_key ; T_key_hash ; T_timestamp ]
2016-09-08 19:13:10 +02:00
let comparable_ty_of_ty
: type a. int -> a ty -> a comparable_ty tzresult
= fun loc ty -> match ty with
| Int_t -> ok Int_key
| Nat_t -> ok Nat_key
| String_t -> ok String_key
| Tez_t -> ok Tez_key
| Bool_t -> ok Bool_key
2017-09-15 16:32:50 +02:00
| Key_hash_t -> ok Key_hash_key
| Timestamp_t -> ok Timestamp_key
| ty -> error (Comparable_type_expected (loc, ty))
2016-09-08 19:13:10 +02:00
let rec unparse_stack
: type a. a stack_ty -> Script.expr list
= function
| Empty_t -> []
| Item_t (ty, rest) -> strip_locations (unparse_ty ty) :: unparse_stack rest
let rec parse_data
: type a.
?type_logger: (int -> Script.expr list -> Script.expr list -> unit) ->
context -> a ty -> Script.node -> a tzresult Lwt.t
= fun ?type_logger ctxt ty script_data ->
let error () =
Invalid_constant (location script_data, strip_locations script_data, ty) in
let traced body =
trace (error ()) body in
2016-09-08 19:13:10 +02:00
match ty, script_data with
2017-01-11 16:15:38 +01:00
(* Unit *)
| Unit_t, Prim (_, D_Unit, [], _) -> return ()
| Unit_t, Prim (loc, D_Unit, l, _) ->
traced (fail (Invalid_arity (loc, D_Unit, 0, List.length l)))
| Unit_t, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_Unit ]))
2016-09-08 19:13:10 +02:00
(* Booleans *)
| Bool_t, Prim (_, D_True, [], _) -> return true
| Bool_t, Prim (_, D_False, [], _) -> return false
| Bool_t, Prim (loc, (D_True | D_False as c), l, _) ->
traced (fail (Invalid_arity (loc, c, 0, List.length l)))
| Bool_t, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_True ; D_False ]))
(* Strings *)
| String_t, String (_, v) -> return v
| String_t, expr ->
traced (fail (Invalid_kind (location expr, [ String_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* Integers *)
| Int_t, Int (_, v) ->
begin match Script_int.of_string v with
| None -> fail (error ())
| Some v -> return v
end
| Nat_t, Int (_, v) ->
begin match Script_int.of_string v with
| None -> fail (error ())
| Some v ->
if Compare.Int.(Script_int.compare v Script_int.zero >= 0) then
return (Script_int.abs v)
else fail (error ())
end
| Int_t, expr ->
traced (fail (Invalid_kind (location expr, [ Int_kind ], kind expr)))
| Nat_t, expr ->
traced (fail (Invalid_kind (location expr, [ Int_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* Tez amounts *)
| Tez_t, String (_, v) -> begin try
2016-09-08 19:13:10 +02:00
match Tez.of_string v with
| None -> raise Exit
| Some tez -> return tez
with _ ->
fail @@ error ()
2016-09-08 19:13:10 +02:00
end
| Tez_t, expr ->
traced (fail (Invalid_kind (location expr, [ String_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* Timestamps *)
| Timestamp_t, (Int (_, v)) -> begin
2017-10-11 17:41:02 +02:00
match Script_timestamp.of_string v with
2016-09-08 19:13:10 +02:00
| Some v -> return v
| None -> fail (error ())
2016-09-08 19:13:10 +02:00
end
| Timestamp_t, String (_, s) -> begin try
2017-10-11 17:41:02 +02:00
match Script_timestamp.of_string s with
2016-09-08 19:13:10 +02:00
| Some v -> return v
| None -> fail (error ())
with _ -> fail (error ())
2016-09-08 19:13:10 +02:00
end
| Timestamp_t, expr ->
traced (fail (Invalid_kind (location expr, [ String_kind ; Int_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* IDs *)
2017-09-15 16:32:50 +02:00
| Key_t, String (_, s) ->
begin
try
return (Ed25519.Public_key.of_b58check_exn s)
with _ -> fail (error ())
end
| Key_t, expr ->
traced (fail (Invalid_kind (location expr, [ String_kind ], kind expr)))
2017-09-15 16:32:50 +02:00
| Key_hash_t, String (_, s) ->
begin
try
return (Ed25519.Public_key_hash.of_b58check_exn s)
with _ -> fail (error ()) end
| Key_hash_t, expr ->
traced (fail (Invalid_kind (location expr, [ String_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* Signatures *)
| Signature_t, String (_, s) -> begin try
2016-09-08 19:13:10 +02:00
match Data_encoding.Binary.of_bytes
Ed25519.Signature.encoding
2016-09-08 19:13:10 +02:00
(MBytes.of_string (Hex_encode.hex_decode s)) with
| Some s -> return s
| None -> raise Not_found
with _ ->
fail (error ())
2016-09-08 19:13:10 +02:00
end
| Signature_t, expr ->
traced (fail (Invalid_kind (location expr, [ String_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* Contracts *)
| Contract_t (ty1, ty2), String (loc, s) ->
traced @@
(Lwt.return (Contract.of_b58check s)) >>=? fun c ->
2016-09-08 19:13:10 +02:00
parse_contract ctxt ty1 ty2 loc c >>=? fun _ ->
return (ty1, ty2, c)
| Contract_t _, expr ->
traced (fail (Invalid_kind (location expr, [ String_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* Pairs *)
| Pair_t (ta, tb), Prim (_, D_Pair, [ va; vb ], _) ->
traced @@
parse_data ?type_logger ctxt ta va >>=? fun va ->
parse_data ?type_logger ctxt tb vb >>=? fun vb ->
2016-09-08 19:13:10 +02:00
return (va, vb)
| Pair_t _, Prim (loc, D_Pair, l, _) ->
fail @@ Invalid_arity (loc, D_Pair, 2, List.length l)
| Pair_t _, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_Pair ]))
2016-09-08 19:13:10 +02:00
(* Unions *)
| Union_t (tl, _), Prim (_, D_Left, [ v ], _) ->
traced @@
parse_data ?type_logger ctxt tl v >>=? fun v ->
2016-09-08 19:13:10 +02:00
return (L v)
| Union_t _, Prim (loc, D_Left, l, _) ->
fail @@ Invalid_arity (loc, D_Left, 1, List.length l)
| Union_t (_, tr), Prim (_, D_Right, [ v ], _) ->
traced @@
parse_data ?type_logger ctxt tr v >>=? fun v ->
2016-09-08 19:13:10 +02:00
return (R v)
| Union_t _, Prim (loc, D_Right, l, _) ->
fail @@ Invalid_arity (loc, D_Right, 1, List.length l)
| Union_t _, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_Left ; D_Right ]))
2016-09-08 19:13:10 +02:00
(* Lambdas *)
| Lambda_t (ta, tr), (Seq _ as script_instr) ->
traced @@
2017-10-10 20:22:42 +02:00
parse_returning Lambda ?type_logger ctxt ta tr script_instr
| Lambda_t _, expr ->
traced (fail (Invalid_kind (location expr, [ Seq_kind ], kind expr)))
2016-09-08 19:13:10 +02:00
(* Options *)
| Option_t t, Prim (_, D_Some, [ v ], _) ->
traced @@
parse_data ?type_logger ctxt t v >>=? fun v ->
2016-09-08 19:13:10 +02:00
return (Some v)
| Option_t _, Prim (loc, D_Some, l, _) ->
fail @@ Invalid_arity (loc, D_Some, 1, List.length l)
| Option_t _, Prim (_, D_None, [], _) ->
2016-09-08 19:13:10 +02:00
return None
| Option_t _, Prim (loc, D_None, l, _) ->
fail @@ Invalid_arity (loc, D_None, 0, List.length l)
| Option_t _, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_Some ; D_None ]))
2016-09-08 19:13:10 +02:00
(* Lists *)
| List_t t, Prim (_, D_List, vs, _) ->
traced @@
2017-08-15 22:24:40 +02:00
fold_right_s
(fun v rest ->
parse_data ?type_logger ctxt t v >>=? fun v ->
2016-09-08 19:13:10 +02:00
return (v :: rest))
2017-08-15 22:24:40 +02:00
vs []
| List_t _, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_List ]))
2016-09-08 19:13:10 +02:00
(* Sets *)
| Set_t t, (Prim (loc, D_Set, vs, _) as expr) ->
fold_left_s
2017-08-16 14:26:45 +02:00
(fun (last_value, set) v ->
parse_comparable_data ?type_logger ctxt t v >>=? fun v ->
2017-08-16 14:26:45 +02:00
begin match last_value with
| Some value ->
if Compare.Int.(0 <= (compare_comparable t value v))
then
if Compare.Int.(0 = (compare_comparable t value v))
then fail (Duplicate_set_values (loc, strip_locations expr))
else fail (Unordered_set_values (loc, strip_locations expr))
2017-08-16 14:26:45 +02:00
else return ()
| None -> return ()
2017-10-20 10:08:03 +02:00
end >>=? fun () ->
2017-08-16 14:26:45 +02:00
return (Some v, set_update v true set))
(None, empty_set t) vs >>|? snd |> traced
| Set_t _, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_Set ]))
2016-09-08 19:13:10 +02:00
(* Maps *)
| Map_t (tk, tv), (Prim (loc, D_Map, vs, _) as expr) ->
2017-08-16 14:26:45 +02:00
(fold_left_s
(fun (last_value, map) -> function
| Prim (_, D_Item, [ k; v ], _) ->
parse_comparable_data ?type_logger ctxt tk k >>=? fun k ->
parse_data ?type_logger ctxt tv v >>=? fun v ->
2017-08-16 14:26:45 +02:00
begin match last_value with
| Some value ->
if Compare.Int.(0 <= (compare_comparable tk value k))
then
if Compare.Int.(0 = (compare_comparable tk value k))
then fail (Duplicate_map_keys (loc, strip_locations expr))
else fail (Unordered_map_keys (loc, strip_locations expr))
2017-08-16 14:26:45 +02:00
else return ()
| None -> return ()
end >>=? fun () ->
return (Some k, map_update k (Some v) map)
| Prim (loc, D_Item, l, _) ->
fail @@ Invalid_arity (loc, D_Item, 2, List.length l)
| Prim (loc, name, _, _) ->
fail @@ Invalid_primitive (loc, [ D_Item ], name)
| Int _ | String _ | Seq _ ->
fail (error ()))
2017-08-16 14:26:45 +02:00
(None, empty_map tk) vs) >>|? snd |> traced
| Map_t _, expr ->
traced (fail (unexpected expr [] Constant_namespace [ D_Map ]))
2016-09-08 19:13:10 +02:00
and parse_comparable_data
: type a. ?type_logger:(int -> Script.expr list -> Script.expr list -> unit) ->
context -> a comparable_ty -> Script.node -> a tzresult Lwt.t
= fun ?type_logger ctxt ty script_data ->
parse_data ?type_logger ctxt (ty_of_comparable_ty ty) script_data
2016-09-08 19:13:10 +02:00
2017-10-10 20:22:42 +02:00
and parse_returning
: type arg ret. tc_context -> context ->
?type_logger: (int -> Script.expr list -> Script.expr list -> unit) ->
arg ty -> ret ty -> Script.node -> (arg, ret) lambda tzresult Lwt.t =
2017-10-10 20:22:42 +02:00
fun tc_context ctxt ?type_logger arg ret script_instr ->
parse_instr tc_context ctxt ?type_logger
script_instr (Item_t (arg, Empty_t)) >>=? function
| Typed ({ loc ; aft = (Item_t (ty, Empty_t) as stack_ty) } as descr) ->
2016-09-08 19:13:10 +02:00
trace
(Bad_return (loc, stack_ty, ret))
2016-09-08 19:13:10 +02:00
(Lwt.return (ty_eq ty ret)) >>=? fun (Eq _) ->
return (Lam (descr, strip_locations script_instr) : (arg, ret) lambda)
| Typed { loc ; aft = stack_ty } ->
fail (Bad_return (loc, stack_ty, ret))
| Failed { descr } ->
return (Lam (descr (Item_t (ret, Empty_t)), strip_locations script_instr) : (arg, ret) lambda)
2016-09-08 19:13:10 +02:00
and parse_instr
2017-10-10 20:22:42 +02:00
: type bef.
tc_context ->
context ->
?type_logger: (int -> Script.expr list -> Script.expr list -> unit) ->
Script.node -> bef stack_ty -> bef judgement tzresult Lwt.t =
2017-10-10 20:22:42 +02:00
fun tc_context ctxt ?type_logger script_instr stack_ty ->
2016-09-08 19:13:10 +02:00
let return : bef judgement -> bef judgement tzresult Lwt.t = return in
let check_item check loc name n m =
trace (Bad_stack (loc, name, m, stack_ty)) @@
trace (Bad_stack_item n) @@
Lwt.return check in
let check_item_ty exp got loc n =
check_item (ty_eq exp got) loc n in
let typed loc annot (instr, aft) =
begin match type_logger, script_instr with
| None, _
| Some _, (Seq (-1, _, _) | Int _ | String _) -> ()
| Some log, (Prim _ | Seq _) ->
log loc (unparse_stack stack_ty) (unparse_stack aft)
end ;
Typed { loc ; instr ; bef = stack_ty ; aft ; annot } in
match script_instr, stack_ty with
(* stack ops *)
| Prim (loc, I_DROP, [], annot),
Item_t (_, rest) ->
return (typed loc annot (Drop, rest))
| Prim (loc, I_DUP, [], annot),
Item_t (v, rest) ->
return (typed loc annot (Dup, Item_t (v, Item_t (v, rest))))
| Prim (loc, I_SWAP, [], annot),
Item_t (v, Item_t (w, rest)) ->
return (typed loc annot (Swap, Item_t (w, Item_t (v, rest))))
| Prim (loc, I_PUSH, [ t ; d ], annot),
stack ->
(Lwt.return (parse_ty t)) >>=? fun (Ex_ty t) ->
parse_data ?type_logger ctxt t d >>=? fun v ->
return (typed loc annot (Const v, Item_t (t, stack)))
| Prim (loc, I_UNIT, [], annot),
stack ->
return (typed loc annot (Const (), Item_t (Unit_t, stack)))
(* options *)
| Prim (loc, I_SOME, [], annot),
Item_t (t, rest) ->
return (typed loc annot (Cons_some, Item_t (Option_t t, rest)))
| Prim (loc, I_NONE, [ t ], annot),
stack ->
(Lwt.return (parse_ty t)) >>=? fun (Ex_ty t) ->
return (typed loc annot (Cons_none t, Item_t (Option_t t, stack)))
| Prim (loc, I_IF_NONE, [ bt ; bf ], annot),
(Item_t (Option_t t, rest) as bef) ->
check_kind [ Seq_kind ] bt >>=? fun () ->
check_kind [ Seq_kind ] bf >>=? fun () ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger tc_context ctxt bt rest >>=? fun btr ->
parse_instr ?type_logger tc_context ctxt bf (Item_t (t, rest)) >>=? fun bfr ->
let branch ibt ibf =
{ loc ; instr = If_none (ibt, ibf) ; bef ; aft = ibt.aft ; annot } in
merge_branches loc btr bfr { branch }
(* pairs *)
| Prim (loc, I_PAIR, [], annot),
Item_t (a, Item_t (b, rest)) ->
return (typed loc annot (Cons_pair, Item_t (Pair_t(a, b), rest)))
| Prim (loc, I_CAR, [], annot),
Item_t (Pair_t (a, _), rest) ->
return (typed loc annot (Car, Item_t (a, rest)))
| Prim (loc, I_CDR, [], annot),
Item_t (Pair_t (_, b), rest) ->
return (typed loc annot (Cdr, Item_t (b, rest)))
(* unions *)
| Prim (loc, I_LEFT, [ tr ], annot),
Item_t (tl, rest) ->
(Lwt.return (parse_ty tr)) >>=? fun (Ex_ty tr) ->
return (typed loc annot (Left, Item_t (Union_t (tl, tr), rest)))
| Prim (loc, I_RIGHT, [ tl ], annot),
Item_t (tr, rest) ->
(Lwt.return (parse_ty tl)) >>=? fun (Ex_ty tl) ->
return (typed loc annot (Right, Item_t (Union_t (tl, tr), rest)))
| Prim (loc, I_IF_LEFT, [ bt ; bf ], annot),
(Item_t (Union_t (tl, tr), rest) as bef) ->
check_kind [ Seq_kind ] bt >>=? fun () ->
check_kind [ Seq_kind ] bf >>=? fun () ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger tc_context ctxt bt (Item_t (tl, rest)) >>=? fun btr ->
parse_instr ?type_logger tc_context ctxt bf (Item_t (tr, rest)) >>=? fun bfr ->
let branch ibt ibf =
{ loc ; instr = If_left (ibt, ibf) ; bef ; aft = ibt.aft ; annot } in
merge_branches loc btr bfr { branch }
(* lists *)
| Prim (loc, I_NIL, [ t ], annot),
stack ->
(Lwt.return (parse_ty t)) >>=? fun (Ex_ty t) ->
return (typed loc annot (Nil, Item_t (List_t t, stack)))
| Prim (loc, I_CONS, [], annot),
Item_t (tv, Item_t (List_t t, rest)) ->
check_item_ty tv t loc I_CONS 1 2 >>=? fun (Eq _) ->
return (typed loc annot (Cons_list, Item_t (List_t t, rest)))
| Prim (loc, I_IF_CONS, [ bt ; bf ], annot),
(Item_t (List_t t, rest) as bef) ->
check_kind [ Seq_kind ] bt >>=? fun () ->
check_kind [ Seq_kind ] bf >>=? fun () ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger tc_context ctxt bt (Item_t (t, Item_t (List_t t, rest))) >>=? fun btr ->
parse_instr ?type_logger tc_context ctxt bf rest >>=? fun bfr ->
let branch ibt ibf =
{ loc ; instr = If_cons (ibt, ibf) ; bef ; aft = ibt.aft ; annot } in
merge_branches loc btr bfr { branch }
| Prim (loc, I_MAP, [], annot),
Item_t (Lambda_t (param, ret), Item_t (List_t elt, rest)) ->
check_item_ty elt param loc I_MAP 2 2 >>=? fun (Eq _) ->
return (typed loc annot (List_map, Item_t (List_t ret, rest)))
| Prim (loc, I_REDUCE, [], annot),
Item_t (Lambda_t (Pair_t (pelt, pr), r),
Item_t (List_t elt, Item_t (init, rest))) ->
check_item_ty r pr loc I_REDUCE 1 3 >>=? fun (Eq _) ->
check_item_ty elt pelt loc I_REDUCE 2 3 >>=? fun (Eq _) ->
check_item_ty init r loc I_REDUCE 3 3 >>=? fun (Eq _) ->
return (typed loc annot (List_reduce, Item_t (r, rest)))
| Prim (loc, I_SIZE, [], annot),
2017-10-20 10:08:03 +02:00
Item_t (List_t _, rest) ->
return (typed loc annot (List_size, Item_t (Nat_t, rest)))
(* sets *)
| Prim (loc, I_EMPTY_SET, [ t ], annot),
rest ->
(Lwt.return (parse_comparable_ty t)) >>=? fun (Ex_comparable_ty t) ->
return (typed loc annot (Empty_set t, Item_t (Set_t t, rest)))
| Prim (loc, I_MAP, [], annot),
Item_t (Lambda_t (param, ret), Item_t (Set_t elt, rest)) ->
let elt = ty_of_comparable_ty elt in
(Lwt.return (comparable_ty_of_ty loc ret)) >>=? fun ret ->
check_item_ty elt param loc I_MAP 1 2 >>=? fun (Eq _) ->
return (typed loc annot (Set_map ret, Item_t (Set_t ret, rest)))
| Prim (loc, I_REDUCE, [], annot),
Item_t (Lambda_t (Pair_t (pelt, pr), r),
Item_t (Set_t elt, Item_t (init, rest))) ->
let elt = ty_of_comparable_ty elt in
check_item_ty r pr loc I_REDUCE 1 3 >>=? fun (Eq _) ->
check_item_ty elt pelt loc I_REDUCE 2 3 >>=? fun (Eq _) ->
check_item_ty init r loc I_REDUCE 3 3 >>=? fun (Eq _) ->
return (typed loc annot (Set_reduce, Item_t (r, rest)))
| Prim (loc, I_MEM, [], annot),
Item_t (v, Item_t (Set_t elt, rest)) ->
let elt = ty_of_comparable_ty elt in
check_item_ty elt v loc I_MEM 1 2 >>=? fun (Eq _) ->
return (typed loc annot (Set_mem, Item_t (Bool_t, rest)))
| Prim (loc, I_UPDATE, [], annot),
Item_t (v, Item_t (Bool_t, Item_t (Set_t elt, rest))) ->
let ty = ty_of_comparable_ty elt in
check_item_ty ty v loc I_UPDATE 1 3 >>=? fun (Eq _) ->
return (typed loc annot (Set_update, Item_t (Set_t elt, rest)))
| Prim (loc, I_SIZE, [], annot),
2017-08-03 17:21:43 +02:00
Item_t (Set_t _, rest) ->
return (typed loc annot (Set_size, Item_t (Nat_t, rest)))
(* maps *)
| Prim (loc, I_EMPTY_MAP, [ tk ; tv ], annot),
stack ->
(Lwt.return (parse_comparable_ty tk)) >>=? fun (Ex_comparable_ty tk) ->
(Lwt.return (parse_ty tv)) >>=? fun (Ex_ty tv) ->
return (typed loc annot (Empty_map (tk, tv), Item_t (Map_t (tk, tv), stack)))
| Prim (loc, I_MAP, [], annot),
Item_t (Lambda_t (Pair_t (pk, pv), ret), Item_t (Map_t (ck, v), rest)) ->
let k = ty_of_comparable_ty ck in
check_item_ty pk k loc I_MAP 1 2 >>=? fun (Eq _) ->
check_item_ty pv v loc I_MAP 1 2 >>=? fun (Eq _) ->
return (typed loc annot (Map_map, Item_t (Map_t (ck, ret), rest)))
| Prim (loc, I_REDUCE, [], annot),
Item_t (Lambda_t (Pair_t (Pair_t (pk, pv), pr), r),
Item_t (Map_t (ck, v), Item_t (init, rest))) ->
let k = ty_of_comparable_ty ck in
check_item_ty pk k loc I_REDUCE 2 3 >>=? fun (Eq _) ->
check_item_ty pv v loc I_REDUCE 2 3 >>=? fun (Eq _) ->
check_item_ty r pr loc I_REDUCE 1 3 >>=? fun (Eq _) ->
check_item_ty init r loc I_REDUCE 3 3 >>=? fun (Eq _) ->
return (typed loc annot (Map_reduce, Item_t (r, rest)))
| Prim (loc, I_MEM, [], annot),
Item_t (vk, Item_t (Map_t (ck, _), rest)) ->
let k = ty_of_comparable_ty ck in
check_item_ty vk k loc I_MEM 1 2 >>=? fun (Eq _) ->
return (typed loc annot (Map_mem, Item_t (Bool_t, rest)))
| Prim (loc, I_GET, [], annot),
Item_t (vk, Item_t (Map_t (ck, elt), rest)) ->
let k = ty_of_comparable_ty ck in
check_item_ty vk k loc I_GET 1 2 >>=? fun (Eq _) ->
return (typed loc annot (Map_get, Item_t (Option_t elt, rest)))
| Prim (loc, I_UPDATE, [], annot),
Item_t (vk, Item_t (Option_t vv, Item_t (Map_t (ck, v), rest))) ->
let k = ty_of_comparable_ty ck in
check_item_ty vk k loc I_UPDATE 1 3 >>=? fun (Eq _) ->
check_item_ty vv v loc I_UPDATE 2 3 >>=? fun (Eq _) ->
return (typed loc annot (Map_update, Item_t (Map_t (ck, v), rest)))
| Prim (loc, I_SIZE, [], annot),
2017-08-03 17:21:43 +02:00
Item_t (Map_t (_, _), rest) ->
return (typed loc annot (Map_size, Item_t (Nat_t, rest)))
(* control *)
| Seq (loc, [], annot),
stack ->
return (typed loc annot (Nop, stack))
| Seq (loc, [ single ], (Some _ as annot)),
stack ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger tc_context ctxt single stack >>=? begin function
| Typed ({ aft } as instr) ->
let nop = { bef = aft ; loc = loc ; aft ; annot = None ; instr = Nop } in
return (typed loc annot (Seq (instr, nop), aft))
| Failed { descr } ->
let descr aft =
let nop = { bef = aft ; loc = loc ; aft ; annot = None ; instr = Nop } in
let descr = descr aft in
{ descr with instr = Seq (descr, nop) ; annot } in
return (Failed { descr })
end
| Seq (loc, hd :: tl, annot),
stack ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger tc_context ctxt hd stack >>=? begin function
| Failed _ ->
fail (Fail_not_in_tail_position (Micheline.location hd))
| Typed ({ aft = middle } as ihd) ->
parse_instr ?type_logger tc_context ctxt (Seq (-1, tl, annot)) middle >>=? function
| Failed { descr } ->
let descr ret =
{ loc ; instr = Seq (ihd, descr ret) ;
bef = stack ; aft = ret ; annot = None } in
return (Failed { descr })
| Typed itl ->
return (typed loc annot (Seq (ihd, itl), itl.aft))
end
| Prim (loc, I_IF, [ bt ; bf ], annot),
(Item_t (Bool_t, rest) as bef) ->
check_kind [ Seq_kind ] bt >>=? fun () ->
check_kind [ Seq_kind ] bf >>=? fun () ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger tc_context ctxt bt rest >>=? fun btr ->
parse_instr ?type_logger tc_context ctxt bf rest >>=? fun bfr ->
let branch ibt ibf =
{ loc ; instr = If (ibt, ibf) ; bef ; aft = ibt.aft ; annot } in
merge_branches loc btr bfr { branch }
| Prim (loc, I_LOOP, [ body ], annot),
(Item_t (Bool_t, rest) as stack) ->
check_kind [ Seq_kind ] body >>=? fun () ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger tc_context ctxt body rest >>=? begin function
| Typed ibody ->
trace
(Unmatched_branches (loc, ibody.aft, stack))
(Lwt.return (stack_ty_eq 1 ibody.aft stack)) >>=? fun (Eq _) ->
return (typed loc annot (Loop ibody, rest))
| Failed { descr } ->
let ibody = descr (Item_t (Bool_t, rest)) in
return (typed loc annot (Loop ibody, rest))
end
| Prim (loc, I_LAMBDA, [ arg ; ret ; code ], annot),
stack ->
(Lwt.return (parse_ty arg)) >>=? fun (Ex_ty arg) ->
(Lwt.return (parse_ty ret)) >>=? fun (Ex_ty ret) ->
check_kind [ Seq_kind ] code >>=? fun () ->
2017-10-10 20:22:42 +02:00
parse_returning Lambda ?type_logger ctxt arg ret code >>=? fun lambda ->
return (typed loc annot (Lambda lambda, Item_t (Lambda_t (arg, ret), stack)))
| Prim (loc, I_EXEC, [], annot),
Item_t (arg, Item_t (Lambda_t (param, ret), rest)) ->
check_item_ty arg param loc I_EXEC 1 2 >>=? fun (Eq _) ->
return (typed loc annot (Exec, Item_t (ret, rest)))
| Prim (loc, I_DIP, [ code ], annot),
Item_t (v, rest) ->
check_kind [ Seq_kind ] code >>=? fun () ->
2017-10-10 20:22:42 +02:00
parse_instr ?type_logger (add_dip v tc_context) ctxt code rest >>=? begin function
| Typed descr ->
return (typed loc annot (Dip descr, Item_t (v, descr.aft)))
| Failed _ ->
fail (Fail_not_in_tail_position loc)
end
| Prim (loc, I_FAIL, [], annot),
bef ->
let descr aft = { loc ; instr = Fail ; bef ; aft ; annot } in
return (Failed { descr })
(* timestamp operations *)
| Prim (loc, I_ADD, [], annot),
2017-10-11 17:41:02 +02:00
Item_t (Timestamp_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Add_timestamp_to_seconds, Item_t (Timestamp_t, rest)))
| Prim (loc, I_ADD, [], annot),
2017-10-11 17:41:02 +02:00
Item_t (Int_t, Item_t (Timestamp_t, rest)) ->
return (typed loc annot (Add_seconds_to_timestamp, Item_t (Timestamp_t, rest)))
| Prim (loc, I_SUB, [], annot),
2017-10-11 17:41:02 +02:00
Item_t (Timestamp_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Sub_timestamp_seconds, Item_t (Timestamp_t, rest)))
| Prim (loc, I_SUB, [], annot),
2017-10-11 17:41:02 +02:00
Item_t (Timestamp_t, Item_t (Timestamp_t, rest)) ->
return (typed loc annot (Diff_timestamps, Item_t (Int_t, rest)))
(* string operations *)
| Prim (loc, I_CONCAT, [], annot),
Item_t (String_t, Item_t (String_t, rest)) ->
return (typed loc annot (Concat, Item_t (String_t, rest)))
(* currency operations *)
| Prim (loc, I_ADD, [], annot),
Item_t (Tez_t, Item_t (Tez_t, rest)) ->
return (typed loc annot (Add_tez, Item_t (Tez_t, rest)))
| Prim (loc, I_SUB, [], annot),
Item_t (Tez_t, Item_t (Tez_t, rest)) ->
return (typed loc annot (Sub_tez, Item_t (Tez_t, rest)))
| Prim (loc, I_MUL, [], annot),
Item_t (Tez_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Mul_teznat, Item_t (Tez_t, rest)))
| Prim (loc, I_MUL, [], annot),
Item_t (Nat_t, Item_t (Tez_t, rest)) ->
return (typed loc annot (Mul_nattez, Item_t (Tez_t, rest)))
(* boolean operations *)
| Prim (loc, I_OR, [], annot),
Item_t (Bool_t, Item_t (Bool_t, rest)) ->
return (typed loc annot (Or, Item_t (Bool_t, rest)))
| Prim (loc, I_AND, [], annot),
Item_t (Bool_t, Item_t (Bool_t, rest)) ->
return (typed loc annot (And, Item_t (Bool_t, rest)))
| Prim (loc, I_XOR, [], annot),
Item_t (Bool_t, Item_t (Bool_t, rest)) ->
return (typed loc annot (Xor, Item_t (Bool_t, rest)))
| Prim (loc, I_NOT, [], annot),
Item_t (Bool_t, rest) ->
return (typed loc annot (Not, Item_t (Bool_t, rest)))
(* integer operations *)
| Prim (loc, I_ABS, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Abs_int, Item_t (Nat_t, rest)))
| Prim (loc, I_INT, [], annot),
Item_t (Nat_t, rest) ->
return (typed loc annot (Int_nat, Item_t (Int_t, rest)))
| Prim (loc, I_NEG, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Neg_int, Item_t (Int_t, rest)))
| Prim (loc, I_NEG, [], annot),
Item_t (Nat_t, rest) ->
return (typed loc annot (Neg_nat, Item_t (Int_t, rest)))
| Prim (loc, I_ADD, [], annot),
Item_t (Int_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Add_intint, Item_t (Int_t, rest)))
| Prim (loc, I_ADD, [], annot),
Item_t (Int_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Add_intnat, Item_t (Int_t, rest)))
| Prim (loc, I_ADD, [], annot),
Item_t (Nat_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Add_natint, Item_t (Int_t, rest)))
| Prim (loc, I_ADD, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Add_natnat, Item_t (Nat_t, rest)))
| Prim (loc, I_SUB, [], annot),
Item_t (Int_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Sub_int, Item_t (Int_t, rest)))
| Prim (loc, I_SUB, [], annot),
Item_t (Int_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Sub_int, Item_t (Int_t, rest)))
| Prim (loc, I_SUB, [], annot),
Item_t (Nat_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Sub_int, Item_t (Int_t, rest)))
| Prim (loc, I_SUB, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Sub_int, Item_t (Int_t, rest)))
| Prim (loc, I_MUL, [], annot),
Item_t (Int_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Mul_intint, Item_t (Int_t, rest)))
| Prim (loc, I_MUL, [], annot),
Item_t (Int_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Mul_intnat, Item_t (Int_t, rest)))
| Prim (loc, I_MUL, [], annot),
Item_t (Nat_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Mul_natint, Item_t (Int_t, rest)))
| Prim (loc, I_MUL, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Mul_natnat, Item_t (Nat_t, rest)))
| Prim (loc, I_EDIV, [], annot),
Item_t (Tez_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Ediv_teznat,
Item_t (Option_t (Pair_t (Tez_t,Tez_t)), rest)))
| Prim (loc, I_EDIV, [], annot),
Item_t (Tez_t, Item_t (Tez_t, rest)) ->
return (typed loc annot (Ediv_tez,
Item_t (Option_t (Pair_t (Nat_t,Tez_t)), rest)))
| Prim (loc, I_EDIV, [], annot),
Item_t (Int_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Ediv_intint,
Item_t (Option_t (Pair_t (Int_t,Nat_t)), rest)))
| Prim (loc, I_EDIV, [], annot),
Item_t (Int_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Ediv_intnat,
Item_t (Option_t (Pair_t (Int_t,Nat_t)), rest)))
| Prim (loc, I_EDIV, [], annot),
Item_t (Nat_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Ediv_natint,
Item_t (Option_t (Pair_t (Int_t,Nat_t)), rest)))
| Prim (loc, I_EDIV, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Ediv_natnat,
Item_t (Option_t (Pair_t (Nat_t,Nat_t)), rest)))
| Prim (loc, I_LSL, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Lsl_nat, Item_t (Nat_t, rest)))
| Prim (loc, I_LSR, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Lsr_nat, Item_t (Nat_t, rest)))
| Prim (loc, I_OR, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Or_nat, Item_t (Nat_t, rest)))
| Prim (loc, I_AND, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (And_nat, Item_t (Nat_t, rest)))
| Prim (loc, I_XOR, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Xor_nat, Item_t (Nat_t, rest)))
| Prim (loc, I_NOT, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Not_int, Item_t (Int_t, rest)))
| Prim (loc, I_NOT, [], annot),
Item_t (Nat_t, rest) ->
return (typed loc annot (Not_nat, Item_t (Int_t, rest)))
(* comparison *)
| Prim (loc, I_COMPARE, [], annot),
Item_t (Int_t, Item_t (Int_t, rest)) ->
return (typed loc annot (Compare Int_key, Item_t (Int_t, rest)))
| Prim (loc, I_COMPARE, [], annot),
Item_t (Nat_t, Item_t (Nat_t, rest)) ->
return (typed loc annot (Compare Nat_key, Item_t (Int_t, rest)))
| Prim (loc, I_COMPARE, [], annot),
Item_t (Bool_t, Item_t (Bool_t, rest)) ->
return (typed loc annot (Compare Bool_key, Item_t (Int_t, rest)))
| Prim (loc, I_COMPARE, [], annot),
Item_t (String_t, Item_t (String_t, rest)) ->
return (typed loc annot (Compare String_key, Item_t (Int_t, rest)))
| Prim (loc, I_COMPARE, [], annot),
Item_t (Tez_t, Item_t (Tez_t, rest)) ->
return (typed loc annot (Compare Tez_key, Item_t (Int_t, rest)))
| Prim (loc, I_COMPARE, [], annot),
2017-09-15 16:32:50 +02:00
Item_t (Key_hash_t, Item_t (Key_hash_t, rest)) ->
return (typed loc annot (Compare Key_hash_key, Item_t (Int_t, rest)))
| Prim (loc, I_COMPARE, [], annot),
Item_t (Timestamp_t, Item_t (Timestamp_t, rest)) ->
return (typed loc annot (Compare Timestamp_key, Item_t (Int_t, rest)))
(* comparators *)
| Prim (loc, I_EQ, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Eq, Item_t (Bool_t, rest)))
| Prim (loc, I_NEQ, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Neq, Item_t (Bool_t, rest)))
| Prim (loc, I_LT, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Lt, Item_t (Bool_t, rest)))
| Prim (loc, I_GT, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Gt, Item_t (Bool_t, rest)))
| Prim (loc, I_LE, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Le, Item_t (Bool_t, rest)))
| Prim (loc, I_GE, [], annot),
Item_t (Int_t, rest) ->
return (typed loc annot (Ge, Item_t (Bool_t, rest)))
(* protocol *)
| Prim (loc, I_MANAGER, [], annot),
Item_t (Contract_t _, rest) ->
2017-09-15 16:32:50 +02:00
return (typed loc annot (Manager, Item_t (Key_hash_t, rest)))
| Prim (loc, I_TRANSFER_TOKENS, [], annot),
Item_t (p, Item_t
(Tez_t, Item_t
(Contract_t (cp, cr), Item_t
(storage, Empty_t)))) ->
check_item_ty p cp loc I_TRANSFER_TOKENS 1 4 >>=? fun (Eq _) ->
2017-10-10 20:22:42 +02:00
begin match tc_context with
| Dip _ -> fail (Transfer_in_dip loc)
| Lambda -> fail (Transfer_in_lambda loc)
| Toplevel { storage_type } ->
check_item_ty storage storage_type loc I_TRANSFER_TOKENS 3 4 >>=? fun (Eq _) ->
return (typed loc annot (Transfer_tokens storage,
2017-10-10 20:22:42 +02:00
Item_t (cr, Item_t (storage, Empty_t))))
end
| Prim (loc, I_CREATE_ACCOUNT, [], annot),
Item_t
2017-09-15 16:32:50 +02:00
(Key_hash_t, Item_t
(Option_t Key_hash_t, Item_t
(Bool_t, Item_t
(Tez_t, rest)))) ->
return (typed loc annot (Create_account,
2017-01-11 16:15:38 +01:00
Item_t (Contract_t (Unit_t, Unit_t), rest)))
| Prim (loc, I_DEFAULT_ACCOUNT, [], annot),
2017-09-15 16:32:50 +02:00
Item_t (Key_hash_t, rest) ->
return
(typed loc annot (Default_account, Item_t (Contract_t (Unit_t, Unit_t), rest)))
| Prim (loc, I_CREATE_CONTRACT, [], annot),
Item_t
2017-09-15 16:32:50 +02:00
(Key_hash_t, Item_t
(Option_t Key_hash_t, Item_t
(Bool_t, Item_t
(Bool_t, Item_t
(Tez_t, Item_t
(Lambda_t (Pair_t (p, gp),
Pair_t (r, gr)), Item_t
(ginit, rest))))))) ->
check_item_ty gp gr loc I_CREATE_CONTRACT 5 7 >>=? fun (Eq _) ->
check_item_ty ginit gp loc I_CREATE_CONTRACT 6 7 >>=? fun (Eq _) ->
return (typed loc annot (Create_contract (gp, p, r),
Item_t (Contract_t (p, r), rest)))
| Prim (loc, I_NOW, [], annot),
stack ->
return (typed loc annot (Now, Item_t (Timestamp_t, stack)))
| Prim (loc, I_AMOUNT, [], annot),
stack ->
return (typed loc annot (Amount, Item_t (Tez_t, stack)))
| Prim (loc, I_BALANCE, [], annot),
stack ->
return (typed loc annot (Balance, Item_t (Tez_t, stack)))
| Prim (loc, I_HASH_KEY, [], annot),
2017-09-15 16:32:50 +02:00
Item_t (Key_t, rest) ->
return (typed loc annot (Hash_key, Item_t (Key_hash_t, rest)))
| Prim (loc, I_CHECK_SIGNATURE, [], annot),
Item_t (Key_t, Item_t (Pair_t (Signature_t, String_t), rest)) ->
return (typed loc annot (Check_signature, Item_t (Bool_t, rest)))
| Prim (loc, I_H, [], annot),
Item_t (t, rest) ->
return (typed loc annot (H t, Item_t (String_t, rest)))
| Prim (loc, I_STEPS_TO_QUOTA, [], annot),
stack ->
return (typed loc annot (Steps_to_quota, Item_t (Nat_t, stack)))
| Prim (loc, I_SOURCE, [ ta; tb ], annot),
stack ->
(Lwt.return (parse_ty ta)) >>=? fun (Ex_ty ta) ->
(Lwt.return (parse_ty tb)) >>=? fun (Ex_ty tb) ->
return (typed loc annot (Source (ta, tb), Item_t (Contract_t (ta, tb), stack)))
(* Primitive parsing errors *)
| Prim (loc, (I_DROP | I_DUP | I_SWAP | I_SOME | I_UNIT
| I_PAIR | I_CAR | I_CDR | I_CONS
| I_MEM | I_UPDATE | I_MAP | I_REDUCE
| I_GET | I_EXEC | I_FAIL | I_SIZE
| I_CONCAT | I_ADD | I_SUB
| I_MUL | I_EDIV | I_OR | I_AND | I_XOR
| I_NOT
| I_ABS | I_NEG | I_LSL | I_LSR
| I_COMPARE | I_EQ | I_NEQ
| I_LT | I_GT | I_LE | I_GE
| I_MANAGER | I_TRANSFER_TOKENS | I_CREATE_ACCOUNT
| I_CREATE_CONTRACT | I_NOW
| I_DEFAULT_ACCOUNT | I_AMOUNT | I_BALANCE
| I_CHECK_SIGNATURE | I_HASH_KEY
| I_H | I_STEPS_TO_QUOTA
as name), (_ :: _ as l), _), _ ->
fail (Invalid_arity (loc, name, 0, List.length l))
| Prim (loc, (I_NONE | I_LEFT | I_RIGHT | I_NIL
| I_EMPTY_SET | I_DIP | I_LOOP
as name), ([]
| _ :: _ :: _ as l), _), _ ->
fail (Invalid_arity (loc, name, 1, List.length l))
| Prim (loc, (I_PUSH | I_IF_NONE | I_IF_LEFT | I_IF_CONS
| I_EMPTY_MAP | I_IF | I_SOURCE
as name), ([] | [ _ ]
| _ :: _ :: _ :: _ as l), _), _ ->
fail (Invalid_arity (loc, name, 2, List.length l))
| Prim (loc, I_LAMBDA, ([] | [ _ ] | [ _ ; _ ]
| _ :: _ :: _ :: _ :: _ as l), _), _ ->
fail (Invalid_arity (loc, I_LAMBDA, 3, List.length l))
(* Stack errors *)
| Prim (loc, (I_ADD | I_SUB | I_MUL | I_EDIV
| I_AND | I_OR | I_XOR | I_LSL | I_LSR
| I_CONCAT | I_COMPARE as name), [], _),
Item_t (ta, Item_t (tb, _)) ->
fail (Undefined_binop (loc, name, ta, tb))
| Prim (loc, (I_NEG | I_ABS | I_NOT
| I_EQ | I_NEQ | I_LT | I_GT | I_LE | I_GE as name),
[], _),
Item_t (t, _) ->
fail (Undefined_unop (loc, name, t))
| Prim (loc, (I_REDUCE | I_UPDATE as name), [], _),
stack ->
fail (Bad_stack (loc, name, 3, stack))
| Prim (loc, I_CREATE_CONTRACT, [], _),
stack ->
fail (Bad_stack (loc, I_CREATE_CONTRACT, 7, stack))
| Prim (loc, I_CREATE_ACCOUNT, [], _),
stack ->
fail (Bad_stack (loc, I_CREATE_ACCOUNT, 4, stack))
| Prim (loc, I_TRANSFER_TOKENS, [], _),
stack ->
fail (Bad_stack (loc, I_TRANSFER_TOKENS, 3, stack))
| Prim (loc, (I_DROP | I_DUP | I_CAR | I_CDR | I_SOME | I_H | I_DIP
| I_IF_NONE | I_LEFT | I_RIGHT | I_IF_LEFT | I_IF
| I_LOOP | I_IF_CONS | I_MANAGER | I_DEFAULT_ACCOUNT
| I_NEG | I_ABS | I_INT | I_NOT
| I_EQ | I_NEQ | I_LT | I_GT | I_LE | I_GE as name), _, _),
stack ->
fail (Bad_stack (loc, name, 1, stack))
| Prim (loc, (I_SWAP | I_PAIR | I_CONS
| I_MAP | I_GET | I_MEM | I_EXEC
| I_CHECK_SIGNATURE | I_ADD | I_SUB | I_MUL
| I_EDIV | I_AND | I_OR | I_XOR
| I_LSL | I_LSR | I_CONCAT as name), _, _),
stack ->
fail (Bad_stack (loc, name, 2, stack))
(* Generic parsing errors *)
| expr, _ ->
fail @@ unexpected expr [ Seq_kind ] Instr_namespace
[ I_DROP ; I_DUP ; I_SWAP ; I_SOME ; I_UNIT ;
I_PAIR ; I_CAR ; I_CDR ; I_CONS ;
I_MEM ; I_UPDATE ; I_MAP ; I_REDUCE ;
I_GET ; I_EXEC ; I_FAIL ; I_SIZE ;
I_CONCAT ; I_ADD ; I_SUB ;
I_MUL ; I_EDIV ; I_OR ; I_AND ; I_XOR ;
I_NOT ;
I_ABS ; I_INT; I_NEG ; I_LSL ; I_LSR ;
I_COMPARE ; I_EQ ; I_NEQ ;
I_LT ; I_GT ; I_LE ; I_GE ;
I_MANAGER ; I_TRANSFER_TOKENS ; I_CREATE_ACCOUNT ;
I_CREATE_CONTRACT ; I_NOW ; I_AMOUNT ; I_BALANCE ;
I_DEFAULT_ACCOUNT ; I_CHECK_SIGNATURE ; I_H ; I_HASH_KEY ;
I_STEPS_TO_QUOTA ;
I_PUSH ; I_NONE ; I_LEFT ; I_RIGHT ; I_NIL ;
I_EMPTY_SET ; I_DIP ; I_LOOP ;
I_IF_NONE ; I_IF_LEFT ; I_IF_CONS ;
I_EMPTY_MAP ; I_IF ; I_SOURCE ; I_LAMBDA ]
2016-09-08 19:13:10 +02:00
and parse_contract
: type arg ret. context -> arg ty -> ret ty -> Script.location -> Contract.t ->
(arg, ret) typed_contract tzresult Lwt.t
= fun ctxt arg ret loc contract ->
Contract.exists ctxt contract >>=? function
| false -> fail (Invalid_contract (loc, contract))
| true ->
trace
(Invalid_contract (loc, contract)) @@
Contract.get_script ctxt contract >>=? function
| None ->
Lwt.return
(ty_eq arg Unit_t >>? fun (Eq _) ->
ty_eq ret Unit_t >>? fun (Eq _) ->
let contract : (arg, ret) typed_contract =
(arg, ret, contract) in
ok contract)
| Some { code } ->
Lwt.return
(parse_toplevel code >>? fun (arg_type, ret_type, _, _) ->
parse_ty arg_type >>? fun (Ex_ty targ) ->
parse_ty ret_type >>? fun (Ex_ty tret) ->
ty_eq targ arg >>? fun (Eq _) ->
ty_eq tret ret >>? fun (Eq _) ->
let contract : (arg, ret) typed_contract =
(arg, ret, contract) in
ok contract)
2016-09-08 19:13:10 +02:00
and parse_toplevel
: Script.expr -> (Script.node * Script.node * Script.node * Script.node) tzresult
= fun toplevel -> match root toplevel with
| Int (loc, _) -> error (Invalid_kind (loc, [ Seq_kind ], Int_kind))
| String (loc, _) -> error (Invalid_kind (loc, [ Seq_kind ], String_kind))
| Prim (loc, _, _, _) -> error (Invalid_kind (loc, [ Seq_kind ], Prim_kind))
| Seq (_, fields, _) ->
let rec find_fields p r s c fields =
match fields with
| [] -> ok (p, r, s, c)
| Int (loc, _) :: _ -> error (Invalid_kind (loc, [ Prim_kind ], Int_kind))
| String (loc, _) :: _ -> error (Invalid_kind (loc, [ Prim_kind ], String_kind))
| Seq (loc, _, _) :: _ -> error (Invalid_kind (loc, [ Prim_kind ], Seq_kind))
| Prim (loc, K_parameter, [ arg ], _) :: rest ->
begin match p with
| None -> find_fields (Some arg) r s c rest
| Some _ -> error (Duplicate_field (loc, K_parameter))
end
| Prim (loc, K_return, [ arg ], _) :: rest ->
begin match r with
| None -> find_fields p (Some arg) s c rest
| Some _ -> error (Duplicate_field (loc, K_return))
end
| Prim (loc, K_storage, [ arg ], _) :: rest ->
begin match s with
| None -> find_fields p r (Some arg) c rest
| Some _ -> error (Duplicate_field (loc, K_storage))
end
| Prim (loc, K_code, [ arg ], _) :: rest ->
begin match c with
| None -> find_fields p r s (Some arg) rest
| Some _ -> error (Duplicate_field (loc, K_code))
end
| Prim (loc, (K_parameter | K_return | K_storage | K_code as name), args, _) :: _ ->
error (Invalid_arity (loc, name, 1, List.length args))
| Prim (loc, name, _, _) :: _ ->
let allowed = [ K_parameter ; K_return ; K_storage ; K_code ] in
error (Invalid_primitive (loc, allowed, name))
in
find_fields None None None None fields >>? function
| (None, _, _, _) -> error (Missing_field K_parameter)
| (Some _, None, _, _) -> error (Missing_field K_return)
| (Some _, Some _, None, _) -> error (Missing_field K_storage)
| (Some _, Some _, Some _, None) -> error (Missing_field K_code)
| (Some p, Some r, Some s, Some c) -> ok (p, r, s, c)
type ex_script = Ex_script : ('a, 'b, 'c) script -> ex_script
2016-09-08 19:13:10 +02:00
let parse_script
: ?type_logger: (int -> Script.expr list -> Script.expr list -> unit) ->
context -> Script.t -> ex_script tzresult Lwt.t
= fun ?type_logger ctxt { code ; storage } ->
Lwt.return (parse_toplevel code) >>=? fun (arg_type, ret_type, storage_type, code_field) ->
trace
(Ill_formed_type (Some "parameter", code, location arg_type))
(Lwt.return (parse_ty arg_type)) >>=? fun (Ex_ty arg_type) ->
trace
(Ill_formed_type (Some "return", code, location ret_type))
(Lwt.return (parse_ty ret_type)) >>=? fun (Ex_ty ret_type) ->
trace
(Ill_formed_type (Some "storage", code, location storage_type))
(Lwt.return (parse_ty storage_type)) >>=? fun (Ex_ty storage_type) ->
let arg_type_full = Pair_t (arg_type, storage_type) in
let ret_type_full = Pair_t (ret_type, storage_type) in
trace
(Ill_typed_data (None, storage, storage_type))
(parse_data ?type_logger ctxt storage_type (root storage)) >>=? fun storage ->
trace
(Ill_typed_contract (code, []))
(parse_returning (Toplevel { storage_type }) ctxt ?type_logger arg_type_full ret_type_full code_field)
2017-10-10 20:22:42 +02:00
>>=? fun code ->
return (Ex_script { code; arg_type; ret_type; storage; storage_type })
2016-09-08 19:13:10 +02:00
2016-11-10 16:25:31 +01:00
let type_map_enc =
let open Data_encoding in
list
(conv
(fun (loc, (bef, aft)) -> (loc, bef, aft))
(fun (loc, bef, aft) -> (loc, (bef, aft)))
(obj3
(req "location" Script.location_encoding)
(req "stackBefore" (list Script.expr_encoding))
(req "stackAfter" (list Script.expr_encoding))))
2016-09-08 19:13:10 +02:00
let typecheck_code
: context -> Script.expr -> type_map tzresult Lwt.t
= fun ctxt code ->
Lwt.return (parse_toplevel code) >>=? fun (arg_type, ret_type, storage_type, code_field) ->
let type_map = ref [] in
trace
(Ill_formed_type (Some "parameter", code, location arg_type))
(Lwt.return (parse_ty arg_type)) >>=? fun (Ex_ty arg_type) ->
trace
(Ill_formed_type (Some "return", code, location ret_type))
(Lwt.return (parse_ty ret_type)) >>=? fun (Ex_ty ret_type) ->
trace
(Ill_formed_type (Some "storage", code, location storage_type))
(Lwt.return (parse_ty storage_type)) >>=? fun (Ex_ty storage_type) ->
let arg_type_full = Pair_t (arg_type, storage_type) in
let ret_type_full = Pair_t (ret_type, storage_type) in
let result =
2017-10-10 20:22:42 +02:00
parse_returning
(Toplevel { storage_type })
ctxt
~type_logger: (fun loc bef aft -> type_map := (loc, (bef, aft)) :: !type_map)
arg_type_full ret_type_full code_field in
trace
(Ill_typed_contract (code, !type_map))
result >>=? fun (Lam _) ->
return !type_map
let typecheck_data
: ?type_logger: (int -> Script.expr list -> Script.expr list -> unit) ->
context -> Script.expr * Script.expr -> unit tzresult Lwt.t
= fun ?type_logger ctxt (data, exp_ty) ->
trace
(Ill_formed_type (None, exp_ty, 0))
(Lwt.return (parse_ty (root exp_ty))) >>=? fun (Ex_ty exp_ty) ->
trace
(Ill_typed_data (None, data, exp_ty))
(parse_data ?type_logger ctxt exp_ty (root data)) >>=? fun _ ->
return ()
(* ---- Error registration --------------------------------------------------*)
let ex_ty_enc =
Data_encoding.conv
(fun (Ex_ty ty) -> strip_locations (unparse_ty ty))
(fun expr ->
match parse_ty (root expr) with
| Ok (Ex_ty ty) -> Ex_ty ty
| _ -> Ex_ty Unit_t (* FIXME: ? *))
Script.expr_encoding
let () =
let open Data_encoding in
let located enc =
merge_objs
(obj1 (req "location" Script.location_encoding))
enc in
let arity_enc =
int8 in
let namespace_enc =
def "primitiveNamespace" @@
describe
~title: "Primitive namespace"
~description:
"One of the three possible namespaces of primitive \
(data constructor, type name or instruction)." @@
string_enum [ "type", Type_namespace ;
"constant", Constant_namespace ;
"instruction", Instr_namespace ] in
let kind_enc =
def "primitiveNamespace" @@
describe
~title: "Expression kind"
~description:
"One of the four possible kinds of expression \
(integer, string, primitive application or sequence)." @@
string_enum [ "integer", Int_kind ;
"string", String_kind ;
"primitiveApplication", Prim_kind ;
"sequence", Seq_kind ] in
let ex_stack_ty_enc =
let rec unfold = function
| Ex_stack_ty (Item_t (ty, rest)) ->
Ex_ty ty :: unfold (Ex_stack_ty rest)
| Ex_stack_ty Empty_t -> [] in
let rec fold = function
| Ex_ty ty :: rest ->
let Ex_stack_ty rest = fold rest in
Ex_stack_ty (Item_t (ty, rest))
| [] -> Ex_stack_ty Empty_t in
conv unfold fold (list ex_ty_enc) in
(* -- Structure errors ---------------------- *)
register_error_kind
`Permanent
~id:"invalidArityTypeError"
~title: "Invalid arity (typechecking error)"
~description:
"In a script or data expression, a primitive was applied \
to an unsupported number of arguments."
(located (obj3
(req "primitiveName" Script.prim_encoding)
(req "expectedArity" arity_enc)
(req "wrongArity" arity_enc)))
(function
| Invalid_arity (loc, name, exp, got) ->
Some (loc, (name, exp, got))
| _ -> None)
(fun (loc, (name, exp, got)) ->
Invalid_arity (loc, name, exp, got)) ;
register_error_kind
`Permanent
~id:"missingScriptField"
~title:"Script is missing a field (parse error)"
~description:
"When parsing script, a field was expected, but not provided"
(obj1 (req "prim" prim_encoding))
(function Missing_field prim -> Some prim | _ -> None)
(fun prim -> Missing_field prim) ;
register_error_kind
`Permanent
~id:"invalidPrimitiveTypeError"
~title: "Invalid primitive (typechecking error)"
~description:
"In a script or data expression, a primitive was unknown."
(located (obj2
(dft "expectedPrimitiveNames" (list prim_encoding) [])
(req "wrongPrimitiveName" prim_encoding)))
(function
| Invalid_primitive (loc, exp, got) -> Some (loc, (exp, got))
| _ -> None)
(fun (loc, (exp, got)) ->
Invalid_primitive (loc, exp, got)) ;
register_error_kind
`Permanent
~id:"invalidExpressionKindTypeError"
~title: "Invalid expression kind (typechecking error)"
~description:
"In a script or data expression, an expression was of the wrong kind \
(for instance a string where only a primitive applications can appear)."
(located (obj2
(req "expectedKinds" (list kind_enc))
(req "wrongKind" kind_enc)))
(function
| Invalid_kind (loc, exp, got) -> Some (loc, (exp, got))
| _ -> None)
(fun (loc, (exp, got)) ->
Invalid_kind (loc, exp, got)) ;
register_error_kind
`Permanent
~id:"invalidPrimitiveNamespaceTypeError"
~title: "Invalid primitive namespace (typechecking error)"
~description:
"In a script or data expression, a primitive was of the wrong namespace."
(located (obj3
(req "primitiveName" prim_encoding)
(req "expectedNamespace" namespace_enc)
(req "wrongNamespace" namespace_enc)))
(function
| Invalid_namespace (loc, name, exp, got) -> Some (loc, (name, exp, got))
| _ -> None)
(fun (loc, (name, exp, got)) ->
Invalid_namespace (loc, name, exp, got)) ;
2017-08-16 14:26:45 +02:00
register_error_kind
`Permanent
~id:"unorderedMapLiteral"
~title:"Invalid map key order"
~description:"Map keys must be in strictly increasing order"
(obj2
(req "location" Script.location_encoding)
(req "item" Script.expr_encoding))
(function
| Unordered_map_keys (loc, expr) -> Some (loc, expr)
| _ -> None)
(fun (loc, expr) -> Unordered_map_keys (loc, expr));
register_error_kind
`Permanent
~id:"duplicateMapKeys"
~title:"Duplicate map keys"
~description:"Map literals cannot contain duplicated keys"
(obj2
(req "location" Script.location_encoding)
(req "item" Script.expr_encoding))
(function
| Duplicate_map_keys (loc, expr) -> Some (loc, expr)
| _ -> None)
(fun (loc, expr) -> Duplicate_map_keys (loc, expr));
register_error_kind
`Permanent
~id:"unorderedSetLiteral"
~title:"Invalid set value order"
~description:"Set values must be in strictly increasing order"
(obj2
(req "location" Script.location_encoding)
(req "value" Script.expr_encoding))
(function
| Unordered_set_values (loc, expr) -> Some (loc, expr)
| _ -> None)
(fun (loc, expr) -> Unordered_set_values (loc, expr));
register_error_kind
`Permanent
~id:"duplicateSetValuesInLiteral"
~title:"Sets literals cannot contain duplicate elements"
~description:"Set literals cannot contain duplicate elements, \
but a duplicae was found while parsing."
(obj2
(req "location" Script.location_encoding)
(req "value" Script.expr_encoding))
(function
| Duplicate_set_values (loc, expr) -> Some (loc, expr)
| _ -> None)
(fun (loc, expr) -> Duplicate_set_values (loc, expr));
(* -- Instruction typing errors ------------- *)
register_error_kind
`Permanent
~id:"failNotInTailPositionTypeError"
~title: "FAIL not in tail position (typechecking error)"
~description:
"There is non trivial garbage code after a FAIL instruction."
(located empty)
(function
| Fail_not_in_tail_position loc -> Some (loc, ())
| _ -> None)
(fun (loc, ()) ->
Fail_not_in_tail_position loc) ;
register_error_kind
`Permanent
~id:"undefinedBinopTypeError"
~title: "Undefined binop (typechecking error)"
~description:
"A binary operation is called on operands of types \
over which it is not defined."
(located (obj3
(req "operatorName" prim_encoding)
(req "wrongLeftOperandType" ex_ty_enc)
(req "wrongRightOperandType" ex_ty_enc)))
(function
| Undefined_binop (loc, n, tyl, tyr) ->
Some (loc, (n, Ex_ty tyl, Ex_ty tyr))
| _ -> None)
(fun (loc, (n, Ex_ty tyl, Ex_ty tyr)) ->
Undefined_binop (loc, n, tyl, tyr)) ;
register_error_kind
`Permanent
~id:"undefinedUnopTypeError"
~title: "Undefined unop (typechecking error)"
~description:
"A unary operation is called on an operand of type \
over which it is not defined."
(located (obj2
(req "operatorName" prim_encoding)
(req "wrongOperandType" ex_ty_enc)))
(function
| Undefined_unop (loc, n, ty) ->
Some (loc, (n, Ex_ty ty))
| _ -> None)
(fun (loc, (n, Ex_ty ty)) ->
Undefined_unop (loc, n, ty)) ;
register_error_kind
`Permanent
~id:"badReturnTypeError"
~title: "Bad return (typechecking error)"
~description:
"Unexpected stack at the end of a lambda or script."
(located (obj2
(req "expectedReturnType" ex_ty_enc)
(req "wrongStackType" ex_stack_ty_enc)))
(function
| Bad_return (loc, sty, ty) -> Some (loc, (Ex_ty ty, Ex_stack_ty sty))
| _ -> None)
(fun (loc, (Ex_ty ty, Ex_stack_ty sty)) ->
Bad_return (loc, sty, ty)) ;
register_error_kind
`Permanent
~id:"badStackTypeError"
~title: "Bad stack (typechecking error)"
~description:
"The stack has an unexpected length or contents."
(located (obj3
(req "primitiveName" prim_encoding)
(req "relevantStackPortion" int16)
(req "wrongStackType" ex_stack_ty_enc)))
(function
| Bad_stack (loc, name, s, sty) -> Some (loc, (name, s, Ex_stack_ty sty))
| _ -> None)
(fun (loc, (name, s, Ex_stack_ty sty)) ->
Bad_stack (loc, name, s, sty)) ;
register_error_kind
`Permanent
~id:"unmatchedBranchesTypeError"
~title: "Unmatched branches (typechecking error)"
~description:
"At the join point at the end of two code branches \
the stacks have inconsistent lengths or contents."
(located (obj2
(req "firstStackType" ex_stack_ty_enc)
(req "otherStackType" ex_stack_ty_enc)))
(function
| Unmatched_branches (loc, stya, styb) ->
Some (loc, (Ex_stack_ty stya, Ex_stack_ty styb))
| _ -> None)
(fun (loc, (Ex_stack_ty stya, Ex_stack_ty styb)) ->
Unmatched_branches (loc, stya, styb)) ;
register_error_kind
`Permanent
~id:"badStackItemTypeError"
~title: "Bad stack item (typechecking error)"
~description:
"The type of a stack item is unexpected \
(this error is always accompanied by a more precise one)."
(obj1 (req "itemLevel" int16))
(function
| Bad_stack_item n -> Some n
| _ -> None)
(fun n ->
Bad_stack_item n) ;
register_error_kind
`Permanent
~id:"TransferInLambdaTypeError"
~title: "Transfer in lambda (typechecking error)"
~description:
"A TRANSFER_TOKENS instruction was encountered in a lambda expression."
(located empty)
(function
| Transfer_in_lambda loc -> Some (loc, ())
| _ -> None)
(fun (loc, ()) ->
Transfer_in_lambda loc) ;
register_error_kind
`Permanent
~id:"inconsistentStackLengthsTypeError"
~title: "Inconsistent stack lengths (typechecking error)"
~description:
"A stack was of an unexpected length \
(this error is always in the context of a located error)."
empty
(function
| Bad_stack_length -> Some ()
| _ -> None)
(fun () ->
Bad_stack_length) ;
(* -- Value typing errors ------------------- *)
register_error_kind
`Permanent
~id:"invalidConstantTypeError"
~title: "Invalid constant (typechecking error)"
~description:
"A data expression was invalid for its expected type."
(located (obj2
(req "expectedType" ex_ty_enc)
(req "wrongExpression" Script.expr_encoding)))
(function
| Invalid_constant (loc, expr, ty) ->
Some (loc, (Ex_ty ty, expr))
| _ -> None)
(fun (loc, (Ex_ty ty, expr)) ->
Invalid_constant (loc, expr, ty)) ;
register_error_kind
`Permanent
~id:"invalidContractTypeError"
~title: "Invalid contract (typechecking error)"
~description:
"A script or data expression references a contract that does not \
exist or assumes a wrong type for an existing contract."
(located (obj1 (req "contract" Contract.encoding)))
(function
| Invalid_contract (loc, c) ->
Some (loc, c)
| _ -> None)
(fun (loc, c) ->
Invalid_contract (loc, c)) ;
register_error_kind
`Permanent
~id:"comparableTypeExpectedTypeError"
~title: "Comparable type expected (typechecking error)"
~description:
"A non comparable type was used in a place where \
only comparable types are accepted."
(located (obj1 (req "wrongType" ex_ty_enc)))
(function
| Comparable_type_expected (loc, ty) -> Some (loc, Ex_ty ty)
| _ -> None)
(fun (loc, Ex_ty ty) ->
Comparable_type_expected (loc, ty)) ;
register_error_kind
`Permanent
~id:"InconsistentTypesTypeError"
~title: "Inconsistent types (typechecking error)"
~description:
"This is the basic type clash error, \
that appears in several places where the equality of \
two types have to be proven, it is always accompanied \
with another error that provides more context."
(obj2
(req "firstType" ex_ty_enc)
(req "otherType" ex_ty_enc))
(function
| Inconsistent_types (tya, tyb) ->
Some (Ex_ty tya, Ex_ty tyb)
| _ -> None)
(fun (Ex_ty tya, Ex_ty tyb) ->
Inconsistent_types (tya, tyb)) ;
(* Toplevel errors *)
register_error_kind
`Permanent
~id:"illTypedDataTypeError"
~title: "Ill typed data (typechecking error)"
~description:
"The toplevel error thrown when trying to typecheck \
a data expression against a given type \
(always followed by more precise errors)."
(obj3
(opt "identifier" string)
(req "expectedType" ex_ty_enc)
(req "illTypedExpression" Script.expr_encoding))
(function
| Ill_typed_data (name, expr, ty) -> Some (name, Ex_ty ty, expr)
| _ -> None)
(fun (name, Ex_ty ty, expr) ->
Ill_typed_data (name, expr, ty)) ;
(* type error += Ill_formed_type of string option * Script.expr *)
register_error_kind
`Permanent
~id:"illFormedTypeTypeError"
~title: "Ill formed type (typechecking error)"
~description:
"The toplevel error thrown when trying to parse a type expression \
(always followed by more precise errors)."
(obj3
(opt "identifier" string)
(req "illFormedExpression" Script.expr_encoding)
(req "location" Script.location_encoding))
(function
| Ill_formed_type (name, expr, loc) -> Some (name, expr, loc)
| _ -> None)
(fun (name, expr, loc) ->
Ill_formed_type (name, expr, loc)) ;
register_error_kind
`Permanent
~id:"illTypedContractTypeError"
~title: "Ill typed contract (typechecking error)"
~description:
"The toplevel error thrown when trying to typecheck \
a contract code against given input, output and storage types \
(always followed by more precise errors)."
(obj2
(req "illTypedCode" Script.expr_encoding)
(req "typeMap" type_map_enc))
(function
| Ill_typed_contract (expr, type_map) ->
Some (expr, type_map)
| _ -> None)
(fun (expr, type_map) ->
Ill_typed_contract (expr, type_map))