ligo/src/main/compile/of_mini_c.ml

61 lines
2.8 KiB
OCaml
Raw Normal View History

2019-09-10 15:19:15 +02:00
open Mini_c
open Tezos_utils
open Proto_alpha_utils
open Trace
2019-09-10 15:19:15 +02:00
let compile_expression_as_function : expression -> Compiler.compiled_program result = fun e ->
2019-09-19 01:34:37 +02:00
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 : expression -> Compiler.compiled_program result = fun e ->
2019-09-19 01:34:37 +02:00
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-25 17:15:25 -06:00
let 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-25 17:15:25 -06:00
let 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
(* new *)
let compile_contract : expression -> Compiler.compiled_expression result = fun e ->
let%bind (input , _) = 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
let expr = Self_michelson.optimize body in
let%bind expr_ty = Compiler.Type.Ty.type_ e.type_value in
let open! Compiler.Program in
ok { expr_ty ; expr }
let compile_contract_as_exp = fun program name ->
2019-09-20 18:56:55 +02:00
let%bind aggregated = aggregate_entry program name false in
2019-11-25 17:15:25 -06:00
let aggregated = Self_mini_c.all_expression aggregated in
compile_contract aggregated
let build_contract : Compiler.compiled_expression -> Michelson.michelson result =
fun compiled ->
let%bind ((Ex_ty _param_ty),(Ex_ty _storage_ty)) = Self_michelson.fetch_lambda_parameters compiled.expr_ty in
(*TODO : bind pair trace_tzresult_lwt ? *)
let%bind (param_michelson : Tezos_raw_protocol_005_PsBabyM1.Alpha_context.Script.node) =
Trace.trace_tzresult_lwt (simple_error "TODO") @@
Proto_alpha_utils.Memory_proto_alpha.unparse_ty_michelson _param_ty in
let%bind (storage_michelson : Tezos_raw_protocol_005_PsBabyM1.Alpha_context.Script.node) =
Trace.trace_tzresult_lwt (simple_error "TODO") @@
Proto_alpha_utils.Memory_proto_alpha.unparse_ty_michelson _storage_ty in
ok @@ Michelson.contract param_michelson storage_michelson compiled.expr