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
|
%-----------------------------------------------------------------------------%
% Copyright (C) 1997-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: continuation_info.m.
% Main author: trd.
% Extensive modifications by zs.
%
% This file defines the data structures the code generator uses to collect
% information that will later be converted into layout tables for accurate
% garbage collection, for stack tracing, execution tracing and perhaps
% other purposes.
%
% Information is collected in several passes.
%
% 1 Before we start generating code for a procedure,
% we initialize the set of internal labels for which we have
% layout information to the empty set. This set is stored in
% the code generator state.
%
% 2 During code generation for the procedure, provided the option
% trace_stack_layouts is set, we add layout information for labels
% that represent trace ports to the code generator state. If
% agc_stack_layouts is set, we add layout information for the stack
% label in each resumption point. And regardless of option settings,
% we also generate layouts to be attached to any closures we create.
%
% 3 After we finish generating code for a procedure, we record
% all the static information about the procedure (some of which
% is available only after code generation), together with the
% info about internal labels accumulated in the code generator state,
% in the global_data structure.
%
% 4 If agc_stack_layouts is set, we make a pass over the
% optimized code recorded in the final LLDS instructions.
% In this pass, we collect information from call instructions
% about the internal labels to which calls can return.
% This info will also go straight into the global_data.
%
% This module defines the data structures used by all passes. It also
% implements the whole of pass 4, and various fractions of the other passes.
%
% stack_layout.m converts the information collected in this module into
% stack_layout tables.
%-----------------------------------------------------------------------------%
:- module continuation_info.
:- interface.
:- import_module llds, hlds_module, hlds_pred, hlds_goal, prog_data.
:- import_module (inst), instmap, trace, globals.
:- import_module bool, std_util, list, assoc_list, set, map.
%
% Information for any procedure, includes information about the
% procedure itself, and any internal labels within it.
%
:- type proc_layout_info
---> proc_layout_info(
label, % The entry label.
determinism, % Determines which stack is used.
int, % Number of stack slots.
maybe(int), % Location of succip on stack.
maybe(label), % If the trace level is not none,
% this contains the label associated
% with the call event, whose stack
% layout says which variables were
% live and where on entry.
int, % The number of the highest numbered
% rN register that can contain useful
% information during a call to MR_trace
% from within this procedure.
trace_slot_info,% Info about the stack slots used
% for tracing.
bool, % Do we require the procedure id
% section of the procedure layout
% to be present, even if the option
% procid_stack_layout is not set?
proc_label_layout_info
% Info for each internal label,
% needed for basic_stack_layouts.
).
%
% Information about the labels internal to a procedure.
%
:- type proc_label_layout_info == map(label, internal_layout_info).
%
% Information for an internal label.
%
% There are three ways for the compiler to generate labels for
% which layouts may be required:
%
% (a) as the label associated with a trace port,
% (b) as the label associated with resume point that gets stored
% as a redoip in a nondet stack frame, and
% (c) as the return label of some kind of call (plain, method or h-o).
%
% Label optimizations may redirect a call return away from the
% originally generated label to another label, possibly one
% that is associated with a trace port. This optimization may
% also direct returns from more than one call to the same label.
%
% We may be interested in the layout of things at a label for three
% different reasons: for stack tracing, for accurate gc, and for
% execution tracing (which may include up-level printing from the
% debugger).
%
% - For stack tracing, we are interested only in call return labels.
% Even for these, we need only the pointer to the procedure layout
% info; we do not need any information about variables.
%
% - For accurate gc, we are interested only in resume point labels
% and call return labels. We need to know about all the variables
% that can be accessed after the label; this is the intersection of
% all the variables denoted as live in the respective labels.
% (Variables which are not in the intersection are not guaranteed
% to have a meaningful value on all execution paths that lead to the
% label.)
%
% - For execution tracing, our primary interest is in trace port
% labels. At these labels we only want info about named variables,
% but we may want this info even if the variable will never be
% referred to again.
%
% When the trace level requires support for up-level printing,
% execution tracing also requires information about return labels.
% The variables about which we want info at these labels is a subset
% of the variables agc is interested in (the named subset).
% We do not collect this set explicitly. Instead, if we are doing
% execution tracing, we collect agc layout info as usual, and
% (if we not really doing agc) remove the unnamed variables
% in stack_layout.m.
%
% For labels which correspond to a trace port (part (a) above),
% we record information in the first field. Since trace.m generates
% a unique label for each trace port, this field is never updated
% once it is set in pass 2.
%
% For labels which correspond to redoips (part (b) above), we record
% information in the second field. Since code_info.m generates
% unique labels for each resumption point, this field is never updated
% once it is set in pass 2.
%
% For labels which correspond to a call return (part (c) above),
% we record information in the third field during pass 4. If execution
% tracing is turned on, then jumpopt.m will not redirect call return
% addresses, and thus each label will correspond to at most one call
% return. If execution tracing is turned off, jumpopt.m may redirect
% call return addresses, which means that a label can serve as the
% return label for more than one call. In that case, this field can be
% updated after it is set. This updating requires taking the
% intersection of the sets of live variables, and gathering up all the
% contexts into a list. Later, stack_layout.m will pick one (valid)
% context essentially at random, which is OK because the picked
% context will not be used for anything, except possibly for debugging
% native gc.
%
% Since a call may return to the label of an internal port, it is
% possible for both fields to be set. In this case, stack_layout.m
% will take the union of the relevant info. If neither field is set,
% then the label's layout is required only for stack tracing.
%
:- type internal_layout_info
---> internal_layout_info(
maybe(trace_port_layout_info),
maybe(layout_label_info),
maybe(return_layout_info)
).
:- type trace_port_layout_info
---> trace_port_layout_info(
prog_context,
trace_port,
goal_path,
layout_label_info
).
:- type return_layout_info
---> return_layout_info(
list(pair(code_addr, prog_context)),
layout_label_info
).
%
% Information about the layout of live data for a label.
%
:- type layout_label_info
---> layout_label_info(
set(var_info),
% live vars and their locations/names
map(tvar, set(layout_locn))
% locations of polymorphic type vars
).
:- type var_info
---> var_info(
layout_locn, % the location of the variable
live_value_type % info about the variable
).
:- type closure_layout_info
---> closure_layout_info(
list(closure_arg_info),
% there is one closure_arg_info for each
% argument of the called procedure,
% even the args which are not in the closure
map(tvar, set(layout_locn))
% locations of polymorphic type vars,
% encoded so that rN refers to argument N
).
:- type closure_arg_info
---> closure_arg_info(
type, % The type of the argument.
(inst) % The initial inst of the argument.
% It may be useful in the future to include
% info about the final insts and about
% the determinism. This would allow us
% to implement checked dynamic inst casts,
% which may be helpful for dynamic loading.
% It may also be useful for printing
% closures and for providing user-level
% RTTI access.
).
:- type slot_contents
---> ticket % a ticket (trail pointer)
; ticket_counter % a copy of the ticket counter
; trace_data
; sync_term % a syncronization term used
% at the end of par_conjs.
% see par_conj_gen.m for details.
; lval(lval).
% Call continuation_info__maybe_process_proc_llds on the code
% of every procedure in the list.
:- pred continuation_info__maybe_process_llds(list(c_procedure)::in,
module_info::in, global_data::in, global_data::out) is det.
% Check whether this procedure ought to have any layout structures
% generated for it. If yes, then update the global_data to
% include all the continuation labels within a proc. Whether or not
% the information about a continuation label includes the variables
% live at that label depends on the values of options.
:- pred continuation_info__maybe_process_proc_llds(list(instruction)::in,
pred_proc_id::in, module_info::in,
global_data::in, global_data::out) is det.
% Check whether the given procedure should have at least (a) a basic
% stack layout, and (b) a procedure id layout generated for it.
% The two bools returned answer these two questions respectively.
:- pred continuation_info__basic_stack_layout_for_proc(pred_info::in,
globals::in, bool::out, bool::out) is det.
% Generate the layout information we need for the return point
% of a call.
:- pred continuation_info__generate_return_live_lvalues(
assoc_list(prog_var, arg_loc)::in, instmap::in, list(prog_var)::in,
map(prog_var, set(rval))::in, assoc_list(lval, slot_contents)::in,
proc_info::in, module_info::in, globals::in, list(liveinfo)::out)
is det.
% Generate the layout information we need for a resumption point,
% a label where forward execution can restart after backtracking.
:- pred continuation_info__generate_resume_layout(map(prog_var, set(rval))::in,
assoc_list(lval, slot_contents)::in, instmap::in, proc_info::in,
module_info::in, layout_label_info::out) is det.
% Generate the layout information we need to include in a closure.
:- pred continuation_info__generate_closure_layout(module_info::in,
pred_id::in, proc_id::in, closure_layout_info::out) is det.
% For each type variable in the given list, find out where the
% typeinfo var for that type variable is.
:- pred continuation_info__find_typeinfos_for_tvars(list(tvar)::in,
map(prog_var, set(rval))::in, proc_info::in,
map(tvar, set(layout_locn))::out) is det.
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- implementation.
:- import_module hlds_goal, code_util, type_util, inst_match, options.
:- import_module string, require, varset, term.
%-----------------------------------------------------------------------------%
% Exported predicates.
continuation_info__maybe_process_llds([], _) --> [].
continuation_info__maybe_process_llds([Proc | Procs], ModuleInfo) -->
{ Proc = c_procedure(_, _, PredProcId, Instrs) },
continuation_info__maybe_process_proc_llds(Instrs, PredProcId,
ModuleInfo),
continuation_info__maybe_process_llds(Procs, ModuleInfo).
continuation_info__maybe_process_proc_llds(Instructions, PredProcId,
ModuleInfo, ContInfo0, ContInfo) :-
PredProcId = proc(PredId, _),
module_info_pred_info(ModuleInfo, PredId, PredInfo),
module_info_globals(ModuleInfo, Globals),
continuation_info__basic_stack_layout_for_proc(PredInfo, Globals,
Layout, _),
( Layout = yes ->
globals__want_return_var_layouts(Globals, WantReturnLayout),
continuation_info__process_proc_llds(PredProcId, Instructions,
WantReturnLayout, ContInfo0, ContInfo)
;
ContInfo = ContInfo0
).
:- type call_info
---> call_info(
label, % the return label
code_addr, % the target of the call
list(liveinfo), % what is live on return
term__context % the position of the call in source
).
%
% Process the list of instructions for this proc, adding
% all internal label information to global_data.
%
:- pred continuation_info__process_proc_llds(pred_proc_id::in,
list(instruction)::in, bool::in,
global_data::in, global_data::out) is det.
continuation_info__process_proc_llds(PredProcId, Instructions,
WantReturnInfo, GlobalData0, GlobalData) :-
% Get all the continuation info from the call instructions.
global_data_get_proc_layout(GlobalData0, PredProcId, ProcLayoutInfo0),
ProcLayoutInfo0 = proc_layout_info(A, B, C, D, E, F, G, H, Internals0),
GetCallInfo = lambda([Instr::in, Call::out] is semidet, (
Instr = call(Target, label(ReturnLabel), LiveInfo, Context, _)
- _Comment,
Call = call_info(ReturnLabel, Target, LiveInfo, Context)
)),
list__filter_map(GetCallInfo, Instructions, Calls),
% Process the continuation label info.
list__foldl(continuation_info__process_continuation(WantReturnInfo),
Calls, Internals0, Internals),
ProcLayoutInfo = proc_layout_info(A, B, C, D, E, F, G, H, Internals),
global_data_update_proc_layout(GlobalData0, PredProcId, ProcLayoutInfo,
GlobalData).
%-----------------------------------------------------------------------------%
%
% Collect the liveness information from a single return label
% and add it to the internals.
%
:- pred continuation_info__process_continuation(bool::in, call_info::in,
proc_label_layout_info::in, proc_label_layout_info::out) is det.
continuation_info__process_continuation(WantReturnInfo, CallInfo,
Internals0, Internals) :-
CallInfo = call_info(ReturnLabel, Target, LiveInfoList, Context),
( map__search(Internals0, ReturnLabel, Internal0) ->
Internal0 = internal_layout_info(Port0, Resume0, Return0)
;
Port0 = no,
Resume0 = no,
Return0 = no
),
( WantReturnInfo = yes ->
continuation_info__convert_return_data(LiveInfoList,
VarInfoSet, TypeInfoMap),
(
Return0 = no,
Layout = layout_label_info(VarInfoSet, TypeInfoMap),
ReturnInfo = return_layout_info([Target - Context],
Layout),
Return = yes(ReturnInfo)
;
% If a var is known to be dead
% on return from one call, it
% cannot be accessed on returning
% from the other calls that reach
% the same return address either.
Return0 = yes(ReturnInfo0),
ReturnInfo0 = return_layout_info(TargetsContexts0,
Layout0),
Layout0 = layout_label_info(LV0, TV0),
set__intersect(LV0, VarInfoSet, LV),
map__intersect(set__intersect, TV0, TypeInfoMap, TV),
Layout = layout_label_info(LV, TV),
TargetContexts = [Target - Context | TargetsContexts0],
ReturnInfo = return_layout_info(TargetContexts,
Layout),
Return = yes(ReturnInfo)
)
;
Return = Return0
),
Internal = internal_layout_info(Port0, Resume0, Return),
map__set(Internals0, ReturnLabel, Internal, Internals).
:- pred continuation_info__convert_return_data(list(liveinfo)::in,
set(var_info)::out, map(tvar, set(layout_locn))::out) is det.
continuation_info__convert_return_data(LiveInfos, VarInfoSet, TypeInfoMap) :-
GetVarInfo = lambda([LiveLval::in, VarInfo::out] is det, (
LiveLval = live_lvalue(Lval, LiveValueType, _),
VarInfo = var_info(Lval, LiveValueType)
)),
list__map(GetVarInfo, LiveInfos, VarInfoList),
GetTypeInfo = lambda([LiveLval::in, LiveTypeInfoMap::out] is det, (
LiveLval = live_lvalue(_, _, LiveTypeInfoMap)
)),
list__map(GetTypeInfo, LiveInfos, TypeInfoMapList),
map__init(Empty),
list__foldl(lambda([TIM1::in, TIM2::in, TIM::out] is det,
map__union(set__intersect, TIM1, TIM2, TIM)),
TypeInfoMapList, Empty, TypeInfoMap),
set__list_to_set(VarInfoList, VarInfoSet).
:- pred continuation_info__filter_named_vars(list(liveinfo)::in,
list(liveinfo)::out) is det.
continuation_info__filter_named_vars([], []).
continuation_info__filter_named_vars([LiveInfo | LiveInfos], Filtered) :-
continuation_info__filter_named_vars(LiveInfos, Filtered1),
(
LiveInfo = live_lvalue(_, LiveType, _),
LiveType = var(_, Name, _, _),
Name \= ""
->
Filtered = [LiveInfo | Filtered1]
;
Filtered = Filtered1
).
%-----------------------------------------------------------------------------%
continuation_info__basic_stack_layout_for_proc(PredInfo, Globals,
BasicLayout, ForceProcIdLayout) :-
(
globals__lookup_bool_option(Globals, stack_trace_higher_order,
yes),
continuation_info__some_arg_is_higher_order(PredInfo)
->
BasicLayout = yes,
ForceProcIdLayout = yes
;
globals__lookup_bool_option(Globals, basic_stack_layout, yes)
->
BasicLayout = yes,
ForceProcIdLayout = no
;
BasicLayout = no,
ForceProcIdLayout = no
).
:- pred continuation_info__some_arg_is_higher_order(pred_info::in) is semidet.
continuation_info__some_arg_is_higher_order(PredInfo) :-
pred_info_arg_types(PredInfo, ArgTypes),
some([Type], (
list__member(Type, ArgTypes),
type_is_higher_order(Type, _, _, _)
)).
%-----------------------------------------------------------------------------%
continuation_info__generate_return_live_lvalues(OutputArgLocs, ReturnInstMap,
Vars, VarLocs, Temps, ProcInfo, ModuleInfo, Globals,
LiveLvalues) :-
globals__want_return_var_layouts(Globals, WantReturnVarLayout),
proc_info_stack_slots(ProcInfo, StackSlots),
continuation_info__find_return_var_lvals(Vars, StackSlots,
OutputArgLocs, VarLvals),
continuation_info__generate_var_live_lvalues(VarLvals, ReturnInstMap,
VarLocs, ProcInfo, ModuleInfo,
WantReturnVarLayout, VarLiveLvalues),
continuation_info__generate_temp_live_lvalues(Temps, TempLiveLvalues),
list__append(VarLiveLvalues, TempLiveLvalues, LiveLvalues).
:- pred continuation_info__find_return_var_lvals(list(prog_var)::in,
stack_slots::in, assoc_list(prog_var, arg_loc)::in,
assoc_list(prog_var, lval)::out) is det.
continuation_info__find_return_var_lvals([], _, _, []).
continuation_info__find_return_var_lvals([Var | Vars], StackSlots,
OutputArgLocs, [Var - Lval | VarLvals]) :-
( assoc_list__search(OutputArgLocs, Var, ArgLoc) ->
% On return, output arguments are in their registers.
code_util__arg_loc_to_register(ArgLoc, Lval)
;
% On return, other live variables are in their stack slots.
map__lookup(StackSlots, Var, Lval)
),
continuation_info__find_return_var_lvals(Vars, StackSlots,
OutputArgLocs, VarLvals).
:- pred continuation_info__generate_temp_live_lvalues(
assoc_list(lval, slot_contents)::in, list(liveinfo)::out) is det.
continuation_info__generate_temp_live_lvalues([], []).
continuation_info__generate_temp_live_lvalues([Temp | Temps], [Live | Lives]) :-
Temp = Slot - Contents,
continuation_info__live_value_type(Contents, LiveLvalueType),
map__init(Empty),
Live = live_lvalue(direct(Slot), LiveLvalueType, Empty),
continuation_info__generate_temp_live_lvalues(Temps, Lives).
:- pred continuation_info__generate_var_live_lvalues(
assoc_list(prog_var, lval)::in, instmap::in,
map(prog_var, set(rval))::in, proc_info::in, module_info::in,
bool::in, list(liveinfo)::out) is det.
continuation_info__generate_var_live_lvalues([], _, _, _, _, _, []).
continuation_info__generate_var_live_lvalues([Var - Lval | VarLvals], InstMap,
VarLocs, ProcInfo, ModuleInfo, WantReturnVarLayout,
[Live | Lives]) :-
( WantReturnVarLayout = yes ->
continuation_info__generate_layout_for_var(Var, InstMap,
ProcInfo, ModuleInfo, LiveValueType, TypeVars),
continuation_info__find_typeinfos_for_tvars(TypeVars,
VarLocs, ProcInfo, TypeParams),
Live = live_lvalue(direct(Lval), LiveValueType, TypeParams)
;
map__init(Empty),
Live = live_lvalue(direct(Lval), unwanted, Empty)
),
continuation_info__generate_var_live_lvalues(VarLvals, InstMap,
VarLocs, ProcInfo, ModuleInfo, WantReturnVarLayout, Lives).
%---------------------------------------------------------------------------%
continuation_info__generate_resume_layout(ResumeMap, Temps, InstMap,
ProcInfo, ModuleInfo, Layout) :-
map__to_assoc_list(ResumeMap, ResumeList),
set__init(TVars0),
continuation_info__generate_resume_layout_for_vars(ResumeList,
InstMap, ProcInfo, ModuleInfo, VarInfos, TVars0, TVars),
set__list_to_set(VarInfos, VarInfoSet),
set__to_sorted_list(TVars, TVarList),
continuation_info__find_typeinfos_for_tvars(TVarList, ResumeMap,
ProcInfo, TVarInfoMap),
continuation_info__generate_temp_var_infos(Temps, TempInfos),
set__list_to_set(TempInfos, TempInfoSet),
set__union(VarInfoSet, TempInfoSet, AllInfoSet),
Layout = layout_label_info(AllInfoSet, TVarInfoMap).
:- pred continuation_info__generate_resume_layout_for_vars(
assoc_list(prog_var, set(rval))::in, instmap::in, proc_info::in,
module_info::in, list(var_info)::out, set(tvar)::in,
set(tvar)::out) is det.
continuation_info__generate_resume_layout_for_vars([], _, _, _, [],
TVars, TVars).
continuation_info__generate_resume_layout_for_vars([Var - RvalSet | VarRvals],
InstMap, ProcInfo, ModuleInfo, [VarInfo | VarInfos],
TVars0, TVars) :-
continuation_info__generate_resume_layout_for_var(Var, RvalSet,
InstMap, ProcInfo, ModuleInfo, VarInfo, TypeVars),
set__insert_list(TVars0, TypeVars, TVars1),
continuation_info__generate_resume_layout_for_vars(VarRvals,
InstMap, ProcInfo, ModuleInfo, VarInfos, TVars1, TVars).
:- pred continuation_info__generate_resume_layout_for_var(prog_var::in,
set(rval)::in, instmap::in, proc_info::in, module_info::in,
var_info::out, list(tvar)::out) is det.
continuation_info__generate_resume_layout_for_var(Var, RvalSet, InstMap,
ProcInfo, ModuleInfo, VarInfo, TypeVars) :-
set__to_sorted_list(RvalSet, RvalList),
( RvalList = [RvalPrime] ->
Rval = RvalPrime
;
error("var has more than one rval in stack resume map")
),
( Rval = lval(LvalPrime) ->
Lval = LvalPrime
;
error("var rval is not lval in stack resume map")
),
continuation_info__generate_layout_for_var(Var, InstMap, ProcInfo,
ModuleInfo, LiveValueType, TypeVars),
VarInfo = var_info(direct(Lval), LiveValueType).
:- pred continuation_info__generate_temp_var_infos(
assoc_list(lval, slot_contents)::in, list(var_info)::out) is det.
continuation_info__generate_temp_var_infos([], []).
continuation_info__generate_temp_var_infos([Temp | Temps], [Live | Lives]) :-
Temp = Slot - Contents,
continuation_info__live_value_type(Contents, LiveLvalueType),
Live = var_info(direct(Slot), LiveLvalueType),
continuation_info__generate_temp_var_infos(Temps, Lives).
%---------------------------------------------------------------------------%
:- pred continuation_info__generate_layout_for_var(prog_var::in, instmap::in,
proc_info::in, module_info::in, live_value_type::out, list(tvar)::out)
is det.
continuation_info__generate_layout_for_var(Var, InstMap, ProcInfo, ModuleInfo,
LiveValueType, TypeVars) :-
proc_info_varset(ProcInfo, VarSet),
proc_info_vartypes(ProcInfo, VarTypes),
( varset__search_name(VarSet, Var, GivenName) ->
Name = GivenName
;
Name = ""
),
instmap__lookup_var(InstMap, Var, Inst),
map__lookup(VarTypes, Var, Type),
( inst_match__inst_is_ground(ModuleInfo, Inst) ->
LldsInst = ground
;
LldsInst = partial(Inst)
),
LiveValueType = var(Var, Name, Type, LldsInst),
type_util__vars(Type, TypeVars).
%---------------------------------------------------------------------------%
continuation_info__generate_closure_layout(ModuleInfo, PredId, ProcId,
ClosureLayout) :-
module_info_pred_proc_info(ModuleInfo, PredId, ProcId,
PredInfo, ProcInfo),
proc_info_headvars(ProcInfo, HeadVars),
proc_info_arg_info(ProcInfo, ArgInfos),
pred_info_arg_types(PredInfo, ArgTypes),
proc_info_get_initial_instmap(ProcInfo, ModuleInfo, InstMap),
map__init(VarLocs0),
set__init(TypeVars0),
(
continuation_info__build_closure_info(HeadVars, ArgTypes,
ArgInfos, ArgLayouts, InstMap, VarLocs0, VarLocs,
TypeVars0, TypeVars)
->
set__to_sorted_list(TypeVars, TypeVarsList),
continuation_info__find_typeinfos_for_tvars(TypeVarsList,
VarLocs, ProcInfo, TypeInfoDataMap),
ClosureLayout = closure_layout_info(ArgLayouts,
TypeInfoDataMap)
;
error("proc headvars and pred argtypes disagree on arity")
).
:- pred continuation_info__build_closure_info(list(prog_var)::in,
list(type)::in, list(arg_info)::in, list(closure_arg_info)::out,
instmap::in, map(prog_var, set(rval))::in,
map(prog_var, set(rval))::out, set(tvar)::in, set(tvar)::out)
is semidet.
continuation_info__build_closure_info([], [], [], [], _, VarLocs, VarLocs,
TypeVars, TypeVars).
continuation_info__build_closure_info([Var | Vars], [Type | Types],
[ArgInfo | ArgInfos], [Layout | Layouts], InstMap,
VarLocs0, VarLocs, TypeVars0, TypeVars) :-
ArgInfo = arg_info(ArgLoc, _ArgMode),
instmap__lookup_var(InstMap, Var, Inst),
Layout = closure_arg_info(Type, Inst),
set__singleton_set(Locations, lval(reg(r, ArgLoc))),
map__det_insert(VarLocs0, Var, Locations, VarLocs1),
type_util__vars(Type, VarTypeVars),
set__insert_list(TypeVars0, VarTypeVars, TypeVars1),
continuation_info__build_closure_info(Vars, Types, ArgInfos, Layouts,
InstMap, VarLocs1, VarLocs, TypeVars1, TypeVars).
%---------------------------------------------------------------------------%
continuation_info__find_typeinfos_for_tvars(TypeVars, VarLocs, ProcInfo,
TypeInfoDataMap) :-
proc_info_varset(ProcInfo, VarSet),
proc_info_typeinfo_varmap(ProcInfo, TypeInfoMap),
map__apply_to_list(TypeVars, TypeInfoMap, TypeInfoLocns),
FindLocn = lambda([TypeInfoLocn::in, Locns::out] is det, (
type_info_locn_var(TypeInfoLocn, TypeInfoVar),
(
map__search(VarLocs, TypeInfoVar, TypeInfoRvalSet)
->
ConvertRval = lambda([Locn::out] is nondet, (
set__member(Rval, TypeInfoRvalSet),
Rval = lval(Lval),
(
TypeInfoLocn = typeclass_info(_,
FieldNum),
Locn = indirect(Lval, FieldNum)
;
TypeInfoLocn = type_info(_),
Locn = direct(Lval)
)
)),
solutions_set(ConvertRval, Locns)
;
varset__lookup_name(VarSet, TypeInfoVar,
VarString),
string__format("%s: %s %s",
[s("continuation_info__find_typeinfos_for_tvars"),
s("can't find rval for type_info var"),
s(VarString)], ErrStr),
error(ErrStr)
)
)),
list__map(FindLocn, TypeInfoLocns, TypeInfoVarLocns),
map__from_corresponding_lists(TypeVars, TypeInfoVarLocns,
TypeInfoDataMap).
%-----------------------------------------------------------------------------%
:- pred continuation_info__live_value_type(slot_contents::in,
live_value_type::out) is det.
continuation_info__live_value_type(lval(succip), succip).
continuation_info__live_value_type(lval(hp), hp).
continuation_info__live_value_type(lval(maxfr), maxfr).
continuation_info__live_value_type(lval(curfr), curfr).
continuation_info__live_value_type(lval(succfr(_)), unwanted).
continuation_info__live_value_type(lval(prevfr(_)), unwanted).
continuation_info__live_value_type(lval(redofr(_)), unwanted).
continuation_info__live_value_type(lval(redoip(_)), unwanted).
continuation_info__live_value_type(lval(succip(_)), unwanted).
continuation_info__live_value_type(lval(sp), unwanted).
continuation_info__live_value_type(lval(lvar(_)), unwanted).
continuation_info__live_value_type(lval(field(_, _, _)), unwanted).
continuation_info__live_value_type(lval(temp(_, _)), unwanted).
continuation_info__live_value_type(lval(reg(_, _)), unwanted).
continuation_info__live_value_type(lval(stackvar(_)), unwanted).
continuation_info__live_value_type(lval(framevar(_)), unwanted).
continuation_info__live_value_type(lval(mem_ref(_)), unwanted). % XXX
continuation_info__live_value_type(ticket, unwanted). % XXX we may need to
% modify this, if the GC is going
% to garbage-collect the trail.
continuation_info__live_value_type(ticket_counter, unwanted).
continuation_info__live_value_type(sync_term, unwanted).
continuation_info__live_value_type(trace_data, unwanted).
%-----------------------------------------------------------------------------%
|