1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584
|
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
(* Translation from closed lambda to C-- *)
[@@@ocaml.warning "-40"]
open Misc
open Asttypes
open Primitive
open Lambda
open Clambda
open Clambda_primitives
open Cmm
module String = Misc.Stdlib.String
module IntMap = Map.Make(Int)
module V = Backend_var
module VP = Backend_var.With_provenance
open Cmm_helpers
(* Environments used for translation to Cmm. *)
type boxed_number =
| Boxed_float of Debuginfo.t
| Boxed_integer of boxed_integer * Debuginfo.t
type env = {
unboxed_ids : (V.t * boxed_number) V.tbl;
mutable_ids : V.Set.t;
notify_catch : (Cmm.expression list -> unit) IntMap.t;
environment_param : V.t option;
}
(* notify_catch associates to each catch handler a callback
which will be passed the list of arguments of each
staticfail instruction pointing to that handler. This
allows transl_catch to observe concrete arguments passed to each
handler parameter and decide whether to unbox them accordingly.
Other ways to achieve the same result would be to either (1) traverse
the body of the catch block after translation (this would be costly
and could easily lead to quadratric behavior) or (2) return
a description of arguments passed to each catch handler as an extra
value to be threaded through all transl_* functions (this would be
quite heavy, and probably less efficient that the callback approach).
*)
let empty_env =
{
unboxed_ids = V.empty;
mutable_ids = V.Set.empty;
notify_catch = IntMap.empty;
environment_param = None;
}
let create_env ~environment_param =
{ empty_env with
environment_param;
}
let is_unboxed_id id env =
try Some (V.find_same id env.unboxed_ids)
with Not_found -> None
let add_unboxed_id id unboxed_id bn env =
{ env with
unboxed_ids = V.add id (unboxed_id, bn) env.unboxed_ids;
}
let is_mutable_id id env =
V.Set.mem id env.mutable_ids
let add_mutable_id id env =
{ env with
mutable_ids = V.Set.add id env.mutable_ids;
}
let add_notify_catch n f env =
{ env with
notify_catch = IntMap.add n f env.notify_catch
}
let notify_catch i env l =
match IntMap.find_opt i env.notify_catch with
| Some f -> f l
| None -> ()
(* Description of the "then" and "else" continuations in [transl_if]. If
the "then" continuation is true and the "else" continuation is false then
we can use the condition directly as the result. Similarly, if the "then"
continuation is false and the "else" continuation is true then we can use
the negation of the condition directly as the result. *)
type then_else =
| Then_true_else_false
| Then_false_else_true
| Unknown
let invert_then_else = function
| Then_true_else_false -> Then_false_else_true
| Then_false_else_true -> Then_true_else_false
| Unknown -> Unknown
let mut_from_env env ptr =
match env.environment_param with
| None -> Mutable
| Some environment_param ->
match ptr with
| Cvar ptr ->
(* Loads from the current function's closure are immutable. *)
if V.same environment_param ptr then Immutable
else Mutable
| _ -> Mutable
(* Minimum of two [mutable_flag] values, assuming [Immutable < Mutable]. *)
let min_mut x y =
match x,y with
| Immutable,_ | _,Immutable -> Immutable
| Mutable,Mutable -> Mutable
let get_field env imm_or_pointer mut ptr n dbg =
let mut = min_mut mut (mut_from_env env ptr) in
let memory_chunk =
match imm_or_pointer with
| Immediate -> Word_int
| Pointer -> Word_val
in
get_field_gen ~memory_chunk mut ptr n dbg
(* Translate structured constants to Cmm data items *)
let transl_constant dbg = function
| Uconst_int n ->
int_const dbg n
| Uconst_ref (label, def_opt) ->
Option.iter
(fun def -> Cmmgen_state.add_structured_constant label def)
def_opt;
Cconst_symbol (label, dbg)
let emit_constant cst cont =
match cst with
| Uconst_int n ->
cint_const n
:: cont
| Uconst_ref (sym, _) ->
Csymbol_address sym :: cont
let emit_structured_constant ((_sym, is_global) as symb) cst cont =
match cst with
| Uconst_float s ->
emit_float_constant symb s cont
| Uconst_string s ->
emit_string_constant symb s cont
| Uconst_int32 n ->
emit_int32_constant symb n cont
| Uconst_int64 n ->
emit_int64_constant symb n cont
| Uconst_nativeint n ->
emit_nativeint_constant symb n cont
| Uconst_block (tag, csts) ->
let cont = List.fold_right emit_constant csts cont in
emit_block symb (block_header tag (List.length csts)) cont
| Uconst_float_array fields ->
emit_float_array_constant symb fields cont
| Uconst_closure(fundecls, lbl, fv) ->
Cmmgen_state.add_constant lbl (Const_closure (is_global, fundecls, fv));
List.iter (fun f -> Cmmgen_state.add_function f) fundecls;
cont
(* Boxed integers *)
let box_int_constant sym bi n =
match bi with
Pnativeint ->
emit_nativeint_constant (sym, Local) n []
| Pint32 ->
let n = Nativeint.to_int32 n in
emit_int32_constant (sym, Local) n []
| Pint64 ->
let n = Int64.of_nativeint n in
emit_int64_constant (sym, Local) n []
let box_int dbg bi arg =
match arg with
| Cconst_int (n, _) ->
let sym = Compilenv.new_const_symbol () in
let data_items = box_int_constant sym bi (Nativeint.of_int n) in
Cmmgen_state.add_data_items data_items;
Cconst_symbol (sym, dbg)
| Cconst_natint (n, _) ->
let sym = Compilenv.new_const_symbol () in
let data_items = box_int_constant sym bi n in
Cmmgen_state.add_data_items data_items;
Cconst_symbol (sym, dbg)
| _ ->
box_int_gen dbg bi arg
(* Boxed numbers *)
let typ_of_boxed_number = function
| Boxed_float _ -> Cmm.typ_float
| Boxed_integer _ -> Cmm.typ_int
let equal_unboxed_integer ui1 ui2 =
match ui1, ui2 with
| Pnativeint, Pnativeint -> true
| Pint32, Pint32 -> true
| Pint64, Pint64 -> true
| _, _ -> false
let equal_boxed_number bn1 bn2 =
match bn1, bn2 with
| Boxed_float _, Boxed_float _ -> true
| Boxed_integer(ui1, _), Boxed_integer(ui2, _) ->
equal_unboxed_integer ui1 ui2
| _, _ -> false
let box_number bn arg =
match bn with
| Boxed_float dbg -> box_float dbg arg
| Boxed_integer (bi, dbg) -> box_int dbg bi arg
(* Returns the unboxed representation of a boxed float or integer.
For Pint32 on 64-bit archs, the high 32 bits of the result are undefined. *)
let unbox_number dbg bn arg =
match bn with
| Boxed_float dbg ->
unbox_float dbg arg
| Boxed_integer (Pint32, _) ->
low_32 dbg (unbox_int dbg Pint32 arg)
| Boxed_integer (bi, _) ->
unbox_int dbg bi arg
(* Auxiliary functions for optimizing "let" of boxed numbers (floats and
boxed integers *)
type unboxed_number_kind =
No_unboxing
| Boxed of boxed_number * bool (* true: boxed form available at no cost *)
| No_result (* expression never returns a result *)
(* A value kind [vk] is compatible with a boxed-number kind [bk]
if the boxing operation [bk] returns a value that may live in the
value kind [vk]. *)
let compatible_kind vk bk =
match bk with
| No_unboxing | No_result -> true
| Boxed (bn, _) ->
match bn, vk with
| _, Pgenval -> true
| (Boxed_float _ | Boxed_integer _), Pintval -> false
| Boxed_float _, Pfloatval -> true
| Boxed_integer _, Pfloatval -> false
| Boxed_float _, Pboxedintval _ -> false
| Boxed_integer (bi1, _), Pboxedintval bi2 -> bi1 = bi2
(* Given unboxed_number_kind from two branches of the code, returns the
resulting unboxed_number_kind.
If [strict=false], one knows that the type of the expression
is an unboxable number, and we decide to return an unboxed value
if this indeed eliminates at least one allocation.
If [strict=true], we need to ensure that all possible branches
return an unboxable number (of the same kind). This could not
be the case in presence of GADTs.
*)
let join_unboxed_number_kind ~strict k1 k2 =
match k1, k2 with
| Boxed (b1, c1), Boxed (b2, c2) when equal_boxed_number b1 b2 ->
Boxed (b1, c1 && c2)
| No_result, k | k, No_result ->
k (* if a branch never returns, it is safe to unbox it *)
| No_unboxing, k | k, No_unboxing when not strict ->
k
| _, _ -> No_unboxing
(* [is_unboxed_number_cmm ~strict ~kind cmm] computes an unboxed
number kind for the value returned by the expression [cmm].
See [join_unboxed_number_kind] above for the meaning of the
[~strict] parameter.
[~kind] is the value kind expected for the return value. If the
expression contains branches returning different boxed number
kinds, only those that are compatible with the expected return kind
are considered -- the other must be unreachable if the program is
well-typed. In particular, the unboxed number kind we return shall
be compatible with it in the sense of [compatible_kind] above.
*)
let is_unboxed_number_cmm ~strict ~kind cmm =
let r = ref No_result in
let notify k =
if compatible_kind kind k then
r := join_unboxed_number_kind ~strict !r k
in
let rec aux = function
| Cop(Calloc, [Cconst_natint (hdr, _); _], dbg)
when Nativeint.equal hdr float_header ->
notify (Boxed (Boxed_float dbg, false))
| Cop(Calloc, [Cconst_natint (hdr, _); Cconst_symbol (ops, _); _], dbg) ->
if Nativeint.equal hdr boxedintnat_header
&& String.equal ops caml_nativeint_ops
then
notify (Boxed (Boxed_integer (Pnativeint, dbg), false))
else
if Nativeint.equal hdr boxedint32_header
&& String.equal ops caml_int32_ops
then
notify (Boxed (Boxed_integer (Pint32, dbg), false))
else
if Nativeint.equal hdr boxedint64_header
&& String.equal ops caml_int64_ops
then
notify (Boxed (Boxed_integer (Pint64, dbg), false))
else
notify No_unboxing
| Cconst_symbol (s, _) ->
begin match Cmmgen_state.structured_constant_of_sym s with
| Some (Uconst_float _) ->
notify (Boxed (Boxed_float Debuginfo.none, true))
| Some (Uconst_nativeint _) ->
notify (Boxed (Boxed_integer (Pnativeint, Debuginfo.none), true))
| Some (Uconst_int32 _) ->
notify (Boxed (Boxed_integer (Pint32, Debuginfo.none), true))
| Some (Uconst_int64 _) ->
notify (Boxed (Boxed_integer (Pint64, Debuginfo.none), true))
| _ ->
notify No_unboxing
end
| l ->
if not (Cmm.iter_shallow_tail aux l) then
notify No_unboxing
in
aux cmm;
!r
let machtype_of_value_kind (value_kind : Lambda.value_kind) =
match value_kind with
| Pgenval
| Pfloatval
| Pboxedintval _ ->
Cmm.typ_val
| Pintval ->
Cmm.typ_int
(* Translate an expression *)
let rec transl env e =
match e with
Uvar id ->
begin match is_unboxed_id id env with
| None ->
if is_mutable_id id env
then Cvar_mut id
else Cvar id
| Some (unboxed_id, bn) ->
let var =
if is_mutable_id unboxed_id env
then Cvar_mut unboxed_id
else Cvar unboxed_id
in
box_number bn var
end
| Uconst sc ->
transl_constant Debuginfo.none sc
| Uclosure(fundecls, []) ->
let sym = Compilenv.new_const_symbol() in
Cmmgen_state.add_constant sym (Const_closure (Local, fundecls, []));
List.iter (fun f -> Cmmgen_state.add_function f) fundecls;
let dbg =
match fundecls with
| [] -> Debuginfo.none
| fundecl::_ -> fundecl.dbg
in
Cconst_symbol (sym, dbg)
| Uclosure(fundecls, clos_vars) ->
let startenv = fundecls_size fundecls in
let rec transl_fundecls pos = function
[] ->
List.map (transl env) clos_vars
| f :: rem ->
Cmmgen_state.add_function f;
let dbg = f.dbg in
let without_header =
if f.arity = 1 || f.arity = 0 then
Cconst_symbol (f.label, dbg) ::
alloc_closure_info ~arity:f.arity
~startenv:(startenv - pos) dbg ::
transl_fundecls (pos + 3) rem
else
Cconst_symbol (curry_function_sym f.arity, dbg) ::
alloc_closure_info ~arity:f.arity
~startenv:(startenv - pos) dbg ::
Cconst_symbol (f.label, dbg) ::
transl_fundecls (pos + 4) rem
in
if pos = 0
then without_header
else alloc_infix_header pos f.dbg :: without_header
in
let dbg =
match fundecls with
| [] -> Debuginfo.none
| fundecl::_ -> fundecl.dbg
in
(* #11482, #12481: the 'clos_vars' may be arbitrary expressions
and may invoke the GC, which would be able to observe the
partially-filled block. This is safe because 'make_alloc'
evaluates and fills fields from left to right, and does not
call a GC between the allocation and filling fields. So the
closure metadata, which comes before the closure variables,
will always have been written before a GC can happen. *)
make_alloc dbg Obj.closure_tag (transl_fundecls 0 fundecls)
| Uoffset(arg, offset) ->
(* produces a valid Caml value, pointing just after an infix header *)
let ptr = transl env arg in
let dbg = Debuginfo.none in
ptr_offset ptr offset dbg
| Udirect_apply(lbl, args, dbg) ->
let args = List.map (transl env) args in
direct_apply lbl args dbg
| Ugeneric_apply(clos, args, dbg) ->
let clos = transl env clos in
let args = List.map (transl env) args in
generic_apply (mut_from_env env clos) clos args dbg
| Usend(kind, met, obj, args, dbg) ->
let met = transl env met in
let obj = transl env obj in
let args = List.map (transl env) args in
send kind met obj args dbg
| Ulet(str, kind, id, exp, body) ->
transl_let env str kind id exp (fun env -> transl env body)
| Uphantom_let (var, defining_expr, body) ->
let defining_expr =
match defining_expr with
| None -> None
| Some defining_expr ->
let defining_expr =
match defining_expr with
| Uphantom_const (Uconst_ref (sym, _defining_expr)) ->
Cphantom_const_symbol sym
| Uphantom_read_symbol_field { sym; field; } ->
Cphantom_read_symbol_field { sym; field; }
| Uphantom_const (Uconst_int i) ->
Cphantom_const_int (targetint_const i)
| Uphantom_var var -> Cphantom_var var
| Uphantom_read_field { var; field; } ->
Cphantom_read_field { var; field; }
| Uphantom_offset_var { var; offset_in_words; } ->
Cphantom_offset_var { var; offset_in_words; }
| Uphantom_block { tag; fields; } ->
Cphantom_block { tag; fields; }
in
Some defining_expr
in
Cphantom_let (var, defining_expr, transl env body)
(* Primitives *)
| Uprim(prim, args, dbg) ->
begin match (simplif_primitive prim, args) with
| (Pread_symbol sym, []) ->
Cconst_symbol (sym, dbg)
| (Pmakeblock _, []) ->
assert false
| (Pmakeblock(tag, _mut, _kind), args) ->
make_alloc dbg tag (List.map (transl env) args)
| (Pccall prim, args) ->
transl_ccall env prim args dbg
| (Pduparray (kind, _), [Uprim (Pmakearray (kind', _), args, _dbg)]) ->
(* We arrive here in two cases:
1. When using Closure, all the time.
2. When using Flambda, if a float array longer than
[Translcore.use_dup_for_constant_arrays_bigger_than] turns out
to be non-constant.
If for some reason Flambda fails to lift a constant array we
could in theory also end up here.
Note that [kind] above is unconstrained, but with the current
state of [Translcore], we will in fact only get here with
[Pfloatarray]s. *)
assert (kind = kind');
transl_make_array dbg env kind args
| (Pduparray _, [arg]) ->
let prim_obj_dup =
Primitive.simple ~name:"caml_obj_dup" ~arity:1 ~alloc:true
in
transl_ccall env prim_obj_dup [arg] dbg
| (Pmakearray _, []) ->
Misc.fatal_error "Pmakearray is not allowed for an empty array"
| (Pmakearray (kind, _), args) -> transl_make_array dbg env kind args
| (Pbigarrayref(unsafe, _num_dims, elt_kind, layout), arg1 :: argl) ->
let elt =
bigarray_get unsafe elt_kind layout
(transl env arg1) (List.map (transl env) argl) dbg in
begin match elt_kind with
| Pbigarray_float16 -> box_float dbg (float_of_float16 dbg elt)
| Pbigarray_float32 | Pbigarray_float64 -> box_float dbg elt
| Pbigarray_complex32 | Pbigarray_complex64 -> elt
| Pbigarray_int32 -> box_int dbg Pint32 elt
| Pbigarray_int64 -> box_int dbg Pint64 elt
| Pbigarray_native_int -> box_int dbg Pnativeint elt
| Pbigarray_caml_int -> tag_int elt dbg
| Pbigarray_sint8 | Pbigarray_uint8
| Pbigarray_sint16 | Pbigarray_uint16 -> tag_int elt dbg
| Pbigarray_unknown -> assert false
end
| (Pbigarrayset(unsafe, _num_dims, elt_kind, layout), arg1 :: argl) ->
let (argidx, argnewval) = split_last argl in
return_unit dbg (bigarray_set unsafe elt_kind layout
(transl env arg1)
(List.map (transl env) argidx)
(match elt_kind with
| Pbigarray_float16 ->
float16_of_float dbg (transl_unbox_float dbg env argnewval)
| Pbigarray_float32 | Pbigarray_float64 ->
transl_unbox_float dbg env argnewval
| Pbigarray_complex32 | Pbigarray_complex64 -> transl env argnewval
| Pbigarray_int32 -> transl_unbox_int dbg env Pint32 argnewval
| Pbigarray_int64 -> transl_unbox_int dbg env Pint64 argnewval
| Pbigarray_native_int ->
transl_unbox_int dbg env Pnativeint argnewval
| Pbigarray_caml_int ->
untag_int (transl env argnewval) dbg
| Pbigarray_sint8 | Pbigarray_uint8
| Pbigarray_sint16 | Pbigarray_uint16 ->
ignore_high_bit_int (untag_int (transl env argnewval) dbg)
| Pbigarray_unknown -> assert false)
dbg)
| (Pbigarraydim(n), [b]) ->
let dim_ofs = 4 + n in
tag_int (Cop(mk_load_mut Word_int,
[field_address (transl env b) dim_ofs dbg],
dbg)) dbg
| (Pintcomp _ as comp,
[Uprim(Pcompare_ints, [arg1; arg2], _);
Uconst(Uconst_int 0)]) ->
transl env (Uprim (comp, [arg1; arg2], dbg))
| (Pintcomp comp,
[Uprim(Pcompare_bints b, [arg1; arg2], _);
Uconst(Uconst_int 0)]) ->
transl env (Uprim (Pbintcomp (b, comp), [arg1; arg2], dbg))
| (p, [arg]) ->
transl_prim_1 env p arg dbg
| (p, [arg1; arg2]) ->
transl_prim_2 env p arg1 arg2 dbg
| (p, [arg1; arg2; arg3]) ->
transl_prim_3 env p arg1 arg2 arg3 dbg
| (p, [arg1; arg2; arg3; arg4]) ->
transl_prim_4 env p arg1 arg2 arg3 arg4 dbg
| (Pread_symbol _, _::_::_::_::_)
| (Pbigarrayset (_, _, _, _), [])
| (Pbigarrayref (_, _, _, _), [])
| ((Pbigarraydim _ | Pduparray (_, _)), ([] | _::_::_::_::_))
->
fatal_error "Cmmgen.transl:prim, wrong arity"
| ((Pfield_computed|Psequand
| Prunstack | Pperform | Presume | Preperform
| Pdls_get
| Patomic_load
| Psequor | Pnot | Pnegint | Paddint | Psubint
| Pmulint | Pandint | Porint | Pxorint | Plslint
| Plsrint | Pasrint | Pintoffloat | Pfloatofint
| Pnegfloat | Pabsfloat | Paddfloat | Psubfloat
| Pmulfloat | Pdivfloat | Pstringlength | Pstringrefu
| Pstringrefs | Pbyteslength | Pbytesrefu | Pbytessetu
| Pbytesrefs | Pbytessets | Pisint | Pisout
| Pbswap16 | Pint_as_pointer | Popaque | Pfield _
| Psetfield (_, _, _) | Psetfield_computed (_, _)
| Pfloatfield _ | Psetfloatfield (_, _) | Pduprecord (_, _)
| Praise _ | Pdivint _ | Pmodint _ | Pintcomp _ | Poffsetint _
| Pcompare_ints | Pcompare_floats | Pcompare_bints _
| Poffsetref _ | Pfloatcomp _ | Parraylength _
| Parrayrefu _ | Parraysetu _ | Parrayrefs _ | Parraysets _
| Pbintofint _ | Pintofbint _ | Pcvtbint (_, _) | Pnegbint _
| Paddbint _ | Psubbint _ | Pmulbint _ | Pdivbint _ | Pmodbint _
| Pandbint _ | Porbint _ | Pxorbint _ | Plslbint _ | Plsrbint _
| Pasrbint _ | Pbintcomp (_, _) | Pstring_load _ | Pbytes_load _
| Pbytes_set _ | Pbigstring_load _ | Pbigstring_set _
| Pbbswap _ | Ppoll | Pmakelazyblock _ ), _)
->
fatal_error "Cmmgen.transl:prim"
end
(* Control structures *)
| Uswitch(arg, s, dbg) ->
(* As in the bytecode interpreter, only matching against constants
can be checked *)
if Array.length s.us_index_blocks = 0 then
make_switch
(Tagged (transl env arg))
s.us_index_consts
(Array.map (fun expr -> transl env expr, dbg) s.us_actions_consts)
dbg
else if Array.length s.us_index_consts = 0 then
bind "switch" (transl env arg) (fun arg ->
transl_switch dbg env (get_tag arg dbg)
s.us_index_blocks s.us_actions_blocks)
else
bind "switch" (transl env arg) (fun arg ->
Cifthenelse(
Cop(Cand, [arg; Cconst_int (1, dbg)], dbg),
dbg,
transl_switch dbg env
(untag_int arg dbg) s.us_index_consts s.us_actions_consts,
dbg,
transl_switch dbg env
(get_tag arg dbg) s.us_index_blocks s.us_actions_blocks,
dbg))
| Ustringswitch(arg,sw,d) ->
let dbg = Debuginfo.none in
bind "switch" (transl env arg)
(fun arg ->
strmatch_compile dbg arg (Option.map (transl env) d)
(List.map (fun (s,act) -> s,transl env act) sw))
| Ustaticfail (nfail, args) ->
let cargs = List.map (transl env) args in
notify_catch nfail env cargs;
Cexit (nfail, cargs)
| Ucatch(nfail, [], body, handler) ->
let dbg = Debuginfo.none in
make_catch nfail (transl env body) (transl env handler) dbg
| Ucatch(nfail, ids, body, handler) ->
let dbg = Debuginfo.none in
transl_catch env nfail ids body handler dbg
| Utrywith(body, exn, handler) ->
let dbg = Debuginfo.none in
Ctrywith(transl env body, exn, transl env handler, dbg)
| Uifthenelse(cond, ifso, ifnot) ->
let ifso_dbg = Debuginfo.none in
let ifnot_dbg = Debuginfo.none in
let dbg = Debuginfo.none in
let ifso = transl env ifso in
let ifnot = transl env ifnot in
let approx =
match ifso, ifnot with
| Cconst_int (1, _), Cconst_int (3, _) -> Then_false_else_true
| Cconst_int (3, _), Cconst_int (1, _) -> Then_true_else_false
| _, _ -> Unknown
in
transl_if env approx dbg cond
ifso_dbg ifso ifnot_dbg ifnot
| Usequence(exp1, exp2) ->
Csequence(remove_unit(transl env exp1), transl env exp2)
| Uwhile(cond, body) ->
let dbg = Debuginfo.none in
let raise_num = next_raise_count () in
return_unit dbg
(ccatch
(raise_num, [],
create_loop(transl_if env Unknown dbg cond
dbg (remove_unit(transl env body))
dbg (Cexit (raise_num,[])))
dbg,
Ctuple [],
dbg))
| Ufor(id, low, high, dir, body) ->
let dbg = Debuginfo.none in
let tst = match dir with Upto -> Cgt | Downto -> Clt in
let inc = match dir with Upto -> Caddi | Downto -> Csubi in
let raise_num = next_raise_count () in
let id_prev = VP.create (V.create_local "*id_prev*") in
let env = add_mutable_id (VP.var id) env in
return_unit dbg
(Clet_mut
(id, typ_int, transl env low,
bind "bound" (transl env high) (fun high ->
ccatch
(raise_num, [],
Cifthenelse
(Cop(Ccmpi tst, [Cvar_mut (VP.var id); high], dbg),
dbg,
Cexit (raise_num, []),
dbg,
create_loop
(Csequence
(remove_unit(transl env body),
Clet(id_prev, Cvar_mut (VP.var id),
Csequence
(Cassign(VP.var id,
Cop(inc, [Cvar_mut (VP.var id);
Cconst_int (2, dbg)],
dbg)),
Cifthenelse
(Cop(Ccmpi Ceq, [Cvar (VP.var id_prev); high],
dbg),
dbg, Cexit (raise_num,[]),
dbg, Ctuple [],
dbg)))))
dbg,
dbg),
Ctuple [],
dbg))))
| Uassign(id, exp) ->
let dbg = Debuginfo.none in
let cexp = transl env exp in
begin match is_unboxed_id id env with
| None ->
return_unit dbg (Cassign(id, cexp))
| Some (unboxed_id, bn) ->
return_unit dbg (Cassign(unboxed_id, unbox_number dbg bn cexp))
end
| Uunreachable ->
let dbg = Debuginfo.none in
Cop(mk_load_mut Word_int, [Cconst_int (0, dbg)], dbg)
and transl_catch env nfail ids body handler dbg =
let ids = List.map (fun (id, kind) -> (id, kind, ref No_result)) ids in
(* Translate the body, and while doing so, collect the "unboxing type" for
each argument. *)
let report args =
List.iter2
(fun (_id, kind, u) c ->
let strict =
match kind with
| Pfloatval | Pboxedintval _ -> false
| Pintval | Pgenval -> true
in
u := join_unboxed_number_kind ~strict !u
(is_unboxed_number_cmm ~strict ~kind c)
)
ids args
in
let env_body = add_notify_catch nfail report env in
let body = transl env_body body in
let new_env, rewrite, ids =
List.fold_right
(fun (id, kind, u) (env, rewrite, ids) ->
match !u with
| No_unboxing | Boxed (_, true) | No_result ->
env,
(fun x -> x) :: rewrite,
(id, machtype_of_value_kind kind) :: ids
| Boxed (bn, false) ->
let unboxed_id = V.create_local (VP.name id) in
add_unboxed_id (VP.var id) unboxed_id bn env,
(unbox_number Debuginfo.none bn) :: rewrite,
(VP.create unboxed_id, typ_of_boxed_number bn) :: ids
)
ids (env, [], [])
in
if env == new_env then
(* No unboxing *)
ccatch (nfail, ids, body, transl env handler, dbg)
else
(* allocate new "nfail" to catch errors more easily *)
let new_nfail = next_raise_count () in
let body =
(* Rewrite the body to unbox the call sites *)
let rec aux e =
match Cmm.map_shallow aux e with
| Cexit (n, el) when n = nfail ->
Cexit (new_nfail, List.map2 (fun f e -> f e) rewrite el)
| c -> c
in
aux body
in
ccatch (new_nfail, ids, body, transl new_env handler, dbg)
and transl_make_array dbg env kind args =
match kind with
| Pgenarray ->
Cop(Cextcall("caml_array_of_uniform_array", typ_val, [], true),
[make_alloc dbg 0 (List.map (transl env) args)], dbg)
| Paddrarray | Pintarray ->
make_alloc dbg 0 (List.map (transl env) args)
| Pfloatarray ->
make_float_alloc dbg Obj.double_array_tag
(List.map (transl_unbox_float dbg env) args)
and transl_ccall env prim args dbg =
let transl_arg native_repr arg =
match native_repr with
| Same_as_ocaml_repr ->
(XInt, transl env arg)
| Unboxed_float ->
(XFloat, transl_unbox_float dbg env arg)
| Unboxed_integer bi ->
let xty =
match bi with
| Pnativeint -> XInt
| Pint32 -> XInt32
| Pint64 -> XInt64 in
(xty, transl_unbox_int dbg env bi arg)
| Untagged_immediate ->
(XInt, untag_int (transl env arg) dbg)
in
let rec transl_args native_repr_args args =
match native_repr_args, args with
| [], args ->
(* We don't require the two lists to be of the same length as
[default_prim] always sets the arity to [0]. *)
(List.map (fun _ -> XInt) args, List.map (transl env) args)
| _, [] ->
assert false
| native_repr :: native_repr_args, arg :: args ->
let (ty1, arg') = transl_arg native_repr arg in
let (tys, args') = transl_args native_repr_args args in
(ty1 :: tys, arg' :: args')
in
let typ_res, wrap_result =
match prim.prim_native_repr_res with
| Same_as_ocaml_repr -> (typ_val, fun x -> x)
| Unboxed_float -> (typ_float, box_float dbg)
| Unboxed_integer bi -> (typ_int, box_int dbg bi)
| Untagged_immediate -> (typ_int, (fun i -> tag_int i dbg))
in
let typ_args, args = transl_args prim.prim_native_repr_args args in
wrap_result
(Cop(Cextcall(Primitive.native_name prim,
typ_res, typ_args, prim.prim_alloc), args, dbg))
and transl_prim_1 env p arg dbg =
match p with
(* Generic operations *)
Popaque ->
opaque (transl env arg) dbg
(* Heap operations *)
| Pmakelazyblock tag ->
make_alloc dbg (Lambda.tag_of_lazy_tag tag) [transl env arg]
| Pfield(n, imm_or_pointer, mut) ->
get_field env imm_or_pointer mut (transl env arg) n dbg
| Pfloatfield n ->
let ptr = transl env arg in
box_float dbg (floatfield n ptr dbg)
| Pint_as_pointer ->
int_as_pointer (transl env arg) dbg
(* Exceptions *)
| Praise rkind ->
raise_prim rkind (transl env arg) dbg
(* Integer operations *)
| Pnegint ->
negint (transl env arg) dbg
| Poffsetint n ->
offsetint n (transl env arg) dbg
| Poffsetref n ->
offsetref n (transl env arg) dbg
(* Floating-point operations *)
| Pfloatofint ->
box_float dbg (Cop(Cfloatofint, [untag_int(transl env arg) dbg], dbg))
| Pintoffloat ->
tag_int(Cop(Cintoffloat, [transl_unbox_float dbg env arg], dbg)) dbg
| Pnegfloat ->
box_float dbg (Cop(Cnegf, [transl_unbox_float dbg env arg], dbg))
| Pabsfloat ->
box_float dbg (Cop(Cabsf, [transl_unbox_float dbg env arg], dbg))
(* String operations *)
| Pstringlength | Pbyteslength ->
tag_int(string_length (transl env arg) dbg) dbg
(* Array operations *)
| Parraylength kind ->
arraylength kind (transl env arg) dbg
(* Boolean operations *)
| Pnot ->
transl_if env Then_false_else_true
dbg arg
dbg (Cconst_int (1, dbg))
dbg (Cconst_int (3, dbg))
(* Test integer/block *)
| Pisint ->
tag_int(Cop(Cand, [transl env arg; Cconst_int (1, dbg)], dbg)) dbg
(* Boxed integers *)
| Pbintofint bi ->
box_int dbg bi (untag_int (transl env arg) dbg)
| Pintofbint bi ->
tag_int (transl_unbox_int dbg env bi arg) dbg
| Pcvtbint(bi1, bi2) ->
box_int dbg bi2 (transl_unbox_int dbg env bi1 arg)
| Pnegbint bi ->
box_int dbg bi
(Cop(Csubi, [Cconst_int (0, dbg); transl_unbox_int dbg env bi arg],
dbg))
| Pbbswap bi ->
box_int dbg bi (bbswap bi (transl_unbox_int dbg env bi arg) dbg)
| Pbswap16 ->
tag_int (bswap16 (ignore_high_bit_int (untag_int
(transl env arg) dbg)) dbg) dbg
| Pperform ->
let cont =
make_alloc dbg Obj.cont_tag [int_const dbg 0; int_const dbg 0]
in
Cop(Capply typ_val,
[Cconst_symbol ("caml_perform", dbg); transl env arg; cont],
dbg)
| Pdls_get ->
Cop(Cdls_get, [transl env arg], dbg)
| Ppoll ->
(Csequence (remove_unit (transl env arg),
return_unit dbg (Cop(Cpoll, [], dbg))))
| (Pfield_computed | Psequand | Psequor
| Prunstack | Presume | Preperform
| Paddint | Psubint | Pmulint | Pandint
| Porint | Pxorint | Plslint | Plsrint | Pasrint
| Paddfloat | Psubfloat | Pmulfloat | Pdivfloat
| Pstringrefu | Pstringrefs | Pbytesrefu | Pbytessetu
| Pbytesrefs | Pbytessets | Pisout | Pread_symbol _
| Pmakeblock (_, _, _) | Psetfield (_, _, _) | Psetfield_computed (_, _)
| Psetfloatfield (_, _) | Pduprecord (_, _) | Pccall _ | Pdivint _
| Pmodint _ | Pintcomp _ | Pfloatcomp _ | Pmakearray (_, _)
| Pcompare_ints | Pcompare_floats | Pcompare_bints _
| Pduparray (_, _) | Parrayrefu _ | Parraysetu _
| Parrayrefs _ | Parraysets _ | Paddbint _ | Psubbint _ | Pmulbint _
| Pdivbint _ | Pmodbint _ | Pandbint _ | Porbint _ | Pxorbint _
| Plslbint _ | Plsrbint _ | Pasrbint _ | Pbintcomp (_, _)
| Pbigarrayref (_, _, _, _) | Pbigarrayset (_, _, _, _)
| Pbigarraydim _ | Pstring_load _ | Pbytes_load _ | Pbytes_set _
| Pbigstring_load _ | Pbigstring_set _
| Patomic_load
)
->
fatal_errorf "Cmmgen.transl_prim_1: %a"
Printclambda_primitives.primitive p
and transl_prim_2 env p arg1 arg2 dbg =
match p with
(* Heap operations *)
| Pfield_computed ->
addr_array_ref (transl env arg1) (transl env arg2) dbg
| Psetfield(n, ptr, init) ->
setfield n ptr init (transl env arg1) (transl env arg2) dbg
| Psetfloatfield (n, init) ->
let ptr = transl env arg1 in
let float_val = transl_unbox_float dbg env arg2 in
setfloatfield n init ptr float_val dbg
| Patomic_load ->
let ptr = transl env arg1 in
let ofs = transl env arg2 in
Cop(mk_load_atomic Word_val,
[field_address_computed ptr ofs dbg], dbg)
(* Boolean operations *)
| Psequand ->
let dbg' = Debuginfo.none in
transl_sequand env Then_true_else_false
dbg arg1
dbg' arg2
dbg (Cconst_int (3, dbg))
dbg' (Cconst_int (1, dbg))
(* let id = V.create_local "res1" in
Clet(id, transl env arg1,
Cifthenelse(test_bool dbg (Cvar id), transl env arg2, Cvar id)) *)
| Psequor ->
let dbg' = Debuginfo.none in
transl_sequor env Then_true_else_false
dbg arg1
dbg' arg2
dbg (Cconst_int (3, dbg))
dbg' (Cconst_int (1, dbg))
(* Integer operations *)
| Paddint ->
add_int_caml (transl env arg1) (transl env arg2) dbg
| Psubint ->
sub_int_caml (transl env arg1) (transl env arg2) dbg
| Pmulint ->
mul_int_caml (transl env arg1) (transl env arg2) dbg
| Pdivint is_safe ->
div_int_caml is_safe (transl env arg1) (transl env arg2) dbg
| Pmodint is_safe ->
mod_int_caml is_safe (transl env arg1) (transl env arg2) dbg
| Pandint ->
and_int_caml (transl env arg1) (transl env arg2) dbg
| Porint ->
or_int_caml (transl env arg1) (transl env arg2) dbg
| Pxorint ->
xor_int_caml (transl env arg1) (transl env arg2) dbg
| Plslint ->
lsl_int_caml (transl env arg1) (transl env arg2) dbg
| Plsrint ->
lsr_int_caml (transl env arg1) (transl env arg2) dbg
| Pasrint ->
asr_int_caml (transl env arg1) (transl env arg2) dbg
| Pintcomp cmp ->
int_comp_caml cmp (transl env arg1) (transl env arg2) dbg
| Pcompare_ints ->
(* Compare directly on tagged ints *)
mk_compare_ints dbg (transl env arg1) (transl env arg2)
| Pcompare_bints bi ->
let a1 = transl_unbox_int dbg env bi arg1 in
let a2 = transl_unbox_int dbg env bi arg2 in
mk_compare_ints dbg a1 a2
| Pcompare_floats ->
let a1 = transl_unbox_float dbg env arg1 in
let a2 = transl_unbox_float dbg env arg2 in
mk_compare_floats dbg a1 a2
| Pisout ->
transl_isout (transl env arg1) (transl env arg2) dbg
(* Float operations *)
| Paddfloat ->
box_float dbg (Cop(Caddf,
[transl_unbox_float dbg env arg1;
transl_unbox_float dbg env arg2],
dbg))
| Psubfloat ->
box_float dbg (Cop(Csubf,
[transl_unbox_float dbg env arg1;
transl_unbox_float dbg env arg2],
dbg))
| Pmulfloat ->
box_float dbg (Cop(Cmulf,
[transl_unbox_float dbg env arg1;
transl_unbox_float dbg env arg2],
dbg))
| Pdivfloat ->
box_float dbg (Cop(Cdivf,
[transl_unbox_float dbg env arg1;
transl_unbox_float dbg env arg2],
dbg))
| Pfloatcomp cmp ->
tag_int(Cop(Ccmpf cmp,
[transl_unbox_float dbg env arg1;
transl_unbox_float dbg env arg2],
dbg)) dbg
(* String operations *)
| Pstringrefu | Pbytesrefu ->
stringref_unsafe (transl env arg1) (transl env arg2) dbg
| Pstringrefs | Pbytesrefs ->
stringref_safe (transl env arg1) (transl env arg2) dbg
| Pstring_load(size, unsafe) | Pbytes_load(size, unsafe) ->
string_load size unsafe (transl env arg1) (transl env arg2) dbg
| Pbigstring_load(size, unsafe) ->
bigstring_load size unsafe (transl env arg1) (transl env arg2) dbg
(* Array operations *)
| Parrayrefu kind ->
arrayref_unsafe kind (transl env arg1) (transl env arg2) dbg
| Parrayrefs kind ->
arrayref_safe kind (transl env arg1) (transl env arg2) dbg
(* Boxed integers *)
| Paddbint bi ->
box_int dbg bi (add_int
(transl_unbox_int_low dbg env bi arg1)
(transl_unbox_int_low dbg env bi arg2) dbg)
| Psubbint bi ->
box_int dbg bi (sub_int
(transl_unbox_int_low dbg env bi arg1)
(transl_unbox_int_low dbg env bi arg2) dbg)
| Pmulbint bi ->
box_int dbg bi (mul_int
(transl_unbox_int_low dbg env bi arg1)
(transl_unbox_int_low dbg env bi arg2) dbg)
| Pdivbint { size = bi; is_safe } ->
box_int dbg bi (safe_div_bi is_safe
(transl_unbox_int dbg env bi arg1)
(transl_unbox_int dbg env bi arg2)
bi dbg)
| Pmodbint { size = bi; is_safe } ->
box_int dbg bi (safe_mod_bi is_safe
(transl_unbox_int dbg env bi arg1)
(transl_unbox_int dbg env bi arg2)
bi dbg)
| Pandbint bi ->
box_int dbg bi (Cop(Cand,
[transl_unbox_int_low dbg env bi arg1;
transl_unbox_int_low dbg env bi arg2], dbg))
| Porbint bi ->
box_int dbg bi (Cop(Cor,
[transl_unbox_int_low dbg env bi arg1;
transl_unbox_int_low dbg env bi arg2], dbg))
| Pxorbint bi ->
box_int dbg bi (Cop(Cxor,
[transl_unbox_int_low dbg env bi arg1;
transl_unbox_int_low dbg env bi arg2], dbg))
| Plslbint bi ->
box_int dbg bi (lsl_int
(transl_unbox_int_low dbg env bi arg1)
(untag_int(transl env arg2) dbg) dbg)
| Plsrbint bi ->
box_int dbg bi (lsr_int
(make_unsigned_int bi (transl_unbox_int dbg env bi arg1)
dbg)
(untag_int(transl env arg2) dbg) dbg)
| Pasrbint bi ->
box_int dbg bi (asr_int
(transl_unbox_int dbg env bi arg1)
(untag_int(transl env arg2) dbg) dbg)
| Pbintcomp(bi, cmp) ->
tag_int (Cop(Ccmpi cmp,
[transl_unbox_int dbg env bi arg1;
transl_unbox_int dbg env bi arg2], dbg)) dbg
| Prunstack | Pperform | Presume | Preperform | Pdls_get
| Pnot | Pnegint | Pintoffloat | Pfloatofint | Pnegfloat
| Pabsfloat | Pstringlength | Pbyteslength | Pbytessetu | Pbytessets
| Pisint | Pbswap16 | Pint_as_pointer | Popaque | Pread_symbol _
| Pmakeblock (_, _, _) | Pfield _ | Psetfield_computed (_, _) | Pfloatfield _
| Pduprecord (_, _) | Pccall _ | Praise _ | Poffsetint _ | Poffsetref _
| Pmakearray (_, _) | Pduparray (_, _) | Parraylength _ | Parraysetu _
| Parraysets _ | Pbintofint _ | Pintofbint _ | Pcvtbint (_, _)
| Pnegbint _ | Pbigarrayref (_, _, _, _) | Pbigarrayset (_, _, _, _)
| Pbigarraydim _ | Pbytes_set _ | Pbigstring_set _ | Pbbswap _ | Ppoll
| Pmakelazyblock _
->
fatal_errorf "Cmmgen.transl_prim_2: %a"
Printclambda_primitives.primitive p
and transl_prim_3 env p arg1 arg2 arg3 dbg =
match p with
(* Heap operations *)
| Psetfield_computed(ptr, init) ->
setfield_computed ptr init
(transl env arg1) (transl env arg2) (transl env arg3) dbg
(* String operations *)
| Pbytessetu ->
bytesset_unsafe
(transl env arg1) (transl env arg2) (transl env arg3) dbg
| Pbytessets ->
bytesset_safe
(transl env arg1) (transl env arg2) (transl env arg3) dbg
(* Array operations *)
| Parraysetu kind ->
let newval =
match kind with
| Pfloatarray -> transl_unbox_float dbg env arg3
| _ -> transl env arg3
in
arrayset_unsafe kind (transl env arg1) (transl env arg2) newval dbg
| Parraysets kind ->
let newval =
match kind with
| Pfloatarray -> transl_unbox_float dbg env arg3
| _ -> transl env arg3
in
arrayset_safe kind (transl env arg1) (transl env arg2) newval dbg
| Pbytes_set(size, unsafe) ->
bytes_set size unsafe (transl env arg1) (transl env arg2)
(transl_unbox_sized size dbg env arg3) dbg
| Pbigstring_set(size, unsafe) ->
bigstring_set size unsafe (transl env arg1) (transl env arg2)
(transl_unbox_sized size dbg env arg3) dbg
(* Effects *)
| Prunstack ->
Cop (Capply typ_val,
[Cconst_symbol ("caml_runstack", dbg);
transl env arg1; transl env arg2; transl env arg3],
dbg)
| Preperform ->
Cop (Capply typ_val,
[Cconst_symbol ("caml_reperform", dbg);
transl env arg1; transl env arg2; transl env arg3],
dbg)
| Pperform | Pdls_get | Presume
| Patomic_load
| Pfield_computed | Psequand | Psequor | Pnot | Pnegint | Paddint
| Psubint | Pmulint | Pandint | Porint | Pxorint | Plslint | Plsrint | Pasrint
| Pintoffloat | Pfloatofint | Pnegfloat | Pabsfloat | Paddfloat | Psubfloat
| Pmulfloat | Pdivfloat | Pstringlength | Pstringrefu | Pstringrefs
| Pbyteslength | Pbytesrefu | Pbytesrefs | Pisint | Pisout
| Pbswap16 | Pint_as_pointer | Popaque | Pread_symbol _ | Pmakeblock (_, _, _)
| Pfield _ | Psetfield (_, _, _) | Pfloatfield _ | Psetfloatfield (_, _)
| Pduprecord (_, _) | Pccall _ | Praise _ | Pdivint _ | Pmodint _ | Pintcomp _
| Pcompare_ints | Pcompare_floats | Pcompare_bints _
| Poffsetint _ | Poffsetref _ | Pfloatcomp _ | Pmakearray (_, _)
| Pduparray (_, _) | Parraylength _ | Parrayrefu _ | Parrayrefs _
| Pbintofint _ | Pintofbint _ | Pcvtbint (_, _) | Pnegbint _ | Paddbint _
| Psubbint _ | Pmulbint _ | Pdivbint _ | Pmodbint _ | Pandbint _ | Porbint _
| Pxorbint _ | Plslbint _ | Plsrbint _ | Pasrbint _ | Pbintcomp (_, _)
| Pbigarrayref (_, _, _, _) | Pbigarrayset (_, _, _, _) | Pbigarraydim _
| Pstring_load _ | Pbytes_load _ | Pbigstring_load _ | Pbbswap _ | Ppoll
| Pmakelazyblock _
->
fatal_errorf "Cmmgen.transl_prim_3: %a"
Printclambda_primitives.primitive p
and transl_prim_4 env p arg1 arg2 arg3 arg4 dbg =
match p with
| Presume ->
Cop (Capply typ_val,
[Cconst_symbol ("caml_resume", dbg);
transl env arg1; transl env arg2;
transl env arg3; transl env arg4],
dbg)
| Psetfield_computed _
| Pbytessetu | Pbytessets | Parraysetu _
| Parraysets _ | Pbytes_set _ | Pbigstring_set _
| Prunstack | Preperform | Pperform | Pdls_get
| Patomic_load
| Pfield_computed | Psequand | Psequor | Pnot | Pnegint | Paddint
| Psubint | Pmulint | Pandint | Porint | Pxorint | Plslint | Plsrint | Pasrint
| Pintoffloat | Pfloatofint | Pnegfloat | Pabsfloat | Paddfloat | Psubfloat
| Pmulfloat | Pdivfloat | Pstringlength | Pstringrefu | Pstringrefs
| Pbyteslength | Pbytesrefu | Pbytesrefs | Pisint | Pisout
| Pbswap16 | Pint_as_pointer | Popaque | Pread_symbol _ | Pmakeblock (_, _, _)
| Pfield _ | Psetfield (_, _, _) | Pfloatfield _ | Psetfloatfield (_, _)
| Pduprecord (_, _) | Pccall _ | Praise _ | Pdivint _ | Pmodint _ | Pintcomp _
| Pcompare_ints | Pcompare_floats | Pcompare_bints _
| Poffsetint _ | Poffsetref _ | Pfloatcomp _ | Pmakearray (_, _)
| Pduparray (_, _) | Parraylength _ | Parrayrefu _ | Parrayrefs _
| Pbintofint _ | Pintofbint _ | Pcvtbint (_, _) | Pnegbint _ | Paddbint _
| Psubbint _ | Pmulbint _ | Pdivbint _ | Pmodbint _ | Pandbint _ | Porbint _
| Pxorbint _ | Plslbint _ | Plsrbint _ | Pasrbint _ | Pbintcomp (_, _)
| Pbigarrayref (_, _, _, _) | Pbigarrayset (_, _, _, _) | Pbigarraydim _
| Pstring_load _ | Pbytes_load _ | Pbigstring_load _ | Pbbswap _ | Ppoll
| Pmakelazyblock _
->
fatal_errorf "Cmmgen.transl_prim_3: %a"
Printclambda_primitives.primitive p
and transl_unbox_float dbg env exp =
unbox_float dbg (transl env exp)
and transl_unbox_int dbg env bi exp =
unbox_int dbg bi (transl env exp)
(* transl_unbox_int, but may return garbage in upper bits *)
and transl_unbox_int_low dbg env bi e =
let e = transl_unbox_int dbg env bi e in
if bi = Pint32 then low_32 dbg e else e
and transl_unbox_sized size dbg env exp =
match size with
| Sixteen ->
ignore_high_bit_int (untag_int (transl env exp) dbg)
| Thirty_two -> transl_unbox_int dbg env Pint32 exp
| Sixty_four -> transl_unbox_int dbg env Pint64 exp
and transl_let env str kind id exp transl_body =
let dbg = Debuginfo.none in
let cexp = transl env exp in
let unboxing =
(* If [id] is a mutable variable (introduced to eliminate a local
reference) and it contains a type of unboxable numbers, then
force unboxing. Indeed, if not boxed, each assignment to the variable
might require some boxing, but such local references are often
used in loops and we really want to avoid repeated boxing. *)
match str, kind with
| Mutable, Pfloatval ->
Boxed (Boxed_float dbg, false)
| Mutable, Pboxedintval bi ->
Boxed (Boxed_integer (bi, dbg), false)
| _, (Pfloatval | Pboxedintval _) ->
(* It would be safe to always unbox in this case, but
we do it only if this indeed allows us to get rid of
some allocations in the bound expression. *)
is_unboxed_number_cmm ~strict:false ~kind cexp
| _, Pgenval ->
(* Here we don't know statically that the bound expression
evaluates to an unboxable number type. We need to be stricter
and ensure that all possible branches in the expression
return a boxed value (of the same kind). Indeed, with GADTs,
different branches could return different types. *)
is_unboxed_number_cmm ~strict:true ~kind cexp
| _, Pintval ->
No_unboxing
in
match unboxing with
| No_unboxing | Boxed (_, true) | No_result ->
(* N.B. [body] must still be traversed even if [exp] will never return:
there may be constant closures inside that need lifting out. *)
begin match str, kind with
| Immutable, _ ->
Clet(id, cexp, transl_body env)
| Mutable, Pintval ->
Clet_mut(id, typ_int, cexp,
transl_body (add_mutable_id (VP.var id) env))
| Mutable, _ ->
Clet_mut(id, typ_val, cexp,
transl_body (add_mutable_id (VP.var id) env))
end
| Boxed (boxed_number, false) ->
let unboxed_id = V.create_local (VP.name id) in
let v = VP.create unboxed_id in
let cexp = unbox_number dbg boxed_number cexp in
let body env =
transl_body (add_unboxed_id (VP.var id) unboxed_id boxed_number env) in
begin match str, boxed_number with
| Immutable, _ ->
Clet (v, cexp, body env)
| Mutable, bn ->
Clet_mut (v, typ_of_boxed_number bn, cexp,
body (add_mutable_id unboxed_id env))
end
and make_catch ncatch body handler dbg = match body with
| Cexit (nexit,[]) when nexit=ncatch -> handler
| _ -> ccatch (ncatch, [], body, handler, dbg)
and is_shareable_cont exp =
match exp with
| Cexit (_,[]) -> true
| _ -> false
and make_shareable_cont dbg mk exp =
if is_shareable_cont exp then mk exp
else begin
let nfail = next_raise_count () in
make_catch
nfail
(mk (Cexit (nfail,[])))
exp
dbg
end
and transl_if env (approx : then_else)
(dbg : Debuginfo.t) cond
(then_dbg : Debuginfo.t) then_
(else_dbg : Debuginfo.t) else_ =
match cond with
| Uconst (Uconst_int 0) -> else_
| Uconst (Uconst_int 1) -> then_
| Uifthenelse (arg1, arg2, Uconst (Uconst_int 0)) ->
(* CR mshinwell: These Debuginfos will flow through from Clambda *)
let inner_dbg = Debuginfo.none in
let ifso_dbg = Debuginfo.none in
transl_sequand env approx
inner_dbg arg1
ifso_dbg arg2
then_dbg then_
else_dbg else_
| Ulet(str, kind, id, exp, cond) ->
transl_let env str kind id exp (fun env ->
transl_if env approx dbg cond then_dbg then_ else_dbg else_)
| Uprim (Psequand, [arg1; arg2], inner_dbg) ->
transl_sequand env approx
inner_dbg arg1
inner_dbg arg2
then_dbg then_
else_dbg else_
| Uifthenelse (arg1, Uconst (Uconst_int 1), arg2) ->
let inner_dbg = Debuginfo.none in
let ifnot_dbg = Debuginfo.none in
transl_sequor env approx
inner_dbg arg1
ifnot_dbg arg2
then_dbg then_
else_dbg else_
| Uprim (Psequor, [arg1; arg2], inner_dbg) ->
transl_sequor env approx
inner_dbg arg1
inner_dbg arg2
then_dbg then_
else_dbg else_
| Uprim (Pnot, [arg], _dbg) ->
transl_if env (invert_then_else approx)
dbg arg
else_dbg else_
then_dbg then_
| Uifthenelse (Uconst (Uconst_int 1), ifso, _) ->
let ifso_dbg = Debuginfo.none in
transl_if env approx
ifso_dbg ifso
then_dbg then_
else_dbg else_
| Uifthenelse (Uconst (Uconst_int 0), _, ifnot) ->
let ifnot_dbg = Debuginfo.none in
transl_if env approx
ifnot_dbg ifnot
then_dbg then_
else_dbg else_
| Uifthenelse (cond, ifso, ifnot) ->
let inner_dbg = Debuginfo.none in
let ifso_dbg = Debuginfo.none in
let ifnot_dbg = Debuginfo.none in
make_shareable_cont then_dbg
(fun shareable_then ->
make_shareable_cont else_dbg
(fun shareable_else ->
mk_if_then_else
inner_dbg (test_bool inner_dbg (transl env cond))
ifso_dbg (transl_if env approx
ifso_dbg ifso
then_dbg shareable_then
else_dbg shareable_else)
ifnot_dbg (transl_if env approx
ifnot_dbg ifnot
then_dbg shareable_then
else_dbg shareable_else))
else_)
then_
| _ -> begin
match approx with
| Then_true_else_false ->
transl env cond
| Then_false_else_true ->
mk_not dbg (transl env cond)
| Unknown ->
mk_if_then_else
dbg (test_bool dbg (transl env cond))
then_dbg then_
else_dbg else_
end
and transl_sequand env (approx : then_else)
(arg1_dbg : Debuginfo.t) arg1
(arg2_dbg : Debuginfo.t) arg2
(then_dbg : Debuginfo.t) then_
(else_dbg : Debuginfo.t) else_ =
make_shareable_cont else_dbg
(fun shareable_else ->
transl_if env Unknown
arg1_dbg arg1
arg2_dbg (transl_if env approx
arg2_dbg arg2
then_dbg then_
else_dbg shareable_else)
else_dbg shareable_else)
else_
and transl_sequor env (approx : then_else)
(arg1_dbg : Debuginfo.t) arg1
(arg2_dbg : Debuginfo.t) arg2
(then_dbg : Debuginfo.t) then_
(else_dbg : Debuginfo.t) else_ =
make_shareable_cont then_dbg
(fun shareable_then ->
transl_if env Unknown
arg1_dbg arg1
then_dbg shareable_then
arg2_dbg (transl_if env approx
arg2_dbg arg2
then_dbg shareable_then
else_dbg else_))
then_
(* This assumes that [arg] can be safely discarded if it is not used. *)
and transl_switch dbg env arg index cases = match Array.length cases with
| 0 -> fatal_error "Cmmgen.transl_switch"
| 1 -> transl env cases.(0)
| _ ->
let cases = Array.map (transl env) cases in
transl_switch_clambda dbg arg index cases
(* Translate a function definition *)
let transl_function f =
let body = f.body in
let cmm_body =
let env = create_env ~environment_param:f.env in
if !Clflags.afl_instrument then
Afl_instrument.instrument_function (transl env body) f.dbg
else
transl env body in
let cmm_body =
if Config.tsan then Thread_sanitizer.instrument cmm_body else cmm_body
in
let fun_codegen_options =
if !Clflags.optimize_for_speed then
[]
else
[ Reduce_code_size ]
in
let fun_args =
List.map (fun (id, value_kind) ->
(id, machtype_of_value_kind value_kind))
f.params
in
Cfunction {fun_name = f.label;
fun_args;
fun_body = cmm_body;
fun_codegen_options;
fun_poll = f.poll;
fun_dbg = f.dbg}
(* Translate all function definitions *)
let rec transl_all_functions already_translated cont =
match Cmmgen_state.next_function () with
| None -> cont, already_translated
| Some f ->
let sym = f.label in
if String.Set.mem sym already_translated then
transl_all_functions already_translated cont
else begin
transl_all_functions
(String.Set.add sym already_translated)
((f.dbg, transl_function f) :: cont)
end
(* Emit constant blocks *)
let emit_constant_table symb elems =
cdefine_symbol symb @
elems
(* Emit all structured constants *)
let transl_clambda_constants (constants : Clambda.preallocated_constant list)
cont =
let c = ref cont in
let emit_clambda_constant symbol global cst =
let cst = emit_structured_constant (symbol, global) cst [] in
c := (Cdata cst) :: !c
in
List.iter
(fun { symbol; exported; definition = cst; provenance = _; } ->
let global : Cmmgen_state.is_global =
if exported then Global else Local
in
emit_clambda_constant symbol global cst)
constants;
!c
let emit_cmm_data_items_for_constants cont =
let c = ref cont in
String.Map.iter (fun symbol (cst : Cmmgen_state.constant) ->
match cst with
| Const_closure (global, fundecls, clos_vars) ->
let cmm =
emit_constant_closure (symbol, global) fundecls
(List.fold_right emit_constant clos_vars []) []
in
c := (Cdata cmm) :: !c
| Const_table (global, elems) ->
c := (Cdata (emit_constant_table (symbol, global) elems)) :: !c)
(Cmmgen_state.get_and_clear_constants ());
Cdata (Cmmgen_state.get_and_clear_data_items ()) :: !c
let transl_all_functions cont =
let rec aux already_translated cont translated_functions =
if Cmmgen_state.no_more_functions ()
then cont, translated_functions
else
let translated_functions, already_translated =
transl_all_functions already_translated translated_functions
in
aux already_translated cont translated_functions
in
let cont, translated_functions =
aux String.Set.empty cont []
in
let translated_functions =
(* Sort functions according to source position *)
List.map snd
(List.sort (fun (dbg1, _) (dbg2, _) ->
Debuginfo.compare dbg1 dbg2) translated_functions)
in
translated_functions @ cont
(* Translate a compilation unit *)
let compunit (ulam, preallocated_blocks, constants) =
assert (Cmmgen_state.no_more_functions ());
let dbg = Debuginfo.none in
Cmmgen_state.set_structured_constants constants;
let init_code =
if !Clflags.afl_instrument then
Afl_instrument.instrument_initialiser (transl empty_env ulam)
(fun () -> dbg)
else
transl empty_env ulam in
let init_code =
if Config.tsan then Thread_sanitizer.instrument init_code
else init_code
in
let c1 = [Cfunction {fun_name = Compilenv.make_symbol (Some "entry");
fun_args = [];
fun_body = init_code;
(* This function is often large and run only once.
Compilation time matter more than runtime.
See MPR#7630 *)
fun_codegen_options =
if Config.flambda then [
Reduce_code_size;
No_CSE;
]
else [ Reduce_code_size ];
fun_poll = Default_poll;
fun_dbg = Debuginfo.none }] in
let c2 = transl_clambda_constants constants c1 in
let c3 = transl_all_functions c2 in
Cmmgen_state.set_structured_constants [];
let c4 = emit_preallocated_blocks preallocated_blocks c3 in
emit_cmm_data_items_for_constants c4
|