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
|
%-----------------------------------------------------------------------------%
% Copyright (C) 1994-1999 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 live_vars.m
%
% Main authors: conway, zs.
%
% This module allocates stack slots to the variables that need to be saved
% either across a call or across a goal that may fail.
%
% The jobs is done in two steps. First we traverse the predicate definition
% looking for sets of variables that must be saved on the stack at the same
% time. Then we use a graph colouring algorithm to find an allocation of
% stack slots (colours) to variables such that in each set of variables
% that must be saved at the same time, each variable has a different colour.
%-----------------------------------------------------------------------------%
:- module live_vars.
:- interface.
:- import_module hlds_module, hlds_pred.
:- pred allocate_stack_slots_in_proc(proc_info, pred_id, module_info,
proc_info).
:- mode allocate_stack_slots_in_proc(in, in, in, out) is det.
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- implementation.
:- import_module llds, arg_info, prog_data, hlds_goal, hlds_data, mode_util.
:- import_module liveness, code_aux, globals, graph_colour, instmap, options.
:- import_module trace.
:- import_module list, map, set, std_util, assoc_list, bool.
:- import_module int, require.
%-----------------------------------------------------------------------------%
allocate_stack_slots_in_proc(ProcInfo0, PredId, ModuleInfo, ProcInfo) :-
proc_info_goal(ProcInfo0, Goal0),
proc_info_interface_code_model(ProcInfo0, CodeModel),
initial_liveness(ProcInfo0, PredId, ModuleInfo, Liveness0),
set__init(LiveSets0),
module_info_globals(ModuleInfo, Globals),
globals__get_trace_level(Globals, TraceLevel),
( TraceLevel \= none ->
trace__fail_vars(ModuleInfo, ProcInfo0, ResumeVars0),
set__insert(LiveSets0, ResumeVars0, LiveSets1)
;
set__init(ResumeVars0),
LiveSets1 = LiveSets0
),
trace__reserved_slots(ProcInfo0, Globals, NumReservedSlots),
body_should_use_typeinfo_liveness(Globals, TypeInfoLiveness),
build_live_sets_in_goal(Goal0, Liveness0, ResumeVars0, LiveSets1,
ModuleInfo, ProcInfo0, TypeInfoLiveness,
_Liveness, _ResumeVars, LiveSets),
graph_colour__group_elements(LiveSets, ColourSets),
set__to_sorted_list(ColourSets, ColourList),
allocate_stack_slots(ColourList, CodeModel, NumReservedSlots,
StackSlots),
proc_info_set_stack_slots(ProcInfo0, StackSlots, ProcInfo).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% The stack_slots structure (map(prog_var, lval)) is threaded through the
% traversal of the goal. The liveness information is computed from the liveness
% delta annotations.
:- pred build_live_sets_in_goal(hlds_goal, set(prog_var), set(prog_var),
set(set(prog_var)), module_info, proc_info, bool,
set(prog_var), set(prog_var), set(set(prog_var))).
:- mode build_live_sets_in_goal(in, in, in, in, in, in, in, out, out, out)
is det.
build_live_sets_in_goal(Goal0 - GoalInfo, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
% note: we must be careful to apply deaths before births
goal_info_get_pre_deaths(GoalInfo, PreDeaths),
goal_info_get_pre_births(GoalInfo, PreBirths),
goal_info_get_post_deaths(GoalInfo, PostDeaths),
goal_info_get_post_births(GoalInfo, PostBirths),
set__difference(Liveness0, PreDeaths, Liveness1),
set__union(Liveness1, PreBirths, Liveness2),
%
% if the goal is atomic, we want to apply the postdeaths
% before processing the goal, but if the goal is a compound
% goal, then we want to apply them after processing it
%
(
goal_is_atomic(Goal0)
->
set__difference(Liveness2, PostDeaths, Liveness3)
;
Liveness3 = Liveness2
),
goal_info_get_resume_point(GoalInfo, ResumePoint),
(
ResumePoint = no_resume_point,
ResumeVars1 = ResumeVars0,
LiveSets1 = LiveSets0
;
ResumePoint = resume_point(ResumePointVars, Locs),
(
Locs = orig_only,
ResumeVars1 = ResumeVars0,
LiveSets1 = LiveSets0
;
Locs = stack_only,
set__union(ResumeVars0, ResumePointVars, ResumeVars1),
set__insert(LiveSets0, ResumeVars1, LiveSets1)
;
Locs = orig_and_stack,
set__union(ResumeVars0, ResumePointVars, ResumeVars1),
set__insert(LiveSets0, ResumeVars1, LiveSets1)
;
Locs = stack_and_orig,
set__union(ResumeVars0, ResumePointVars, ResumeVars1),
set__insert(LiveSets0, ResumeVars1, LiveSets1)
)
),
build_live_sets_in_goal_2(Goal0, Liveness3, ResumeVars1, LiveSets1,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness4, ResumeVars, LiveSets2),
(
goal_is_atomic(Goal0)
->
Liveness5 = Liveness4
;
set__difference(Liveness4, PostDeaths, Liveness5)
),
set__union(Liveness5, PostBirths, Liveness),
% Add extra interference for variables that become live
% and variables that be come dead in this goal.
(
/*******
% goal_is_atomic(Goal0)
semidet_fail
% NB: `fail' is a conservative approximation
% We could do better, but `goal_is_atomic' is not
% quite right
->
set__union(PreBirths, PostDeaths, ExtraInterference),
set__insert(LiveSets2, ExtraInterference, LiveSets)
;
*******/
LiveSets = LiveSets2
).
%-----------------------------------------------------------------------------%
% Here we process each of the different sorts of goals.
% `Liveness' is the set of live variables, i.e. vars which
% have been referenced and may be referenced again (during
% forward execution).
% `ResumeVars' is the set of variables that may or may not be
% `live' during the current forward execution but will become
% live again on backtracking.
% `LiveSets' is the interference graph, i.e. the set of sets
% of variables which need to be on the stack at the same time.
:- pred build_live_sets_in_goal_2(hlds_goal_expr, set(prog_var), set(prog_var),
set(set(prog_var)), hlds_goal_info, module_info, proc_info, bool,
set(prog_var), set(prog_var), set(set(prog_var))).
:- mode build_live_sets_in_goal_2(in, in, in, in, in, in, in, in,
out, out, out) is det.
build_live_sets_in_goal_2(conj(Goals0), Liveness0, ResumeVars0, LiveSets0,
_, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
build_live_sets_in_conj(Goals0, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets).
build_live_sets_in_goal_2(par_conj(Goals0, _SM), Liveness0, ResumeVars0,
LiveSets0, GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
goal_info_get_nonlocals(GoalInfo, NonLocals),
set__union(NonLocals, Liveness0, LiveSet),
% We insert all the union of the live vars and the nonlocals.
% Since each parallel conjunct may be run on a different
% Mercury engine to the current engine, we must save all
% the variables that are live or nonlocal to the parallel
% conjunction. Nonlocal variables that are currently free, but
% are bound inside one of the conjuncts need a stackslot
% because they are passed out by reference to that stackslot.
set__insert(LiveSets0, LiveSet, LiveSets1),
% build_live_sets_in_disj treats its list of goals as a list
% of independent goals, so we can use it for parallel conj's
% too.
build_live_sets_in_disj(Goals0, Liveness0, ResumeVars0, LiveSets1,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets).
build_live_sets_in_goal_2(disj(Goals0, _), Liveness0, ResumeVars0, LiveSets0,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets)
:-
build_live_sets_in_disj(Goals0, Liveness0, ResumeVars0, LiveSets0,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets).
build_live_sets_in_goal_2(switch(_, _, Cases0, _),
Liveness0, ResumeVars0, LiveSets0, _,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
build_live_sets_in_cases(Cases0, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets).
build_live_sets_in_goal_2(if_then_else(_Vars, Cond0, Then0, Else0, _),
Liveness0, ResumeVars0, LiveSets0, _,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
build_live_sets_in_goal(Cond0, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness1, ResumeVars1, LiveSets1),
build_live_sets_in_goal(Then0, Liveness1, ResumeVars1, LiveSets1,
ModuleInfo, ProcInfo, TypeInfoLiveness,
_Liveness2, ResumeVars2, LiveSets2),
build_live_sets_in_goal(Else0, Liveness0, ResumeVars0, LiveSets2,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars3, LiveSets),
set__union(ResumeVars2, ResumeVars3, ResumeVars).
build_live_sets_in_goal_2(not(Goal0), Liveness0, ResumeVars0, LiveSets0,
_, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars0, LiveSets) :-
build_live_sets_in_goal(Goal0, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness, Liveness, _, LiveSets).
build_live_sets_in_goal_2(some(_Vs, _, Goal0), Liveness0, ResumeVars0,
LiveSets0, GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
build_live_sets_in_goal(Goal0, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars1, LiveSets),
% If the "some" goal cannot succeed more than once,
% then execution cannot backtrack into the inner goal once control
% has left it. Therefore the code following the "some" can reuse
% any stack slots needed by resume points in the inner goal.
goal_info_get_code_model(GoalInfo, CodeModel),
( CodeModel = model_non ->
ResumeVars = ResumeVars1
;
ResumeVars = ResumeVars0
).
build_live_sets_in_goal_2(
generic_call(_GenericCall, ArgVars, Modes, Det),
Liveness, ResumeVars0, LiveSets0,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
% The variables which need to be saved onto the stack
% before the call are all the variables that are live
% after the call, except for the output arguments produced
% by the call, plus all the variables that may be needed
% at an enclosing resumption point.
determinism_to_code_model(Det, CallModel),
proc_info_vartypes(ProcInfo, VarTypes),
map__apply_to_list(ArgVars, VarTypes, Types),
make_arg_infos(Types, Modes, CallModel, ModuleInfo, ArgInfos),
find_output_vars_from_arg_info(ArgVars, ArgInfos, OutVars),
set__difference(Liveness, OutVars, InputLiveness),
set__union(InputLiveness, ResumeVars0, StackVars0),
% Might need to add more live variables with alternate liveness
% calculation.
maybe_add_alternate_liveness_typeinfos(ProcInfo, TypeInfoLiveness,
OutVars, StackVars0, StackVars),
set__insert(LiveSets0, StackVars, LiveSets),
% If this is a nondet call, then all the stack slots we need
% must be protected against reuse in following code.
goal_info_get_code_model(GoalInfo, CodeModel),
( CodeModel = model_non ->
ResumeVars = StackVars % includes ResumeVars0
;
ResumeVars = ResumeVars0
).
build_live_sets_in_goal_2(call(PredId, ProcId, ArgVars, BuiltinState, _, _),
Liveness, ResumeVars0, LiveSets0,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
(
BuiltinState = inline_builtin
->
ResumeVars = ResumeVars0,
LiveSets = LiveSets0
;
% The variables which need to be saved onto the stack
% before the call are all the variables that are live
% after the call, except for the output arguments produced
% by the call, plus all the variables that may be needed
% at an enclosing resumption point.
find_output_vars(PredId, ProcId, ArgVars, ModuleInfo, OutVars),
set__difference(Liveness, OutVars, InputLiveness),
set__union(InputLiveness, ResumeVars0, StackVars0),
% Might need to add more live variables
% if this procedure uses typeinfo liveness.
maybe_add_alternate_liveness_typeinfos(ProcInfo,
TypeInfoLiveness, OutVars, StackVars0, StackVars),
set__insert(LiveSets0, StackVars, LiveSets),
% If this is a nondet call, then all the stack slots we need
% must be protected against reuse in following code.
goal_info_get_code_model(GoalInfo, CodeModel),
( CodeModel = model_non ->
ResumeVars = StackVars % includes ResumeVars0
;
ResumeVars = ResumeVars0
)
).
build_live_sets_in_goal_2(unify(_,_,_,D,_), Liveness, ResumeVars0, LiveSets0,
_, _, _, _, Liveness, ResumeVars0, LiveSets) :-
(
D = complicated_unify(_, _, _)
->
% we have to save all live and protected variables
% across complicated unifications.
set__union(Liveness, ResumeVars0, LiveVars),
set__insert(LiveSets0, LiveVars, LiveSets)
;
LiveSets = LiveSets0
).
build_live_sets_in_goal_2(pragma_c_code(Attributes, PredId, ProcId,
Args, _, _, _), Liveness, ResumeVars0, LiveSets0,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
goal_info_get_code_model(GoalInfo, CodeModel),
(
% We don't need to save any variables onto the stack
% before a pragma_c_code if we know that it can't
% succeed more than once and that it is not going
% to call back Mercury code, because such pragma C code
% won't clobber the registers.
CodeModel \= model_non,
may_call_mercury(Attributes, will_not_call_mercury)
->
ResumeVars = ResumeVars0,
LiveSets = LiveSets0
;
% The variables which need to be saved onto the stack
% before the call are all the variables that are live
% after the call (except for the output arguments produced
% by the call), plus all the variables that may be needed
% at an enclosing resumption point.
find_output_vars(PredId, ProcId, Args, ModuleInfo, OutVars),
set__difference(Liveness, OutVars, InputLiveness),
set__union(InputLiveness, ResumeVars0, StackVars0),
% Might need to add more live variables
% if this procedure uses typeinfo liveness.
maybe_add_alternate_liveness_typeinfos(ProcInfo,
TypeInfoLiveness, OutVars, StackVars0, StackVars),
set__insert(LiveSets0, StackVars, LiveSets),
( CodeModel = model_non ->
ResumeVars = StackVars % includes ResumeVars0
;
ResumeVars = ResumeVars0
)
).
build_live_sets_in_goal_2(bi_implication(_, _), _, _, _, _, _, _, _, _, _, _)
:-
% these should have been expanded out by now
error("build_live_sets_in_goal_2: unexpected bi_implication").
%-----------------------------------------------------------------------------%
:- pred build_live_sets_in_conj(list(hlds_goal), set(prog_var), set(prog_var),
set(set(prog_var)), module_info, proc_info, bool, set(prog_var),
set(prog_var), set(set(prog_var))).
:- mode build_live_sets_in_conj(in, in, in, in, in, in, in, out, out, out)
is det.
build_live_sets_in_conj([], Liveness, ResumeVars, LiveSets,
_, _, _, Liveness, ResumeVars, LiveSets).
build_live_sets_in_conj([Goal0 | Goals0], Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
(
Goal0 = _ - GoalInfo,
goal_info_get_instmap_delta(GoalInfo, InstMapDelta),
instmap_delta_is_unreachable(InstMapDelta)
->
build_live_sets_in_goal(Goal0,
Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets)
;
build_live_sets_in_goal(Goal0,
Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness1, ResumeVars1, LiveSets1),
build_live_sets_in_conj(Goals0,
Liveness1, ResumeVars1, LiveSets1,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets)
).
%-----------------------------------------------------------------------------%
% build_live_sets_in_disj is used for both disjunctions and
% parallel conjunctions.
:- pred build_live_sets_in_disj(list(hlds_goal), set(prog_var), set(prog_var),
set(set(prog_var)), hlds_goal_info, module_info, proc_info, bool,
set(prog_var), set(prog_var), set(set(prog_var))).
:- mode build_live_sets_in_disj(in, in, in, in, in, in, in, in, out, out, out)
is det.
build_live_sets_in_disj([], Liveness, ResumeVars, LiveSets, _, _, _, _,
Liveness, ResumeVars, LiveSets).
build_live_sets_in_disj([Goal0 | Goals0], Liveness0, ResumeVars0, LiveSets0,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
build_live_sets_in_goal(Goal0, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars1, LiveSets1),
build_live_sets_in_disj(Goals0, Liveness0, ResumeVars0, LiveSets1,
GoalInfo, ModuleInfo, ProcInfo, TypeInfoLiveness,
_Liveness2, ResumeVars2, LiveSets),
goal_info_get_code_model(GoalInfo, CodeModel),
( CodeModel = model_non ->
set__union(ResumeVars1, ResumeVars2, ResumeVars3),
goal_info_get_resume_point(GoalInfo, Resume),
(
Resume = resume_point(ResumePointVars, _),
set__union(ResumeVars3, ResumePointVars, ResumeVars)
;
Resume = no_resume_point,
ResumeVars = ResumeVars3
)
;
ResumeVars = ResumeVars0
).
%-----------------------------------------------------------------------------%
:- pred build_live_sets_in_cases(list(case), set(prog_var), set(prog_var),
set(set(prog_var)), module_info, proc_info, bool,
set(prog_var), set(prog_var), set(set(prog_var))).
:- mode build_live_sets_in_cases(in, in, in, in, in, in, in, out, out, out)
is det.
build_live_sets_in_cases([], Liveness, ResumeVars, LiveSets, _, _, _,
Liveness, ResumeVars, LiveSets).
build_live_sets_in_cases([case(_Cons, Goal0) | Goals0],
Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars, LiveSets) :-
build_live_sets_in_goal(Goal0, Liveness0, ResumeVars0, LiveSets0,
ModuleInfo, ProcInfo, TypeInfoLiveness,
Liveness, ResumeVars1, LiveSets1),
build_live_sets_in_cases(Goals0, Liveness0, ResumeVars0, LiveSets1,
ModuleInfo, ProcInfo, TypeInfoLiveness,
_Liveness2, ResumeVars2, LiveSets),
set__union(ResumeVars1, ResumeVars2, ResumeVars).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% If doing alternate liveness calculation, any typeinfos for
% output variables or live variables are also live.
% This is because if you want to examine the live data, you need to
% know what shape the polymorphic args of the variables
% are, so you need the typeinfos to be present on the stack.
% The live variables obviously need their typeinfos
% live, but the output variables also need their typeinfos
% saved (otherwise we would throw out typeinfos and might
% need one at a continuation point just after a call).
% maybe_add_alternate_liveness_typeinfos takes a set of vars
% (output vars) and a set of live vars and if we
% are doing alternate liveness, adds the appropriate typeinfo
% variables to the set of variables. If not, it returns the live
% vars unchanged.
% Make sure you get the output vars first, and the live vars second,
% since this makes a significant difference to the output set of vars.
:- pred maybe_add_alternate_liveness_typeinfos(proc_info, bool,
set(prog_var), set(prog_var), set(prog_var)).
:- mode maybe_add_alternate_liveness_typeinfos(in, in, in, in, out) is det.
maybe_add_alternate_liveness_typeinfos(ProcInfo, TypeInfoLiveness, OutVars,
LiveVars1, LiveVars) :-
(
TypeInfoLiveness = yes
->
proc_info_get_typeinfo_vars_setwise(ProcInfo, LiveVars1,
TypeInfoVarsLive),
proc_info_get_typeinfo_vars_setwise(ProcInfo, OutVars,
TypeInfoVarsOut),
set__union(LiveVars1, TypeInfoVarsOut, LiveVars2),
set__union(LiveVars2, TypeInfoVarsLive, LiveVars)
;
LiveVars = LiveVars1
).
%-----------------------------------------------------------------------------%
:- pred find_output_vars(pred_id, proc_id, list(prog_var), module_info,
set(prog_var)).
:- mode find_output_vars(in, in, in, in, out) is det.
find_output_vars(PredId, ProcId, ArgVars, ModuleInfo, OutVars) :-
module_info_preds(ModuleInfo, Preds),
map__lookup(Preds, PredId, PredInfo),
pred_info_procedures(PredInfo, Procs),
map__lookup(Procs, ProcId, ProcInfo),
proc_info_arg_info(ProcInfo, ArgInfo),
find_output_vars_from_arg_info(ArgVars, ArgInfo, OutVars).
:- pred find_output_vars_from_arg_info(list(prog_var), list(arg_info),
set(prog_var)).
:- mode find_output_vars_from_arg_info(in, in, out) is det.
find_output_vars_from_arg_info(ArgVars, ArgInfo, OutVars) :-
assoc_list__from_corresponding_lists(ArgVars, ArgInfo, ArgPairs),
set__init(OutVars0),
find_output_vars_2(ArgPairs, OutVars0, OutVars).
:- pred find_output_vars_2(assoc_list(prog_var, arg_info), set(prog_var),
set(prog_var)).
:- mode find_output_vars_2(in, in, out) is det.
find_output_vars_2([], OutVars, OutVars).
find_output_vars_2([Var - arg_info(_, Mode) | Rest], OutVars0, OutVars) :-
(
Mode = top_out
->
set__insert(OutVars0, Var, OutVars1)
;
OutVars1 = OutVars0
),
find_output_vars_2(Rest, OutVars1, OutVars).
%-----------------------------------------------------------------------------%
:- pred allocate_stack_slots(list(set(prog_var)), code_model, int, stack_slots).
:- mode allocate_stack_slots(in, in, in, out) is det.
allocate_stack_slots(ColourList, CodeModel, NumReservedSlots, StackSlots) :-
map__init(StackSlots0),
% The reserved slots are referred to by fixed number
% (e.g. framevar(1)) in trace__setup.
FirstVarSlot is 1 + NumReservedSlots,
allocate_stack_slots_2(ColourList, FirstVarSlot, CodeModel,
StackSlots0, StackSlots).
:- pred allocate_stack_slots_2(list(set(prog_var)), int, code_model,
stack_slots, stack_slots).
:- mode allocate_stack_slots_2(in, in, in, in, out) is det.
allocate_stack_slots_2([], _N, _CodeModel, StackSlots, StackSlots).
allocate_stack_slots_2([Vars | VarSets], N0, CodeModel,
StackSlots0, StackSlots) :-
set__to_sorted_list(Vars, VarList),
(
CodeModel = model_non
->
Slot = framevar(N0)
;
Slot = stackvar(N0)
),
allocate_same_stack_slot(VarList, Slot, StackSlots0, StackSlots1),
N1 is N0 + 1,
allocate_stack_slots_2(VarSets, N1, CodeModel,
StackSlots1, StackSlots).
:- pred allocate_same_stack_slot(list(prog_var), lval, stack_slots,
stack_slots).
:- mode allocate_same_stack_slot(in, in, in, out) is det.
allocate_same_stack_slot([], _Slot, StackSlots, StackSlots).
allocate_same_stack_slot([Var | Vars], Slot, StackSlots0, StackSlots) :-
map__det_insert(StackSlots0, Var, Slot, StackSlots1),
allocate_same_stack_slot(Vars, Slot, StackSlots1, StackSlots).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
|