ligo/src/main/compile/of_mini_c.ml

61 lines
2.5 KiB
OCaml
Raw Normal View History

2019-09-10 15:19:15 +02:00
open Trace
open Mini_c
open Tezos_utils
2019-09-21 18:38:45 -07:00
let compile_value : value -> type_value -> Michelson.t result = fun x a ->
let%bind body = Compiler.Program.translate_value x a in
let body = Self_michelson.optimize body in
ok body
2019-09-10 15:19:15 +02:00
2019-09-25 10:49:14 +02:00
let compile_expression_as_value : expression -> _ result = fun e ->
let%bind value = expression_to_value e in
let%bind result = compile_value value e.type_value in
2019-09-21 18:38:45 -07:00
let result = Self_michelson.optimize result in
2019-09-25 10:49:14 +02:00
ok result
2019-09-10 15:19:15 +02:00
2019-09-19 01:34:37 +02:00
let compile_expression_as_function : expression -> _ result = fun e ->
let (input , output) = t_unit , e.type_value in
2019-09-25 10:49:14 +02:00
let%bind body = Compiler.Program.translate_expression e Compiler.Environment.empty in
2019-09-21 18:38:45 -07:00
let body = Self_michelson.optimize body in
2019-09-25 10:49:14 +02:00
let body = Michelson.(seq [ i_drop ; body ]) in
2019-09-19 01:34:37 +02:00
let%bind (input , output) = bind_map_pair Compiler.Type.Ty.type_ (input , output) in
let open! Compiler.Program in
ok { input ; output ; body }
let compile_function = fun e ->
let%bind (input , output) = get_t_function e.type_value in
let%bind body = get_function e in
let%bind body = Compiler.Program.translate_function_body body [] input in
2019-09-21 18:38:45 -07:00
let body = Self_michelson.optimize body in
2019-09-19 01:34:37 +02:00
let%bind (input , output) = bind_map_pair Compiler.Type.Ty.type_ (input , output) in
let open! Compiler.Program in
ok { input ; output ; body }
let compile_expression_as_function_entry = fun program name ->
let%bind aggregated = aggregate_entry program name true in
2019-11-02 16:56:05 -05:00
let%bind aggregated = Self_mini_c.all_expression aggregated in
2019-09-19 01:34:37 +02:00
compile_function aggregated
let compile_function_entry = fun program name ->
let%bind aggregated = aggregate_entry program name false in
2019-11-02 16:56:05 -05:00
let%bind aggregated = Self_mini_c.all_expression aggregated in
2019-09-19 01:34:37 +02:00
compile_function aggregated
2019-09-15 13:12:19 +02:00
2019-09-20 18:56:55 +02:00
let compile_contract_entry = fun program name ->
let%bind aggregated = aggregate_entry program name false in
2019-11-02 16:56:05 -05:00
let%bind aggregated = Self_mini_c.all_expression aggregated in
2019-09-20 18:56:55 +02:00
let%bind compiled = compile_function aggregated in
let%bind (param_ty , storage_ty) =
let%bind fun_ty = get_t_function aggregated.type_value in
Mini_c.get_t_pair (fst fun_ty)
in
let%bind param_michelson = Compiler.Type.type_ param_ty in
let%bind storage_michelson = Compiler.Type.type_ storage_ty in
let body = Michelson.strip_annots compiled.body in
let contract = Michelson.contract param_michelson storage_michelson body in
2019-09-20 18:56:55 +02:00
ok contract
2019-09-15 13:12:19 +02:00
let uncompile_value : Proto_alpha_utils.Memory_proto_alpha.X.ex_typed_value -> value result = fun x ->
Compiler.Uncompiler.translate_value x