2019-09-10 15:19:15 +02:00
|
|
|
open Mini_c
|
|
|
|
open Tezos_utils
|
2019-12-04 02:07:39 +01:00
|
|
|
open Proto_alpha_utils
|
|
|
|
open Trace
|
2019-09-10 15:19:15 +02:00
|
|
|
|
2019-12-05 17:44:56 +01:00
|
|
|
let compile_function_expression : expression -> Compiler.compiled_expression result = fun e ->
|
|
|
|
let%bind (input_ty , _) = get_t_function e.type_value in
|
2019-12-04 02:07:39 +01:00
|
|
|
let%bind body = get_function e in
|
2019-12-05 17:44:56 +01:00
|
|
|
let%bind body = Compiler.Program.translate_function_body body [] input_ty in
|
2019-12-04 02:07:39 +01:00
|
|
|
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 }
|
|
|
|
|
2019-12-05 17:44:56 +01:00
|
|
|
let compile_expression : expression -> Compiler.compiled_expression result = fun e ->
|
|
|
|
let%bind expr = Compiler.Program.translate_expression e Compiler.Environment.empty in
|
|
|
|
let expr = Self_michelson.optimize expr in
|
|
|
|
let%bind expr_ty = Compiler.Type.Ty.type_ e.type_value in
|
|
|
|
let open! Compiler.Program in
|
|
|
|
ok { expr_ty ; expr }
|
|
|
|
|
2019-12-06 14:21:49 +01:00
|
|
|
(* let compile_function_expression_merged : expression -> Compiler.compiled_expression result = fun e ->
|
|
|
|
let%bind body = match e.type_value with
|
|
|
|
| T_function (input_ty, _) ->
|
|
|
|
let%bind body = get_function e in
|
|
|
|
Compiler.Program.translate_function_body body [] input_ty
|
|
|
|
| _ ->
|
|
|
|
Compiler.Program.translate_expression e Compiler.Environment.empty
|
|
|
|
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 } *)
|
|
|
|
|
2019-12-05 17:44:56 +01:00
|
|
|
let aggregate_and_compile_function = 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
|
2019-12-05 17:44:56 +01:00
|
|
|
compile_function_expression aggregated
|
|
|
|
|
|
|
|
let aggregate_and_compile_expression = fun program name ->
|
|
|
|
let%bind aggregated = aggregate_entry program name true in
|
|
|
|
let aggregated = Self_mini_c.all_expression aggregated in
|
|
|
|
compile_expression aggregated
|
2019-12-04 02:07:39 +01:00
|
|
|
|
|
|
|
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
|
2019-12-04 13:34:15 +01:00
|
|
|
let%bind param_michelson =
|
|
|
|
Trace.trace_tzresult_lwt (simple_error "Could not unparse contract lambda's parameter") @@
|
2019-12-04 02:07:39 +01:00
|
|
|
Proto_alpha_utils.Memory_proto_alpha.unparse_ty_michelson _param_ty in
|
2019-12-04 13:34:15 +01:00
|
|
|
let%bind storage_michelson =
|
|
|
|
Trace.trace_tzresult_lwt (simple_error "Could not unparse contract lambda's storage") @@
|
2019-12-04 02:07:39 +01:00
|
|
|
Proto_alpha_utils.Memory_proto_alpha.unparse_ty_michelson _storage_ty in
|
2019-12-04 13:34:15 +01:00
|
|
|
let contract = Michelson.contract param_michelson storage_michelson compiled.expr in
|
|
|
|
let%bind () =
|
|
|
|
Trace.trace_tzresult_lwt (simple_error "Invalid contract") @@
|
|
|
|
Proto_alpha_utils.Memory_proto_alpha.typecheck_contract contract in
|
|
|
|
ok contract
|