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
|
%-----------------------------------------------------------------------------%
% Copyright (C) 1997-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.
%-----------------------------------------------------------------------------%
%
% Author: zs.
%
% This module handles the generation of traces for the trace analysis system.
%
% For the general basis of trace analysis systems, see the paper
% "Opium: An extendable trace analyser for Prolog" by Mireille Ducasse,
% available from http://www.irisa.fr/lande/ducasse.
%
% We reserve some slots in the stack frame of the traced procedure.
% One contains the call sequence number, which is set in the procedure prologue
% by incrementing a global counter. Another contains the call depth, which
% is also set by incrementing a global variable containing the depth of the
% caller. The caller sets this global variable from its own saved depth
% just before the call. We also save the event number, and sometimes also
% the redo layout and the from_full flag.
%
% Each event has a label associated with it. The stack layout for that label
% records what variables are live and where they are at the time of the event.
% These labels are generated by the same predicate that generates the code
% for the event, and are initially not used for anything else.
% However, some of these labels may be fallen into from other places,
% and thus optimization may redirect references from labels to one of these
% labels. This cannot happen in the opposite direction, due to the reference
% to each event's label from the event's pragma C code instruction.
% (This prevents labelopt from removing the label.)
%
% We classify events into three kinds: external events (call, exit, fail),
% internal events (switch, disj, ite_then, ite_else), and nondet pragma C
% events (first, later). Code_gen.m, which calls this module to generate
% all external events, checks whether tracing is required before calling us;
% the predicates handing internal and nondet pragma C events must check this
% themselves. The predicates generating internal events need the goal
% following the event as a parameter. For the first and later arms of
% nondet pragma C code, there is no such hlds_goal, which is why these events
% need a bit of special treatment.
%-----------------------------------------------------------------------------%
:- module trace.
:- interface.
:- import_module hlds_goal, hlds_pred, hlds_module.
:- import_module globals, prog_data, llds, code_info.
:- import_module map, std_util, set.
% The kinds of external ports for which the code we generate will
% call MR_trace. The redo port is not on this list, because for that
% port the code that calls MR_trace is not in compiler-generated code,
% but in the runtime system. Likewise for the exception port.
% (The same comment applies to the type `trace_port' in llds.m.)
:- type external_trace_port
---> call
; exit
; fail.
% These ports are different from other internal ports (even neg_enter)
% because their goal path identifies not the goal we are about to enter
% but the goal we have just left.
:- type negation_end_port
---> neg_success
; neg_failure.
:- type nondet_pragma_trace_port
---> nondet_pragma_first
; nondet_pragma_later.
:- type trace_info.
:- type trace_slot_info --->
trace_slot_info(
slot_from_full :: maybe(int),
% If the procedure is shallow traced,
% this will be yes(N), where stack
% slot N is the slot that holds the
% value of the from-full flag at call.
% Otherwise, it will be no.
slot_io :: maybe(int),
% If the procedure has io state
% arguments this will be yes(N), where
% stack slot N is the slot that holds
% the saved value of the io sequence
% number. Otherwise, it will be no.
slot_trail :: maybe(int),
% If --use-trail is set, this will
% be yes(M), where stack slots M
% and M+1 are the slots that hold the
% saved values of the trail pointer
% and the ticket counter respectively
% at the time of the call. Otherwise,
% it will be no.
slot_maxfr :: maybe(int),
% If the procedure lives on the det
% stack but creates temporary frames
% on the nondet stack, this will be
% yes(M), where stack slot M is
% reserved to hold the value of maxfr
% at the time of the call. Otherwise,
% it will be no.
slot_call_table :: maybe(int),
% If the procedure's evaluation method
% is memo, loopcheck or minimal model,
% this will be yes(M), where stack slot
% M holds the variable that represents
% the tip of the call table. Otherwise,
% it will be no.
slot_decl :: maybe(int)
% If --trace-decl is set, this will
% be yes(M), where stack slots M
% and M+1 are reserved for the runtime
% system to use in building proof
% trees for the declarative debugger.
% Otherwise, it will be no.
).
% Return the set of input variables whose values should be preserved
% until the exit and fail ports. This will be all the input variables,
% except those that can be totally clobbered during the evaluation
% of the procedure (those partially clobbered may still be of interest,
% although to handle them properly we need to record insts in stack
% layouts).
:- pred trace__fail_vars(module_info::in, proc_info::in,
set(prog_var)::out) is det.
% Figure out whether we need a slot for storing the value of maxfr
% on entry, and record the result in the proc info.
:- pred trace__do_we_need_maxfr_slot(globals::in, proc_info::in,
proc_info::out) is det.
% Return the number of slots reserved for tracing information.
% If there are N slots, the reserved slots will be 1 through N.
%
% It is possible that one of these reserved slots contains a variable.
% If so, the variable and its slot number are returned in the last
% argument.
:- pred trace__reserved_slots(module_info::in, proc_info::in, globals::in,
int::out, maybe(pair(prog_var, int))::out) is det.
% Construct and return an abstract struct that represents the
% tracing-specific part of the code generator state. Return also
% info about the non-fixed slots used by the tracing system,
% for eventual use in the constructing the procedure's layout
% structure.
:- pred trace__setup(module_info::in, proc_info::in, globals::in,
trace_slot_info::out, trace_info::out, code_info::in, code_info::out)
is det.
% Generate code to fill in the reserved stack slots.
:- pred trace__generate_slot_fill_code(trace_info::in, code_tree::out,
code_info::in, code_info::out) is det.
% If we are doing execution tracing, generate code to prepare for
% a call.
:- pred trace__prepare_for_call(code_tree::out, code_info::in, code_info::out)
is det.
% If we are doing execution tracing, generate code for an internal
% trace event. This predicate must be called just before generating
% code for the given goal.
:- pred trace__maybe_generate_internal_event_code(hlds_goal::in,
code_tree::out, code_info::in, code_info::out) is det.
% If we are doing execution tracing, generate code for an trace event
% that represents leaving a negated goal (via success or failure).
:- pred trace__maybe_generate_negated_event_code(hlds_goal::in,
negation_end_port::in, code_tree::out, code_info::in, code_info::out)
is det.
% If we are doing execution tracing, generate code for a nondet
% pragma C code trace event.
:- pred trace__maybe_generate_pragma_event_code(nondet_pragma_trace_port::in,
prog_context::in, code_tree::out, code_info::in, code_info::out)
is det.
:- type external_event_info
---> external_event_info(
label, % The label associated with the
% external event.
map(tvar, set(layout_locn)),
% The map saying where the typeinfo
% variables needed to describe the
% types of the variables live at the
% event are.
code_tree % The code generated for the event.
).
% Generate code for an external trace event.
% Besides the trace code, we return the label on which we have hung
% the trace liveness information and data on the type variables in the
% liveness information, since some of our callers also need this
% information.
:- pred trace__generate_external_event_code(external_trace_port::in,
trace_info::in, prog_context::in, maybe(external_event_info)::out,
code_info::in, code_info::out) is det.
% If the trace level calls for redo events, generate code that pushes
% a temporary nondet stack frame whose redoip slot contains the
% address of one of the labels in the runtime that calls MR_trace
% for a redo event. Otherwise, generate empty code.
:- pred trace__maybe_setup_redo_event(trace_info::in, code_tree::out) is det.
% Convert a goal path to a string, using the format documented
% in the Mercury user's guide.
:- pred trace__path_to_string(goal_path::in, string::out) is det.
%-----------------------------------------------------------------------------%
:- implementation.
:- import_module continuation_info, trace_params, llds_out, layout_out, tree.
:- import_module type_util, (inst), instmap, inst_match, mode_util.
:- import_module code_model, code_util, options.
:- import_module list, bool, int, string, map, std_util, require, term, varset.
% Information specific to a trace port.
:- type trace_port_info
---> external
; internal(
goal_path, % The path of the goal whose start
% this port represents.
set(prog_var) % The pre-death set of this goal.
)
; negation_end(
goal_path % The path of the goal whose end
% (one way or another) this port
% represents.
)
; nondet_pragma.
trace__fail_vars(ModuleInfo, ProcInfo, FailVars) :-
proc_info_headvars(ProcInfo, HeadVars),
proc_info_argmodes(ProcInfo, Modes),
proc_info_arg_info(ProcInfo, ArgInfos),
mode_list_get_final_insts(Modes, ModuleInfo, Insts),
(
trace__build_fail_vars(HeadVars, Insts, ArgInfos,
ModuleInfo, FailVarsList)
->
set__list_to_set(FailVarsList, FailVars)
;
error("length mismatch in trace__fail_vars")
).
trace__do_we_need_maxfr_slot(Globals, ProcInfo0, ProcInfo) :-
globals__get_trace_level(Globals, TraceLevel),
proc_info_interface_code_model(ProcInfo0, CodeModel),
(
trace_level_is_none(TraceLevel) = no,
CodeModel \= model_non,
proc_info_goal(ProcInfo0, Goal),
code_util__goal_may_alloc_temp_frame(Goal)
->
MaxfrFlag = yes
;
MaxfrFlag = no
),
proc_info_set_need_maxfr_slot(ProcInfo0, MaxfrFlag, ProcInfo).
% trace__reserved_slots and trace__setup cooperate in the allocation
% of stack slots for tracing purposes. The allocation is done in the
% following stages.
%
% stage 1: Allocate the fixed slots, slots 1, 2 and 3, to hold
% the event number of call, the call sequence number
% and the call depth respectively.
%
% stage 2: If the procedure is model_non and --trace-redo is set,
% allocate the next available slot (which must be slot 4)
% to hold the address of the redo layout structure.
%
% stage 3: If the procedure is shallow traced, allocate the
% next available slot to the saved copy of the
% from-full flag. The number of this slot is recorded
% in the maybe_from_full field in the proc layout;
% if there is no such slot, that field will contain -1.
%
% stage 4: If --trace-decl is given, allocate the next two
% available slots to hold the pointers to the proof tree
% node of the parent and of this call respectively.
% The number of the first of these two slots is recorded
% in the maybe_decl_debug field in the proc layout;
% if there are no such slots, that field will contain -1.
%
% stage 5: If --trace-table-io is given, allocate the next slot
% to hold the saved value of the io sequence number,
% for use in implementing retry. The number of this slot
% is recorded in the maybe_io_seq field in the proc
% layout; if there is no such slot, that field will
% contain -1.
%
% stage 6: If --use-trail is set (given or implied), allocate
% two slots to hold the saved value of the trail pointer
% and the ticket counter at the point of the call, for
% use in implementing retry. The number of the first of
% these two slots is recorded in the maybe_trail field
% in the proc layout; if there are no such slots, that
% field will contain -1.
%
% stage 7: If the procedure lives on the det stack but can put
% frames on the nondet stack, allocate a slot to hold
% the saved value of maxfr at the point of the call,
% for use in implementing retry. The number of this
% slot is recorded in the maybe_maxfr field in the proc
% layout; if there is no such slot, that field will
% contain -1.
%
% stage 8: If the procedure's evaluation method is memo, loopcheck
% or minimal model, we allocate a slot to hold the
% variable that represents the tip of the call table.
% The debugger needs this, because when it executes a
% retry command, it must reset this tip to uninitialized.
% The number of this slot is recorded in the maybe_table
% field in the proc layout; if there is no such slot,
% that field will contain -1.
%
% The procedure's layout structure does not need to include
% information about the presence or absence of the slot holding
% the address of the redo layout structure. If we generate redo
% trace events, the runtime will know that this slot exists and
% what its number must be; if we do not, the runtime will never
% refer to such a slot.
%
% We need two redo labels in the runtime. Deep traced procedures
% do not have a from-full slot, but their slots 1 through 4 are always
% valid; the label handling their redos accesses those slots directly.
% Shallow traced procedures do have a from-full slot, and their slots
% 1-4 are valid only if the from-full slot is TRUE; the label handling
% their redos thus checks this slot to see whether it can (or should)
% access the other slots. In shallow-traced model_non procedures
% that generate redo events, the from-full flag is always in slot 5.
%
% The slots allocated by stages 1 and 2 are only ever referred to
% by the runtime system if they are guaranteed to exist. The runtime
% system may of course also need to refer to slots allocated by later
% stages, but before it does so, it needs to know whether those slots
% exist or not. This is why trace__setup returns TraceSlotInfo,
% which answers such questions, for later inclusion in the
% procedure's layout structure.
trace__reserved_slots(_ModuleInfo, ProcInfo, Globals, ReservedSlots,
MaybeTableVarInfo) :-
globals__get_trace_level(Globals, TraceLevel),
globals__get_trace_suppress(Globals, TraceSuppress),
globals__lookup_bool_option(Globals, trace_table_io, TraceTableIo),
FixedSlots = trace_level_needs_fixed_slots(TraceLevel),
(
FixedSlots = no,
ReservedSlots = 0,
MaybeTableVarInfo = no
;
FixedSlots = yes,
Fixed = 3, % event#, call#, call depth
(
proc_info_interface_code_model(ProcInfo, model_non),
trace_needs_port(TraceLevel, TraceSuppress, redo) = yes
->
RedoLayout = 1
;
RedoLayout = 0
),
( trace_level_needs_from_full_slot(TraceLevel) = yes ->
FromFull = 1
;
FromFull = 0
),
( trace_level_needs_decl_debug_slots(TraceLevel) = yes ->
DeclDebug = 2
;
DeclDebug = 0
),
( TraceTableIo = yes ->
IoSeq = 1
;
IoSeq = 0
),
globals__lookup_bool_option(Globals, use_trail, UseTrail),
( UseTrail = yes ->
Trail = 2
;
Trail = 0
),
proc_info_get_need_maxfr_slot(ProcInfo, NeedMaxfr),
(
NeedMaxfr = yes,
Maxfr = 1
;
NeedMaxfr = no,
Maxfr = 0
),
ReservedSlots0 = Fixed + RedoLayout + FromFull + IoSeq
+ Trail + Maxfr + DeclDebug,
proc_info_get_call_table_tip(ProcInfo, MaybeCallTableVar),
( MaybeCallTableVar = yes(CallTableVar) ->
ReservedSlots = ReservedSlots0 + 1,
MaybeTableVarInfo = yes(CallTableVar - ReservedSlots)
;
ReservedSlots = ReservedSlots0,
MaybeTableVarInfo = no
)
).
trace__setup(_ModuleInfo, ProcInfo, Globals, TraceSlotInfo, TraceInfo) -->
code_info__get_proc_model(CodeModel),
{ globals__get_trace_level(Globals, TraceLevel) },
{ globals__get_trace_suppress(Globals, TraceSuppress) },
{ globals__lookup_bool_option(Globals, trace_table_io, TraceTableIo) },
{ trace_needs_port(TraceLevel, TraceSuppress, redo) = TraceRedo },
(
{ TraceRedo = yes },
{ CodeModel = model_non }
->
code_info__get_next_label(RedoLayoutLabel),
{ MaybeRedoLayoutLabel = yes(RedoLayoutLabel) },
{ NextSlotAfterRedoLayout = 5 }
;
{ MaybeRedoLayoutLabel = no },
{ NextSlotAfterRedoLayout = 4 }
),
{ trace_level_needs_from_full_slot(TraceLevel) = FromFullSlot },
{
FromFullSlot = no,
MaybeFromFullSlot = no,
MaybeFromFullSlotLval = no,
NextSlotAfterFromFull = NextSlotAfterRedoLayout
;
FromFullSlot = yes,
MaybeFromFullSlot = yes(NextSlotAfterRedoLayout),
CallFromFullSlot = llds__stack_slot_num_to_lval(
CodeModel, NextSlotAfterRedoLayout),
MaybeFromFullSlotLval = yes(CallFromFullSlot),
NextSlotAfterFromFull is NextSlotAfterRedoLayout + 1
},
{ trace_level_needs_decl_debug_slots(TraceLevel) = DeclDebugSlots },
{
DeclDebugSlots = yes,
MaybeDeclSlots = yes(NextSlotAfterFromFull),
NextSlotAfterDecl = NextSlotAfterFromFull + 2
;
DeclDebugSlots = no,
MaybeDeclSlots = no,
NextSlotAfterDecl = NextSlotAfterFromFull
},
{
TraceTableIo = yes,
MaybeIoSeqSlot = yes(NextSlotAfterDecl),
IoSeqLval = llds__stack_slot_num_to_lval(CodeModel,
NextSlotAfterDecl),
MaybeIoSeqLval = yes(IoSeqLval),
NextSlotAfterIoSeq = NextSlotAfterDecl + 1
;
TraceTableIo = no,
MaybeIoSeqSlot = no,
MaybeIoSeqLval = no,
NextSlotAfterIoSeq = NextSlotAfterDecl
},
{ globals__lookup_bool_option(Globals, use_trail, yes) ->
MaybeTrailSlot = yes(NextSlotAfterIoSeq),
TrailLval = llds__stack_slot_num_to_lval(CodeModel,
NextSlotAfterIoSeq),
TicketLval = llds__stack_slot_num_to_lval(CodeModel,
NextSlotAfterIoSeq + 1),
MaybeTrailLvals = yes(TrailLval - TicketLval),
NextSlotAfterTrail = NextSlotAfterIoSeq + 2
;
MaybeTrailSlot = no,
MaybeTrailLvals = no,
NextSlotAfterTrail = NextSlotAfterIoSeq
},
{ proc_info_get_need_maxfr_slot(ProcInfo, NeedMaxfr) },
{
NeedMaxfr = yes,
MaybeMaxfrSlot = yes(NextSlotAfterTrail),
MaxfrLval = llds__stack_slot_num_to_lval(CodeModel,
NextSlotAfterTrail),
MaybeMaxfrLval = yes(MaxfrLval),
NextSlotAfterMaxfr = NextSlotAfterTrail + 1
;
NeedMaxfr = no,
MaybeMaxfrSlot = no,
MaybeMaxfrLval = no,
NextSlotAfterMaxfr = NextSlotAfterTrail
},
{ proc_info_get_call_table_tip(ProcInfo, yes(_)) ->
MaybeCallTableSlot = yes(NextSlotAfterMaxfr),
CallTableLval = llds__stack_slot_num_to_lval(CodeModel,
NextSlotAfterMaxfr),
MaybeCallTableLval = yes(CallTableLval)
;
MaybeCallTableSlot = no,
MaybeCallTableLval = no
},
{ TraceSlotInfo = trace_slot_info(MaybeFromFullSlot, MaybeIoSeqSlot,
MaybeTrailSlot, MaybeMaxfrSlot, MaybeCallTableSlot,
MaybeDeclSlots) },
{ TraceInfo = trace_info(TraceLevel, TraceSuppress,
MaybeFromFullSlotLval, MaybeIoSeqLval, MaybeTrailLvals,
MaybeMaxfrLval, MaybeCallTableLval, MaybeRedoLayoutLabel) }.
trace__generate_slot_fill_code(TraceInfo, TraceCode) -->
code_info__get_proc_model(CodeModel),
{
MaybeFromFullSlot = TraceInfo ^ from_full_lval,
MaybeIoSeqSlot = TraceInfo ^ io_seq_lval,
MaybeTrailLvals = TraceInfo ^ trail_lvals,
MaybeMaxfrLval = TraceInfo ^ maxfr_lval,
MaybeCallTableLval = TraceInfo ^ call_table_tip_lval,
MaybeRedoLabel = TraceInfo ^ redo_label,
trace__event_num_slot(CodeModel, EventNumLval),
trace__call_num_slot(CodeModel, CallNumLval),
trace__call_depth_slot(CodeModel, CallDepthLval),
trace__stackref_to_string(EventNumLval, EventNumStr),
trace__stackref_to_string(CallNumLval, CallNumStr),
trace__stackref_to_string(CallDepthLval, CallDepthStr),
string__append_list([
"\t\t", EventNumStr, " = MR_trace_event_number;\n",
"\t\t", CallNumStr, " = MR_trace_incr_seq();\n",
"\t\t", CallDepthStr, " = MR_trace_incr_depth();"
], FillThreeSlots),
(
MaybeIoSeqSlot = yes(IoSeqLval),
trace__stackref_to_string(IoSeqLval, IoSeqStr),
string__append_list([
FillThreeSlots, "\n",
"\t\t", IoSeqStr, " = MR_io_tabling_counter;"
], FillSlotsUptoIoSeq)
;
MaybeIoSeqSlot = no,
FillSlotsUptoIoSeq = FillThreeSlots
),
(
MaybeRedoLabel = yes(RedoLayoutLabel),
trace__redo_layout_slot(CodeModel, RedoLayoutLval),
trace__stackref_to_string(RedoLayoutLval, RedoLayoutStr),
LayoutAddrStr =
layout_out__make_label_layout_name(RedoLayoutLabel),
string__append_list([
FillSlotsUptoIoSeq, "\n",
"\t\t", RedoLayoutStr,
" = (MR_Word) (const MR_Word *) &",
LayoutAddrStr, ";"
], FillSlotsUptoRedo),
MaybeLayoutLabel = yes(RedoLayoutLabel)
;
MaybeRedoLabel = no,
FillSlotsUptoRedo = FillSlotsUptoIoSeq,
MaybeLayoutLabel = no
),
(
% This could be done by generating proper LLDS instead of C.
% However, in shallow traced code we want to execute this
% only when the caller is deep traced, and everything inside
% that test must be in C code.
MaybeTrailLvals = yes(TrailLval - TicketLval),
trace__stackref_to_string(TrailLval, TrailLvalStr),
trace__stackref_to_string(TicketLval, TicketLvalStr),
string__append_list([
FillSlotsUptoRedo, "\n",
"\t\tMR_mark_ticket_stack(", TicketLvalStr, ");\n",
"\t\tMR_store_ticket(", TrailLvalStr, ");"
], FillSlotsUptoTrail)
;
MaybeTrailLvals = no,
FillSlotsUptoTrail = FillSlotsUptoRedo
),
(
MaybeFromFullSlot = yes(CallFromFullSlot),
trace__stackref_to_string(CallFromFullSlot,
CallFromFullSlotStr),
string__append_list([
"\t\t", CallFromFullSlotStr, " = MR_trace_from_full;\n",
"\t\tif (MR_trace_from_full) {\n",
FillSlotsUptoTrail, "\n",
"\t\t} else {\n",
"\t\t\t", CallDepthStr, " = MR_trace_call_depth;\n",
"\t\t}"
], TraceStmt1)
;
MaybeFromFullSlot = no,
TraceStmt1 = FillSlotsUptoTrail
),
TraceCode1 = node([
pragma_c([], [pragma_c_raw_code(TraceStmt1)],
will_not_call_mercury, no, MaybeLayoutLabel, no, yes)
- ""
]),
(
MaybeMaxfrLval = yes(MaxfrLval),
TraceCode2 = node([
assign(MaxfrLval, lval(maxfr)) - "save initial maxfr"
])
;
MaybeMaxfrLval = no,
TraceCode2 = empty
),
(
MaybeCallTableLval = yes(CallTableLval),
trace__stackref_to_string(CallTableLval, CallTableLvalStr),
string__append_list([
"\t\t", CallTableLvalStr, " = 0;"
], TraceStmt3),
TraceCode3 = node([
pragma_c([], [pragma_c_raw_code(TraceStmt3)],
will_not_call_mercury, no, no, no, yes) - ""
])
;
MaybeCallTableLval = no,
TraceCode3 = empty
),
TraceCode = tree(TraceCode1, tree(TraceCode2, TraceCode3))
}.
trace__prepare_for_call(TraceCode) -->
code_info__get_maybe_trace_info(MaybeTraceInfo),
code_info__get_proc_model(CodeModel),
{
MaybeTraceInfo = yes(TraceInfo)
->
MaybeFromFullSlot = TraceInfo ^ from_full_lval,
trace__call_depth_slot(CodeModel, CallDepthLval),
trace__stackref_to_string(CallDepthLval, CallDepthStr),
string__append_list([
"MR_trace_reset_depth(", CallDepthStr, ");\n"
], ResetDepthStmt),
(
MaybeFromFullSlot = yes(_),
ResetFromFullStmt = "MR_trace_from_full = FALSE;\n"
;
MaybeFromFullSlot = no,
ResetFromFullStmt = "MR_trace_from_full = TRUE;\n"
),
TraceCode = node([
c_code(ResetFromFullStmt) - "",
c_code(ResetDepthStmt) - ""
])
;
TraceCode = empty
}.
trace__maybe_generate_internal_event_code(Goal, Code) -->
code_info__get_maybe_trace_info(MaybeTraceInfo),
(
{ MaybeTraceInfo = yes(TraceInfo) }
->
{ Goal = _ - GoalInfo },
{ goal_info_get_goal_path(GoalInfo, Path) },
{
Path = [LastStep | _],
(
LastStep = switch(_, _),
PortPrime = switch
;
LastStep = disj(_),
PortPrime = disj
;
LastStep = ite_cond,
PortPrime = ite_cond
;
LastStep = ite_then,
PortPrime = ite_then
;
LastStep = ite_else,
PortPrime = ite_else
;
LastStep = neg,
PortPrime = neg_enter
)
->
Port = PortPrime
;
error("trace__generate_internal_event_code: bad path")
},
(
{ trace_needs_port(TraceInfo ^ trace_level,
TraceInfo ^ trace_suppress_items, Port) = yes }
->
{ goal_info_get_pre_deaths(GoalInfo, PreDeaths) },
{ goal_info_get_context(GoalInfo, Context) },
trace__generate_event_code(Port,
internal(Path, PreDeaths), TraceInfo,
Context, _, _, Code)
;
{ Code = empty }
)
;
{ Code = empty }
).
trace__maybe_generate_negated_event_code(Goal, NegPort, Code) -->
code_info__get_maybe_trace_info(MaybeTraceInfo),
(
{ MaybeTraceInfo = yes(TraceInfo) },
{
NegPort = neg_failure,
Port = neg_failure
;
NegPort = neg_success,
Port = neg_success
},
{ trace_needs_port(TraceInfo ^ trace_level,
TraceInfo ^ trace_suppress_items, Port) = yes }
->
{ Goal = _ - GoalInfo },
{ goal_info_get_goal_path(GoalInfo, Path) },
{ goal_info_get_context(GoalInfo, Context) },
trace__generate_event_code(Port, negation_end(Path),
TraceInfo, Context, _, _, Code)
;
{ Code = empty }
).
trace__maybe_generate_pragma_event_code(PragmaPort, Context, Code) -->
code_info__get_maybe_trace_info(MaybeTraceInfo),
(
{ MaybeTraceInfo = yes(TraceInfo) },
{ trace__convert_nondet_pragma_port_type(PragmaPort, Port) },
{ trace_needs_port(TraceInfo ^ trace_level,
TraceInfo ^ trace_suppress_items, Port) = yes }
->
trace__generate_event_code(Port, nondet_pragma, TraceInfo,
Context, _, _, Code)
;
{ Code = empty }
).
trace__generate_external_event_code(ExternalPort, TraceInfo, Context,
MaybeExternalInfo) -->
{ trace__convert_external_port_type(ExternalPort, Port) },
(
{ trace_needs_port(TraceInfo ^ trace_level,
TraceInfo ^ trace_suppress_items, Port) = yes }
->
trace__generate_event_code(Port, external, TraceInfo,
Context, Label, TvarDataMap, Code),
{ MaybeExternalInfo = yes(external_event_info(Label,
TvarDataMap, Code)) }
;
{ MaybeExternalInfo = no }
).
:- pred trace__generate_event_code(trace_port::in, trace_port_info::in,
trace_info::in, prog_context::in, label::out,
map(tvar, set(layout_locn))::out, code_tree::out,
code_info::in, code_info::out) is det.
trace__generate_event_code(Port, PortInfo, TraceInfo, Context,
Label, TvarDataMap, Code) -->
code_info__get_next_label(Label),
code_info__get_known_variables(LiveVars0),
(
{ PortInfo = external },
{ LiveVars = LiveVars0 },
{ Path = [] }
;
{ PortInfo = internal(Path, PreDeaths) },
code_info__current_resume_point_vars(ResumeVars),
{ set__difference(PreDeaths, ResumeVars, RealPreDeaths) },
{ set__to_sorted_list(RealPreDeaths, RealPreDeathList) },
{ list__delete_elems(LiveVars0, RealPreDeathList, LiveVars) }
;
{ PortInfo = negation_end(Path) },
{ LiveVars = LiveVars0 }
;
{ PortInfo = nondet_pragma },
{ LiveVars = [] },
{ Port = nondet_pragma_first ->
Path = [first]
; Port = nondet_pragma_later ->
Path = [later]
;
error("bad nondet pragma port")
}
),
code_info__get_varset(VarSet),
code_info__get_instmap(InstMap),
{ set__init(TvarSet0) },
trace__produce_vars(LiveVars, VarSet, InstMap, TvarSet0, TvarSet,
VarInfoList, ProduceCode),
code_info__max_reg_in_use(MaxReg),
code_info__get_max_reg_in_use_at_trace(MaxTraceReg0),
( { MaxTraceReg0 < MaxReg } ->
code_info__set_max_reg_in_use_at_trace(MaxReg)
;
[]
),
code_info__variable_locations(VarLocs),
code_info__get_proc_info(ProcInfo),
{
set__to_sorted_list(TvarSet, TvarList),
continuation_info__find_typeinfos_for_tvars(TvarList,
VarLocs, ProcInfo, TvarDataMap),
set__list_to_set(VarInfoList, VarInfoSet),
LayoutLabelInfo = layout_label_info(VarInfoSet, TvarDataMap),
LabelStr = layout_out__make_label_layout_name(Label),
DeclStmt = "\t\tMR_Code *MR_jumpaddr;\n",
SaveStmt = "\t\tMR_save_transient_registers();\n",
RestoreStmt = "\t\tMR_restore_transient_registers();\n",
GotoStmt = "\t\tif (MR_jumpaddr != NULL) MR_GOTO(MR_jumpaddr);"
},
{ string__append_list([
"\t\tMR_jumpaddr = MR_trace(\n",
"\t\t\t(const MR_Label_Layout *)\n",
"\t\t\t&", LabelStr, ");\n"],
CallStmt) },
code_info__add_trace_layout_for_label(Label, Context, Port, Path,
LayoutLabelInfo),
(
{ Port = fail },
{ TraceInfo ^ redo_label = yes(RedoLabel) }
->
% The layout information for the redo event is the same as
% for the fail event; all the non-clobbered inputs in their
% stack slots. It is convenient to generate this common layout
% when the code generator state is set up for the fail event;
% generating it for the redo event would be much harder.
% On the other hand, the address of the layout structure
% for the redo event should be put into its fixed stack slot
% at procedure entry. Therefore trace__setup reserves a label
% for the redo event, whose layout information is filled in
% when we get to the fail event.
code_info__add_trace_layout_for_label(RedoLabel, Context, redo,
Path, LayoutLabelInfo)
;
[]
),
{
string__append_list([DeclStmt, SaveStmt, CallStmt, RestoreStmt,
GotoStmt], TraceStmt),
TraceCode =
node([
label(Label)
- "A label to hang trace liveness on",
% Referring to the label from the pragma_c
% prevents the label from being renamed
% or optimized away.
% The label is before the trace code
% because sometimes this pair is preceded
% by another label, and this way we can
% eliminate this other label.
pragma_c([], [pragma_c_raw_code(TraceStmt)],
may_call_mercury, no, yes(Label), no, yes)
- ""
]),
Code = tree(ProduceCode, TraceCode)
}.
trace__maybe_setup_redo_event(TraceInfo, Code) :-
TraceRedoLabel = TraceInfo ^ redo_label,
( TraceRedoLabel = yes(_) ->
MaybeFromFullSlot = TraceInfo ^ from_full_lval,
(
MaybeFromFullSlot = yes(Lval),
% The code in the runtime looks for the from-full
% flag in framevar 5; see the comment before
% trace__reserved_slots.
require(unify(Lval, framevar(5)),
"from-full flag not stored in expected slot"),
Code = node([
mkframe(temp_frame(nondet_stack_proc),
do_trace_redo_fail_shallow)
- "set up shallow redo event"
])
;
MaybeFromFullSlot = no,
Code = node([
mkframe(temp_frame(nondet_stack_proc),
do_trace_redo_fail_deep)
- "set up deep redo event"
])
)
;
Code = empty
).
:- pred trace__produce_vars(list(prog_var)::in, prog_varset::in, instmap::in,
set(tvar)::in, set(tvar)::out, list(var_info)::out, code_tree::out,
code_info::in, code_info::out) is det.
trace__produce_vars([], _, _, Tvars, Tvars, [], empty) --> [].
trace__produce_vars([Var | Vars], VarSet, InstMap, Tvars0, Tvars,
[VarInfo | VarInfos], tree(VarCode, VarsCode)) -->
code_info__produce_variable_in_reg_or_stack(Var, VarCode, Lval),
code_info__variable_type(Var, Type),
code_info__get_module_info(ModuleInfo),
{
( varset__search_name(VarSet, Var, SearchName) ->
Name = SearchName
;
Name = ""
),
instmap__lookup_var(InstMap, Var, Inst),
( inst_match__inst_is_ground(ModuleInfo, Inst) ->
LldsInst = ground
;
LldsInst = partial(Inst)
),
LiveType = var(Var, Name, Type, LldsInst),
VarInfo = var_info(direct(Lval), LiveType),
type_util__real_vars(Type, TypeVars),
set__insert_list(Tvars0, TypeVars, Tvars1)
},
trace__produce_vars(Vars, VarSet, InstMap, Tvars1, Tvars,
VarInfos, VarsCode).
%-----------------------------------------------------------------------------%
:- pred trace__build_fail_vars(list(prog_var)::in, list(inst)::in,
list(arg_info)::in, module_info::in, list(prog_var)::out) is semidet.
trace__build_fail_vars([], [], [], _, []).
trace__build_fail_vars([Var | Vars], [Inst | Insts], [Info | Infos],
ModuleInfo, FailVars) :-
trace__build_fail_vars(Vars, Insts, Infos, ModuleInfo, FailVars0),
Info = arg_info(_Loc, ArgMode),
(
ArgMode = top_in,
\+ inst_is_clobbered(ModuleInfo, Inst)
->
FailVars = [Var | FailVars0]
;
FailVars = FailVars0
).
%-----------------------------------------------------------------------------%
:- pred trace__code_model_to_string(code_model::in, string::out) is det.
trace__code_model_to_string(model_det, "MR_MODEL_DET").
trace__code_model_to_string(model_semi, "MR_MODEL_SEMI").
trace__code_model_to_string(model_non, "MR_MODEL_NON").
:- pred trace__stackref_to_string(lval::in, string::out) is det.
trace__stackref_to_string(Lval, LvalStr) :-
( Lval = stackvar(Slot) ->
string__int_to_string(Slot, SlotString),
string__append_list(["MR_stackvar(", SlotString, ")"], LvalStr)
; Lval = framevar(Slot) ->
string__int_to_string(Slot, SlotString),
string__append_list(["MR_framevar(", SlotString, ")"], LvalStr)
;
error("non-stack lval in stackref_to_string")
).
%-----------------------------------------------------------------------------%
trace__path_to_string(Path, PathStr) :-
trace__path_steps_to_strings(Path, StepStrs),
list__reverse(StepStrs, RevStepStrs),
string__append_list(RevStepStrs, PathStr).
:- pred trace__path_steps_to_strings(goal_path::in, list(string)::out) is det.
trace__path_steps_to_strings([], []).
trace__path_steps_to_strings([Step | Steps], [StepStr | StepStrs]) :-
trace__path_step_to_string(Step, StepStr),
trace__path_steps_to_strings(Steps, StepStrs).
% The inverse of this procedure is implemented in
% browser/program_representation.m, and must be updated if this
% is changed.
:- pred trace__path_step_to_string(goal_path_step::in, string::out) is det.
trace__path_step_to_string(conj(N), Str) :-
string__int_to_string(N, NStr),
string__append_list(["c", NStr, ";"], Str).
trace__path_step_to_string(disj(N), Str) :-
string__int_to_string(N, NStr),
string__append_list(["d", NStr, ";"], Str).
trace__path_step_to_string(switch(N, _), Str) :-
string__int_to_string(N, NStr),
string__append_list(["s", NStr, ";"], Str).
trace__path_step_to_string(ite_cond, "?;").
trace__path_step_to_string(ite_then, "t;").
trace__path_step_to_string(ite_else, "e;").
trace__path_step_to_string(neg, "~;").
trace__path_step_to_string(exist(cut), "q!;").
trace__path_step_to_string(exist(no_cut), "q;").
trace__path_step_to_string(first, "f;").
trace__path_step_to_string(later, "l;").
:- pred trace__convert_external_port_type(external_trace_port::in,
trace_port::out) is det.
trace__convert_external_port_type(call, call).
trace__convert_external_port_type(exit, exit).
trace__convert_external_port_type(fail, fail).
:- pred trace__convert_nondet_pragma_port_type(nondet_pragma_trace_port::in,
trace_port::out) is det.
trace__convert_nondet_pragma_port_type(nondet_pragma_first,
nondet_pragma_first).
trace__convert_nondet_pragma_port_type(nondet_pragma_later,
nondet_pragma_later).
%-----------------------------------------------------------------------------%
:- pred trace__event_num_slot(code_model::in, lval::out) is det.
:- pred trace__call_num_slot(code_model::in, lval::out) is det.
:- pred trace__call_depth_slot(code_model::in, lval::out) is det.
:- pred trace__redo_layout_slot(code_model::in, lval::out) is det.
trace__event_num_slot(CodeModel, EventNumSlot) :-
( CodeModel = model_non ->
EventNumSlot = framevar(1)
;
EventNumSlot = stackvar(1)
).
trace__call_num_slot(CodeModel, CallNumSlot) :-
( CodeModel = model_non ->
CallNumSlot = framevar(2)
;
CallNumSlot = stackvar(2)
).
trace__call_depth_slot(CodeModel, CallDepthSlot) :-
( CodeModel = model_non ->
CallDepthSlot = framevar(3)
;
CallDepthSlot = stackvar(3)
).
trace__redo_layout_slot(CodeModel, RedoLayoutSlot) :-
( CodeModel = model_non ->
RedoLayoutSlot = framevar(4)
;
error("attempt to access redo layout slot for det or semi procedure")
).
%-----------------------------------------------------------------------------%
% Information for tracing that is valid throughout the execution
% of a procedure.
:- type trace_info --->
trace_info(
trace_level :: trace_level,
trace_suppress_items :: trace_suppress_items,
from_full_lval :: maybe(lval),
% If the trace level is shallow,
% the lval of the slot that holds the
% from-full flag.
io_seq_lval :: maybe(lval),
% If the procedure has I/O state
% arguments, the lval of the slot
% that holds the initial value of the
% I/O action counter.
trail_lvals :: maybe(pair(lval)),
% If trailing is enabled, the lvals
% of the slots that hold the value
% of the trail pointer and the ticket
% counter at the time of the call.
maxfr_lval :: maybe(lval),
% If we reserve a slot for holding
% the value of maxfr at entry for use
% in implementing retry, the lval of
% the slot.
call_table_tip_lval :: maybe(lval),
% If we reserve a slot for holding
% the value of the call table tip
% variable, the lval of this variable.
redo_label :: maybe(label)
% If we are generating redo events,
% this has the label associated with
% the fail event, which we then reserve
% in advance, so we can put the
% address of its layout struct
% into the slot which holds the
% layout for the redo event (the
% two events have identical layouts).
).
|