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
|
%-----------------------------------------------------------------------------%
% Copyright (C) 1994-2001 The University of Melbourne.
% This file may only be copied under the terms of the GNU General
% Public License - see the file COPYING in the Mercury distribution.
%-----------------------------------------------------------------------------%
%
% File: liveness.m
%
% Main authors: conway, zs, trd.
%
% This module traverses the goal for each procedure, and adds
% liveness annotations to the goal_info for each sub-goal.
% These annotations are the pre-birth set, the post-birth set,
% the pre-death set, the post-death set, and the resume_point field.
%
% Because it recomputes each of these annotations from scratch,
% it should be safe to call this module multiple times
% (although this has not been tested yet).
%
% Note - the concept of `liveness' here is different to that used in
% mode analysis. Mode analysis is concerned with the liveness of what
% is *pointed* to by a variable, for the purpose of avoiding and/or keeping
% track of aliasing and for structure re-use optimization, whereas here
% we are concerned with the liveness of the variable itself, for the
% purposes of optimizing stack slot and register usage.
% Variables have a lifetime: each variable is born, gets used, and then dies.
% To minimize stack slot and register usage, the birth should be
% as late as possible (but before the first possible use), and the
% death should be as early as possible (but after the last possible use).
%
% We compute liveness related information in four distinct passes.
%
% The first pass, detect_liveness_in_goal, finds the first value-giving
% occurrence of each variable on each computation path. Goals containing
% the first such occurrence of a variable include that variable in their
% pre-birth set. In branched structures, branches whose endpoint is not
% reachable include a post-birth set listing the variables that should
% have been born in that branch but haven't. Variables that shouldn't have
% been born but have been (in computation paths that cannot succeed)
% are included in the post-death set of the goal concerned.
%
% The second pass, detect_deadness_in_goal, finds the last occurrence
% of each variable on each computation path. Goals containing the last
% occurrence of a variable include that variable in their post-death
% set. In branched structures, branches in which a variable is not
% used at all include a pre-death set listing the variables that
% have died in parallel branches.
%
% The third pass is optional: it delays the deaths of named variables until
% the last possible moment. This can be useful if debugging is enabled, as it
% allows the programmer to look at the values of such variables at as many
% trace events as possible. If debugging is not enabled, this pass is a pure
% pessimization (it increases stack slot pressure and thus probably increases
% the size of the procedure's stack frame), and therefore should not be
% enabled.
%
% The second and third passes cannot be combined, because the second pass
% traverses goals backwards while the third pass traverses goals forwards.
%
% The fourth pass, detect_resume_points_in_goal, finds goals that
% establish resume points and attaches to them a resume_point
% annotation listing the variables that may be referenced by the
% code at that resume point as well as the nature of the required
% entry labels.
%
% Typeinfo liveness calculation notes:
%
% When using accurate gc or execution tracing, liveness is computed
% slightly differently. The runtime system needs access to the
% typeinfo variables of any variable that is live at a continuation or event.
% (This includes typeclass info variables that hold typeinfos;
% in the following "typeinfo variables" also includes typeclass info
% variables.)
%
% Hence, the invariant needed for typeinfo-liveness calculation:
% a variable holding a typeinfo must be live at any continuation
% where any variable whose type is described (in whole or in part)
% by that typeinfo is live.
%
% Typeinfos are introduced as either one of the head variables, or a new
% variable created by a goal in the procedure. If introduced as a head
% variable, initial_liveness will add it to the initial live set of
% variables -- no variable could be introduced earlier than the start of
% the goal. If introduced by a goal in the procedure, that goal must
% occur before any call that requires the typeinfo, so the variable will
% be born before the continuation after the call. So the typeinfo
% variables will always be born before any continuation where they are
% needed.
%
% A typeinfo variable becomes dead after both the following conditions
% are true:
%
% (1) The typeinfo variable is not used again (when it is no
% longer part of the nonlocals)
% (2) No other nonlocal variable's type is described by that typeinfo
% variable.
%
% (1) happens without any changes to the liveness computation (it is
% the normal condition for variables becoming dead). This is more
% conservative than what is required for the invariant, but is
% required for code generation, so we should keep it ;-)
% (2) is implemented by adding the typeinfo variables for the types of the
% nonlocals to the nonlocals for the purposes of computing liveness.
%
% In some circumstances, one of which is tests/debugger/resume_typeinfos.m,
% it is possible for a typeinfo variable to be born in a goal without that
% typeinfo variable appearing anywhere else in the procedure body.
% Nevertheless, with typeinfo liveness, we must consider such variables
% to be born in such goals even though they do not appear in the nonlocals set
% or in the instmap delta. (If they were not born, it would be an error for
% them to die, and die they will, at the last occurrence of a variable whose
% type they (partially) describe.) The special case solution we adopt for
% such situations is that we consider the first appearance of a typeinfo
% variable in the typeinfo-completed nonlocals set of a goal to be a value
% giving occurrence, even if the typeinfo does not appear in the instmap delta.
% This is safe, since with our current scheme for handling polymorphism,
% the first appearance will in fact always ground the typeinfo.
%
% So typeinfo variables will always be born before they are needed, and
% die only when no other variable needing them will be live, so the
% invariant holds.
%
% Quantification notes:
%
% If a variable is not live on entry to a goal, but the goal gives it a value,
% the code of this module assumes that
%
% (a) any parallel goals also give it a value, or
% (b) the variable is local to this goal and hence does not occur in parallel
% goals.
%
% If a variable occurs in the nonlocal set of the goal, the code of this
% assumes that (b) is not true, and will therefore require (a) to be true.
% If some of the parallel goals cannot succeed, the first pass will include
% the variable in their post-birth sets.
%
% If a variable occurs in the nonlocal set of the goal, but is actually
% local to the goal, then any occurrence of that variable in the postbirth
% sets of parallel goals will lead to an inconsistency, because the variable
% will not die on those parallel paths, but will die on the path that
% actually gives a value to the variable.
%
% The nonlocal set of a goal is in general allowed to overapproximate the
% true set of nonlocal variables of the goal. Since this module requires
% *exact* information about nonlocals, it must recompute the nonlocal sets
% before starting.
%-----------------------------------------------------------------------------%
:- module liveness.
:- interface.
:- import_module hlds_module, hlds_pred, prog_data.
:- import_module set.
% Add liveness annotations to the goal of the procedure.
% This consists of the {pre,post}{birth,death} sets and
% resume point information.
:- pred detect_liveness_proc(proc_info, pred_id, module_info, proc_info).
:- mode detect_liveness_proc(in, in, in, out) is det.
% Return the set of variables live at the start of the procedure.
:- pred initial_liveness(proc_info, pred_id, module_info, set(prog_var)).
:- mode initial_liveness(in, in, in, out) is det.
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- implementation.
% Parse tree modules
:- import_module prog_util, (inst).
% HLDS modules
:- import_module hlds_goal, hlds_data, hlds_out, instmap, mode_util.
:- import_module quantification, polymorphism.
% Modules shared between different back-ends.
:- import_module code_model, passes_aux.
% LLDS modules
:- import_module llds, code_util, trace_params, trace.
% Misc
:- import_module globals, options.
% Standard library modules
:- import_module bool, string, map, std_util, list, assoc_list, require.
:- import_module term, varset.
detect_liveness_proc(ProcInfo0, PredId, ModuleInfo, ProcInfo) :-
requantify_proc(ProcInfo0, ProcInfo1),
proc_info_goal(ProcInfo1, Goal0),
proc_info_varset(ProcInfo1, VarSet),
proc_info_vartypes(ProcInfo1, VarTypes),
proc_info_typeinfo_varmap(ProcInfo1, TVarMap),
module_info_globals(ModuleInfo, Globals),
module_info_pred_info(ModuleInfo, PredId, PredInfo),
body_should_use_typeinfo_liveness(PredInfo, Globals, TypeInfoLiveness),
live_info_init(ModuleInfo, TypeInfoLiveness, VarTypes, TVarMap, VarSet,
LiveInfo),
initial_liveness(ProcInfo1, PredId, ModuleInfo, Liveness0),
detect_liveness_in_goal(Goal0, Liveness0, LiveInfo,
_, Goal1),
initial_deadness(ProcInfo1, LiveInfo, ModuleInfo, Deadness0),
detect_deadness_in_goal(Goal1, Deadness0, LiveInfo, _, Goal2),
(
globals__get_trace_level(Globals, TraceLevel),
AllowDelayDeath = trace_level_allows_delay_death(TraceLevel),
AllowDelayDeath = yes,
globals__lookup_bool_option(Globals, delay_death, DelayDeath),
DelayDeath = yes
->
delay_death_proc_body(Goal2, VarSet, Liveness0, Goal3)
;
Goal3 = Goal2
),
globals__get_trace_level(Globals, TraceLevel),
( trace_level_is_none(TraceLevel) = no ->
trace__fail_vars(ModuleInfo, ProcInfo0, ResumeVars0)
;
set__init(ResumeVars0)
),
detect_resume_points_in_goal(Goal3, Liveness0, LiveInfo,
ResumeVars0, Goal, _),
proc_info_set_goal(ProcInfo1, Goal, ProcInfo2),
proc_info_set_liveness_info(ProcInfo2, Liveness0, ProcInfo).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- pred detect_liveness_in_goal(hlds_goal, set(prog_var), live_info,
set(prog_var), hlds_goal).
:- mode detect_liveness_in_goal(in, in, in, out, out) is det.
detect_liveness_in_goal(Goal0 - GoalInfo0, Liveness0, LiveInfo,
Liveness, Goal - GoalInfo) :-
% work out which variables get born in this goal
liveness__get_nonlocals_and_typeinfos(LiveInfo, GoalInfo0,
BaseNonLocals, CompletedNonLocals),
set__difference(CompletedNonLocals, Liveness0, NewVarsSet),
set__to_sorted_list(NewVarsSet, NewVarsList),
goal_info_get_instmap_delta(GoalInfo0, InstMapDelta),
set__init(Empty),
( instmap_delta_is_unreachable(InstMapDelta) ->
Births = Empty
;
set__init(Births0),
find_value_giving_occurrences(NewVarsList, LiveInfo,
InstMapDelta, Births0, Births1),
set__difference(CompletedNonLocals, BaseNonLocals,
TypeInfos),
set__difference(TypeInfos, Liveness0, NewTypeInfos),
set__union(Births1, NewTypeInfos, Births)
),
set__union(Liveness0, Births, Liveness),
( goal_is_atomic(Goal0) ->
PreDeaths = Empty,
PreBirths = Births,
PostDeaths = Empty,
PostBirths = Empty,
Goal = Goal0
;
PreDeaths = Empty,
PreBirths = Empty,
detect_liveness_in_goal_2(Goal0, Liveness0, CompletedNonLocals,
LiveInfo, ActualLiveness, Goal),
set__intersect(CompletedNonLocals, ActualLiveness,
NonLocalLiveness),
set__union(NonLocalLiveness, Liveness0, FinalLiveness),
set__difference(FinalLiveness, Liveness, PostDeaths),
set__difference(Liveness, FinalLiveness, PostBirths)
),
% We initialize all the fields in order to obliterate any
% annotations left by a previous invocation of this module.
goal_info_set_pre_deaths(GoalInfo0, PreDeaths, GoalInfo1),
goal_info_set_pre_births(GoalInfo1, PreBirths, GoalInfo2),
goal_info_set_post_deaths(GoalInfo2, PostDeaths, GoalInfo3),
goal_info_set_post_births(GoalInfo3, PostBirths, GoalInfo4),
goal_info_set_resume_point(GoalInfo4, no_resume_point, GoalInfo).
%-----------------------------------------------------------------------------%
% Here we process each of the different sorts of goals.
:- pred detect_liveness_in_goal_2(hlds_goal_expr, set(prog_var), set(prog_var),
live_info, set(prog_var), hlds_goal_expr).
:- mode detect_liveness_in_goal_2(in, in, in, in, out, out) is det.
detect_liveness_in_goal_2(conj(Goals0), Liveness0, _, LiveInfo,
Liveness, conj(Goals)) :-
detect_liveness_in_conj(Goals0, Liveness0, LiveInfo, Liveness, Goals).
detect_liveness_in_goal_2(par_conj(Goals0, SM), Liveness0, NonLocals, LiveInfo,
Liveness, par_conj(Goals, SM)) :-
set__init(Union0),
detect_liveness_in_par_conj(Goals0, Liveness0, NonLocals, LiveInfo,
Union0, Union, Goals),
set__union(Liveness0, Union, Liveness).
detect_liveness_in_goal_2(disj(Goals0, SM), Liveness0, NonLocals, LiveInfo,
Liveness, disj(Goals, SM)) :-
set__init(Union0),
detect_liveness_in_disj(Goals0, Liveness0, NonLocals, LiveInfo,
Union0, Union, Goals),
set__union(Liveness0, Union, Liveness).
detect_liveness_in_goal_2(switch(Var, Det, Cases0, SM), Liveness0, NonLocals,
LiveInfo, Liveness, switch(Var, Det, Cases, SM)) :-
detect_liveness_in_cases(Cases0, Liveness0, NonLocals, LiveInfo,
Liveness0, Liveness, Cases).
detect_liveness_in_goal_2(not(Goal0), Liveness0, _, LiveInfo,
Liveness, not(Goal)) :-
detect_liveness_in_goal(Goal0, Liveness0, LiveInfo, Liveness, Goal).
detect_liveness_in_goal_2(if_then_else(Vars, Cond0, Then0, Else0, SM),
Liveness0, NonLocals, LiveInfo, Liveness,
if_then_else(Vars, Cond, Then, Else, SM)) :-
detect_liveness_in_goal(Cond0, Liveness0, LiveInfo, LivenessCond, Cond),
%
% If the condition cannot succeed, any variables which become live
% in the else part should be put in the post-birth set of the then part
% by add_liveness_after_goal, and the other sets should be empty.
%
Cond = _ - CondInfo,
goal_info_get_instmap_delta(CondInfo, CondDelta),
( instmap_delta_is_unreachable(CondDelta) ->
LivenessThen = LivenessCond,
Then1 = Then0
;
detect_liveness_in_goal(Then0, LivenessCond, LiveInfo,
LivenessThen, Then1)
),
detect_liveness_in_goal(Else0, Liveness0, LiveInfo, LivenessElse,
Else1),
set__union(LivenessThen, LivenessElse, Liveness),
set__intersect(Liveness, NonLocals, NonLocalLiveness),
set__difference(NonLocalLiveness, LivenessThen, ResidueThen),
set__difference(NonLocalLiveness, LivenessElse, ResidueElse),
add_liveness_after_goal(Then1, ResidueThen, Then),
add_liveness_after_goal(Else1, ResidueElse, Else).
detect_liveness_in_goal_2(some(Vars, CanRemove, Goal0), Liveness0, _, LiveInfo,
Liveness, some(Vars, CanRemove, Goal)) :-
detect_liveness_in_goal(Goal0, Liveness0, LiveInfo, Liveness, Goal).
detect_liveness_in_goal_2(generic_call(_,_,_,_), _, _, _, _, _) :-
error("higher-order-call in detect_liveness_in_goal_2").
detect_liveness_in_goal_2(call(_,_,_,_,_,_), _, _, _, _, _) :-
error("call in detect_liveness_in_goal_2").
detect_liveness_in_goal_2(unify(_,_,_,_,_), _, _, _, _, _) :-
error("unify in detect_liveness_in_goal_2").
detect_liveness_in_goal_2(pragma_foreign_code(_,_,_,_,_,_,_),
_, _, _, _, _) :-
error("pragma_foreign_code in detect_liveness_in_goal_2").
detect_liveness_in_goal_2(bi_implication(_, _), _, _, _, _, _) :-
error("bi_implication in detect_liveness_in_goal_2").
%-----------------------------------------------------------------------------%
:- pred detect_liveness_in_conj(list(hlds_goal), set(prog_var), live_info,
set(prog_var), list(hlds_goal)).
:- mode detect_liveness_in_conj(in, in, in, out, out) is det.
detect_liveness_in_conj([], Liveness, _LiveInfo, Liveness, []).
detect_liveness_in_conj([Goal0 | Goals0], Liveness0, LiveInfo, Liveness,
[Goal | Goals]) :-
detect_liveness_in_goal(Goal0, Liveness0, LiveInfo, Liveness1, Goal),
(
Goal0 = _ - GoalInfo,
goal_info_get_instmap_delta(GoalInfo, InstmapDelta),
instmap_delta_is_unreachable(InstmapDelta)
->
Goals = Goals0,
Liveness = Liveness1
;
detect_liveness_in_conj(Goals0, Liveness1, LiveInfo,
Liveness, Goals)
).
%-----------------------------------------------------------------------------%
:- pred detect_liveness_in_disj(list(hlds_goal), set(prog_var), set(prog_var),
live_info, set(prog_var), set(prog_var), list(hlds_goal)).
:- mode detect_liveness_in_disj(in, in, in, in, in, out, out) is det.
detect_liveness_in_disj([], _Liveness, _NonLocals, _LiveInfo,
Union, Union, []).
detect_liveness_in_disj([Goal0 | Goals0], Liveness, NonLocals, LiveInfo,
Union0, Union, [Goal | Goals]) :-
detect_liveness_in_goal(Goal0, Liveness, LiveInfo, Liveness1, Goal1),
set__union(Union0, Liveness1, Union1),
detect_liveness_in_disj(Goals0, Liveness, NonLocals, LiveInfo,
Union1, Union, Goals),
set__intersect(Union, NonLocals, NonLocalUnion),
set__difference(NonLocalUnion, Liveness1, Residue),
add_liveness_after_goal(Goal1, Residue, Goal).
%-----------------------------------------------------------------------------%
:- pred detect_liveness_in_cases(list(case), set(prog_var), set(prog_var),
live_info, set(prog_var), set(prog_var), list(case)).
:- mode detect_liveness_in_cases(in, in, in, in, in, out, out) is det.
detect_liveness_in_cases([], _Liveness, _NonLocals, _LiveInfo,
Union, Union, []).
detect_liveness_in_cases([case(Cons, Goal0) | Goals0], Liveness, NonLocals,
LiveInfo, Union0, Union, [case(Cons, Goal) | Goals]) :-
detect_liveness_in_goal(Goal0, Liveness, LiveInfo, Liveness1, Goal1),
set__union(Union0, Liveness1, Union1),
detect_liveness_in_cases(Goals0, Liveness, NonLocals, LiveInfo,
Union1, Union, Goals),
set__intersect(Union, NonLocals, NonLocalUnion),
set__difference(NonLocalUnion, Liveness1, Residue),
add_liveness_after_goal(Goal1, Residue, Goal).
%-----------------------------------------------------------------------------%
:- pred detect_liveness_in_par_conj(list(hlds_goal), set(prog_var),
set(prog_var), live_info, set(prog_var), set(prog_var),
list(hlds_goal)).
:- mode detect_liveness_in_par_conj(in, in, in, in, in, out, out) is det.
detect_liveness_in_par_conj([], _Liveness, _NonLocals, _LiveInfo,
Union, Union, []).
detect_liveness_in_par_conj([Goal0 | Goals0], Liveness0, NonLocals, LiveInfo,
Union0, Union, [Goal | Goals]) :-
detect_liveness_in_goal(Goal0, Liveness0, LiveInfo, Liveness1, Goal1),
set__union(Union0, Liveness1, Union1),
detect_liveness_in_par_conj(Goals0, Liveness0, NonLocals, LiveInfo,
Union1, Union, Goals),
set__intersect(Union, NonLocals, NonLocalUnion),
set__difference(NonLocalUnion, Liveness1, Residue),
add_liveness_after_goal(Goal1, Residue, Goal).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- pred detect_deadness_in_goal(hlds_goal, set(prog_var), live_info,
set(prog_var), hlds_goal).
:- mode detect_deadness_in_goal(in, in, in, out, out) is det.
detect_deadness_in_goal(Goal0 - GoalInfo0, Deadness0, LiveInfo, Deadness,
Goal - GoalInfo) :-
goal_info_get_pre_deaths(GoalInfo0, PreDeaths0),
goal_info_get_pre_births(GoalInfo0, PreBirths0),
goal_info_get_post_deaths(GoalInfo0, PostDeaths0),
goal_info_get_post_births(GoalInfo0, PostBirths0),
set__difference(Deadness0, PostBirths0, Deadness1),
set__union(Deadness1, PostDeaths0, Deadness2),
liveness__get_nonlocals_and_typeinfos(LiveInfo, GoalInfo0,
_BaseNonLocals, CompletedNonLocals),
set__init(Empty),
( goal_is_atomic(Goal0) ->
%
% The code below is slightly dodgy: the new postdeaths really
% ought to be computed as the difference between the liveness
% immediately before goal and the deadness immediately after
% goal. But we don't have liveness available here, and
% computing it would be complicated and perhaps costly. So
% instead we use the non-locals. The effect of this is that a
% variable will die after its last occurence, even if it has
% never been born. (This can occur in the case of variables
% with `free->free' modes, or for goals with determinism
% erroneous.) Thus the code generator must be willing to
% handle that -- it is not considered an error for a variable
% that is not yet live to die. [If we ever wanted to
% change this, the easiest thing to do would be to put
% some extra code in the third pass (detect_resume_points)
% to delete any such untimely deaths.]
%
set__difference(CompletedNonLocals, Deadness2, NewPostDeaths),
set__union(Deadness2, NewPostDeaths, Deadness3),
Goal = Goal0
;
NewPostDeaths = Empty,
detect_deadness_in_goal_2(Goal0, GoalInfo0, Deadness2,
LiveInfo, Deadness3, Goal)
),
set__union(PostDeaths0, NewPostDeaths, PostDeaths),
goal_info_set_post_deaths(GoalInfo0, PostDeaths, GoalInfo),
set__difference(Deadness3, PreBirths0, Deadness4),
set__union(Deadness4, PreDeaths0, Deadness).
% Here we process each of the different sorts of goals.
:- pred detect_deadness_in_goal_2(hlds_goal_expr, hlds_goal_info,
set(prog_var), live_info, set(prog_var), hlds_goal_expr).
:- mode detect_deadness_in_goal_2(in, in, in, in, out, out) is det.
detect_deadness_in_goal_2(conj(Goals0), _, Deadness0, LiveInfo,
Deadness, conj(Goals)) :-
detect_deadness_in_conj(Goals0, Deadness0, LiveInfo,
Goals, Deadness).
detect_deadness_in_goal_2(par_conj(Goals0, SM), GoalInfo, Deadness0, LiveInfo,
Deadness, par_conj(Goals, SM)) :-
set__init(Union0),
liveness__get_nonlocals_and_typeinfos(LiveInfo, GoalInfo,
_, CompletedNonLocals),
detect_deadness_in_par_conj(Goals0, Deadness0, CompletedNonLocals,
LiveInfo, Union0, Union, Goals),
set__union(Union, Deadness0, Deadness).
detect_deadness_in_goal_2(disj(Goals0, SM), GoalInfo, Deadness0,
LiveInfo, Deadness, disj(Goals, SM)) :-
set__init(Union0),
liveness__get_nonlocals_and_typeinfos(LiveInfo, GoalInfo,
_, CompletedNonLocals),
detect_deadness_in_disj(Goals0, Deadness0, CompletedNonLocals,
LiveInfo, Union0, Deadness, Goals).
detect_deadness_in_goal_2(switch(Var, Det, Cases0, SM), GoalInfo, Deadness0,
LiveInfo, Deadness, switch(Var, Det, Cases, SM)) :-
set__init(Union0),
liveness__get_nonlocals_and_typeinfos(LiveInfo, GoalInfo,
_, CompletedNonLocals),
detect_deadness_in_cases(Var, Cases0, Deadness0, CompletedNonLocals,
LiveInfo, Union0, Deadness, Cases).
detect_deadness_in_goal_2(not(Goal0), _, Deadness0, LiveInfo,
Deadness, not(Goal)) :-
detect_deadness_in_goal(Goal0, Deadness0, LiveInfo, Deadness, Goal).
detect_deadness_in_goal_2(if_then_else(Vars, Cond0, Then0, Else0, SM),
GoalInfo, Deadness0, LiveInfo, Deadness,
if_then_else(Vars, Cond, Then, Else, SM)) :-
detect_deadness_in_goal(Else0, Deadness0, LiveInfo,
DeadnessElse, Else1),
detect_deadness_in_goal(Then0, Deadness0, LiveInfo,
DeadnessThen, Then),
detect_deadness_in_goal(Cond0, DeadnessThen, LiveInfo,
DeadnessCond, Cond1),
liveness__get_nonlocals_and_typeinfos(LiveInfo, GoalInfo,
_, CompletedNonLocals),
set__union(DeadnessCond, DeadnessElse, Deadness),
set__intersect(Deadness, CompletedNonLocals, NonLocalDeadness),
set__difference(NonLocalDeadness, DeadnessCond, ResidueCond),
set__difference(NonLocalDeadness, DeadnessElse, ResidueElse),
add_deadness_before_goal(Cond1, ResidueCond, Cond),
add_deadness_before_goal(Else1, ResidueElse, Else).
detect_deadness_in_goal_2(some(Vars, CanRemove, Goal0), _, Deadness0, LiveInfo,
Deadness, some(Vars, CanRemove, Goal)) :-
detect_deadness_in_goal(Goal0, Deadness0, LiveInfo, Deadness, Goal).
detect_deadness_in_goal_2(generic_call(_,_,_,_), _, _, _, _, _) :-
error("higher-order-call in detect_deadness_in_goal_2").
detect_deadness_in_goal_2(call(_,_,_,_,_,_), _, _, _, _, _) :-
error("call in detect_deadness_in_goal_2").
detect_deadness_in_goal_2(unify(_,_,_,_,_), _, _, _, _, _) :-
error("unify in detect_deadness_in_goal_2").
detect_deadness_in_goal_2(pragma_foreign_code(_, _, _, _, _, _, _),
_, _, _, _, _) :-
error("pragma_foreign_code in detect_deadness_in_goal_2").
detect_deadness_in_goal_2(bi_implication(_, _), _, _, _, _, _) :-
error("bi_implication in detect_deadness_in_goal_2").
%-----------------------------------------------------------------------------%
:- pred detect_deadness_in_conj(list(hlds_goal), set(prog_var), live_info,
list(hlds_goal), set(prog_var)).
:- mode detect_deadness_in_conj(in, in, in, out, out) is det.
detect_deadness_in_conj([], Deadness, _LiveInfo, [], Deadness).
detect_deadness_in_conj([Goal0 | Goals0], Deadness0, LiveInfo,
[Goal | Goals], Deadness) :-
(
Goal0 = _ - GoalInfo,
goal_info_get_instmap_delta(GoalInfo, InstmapDelta),
instmap_delta_is_unreachable(InstmapDelta)
->
Goals = Goals0,
detect_deadness_in_goal(Goal0, Deadness0, LiveInfo,
Deadness, Goal)
;
detect_deadness_in_conj(Goals0, Deadness0, LiveInfo,
Goals, Deadness1),
detect_deadness_in_goal(Goal0, Deadness1, LiveInfo,
Deadness, Goal)
).
%-----------------------------------------------------------------------------%
:- pred detect_deadness_in_disj(list(hlds_goal), set(prog_var), set(prog_var),
live_info, set(prog_var), set(prog_var), list(hlds_goal)).
:- mode detect_deadness_in_disj(in, in, in, in, in, out, out) is det.
detect_deadness_in_disj([], _Deadness, _NonLocals, _LiveInfo,
Union, Union, []).
detect_deadness_in_disj([Goal0 | Goals0], Deadness, NonLocals, LiveInfo,
Union0, Union, [Goal | Goals]) :-
detect_deadness_in_goal(Goal0, Deadness, LiveInfo, Deadness1, Goal1),
set__union(Union0, Deadness1, Union1),
detect_deadness_in_disj(Goals0, Deadness, NonLocals, LiveInfo,
Union1, Union, Goals),
set__intersect(Union, NonLocals, NonLocalUnion),
set__difference(NonLocalUnion, Deadness1, Residue),
add_deadness_before_goal(Goal1, Residue, Goal).
%-----------------------------------------------------------------------------%
:- pred detect_deadness_in_cases(prog_var, list(case), set(prog_var),
set(prog_var), live_info, set(prog_var), set(prog_var), list(case)).
:- mode detect_deadness_in_cases(in, in, in, in, in, in, out, out) is det.
detect_deadness_in_cases(_Var, [], _Deadness, _NonLocals, _LiveInfo,
Union, Union, []).
detect_deadness_in_cases(SwitchVar, [case(Cons, Goal0) | Goals0], Deadness0,
NonLocals, LiveInfo, Union0, Union,
[case(Cons, Goal) | Goals]) :-
detect_deadness_in_goal(Goal0, Deadness0, LiveInfo, Deadness1, Goal1),
set__union(Union0, Deadness1, Union1),
detect_deadness_in_cases(SwitchVar, Goals0, Deadness0, NonLocals,
LiveInfo, Union1, Union2, Goals),
% If the switch variable does not become dead in a case
% it must be put in the pre-death set of that case.
set__insert(Union2, SwitchVar, Union),
set__intersect(Union, NonLocals, NonLocalUnion),
set__difference(NonLocalUnion, Deadness1, Residue),
add_deadness_before_goal(Goal1, Residue, Goal).
%-----------------------------------------------------------------------------%
:- pred detect_deadness_in_par_conj(list(hlds_goal), set(prog_var),
set(prog_var), live_info, set(prog_var), set(prog_var),
list(hlds_goal)).
:- mode detect_deadness_in_par_conj(in, in, in, in, in, out, out) is det.
detect_deadness_in_par_conj([], _Deadness, _NonLocals, _LiveInfo,
Union, Union, []).
detect_deadness_in_par_conj([Goal0 | Goals0], Deadness, NonLocals, LiveInfo,
Union0, Union, [Goal | Goals]) :-
detect_deadness_in_goal(Goal0, Deadness, LiveInfo, Deadness1, Goal1),
set__union(Union0, Deadness1, Union1),
detect_deadness_in_par_conj(Goals0, Deadness, NonLocals, LiveInfo,
Union1, Union, Goals),
set__intersect(Union, NonLocals, NonLocalUnion),
set__difference(NonLocalUnion, Deadness1, Residue),
add_deadness_before_goal(Goal1, Residue, Goal).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% The delay_death pass works by maintaining a set of variables (all named)
% that, according to the deadness pass should have died by now, but which
% are being kept alive so that their values are accessible to the debugger.
% Variables in this DelayedDead set are finally killed when we come to the end
% of the goal in which they were born. This is because if a variable is born in
% one arm of a branched control structure (e.g. a switch), it cannot live
% beyond the control structure, because it is not given a value in other
% branches.
%
% The correctness of this pass with typeinfo_liveness depends on the fact that
% typeinfo and typeclass_info variables are all named. If they weren't, then it
% would be possible for a (named) variable to have its death delayed without
% the type(class)info variable describing part of its type having its death
% delayed as well. In fact, its death will be delayed by at least as much,
% since a variable cannot be live on entry to a branched control structure
% without the type(class)info variables describing its type being live there as
% well.
:- pred delay_death_proc_body(hlds_goal::in, prog_varset::in, set(prog_var)::in,
hlds_goal::out) is det.
delay_death_proc_body(Goal0, VarSet, BornVars0, Goal) :-
delay_death_goal(Goal0, BornVars0, set__init, VarSet,
Goal1, _, DelayedDead),
Goal1 = GoalExpr - GoalInfo1,
goal_info_get_post_deaths(GoalInfo1, PostDeaths1),
set__union(PostDeaths1, DelayedDead, PostDeaths),
goal_info_set_post_deaths(GoalInfo1, PostDeaths, GoalInfo),
Goal = GoalExpr - GoalInfo.
:- pred delay_death_goal(hlds_goal::in, set(prog_var)::in, set(prog_var)::in,
prog_varset::in,
hlds_goal::out, set(prog_var)::out, set(prog_var)::out) is det.
delay_death_goal(GoalExpr0 - GoalInfo0, BornVars0, DelayedDead0, VarSet,
GoalExpr - GoalInfo, BornVars, DelayedDead) :-
goal_info_get_pre_births(GoalInfo0, PreBirths),
goal_info_get_pre_deaths(GoalInfo0, PreDeaths0),
set__union(BornVars0, PreBirths, BornVars1),
set__divide(var_is_named(VarSet), PreDeaths0,
PreDelayedDead, UnnamedPreDeaths),
set__union(DelayedDead0, PreDelayedDead, DelayedDead1),
goal_info_set_pre_deaths(GoalInfo0, UnnamedPreDeaths, GoalInfo1),
delay_death_goal_expr(GoalExpr0, GoalInfo1, BornVars1, DelayedDead1,
VarSet, GoalExpr, GoalInfo2, BornVars2, DelayedDead2),
goal_info_get_post_births(GoalInfo2, PostBirths),
goal_info_get_post_deaths(GoalInfo2, PostDeaths2),
set__union(BornVars2, PostBirths, BornVars),
set__divide(var_is_named(VarSet), PostDeaths2,
PostDelayedDead, UnnamedPostDeaths),
set__union(DelayedDead2, PostDelayedDead, DelayedDead3),
set__divide(set__contains(BornVars0), DelayedDead3,
DelayedDead, ToBeKilled),
set__union(UnnamedPostDeaths, ToBeKilled, PostDeaths),
goal_info_set_post_deaths(GoalInfo2, PostDeaths, GoalInfo).
:- pred var_is_named(prog_varset::in, prog_var::in) is semidet.
var_is_named(VarSet, Var) :-
varset__search_name(VarSet, Var, _).
:- pred delay_death_goal_expr(hlds_goal_expr::in, hlds_goal_info::in,
set(prog_var)::in, set(prog_var)::in, prog_varset::in,
hlds_goal_expr::out, hlds_goal_info::out,
set(prog_var)::out, set(prog_var)::out) is det.
delay_death_goal_expr(GoalExpr0, GoalInfo0, BornVars0, DelayedDead0, VarSet,
GoalExpr, GoalInfo, BornVars, DelayedDead) :-
(
GoalExpr0 = call(_, _, _, _, _, _),
GoalExpr = GoalExpr0,
GoalInfo = GoalInfo0,
BornVars = BornVars0,
DelayedDead = DelayedDead0
;
GoalExpr0 = generic_call(_, _, _, _),
GoalExpr = GoalExpr0,
GoalInfo = GoalInfo0,
BornVars = BornVars0,
DelayedDead = DelayedDead0
;
GoalExpr0 = unify(_, _, _, _, _),
GoalExpr = GoalExpr0,
GoalInfo = GoalInfo0,
BornVars = BornVars0,
DelayedDead = DelayedDead0
;
GoalExpr0 = pragma_foreign_code(_, _, _, _, _, _, _),
GoalExpr = GoalExpr0,
GoalInfo = GoalInfo0,
BornVars = BornVars0,
DelayedDead = DelayedDead0
;
GoalExpr0 = conj(Goals0),
delay_death_conj(Goals0, BornVars0, DelayedDead0, VarSet,
Goals, BornVars, DelayedDead),
GoalExpr = conj(Goals),
GoalInfo = GoalInfo0
;
GoalExpr0 = par_conj(Goals0, SM),
delay_death_conj(Goals0, BornVars0, DelayedDead0, VarSet,
Goals, BornVars, DelayedDead),
GoalExpr = par_conj(Goals, SM),
GoalInfo = GoalInfo0
;
GoalExpr0 = disj(Goals0, SM),
delay_death_disj(Goals0, BornVars0, DelayedDead0, VarSet,
GoalDeaths, MaybeBornVarsDelayedDead),
(
MaybeBornVarsDelayedDead = yes(BornVars - DelayedDead),
Goals = list__map(
kill_excess_delayed_dead_goal(DelayedDead),
GoalDeaths),
GoalExpr = disj(Goals, SM),
GoalInfo = GoalInfo0
;
MaybeBornVarsDelayedDead = no,
% Empty disjunctions represent the goal `fail',
% so we process them as if they were primitive goals.
GoalExpr = GoalExpr0,
GoalInfo = GoalInfo0,
BornVars = BornVars0,
DelayedDead = DelayedDead0
)
;
GoalExpr0 = switch(Var, CanFail, Cases0, SM),
delay_death_cases(Cases0, BornVars0, DelayedDead0, VarSet,
CaseDeaths, MaybeBornVarsDelayedDead),
(
MaybeBornVarsDelayedDead = yes(BornVars - DelayedDead),
Cases = list__map(
kill_excess_delayed_dead_case(DelayedDead),
CaseDeaths),
GoalExpr = switch(Var, CanFail, Cases, SM),
GoalInfo = GoalInfo0
;
MaybeBornVarsDelayedDead = no,
error("delay_death_goal_expr: empty switch")
)
;
GoalExpr0 = not(Goal0),
delay_death_goal(Goal0, BornVars0, DelayedDead0, VarSet,
Goal, _BornVars, DelayedDead),
GoalExpr = not(Goal),
GoalInfo = GoalInfo0,
BornVars = BornVars0
;
GoalExpr0 = if_then_else(QuantVars, Cond0, Then0, Else0, SM),
delay_death_goal(Cond0, BornVars0, DelayedDead0, VarSet,
Cond, BornVarsCond, DelayedDeadCond),
delay_death_goal(Then0, BornVarsCond, DelayedDeadCond, VarSet,
Then1, BornVarsThen, DelayedDeadThen),
delay_death_goal(Else0, BornVars0, DelayedDead0, VarSet,
Else1, BornVarsElse, DelayedDeadElse),
set__intersect(BornVarsThen, BornVarsElse, BornVars),
set__intersect(DelayedDeadThen, DelayedDeadElse, DelayedDead),
Then = kill_excess_delayed_dead_goal(DelayedDead,
Then1 - DelayedDeadThen),
Else = kill_excess_delayed_dead_goal(DelayedDead,
Else1 - DelayedDeadElse),
GoalExpr = if_then_else(QuantVars, Cond, Then, Else, SM),
GoalInfo = GoalInfo0
;
GoalExpr0 = some(QuantVars, CanRemove, Goal0),
delay_death_goal(Goal0, BornVars0, DelayedDead0, VarSet,
Goal, _BornVars, DelayedDead),
GoalExpr = some(QuantVars, CanRemove, Goal),
GoalInfo = GoalInfo0,
BornVars = BornVars0
;
GoalExpr0 = bi_implication(_, _),
error("delay_death_goal_expr: bi_implication")
).
:- pred delay_death_conj(list(hlds_goal)::in,
set(prog_var)::in, set(prog_var)::in, prog_varset::in,
list(hlds_goal)::out, set(prog_var)::out, set(prog_var)::out) is det.
delay_death_conj([], BornVars, DelayedDead, _, [], BornVars, DelayedDead).
delay_death_conj([Goal0 | Goals0], BornVars0, DelayedDead0, VarSet,
[Goal | Goals], BornVars, DelayedDead) :-
delay_death_goal(Goal0, BornVars0, DelayedDead0, VarSet,
Goal, BornVars1, DelayedDead1),
delay_death_conj(Goals0, BornVars1, DelayedDead1, VarSet,
Goals, BornVars, DelayedDead).
:- pred delay_death_par_conj(list(hlds_goal)::in,
set(prog_var)::in, set(prog_var)::in, prog_varset::in,
list(hlds_goal)::out, set(prog_var)::out, set(prog_var)::out) is det.
delay_death_par_conj([], BornVars, DelayedDead, _, [], BornVars, DelayedDead).
delay_death_par_conj([Goal0 | Goals0], BornVars0, DelayedDead0, VarSet,
[Goal | Goals], BornVars, DelayedDead) :-
delay_death_goal(Goal0, BornVars0, DelayedDead0, VarSet,
Goal, BornVarsGoal, DelayedDeadGoal),
delay_death_par_conj(Goals0, BornVars0, DelayedDead0, VarSet,
Goals, BornVarsGoals, DelayedDeadGoals),
set__union(BornVarsGoal, BornVarsGoals, BornVars),
set__union(DelayedDeadGoal, DelayedDeadGoals, DelayedDead).
:- pred delay_death_disj(list(hlds_goal)::in,
set(prog_var)::in, set(prog_var)::in, prog_varset::in,
assoc_list(hlds_goal, set(prog_var))::out,
maybe(pair(set(prog_var)))::out) is det.
delay_death_disj([], _, _, _, [], no).
delay_death_disj([Goal0 | Goals0], BornVars0, DelayedDead0, VarSet,
[Goal - DelayedDeadGoal | Goals],
yes(BornVars - DelayedDead)) :-
delay_death_goal(Goal0, BornVars0, DelayedDead0, VarSet,
Goal, BornVarsGoal, DelayedDeadGoal),
delay_death_disj(Goals0, BornVars0, DelayedDead0, VarSet,
Goals, MaybeBornVarsDelayedDead),
(
MaybeBornVarsDelayedDead =
yes(BornVarsGoals - DelayedDeadGoals),
set__intersect(BornVarsGoal, BornVarsGoals, BornVars),
set__intersect(DelayedDeadGoal, DelayedDeadGoals, DelayedDead)
;
MaybeBornVarsDelayedDead = no,
BornVars = BornVarsGoal,
DelayedDead = DelayedDeadGoal
).
:- pred delay_death_cases(list(case)::in,
set(prog_var)::in, set(prog_var)::in, prog_varset::in,
assoc_list(case, set(prog_var))::out, maybe(pair(set(prog_var)))::out)
is det.
delay_death_cases([], _, _, _, [], no).
delay_death_cases([case(ConsId, Goal0) | Cases0], BornVars0, DelayedDead0,
VarSet, [case(ConsId, Goal) - DelayedDeadGoal | Cases],
yes(BornVars - DelayedDead)) :-
delay_death_goal(Goal0, BornVars0, DelayedDead0, VarSet,
Goal, BornVarsGoal, DelayedDeadGoal),
delay_death_cases(Cases0, BornVars0, DelayedDead0, VarSet,
Cases, MaybeBornVarsDelayedDead),
(
MaybeBornVarsDelayedDead =
yes(BornVarsCases - DelayedDeadCases),
set__intersect(BornVarsGoal, BornVarsCases, BornVars),
set__intersect(DelayedDeadGoal, DelayedDeadCases, DelayedDead)
;
MaybeBornVarsDelayedDead = no,
BornVars = BornVarsGoal,
DelayedDead = DelayedDeadGoal
).
% The kill_excess_delayed_dead_* functions are called on each branch of a
% branched control structure to make sure that all branches kill the same
% set of variables.
:- func kill_excess_delayed_dead_goal(set(prog_var),
pair(hlds_goal, set(prog_var))) = hlds_goal.
kill_excess_delayed_dead_goal(FinalDelayedDead, Goal0 - DelayedDead0) = Goal :-
set__difference(DelayedDead0, FinalDelayedDead, ToBeKilled),
Goal0 = GoalExpr - GoalInfo0,
goal_info_get_post_deaths(GoalInfo0, PostDeath0),
set__union(PostDeath0, ToBeKilled, PostDeath),
goal_info_set_post_deaths(GoalInfo0, PostDeath, GoalInfo),
Goal = GoalExpr - GoalInfo.
:- func kill_excess_delayed_dead_case(set(prog_var),
pair(case, set(prog_var))) = case.
kill_excess_delayed_dead_case(FinalDelayedDead,
case(ConsId, Goal0) - DelayedDead0) = case(ConsId, Goal) :-
set__difference(DelayedDead0, FinalDelayedDead, ToBeKilled),
Goal0 = GoalExpr - GoalInfo0,
goal_info_get_post_deaths(GoalInfo0, PostDeath0),
set__union(PostDeath0, ToBeKilled, PostDeath),
goal_info_set_post_deaths(GoalInfo0, PostDeath, GoalInfo),
Goal = GoalExpr - GoalInfo.
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- pred detect_resume_points_in_goal(hlds_goal, set(prog_var), live_info,
set(prog_var), hlds_goal, set(prog_var)).
:- mode detect_resume_points_in_goal(in, in, in, in, out, out) is det.
detect_resume_points_in_goal(Goal0 - GoalInfo0, Liveness0, LiveInfo,
ResumeVars0, Goal - GoalInfo0, Liveness) :-
goal_info_get_pre_deaths(GoalInfo0, PreDeaths0),
goal_info_get_pre_births(GoalInfo0, PreBirths0),
goal_info_get_post_deaths(GoalInfo0, PostDeaths0),
goal_info_get_post_births(GoalInfo0, PostBirths0),
set__difference(Liveness0, PreDeaths0, Liveness1),
set__union(Liveness1, PreBirths0, Liveness2),
detect_resume_points_in_goal_2(Goal0, GoalInfo0, Liveness2, LiveInfo,
ResumeVars0, Goal, Liveness3),
set__difference(Liveness3, PostDeaths0, Liveness4),
set__union(Liveness4, PostBirths0, Liveness).
:- pred detect_resume_points_in_goal_2(hlds_goal_expr, hlds_goal_info,
set(prog_var), live_info, set(prog_var), hlds_goal_expr, set(prog_var)).
:- mode detect_resume_points_in_goal_2(in, in, in, in, in, out, out) is det.
detect_resume_points_in_goal_2(conj(Goals0), _, Liveness0, LiveInfo,
ResumeVars0, conj(Goals), Liveness) :-
detect_resume_points_in_conj(Goals0, Liveness0, LiveInfo, ResumeVars0,
Goals, Liveness).
detect_resume_points_in_goal_2(par_conj(Goals0, SM), _, Liveness0, LiveInfo,
ResumeVars0, par_conj(Goals, SM), Liveness) :-
detect_resume_points_in_par_conj(Goals0, Liveness0, LiveInfo,
ResumeVars0, Goals, Liveness).
detect_resume_points_in_goal_2(disj(Goals0, SM), GoalInfo, Liveness0, LiveInfo,
ResumeVars0, disj(Goals, SM), Liveness) :-
goal_info_get_code_model(GoalInfo, CodeModel),
( CodeModel = model_non ->
detect_resume_points_in_non_disj(Goals0, Liveness0, LiveInfo,
ResumeVars0, Goals, Liveness, _)
;
detect_resume_points_in_pruned_disj(Goals0, Liveness0, LiveInfo,
ResumeVars0, Goals, Liveness, _)
).
detect_resume_points_in_goal_2(switch(Var, CF, Cases0, SM), _, Liveness0,
LiveInfo, ResumeVars0, switch(Var, CF, Cases, SM), Liveness) :-
detect_resume_points_in_cases(Cases0, Liveness0, LiveInfo, ResumeVars0,
Cases, Liveness).
detect_resume_points_in_goal_2(if_then_else(Vars, Cond0, Then0, Else0, SM),
GoalInfo0, Liveness0, LiveInfo, ResumeVars0,
if_then_else(Vars, Cond, Then, Else, SM), LivenessThen) :-
% compute the set of variables that may be needed at the start
% of the else part and attach this set to the condition
Else0 = _ElseExpr0 - ElseInfo0,
goal_info_get_pre_deaths(ElseInfo0, ElsePreDeath0),
set__difference(Liveness0, ElsePreDeath0, CondResumeVars0),
liveness__maybe_complete_with_typeinfos(LiveInfo, CondResumeVars0,
CondResumeVars1),
% ResumeVars0 should already have been completed.
set__union(CondResumeVars1, ResumeVars0, CondResumeVars),
detect_resume_points_in_goal(Cond0, Liveness0, LiveInfo,
CondResumeVars, Cond1, LivenessCond),
detect_resume_points_in_goal(Then0, LivenessCond, LiveInfo,
ResumeVars0, Then, LivenessThen),
detect_resume_points_in_goal(Else0, Liveness0, LiveInfo,
ResumeVars0, Else, LivenessElse),
% Figure out which entry labels we need at the resumption point.
% By minimizing the number of labels we use, we also minimize
% the amount of data movement code we emit between such labels.
(
code_util__cannot_stack_flush(Cond1),
goal_info_get_code_model(GoalInfo0, CodeModel),
CodeModel \= model_non
->
CondResumeLocs = orig_only
;
code_util__cannot_fail_before_stack_flush(Cond1)
->
CondResumeLocs = stack_only
;
CondResumeLocs = stack_and_orig
),
% Attach the set of variables needed after the condition
% as the resume point set of the condition.
CondResume = resume_point(CondResumeVars, CondResumeLocs),
goal_set_resume_point(Cond1, CondResume, Cond),
require_equal(LivenessThen, LivenessElse, "if-then-else", LiveInfo).
detect_resume_points_in_goal_2(some(Vars, CanRemove, Goal0), _, Liveness0,
LiveInfo, ResumeVars0, some(Vars, CanRemove, Goal),
Liveness) :-
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo, ResumeVars0,
Goal, Liveness).
detect_resume_points_in_goal_2(not(Goal0), _, Liveness0, LiveInfo, ResumeVars0,
not(Goal), Liveness) :-
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo, ResumeVars0,
_, Liveness),
liveness__maybe_complete_with_typeinfos(LiveInfo, Liveness,
CompletedLiveness),
% ResumeVars0 should already have been completed.
set__union(CompletedLiveness, ResumeVars0, ResumeVars1),
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo, ResumeVars1,
Goal1, _Liveness),
% Figure out which entry labels we need at the resumption point.
% By minimizing the number of labels we use, we also minimize
% the amount of data movement code we emit between such labels.
( code_util__cannot_stack_flush(Goal1) ->
ResumeLocs = orig_only
; code_util__cannot_fail_before_stack_flush(Goal1) ->
ResumeLocs = stack_only
;
ResumeLocs = stack_and_orig
),
% Attach the set of variables alive after the negation
% as the resume point set of the negated goal.
Resume = resume_point(ResumeVars1, ResumeLocs),
goal_set_resume_point(Goal1, Resume, Goal).
detect_resume_points_in_goal_2(generic_call(A,B,C,D), _, Liveness,
_, _, generic_call(A,B,C,D), Liveness).
detect_resume_points_in_goal_2(call(A,B,C,D,E,F), _, Liveness, _, _,
call(A,B,C,D,E,F), Liveness).
detect_resume_points_in_goal_2(unify(A,B,C,D,E), _, Liveness, _, _,
unify(A,B,C,D,E), Liveness).
detect_resume_points_in_goal_2(pragma_foreign_code(A,B,C,D,E,F,G), _,
Liveness, _, _, pragma_foreign_code(A,B,C,D,E,F,G), Liveness).
detect_resume_points_in_goal_2(bi_implication(_, _), _, _, _, _, _, _) :-
% these should have been expanded out by now
error("detect_resume_points_in_goal_2: unexpected bi_implication").
:- pred detect_resume_points_in_conj(list(hlds_goal), set(prog_var), live_info,
set(prog_var), list(hlds_goal), set(prog_var)).
:- mode detect_resume_points_in_conj(in, in, in, in, out, out) is det.
detect_resume_points_in_conj([], Liveness, _, _, [], Liveness).
detect_resume_points_in_conj([Goal0 | Goals0], Liveness0, LiveInfo,
ResumeVars0, [Goal | Goals], Liveness) :-
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo, ResumeVars0,
Goal, Liveness1),
detect_resume_points_in_conj(Goals0, Liveness1, LiveInfo, ResumeVars0,
Goals, Liveness).
% There are only two differences in the handling of pruned disjs
% versus nondet disjs. First, for nondet disjunctions we always
% generate code for all disjuncts, whereas for pruned disjunctions
% we stop generating code after the first cannot_fail disjunct.
% Second, an empty pruned disjunction is legal, while an empty
% nondet disjunction isn't.
%
% For both kinds of disjunctions, the resume points to be attached to
% the non-last disjuncts must be completed with the required typeinfos
% if --typeinfo-liveness is set. ResumeVars0 should already be so
% completed, so we need only complete the sets added here. We therefore
% perform this completion when we return the set of variables needed by
% the last disjunct, and when we add to this set the set of variables
% needed by a non-last disjunct.
:- pred detect_resume_points_in_non_disj(list(hlds_goal), set(prog_var),
live_info, set(prog_var), list(hlds_goal),
set(prog_var), set(prog_var)).
:- mode detect_resume_points_in_non_disj(in, in, in, in, out, out, out) is det.
detect_resume_points_in_non_disj([], _, _, _, _, _, _) :-
error("empty nondet disjunction").
detect_resume_points_in_non_disj([Goal0 | Goals0], Liveness0, LiveInfo,
ResumeVars0, [Goal | Goals], Liveness, Needed) :-
(
% If there are any more disjuncts, then this disjunct
% establishes a resumption point.
Goals0 = [_ | _]
->
detect_resume_points_in_non_disj(Goals0, Liveness0, LiveInfo,
ResumeVars0, Goals, LivenessRest, NeededRest),
detect_resume_points_in_non_last_disjunct(Goal0, no,
Liveness0, LivenessRest, LiveInfo, ResumeVars0, Goal,
Liveness, NeededRest, Needed)
;
detect_resume_points_in_last_disjunct(Goal0, Liveness0,
LiveInfo, ResumeVars0, Goal, Liveness, Needed),
Goals = Goals0
).
:- pred detect_resume_points_in_pruned_disj(list(hlds_goal), set(prog_var),
live_info, set(prog_var), list(hlds_goal), set(prog_var),
set(prog_var)).
:- mode detect_resume_points_in_pruned_disj(in, in, in, in, out, out, out)
is det.
detect_resume_points_in_pruned_disj([], Liveness, _, _, [], Liveness, Needed) :-
set__init(Needed).
detect_resume_points_in_pruned_disj([Goal0 | Goals0], Liveness0, LiveInfo,
ResumeVars0, [Goal | Goals], Liveness, Needed) :-
Goal0 = _ - GoalInfo0,
goal_info_get_determinism(GoalInfo0, Detism0),
determinism_components(Detism0, CanFail0, _),
(
% This disjunct establishes a resumption point only if
% there are more disjuncts *and* this one can fail.
% If there are more disjuncts but this one can't fail,
% then the code generator will ignore any later disjuncts,
% so this one will be effectively the last.
CanFail0 = can_fail,
Goals0 = [_ | _]
->
detect_resume_points_in_pruned_disj(Goals0, Liveness0, LiveInfo,
ResumeVars0, Goals, LivenessRest, NeededRest),
detect_resume_points_in_non_last_disjunct(Goal0, yes,
Liveness0, LivenessRest, LiveInfo, ResumeVars0, Goal,
Liveness, NeededRest, Needed)
;
detect_resume_points_in_last_disjunct(Goal0, Liveness0,
LiveInfo, ResumeVars0, Goal, Liveness, Needed),
Goals = Goals0
).
:- pred detect_resume_points_in_non_last_disjunct(hlds_goal, bool,
set(prog_var), set(prog_var), live_info, set(prog_var), hlds_goal,
set(prog_var), set(prog_var), set(prog_var)).
:- mode detect_resume_points_in_non_last_disjunct(in, in, in, in, in, in,
out, out, in, out) is det.
detect_resume_points_in_non_last_disjunct(Goal0, MayUseOrigOnly,
Liveness0, LivenessRest, LiveInfo, ResumeVars0, Goal,
Liveness, NeededRest, Needed) :-
% we must save a variable across this disjunct if it is
% needed in a later disjunct or in an enclosing resume point
set__union(NeededRest, ResumeVars0, ResumeVars1),
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo,
ResumeVars1, Goal1, Liveness),
% Figure out which entry labels we need at the resumption point.
% By minimizing the number of labels we use, we also minimize
% the amount of data movement code we emit between such labels.
(
MayUseOrigOnly = yes,
code_util__cannot_stack_flush(Goal1)
->
ResumeLocs = orig_only
;
code_util__cannot_fail_before_stack_flush(Goal1)
->
ResumeLocs = stack_only
;
ResumeLocs = stack_and_orig
),
% Attach the set of variables needed in the following disjuncts
% as the resume point set of this disjunct.
Resume = resume_point(ResumeVars1, ResumeLocs),
goal_set_resume_point(Goal1, Resume, Goal),
Goal = _ - GoalInfo,
goal_info_get_pre_deaths(GoalInfo, PreDeaths),
set__difference(Liveness0, PreDeaths, NeededFirst),
liveness__maybe_complete_with_typeinfos(LiveInfo, NeededFirst,
CompletedNeededFirst),
% NeededRest has already been completed.
set__union(CompletedNeededFirst, NeededRest, Needed),
require_equal(Liveness, LivenessRest, "disjunction", LiveInfo).
:- pred detect_resume_points_in_last_disjunct(hlds_goal, set(prog_var),
live_info, set(prog_var), hlds_goal, set(prog_var), set(prog_var)).
:- mode detect_resume_points_in_last_disjunct(in, in, in, in, out, out, out)
is det.
detect_resume_points_in_last_disjunct(Goal0, Liveness0, LiveInfo,
ResumeVars0, Goal, Liveness, CompletedNeeded) :-
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo,
ResumeVars0, Goal, Liveness),
Goal = _ - GoalInfo,
goal_info_get_pre_deaths(GoalInfo, PreDeaths),
set__difference(Liveness0, PreDeaths, Needed),
liveness__maybe_complete_with_typeinfos(LiveInfo, Needed,
CompletedNeeded).
:- pred detect_resume_points_in_cases(list(case), set(prog_var), live_info,
set(prog_var), list(case), set(prog_var)).
:- mode detect_resume_points_in_cases(in, in, in, in, out, out) is det.
detect_resume_points_in_cases([], Liveness, _, _, [], Liveness).
detect_resume_points_in_cases([case(ConsId, Goal0) | Cases0], Liveness0,
LiveInfo, ResumeVars0,
[case(ConsId, Goal) | Cases], LivenessFirst) :-
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo, ResumeVars0,
Goal, LivenessFirst),
( Cases0 = [_ | _] ->
detect_resume_points_in_cases(Cases0, Liveness0, LiveInfo,
ResumeVars0, Cases, LivenessRest),
require_equal(LivenessFirst, LivenessRest, "switch",
LiveInfo)
;
Cases = Cases0
).
:- pred detect_resume_points_in_par_conj(list(hlds_goal), set(prog_var),
live_info, set(prog_var), list(hlds_goal), set(prog_var)).
:- mode detect_resume_points_in_par_conj(in, in, in, in, out, out) is det.
detect_resume_points_in_par_conj([], Liveness, _, _, [], Liveness).
detect_resume_points_in_par_conj([Goal0 | Goals0], Liveness0, LiveInfo,
ResumeVars0, [Goal | Goals], LivenessFirst) :-
detect_resume_points_in_goal(Goal0, Liveness0, LiveInfo, ResumeVars0,
Goal, LivenessFirst),
detect_resume_points_in_par_conj(Goals0, Liveness0, LiveInfo,
ResumeVars0, Goals, _LivenessRest).
:- pred require_equal(set(prog_var), set(prog_var), string, live_info).
:- mode require_equal(in, in, in, in) is det.
require_equal(LivenessFirst, LivenessRest, GoalType, LiveInfo) :-
(
set__equal(LivenessFirst, LivenessRest)
->
true
;
VarSet = LiveInfo ^ varset,
set__to_sorted_list(LivenessFirst, FirstVarsList),
set__to_sorted_list(LivenessRest, RestVarsList),
list__map(varset__lookup_name(VarSet),
FirstVarsList, FirstVarNames),
list__map(varset__lookup_name(VarSet),
RestVarsList, RestVarNames),
Pad = lambda([S0::in, S::out] is det,
string__append(S0, " ", S)),
list__map(Pad, FirstVarNames, PaddedFirstNames),
list__map(Pad, RestVarNames, PaddedRestNames),
string__append_list(PaddedFirstNames, FirstNames),
string__append_list(PaddedRestNames, RestNames),
string__append_list(["branches of ", GoalType,
" disagree on liveness\nFirst: ",
FirstNames, "\nRest: ", RestNames], Msg),
error(Msg)
).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
initial_liveness(ProcInfo, PredId, ModuleInfo, Liveness) :-
proc_info_headvars(ProcInfo, Vars),
proc_info_argmodes(ProcInfo, Modes),
proc_info_vartypes(ProcInfo, VarTypes),
map__apply_to_list(Vars, VarTypes, Types),
set__init(Liveness0),
(
initial_liveness_2(Vars, Modes, Types, ModuleInfo,
Liveness0, Liveness1)
->
Liveness2 = Liveness1
;
error("initial_liveness: list length mismatch")
),
% If a variable is unused in the goal, it shouldn't be
% in the initial liveness. (If we allowed it to start
% live, it wouldn't ever become dead, because it would
% have to be used to be killed).
% So we intersect the headvars with the non-locals and
% (if doing typeinfo liveness calculation) their
% typeinfo vars.
module_info_globals(ModuleInfo, Globals),
proc_info_goal(ProcInfo, _Goal - GoalInfo),
goal_info_get_code_gen_nonlocals(GoalInfo, NonLocals0),
module_info_pred_info(ModuleInfo, PredId, PredInfo),
proc_info_typeinfo_varmap(ProcInfo, TVarMap),
body_should_use_typeinfo_liveness(PredInfo, Globals, TypeinfoLiveness),
proc_info_maybe_complete_with_typeinfo_vars(NonLocals0,
TypeinfoLiveness, VarTypes, TVarMap, NonLocals),
set__intersect(Liveness2, NonLocals, Liveness).
:- pred initial_liveness_2(list(prog_var), list(mode), list(type), module_info,
set(prog_var), set(prog_var)).
:- mode initial_liveness_2(in, in, in, in, in, out) is semidet.
initial_liveness_2([], [], [], _ModuleInfo, Liveness, Liveness).
initial_liveness_2([V | Vs], [M | Ms], [T | Ts], ModuleInfo,
Liveness0, Liveness) :-
(
mode_to_arg_mode(ModuleInfo, M, T, top_in)
->
set__insert(Liveness0, V, Liveness1)
;
Liveness1 = Liveness0
),
initial_liveness_2(Vs, Ms, Ts, ModuleInfo, Liveness1, Liveness).
%-----------------------------------------------------------------------------%
:- pred initial_deadness(proc_info, live_info, module_info, set(prog_var)).
:- mode initial_deadness(in, in, in, out) is det.
initial_deadness(ProcInfo, LiveInfo, ModuleInfo, Deadness) :-
proc_info_headvars(ProcInfo, Vars),
proc_info_argmodes(ProcInfo, Modes),
proc_info_vartypes(ProcInfo, VarTypes),
map__apply_to_list(Vars, VarTypes, Types),
set__init(Deadness0),
% All output arguments are in the initial deadness.
(
initial_deadness_2(Vars, Modes, Types, ModuleInfo,
Deadness0, Deadness1)
->
Deadness2 = Deadness1
;
error("initial_deadness: list length mis-match")
),
% If doing alternate liveness, the corresponding
% typeinfos need to be added to these.
proc_info_typeinfo_varmap(ProcInfo, TVarMap),
proc_info_maybe_complete_with_typeinfo_vars(Deadness2,
LiveInfo ^ typeinfo_liveness, VarTypes, TVarMap, Deadness).
:- pred initial_deadness_2(list(prog_var), list(mode), list(type),
module_info, set(prog_var), set(prog_var)).
:- mode initial_deadness_2(in, in, in, in, in, out) is semidet.
initial_deadness_2([], [], [], _ModuleInfo, Deadness, Deadness).
initial_deadness_2([V | Vs], [M | Ms], [T | Ts], ModuleInfo,
Deadness0, Deadness) :-
(
mode_to_arg_mode(ModuleInfo, M, T, top_out)
->
set__insert(Deadness0, V, Deadness1)
;
Deadness1 = Deadness0
),
initial_deadness_2(Vs, Ms, Ts, ModuleInfo, Deadness1, Deadness).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- pred add_liveness_after_goal(hlds_goal, set(prog_var), hlds_goal).
:- mode add_liveness_after_goal(in, in, out) is det.
add_liveness_after_goal(Goal - GoalInfo0, Residue, Goal - GoalInfo) :-
goal_info_get_post_births(GoalInfo0, PostBirths0),
set__union(PostBirths0, Residue, PostBirths),
goal_info_set_post_births(GoalInfo0, PostBirths, GoalInfo).
:- pred add_deadness_before_goal(hlds_goal, set(prog_var), hlds_goal).
:- mode add_deadness_before_goal(in, in, out) is det.
add_deadness_before_goal(Goal - GoalInfo0, Residue, Goal - GoalInfo) :-
goal_info_get_pre_deaths(GoalInfo0, PreDeaths0),
set__union(PreDeaths0, Residue, PreDeaths),
goal_info_set_pre_deaths(GoalInfo0, PreDeaths, GoalInfo).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% Given a list of variables and an instmap delta, determine which
% of those variables have a value given to them (i.e. they are bound
% or aliased; in the latter case the "value" is the location they
% should be stored in), and insert them into the accumulated set
% of value-given vars.
%
% We don't handle the aliasing part yet.
:- pred find_value_giving_occurrences(list(prog_var), live_info,
instmap_delta, set(prog_var), set(prog_var)).
:- mode find_value_giving_occurrences(in, in, in, in, out) is det.
find_value_giving_occurrences([], _, _, ValueVars, ValueVars).
find_value_giving_occurrences([Var | Vars], LiveInfo, InstMapDelta,
ValueVars0, ValueVars) :-
VarTypes = LiveInfo ^ vartypes,
map__lookup(VarTypes, Var, Type),
(
instmap_delta_search_var(InstMapDelta, Var, Inst),
ModuleInfo = LiveInfo ^ module_info,
mode_to_arg_mode(ModuleInfo, (free -> Inst), Type, top_out)
->
set__insert(ValueVars0, Var, ValueVars1)
;
ValueVars1 = ValueVars0
),
find_value_giving_occurrences(Vars, LiveInfo, InstMapDelta,
ValueVars1, ValueVars).
%-----------------------------------------------------------------------------%
% Get the nonlocals, and, if doing typeinfo liveness, add the
% typeinfo vars for the nonlocals.
:- pred liveness__get_nonlocals_and_typeinfos(live_info::in,
hlds_goal_info::in, set(prog_var)::out, set(prog_var)::out) is det.
liveness__get_nonlocals_and_typeinfos(LiveInfo, GoalInfo,
NonLocals, CompletedNonLocals) :-
goal_info_get_code_gen_nonlocals(GoalInfo, NonLocals),
liveness__maybe_complete_with_typeinfos(LiveInfo,
NonLocals, CompletedNonLocals).
:- pred liveness__maybe_complete_with_typeinfos(live_info::in,
set(prog_var)::in, set(prog_var)::out) is det.
liveness__maybe_complete_with_typeinfos(LiveInfo, Vars0, Vars) :-
proc_info_maybe_complete_with_typeinfo_vars(Vars0,
LiveInfo ^ typeinfo_liveness, LiveInfo ^ vartypes,
LiveInfo ^ type_info_varmap, Vars).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- type live_info
---> live_info(
module_info :: module_info,
typeinfo_liveness :: bool,
vartypes :: vartypes,
type_info_varmap :: type_info_varmap,
varset :: prog_varset
).
:- pred live_info_init(module_info::in, bool::in, vartypes::in,
type_info_varmap::in, prog_varset::in, live_info::out) is det.
live_info_init(ModuleInfo, ProcInfo, TypeInfoLiveness, VarTypes, VarSet,
live_info(ModuleInfo, ProcInfo, TypeInfoLiveness, VarTypes, VarSet)).
%-----------------------------------------------------------------------------%
|