1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
|
%-----------------------------------------------------------------------------%
% 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.
%-----------------------------------------------------------------------------%
%
% Main author: zs.
%
% This module performs two kinds of transformation to optimize code
% that manipulates detstack frames.
%
% The first and more common transformation transforms code such as
%
% proc_entry:
% incr_sp(N)
% stackvar(N) = succip
% if (cond) goto L1
% ...
% L1: finalization
% succip = stackvar(N)
% incr_sp(N)
% proceed
%
% into
%
% proc_entry:
% if (cond) goto L1
% incr_sp(N)
% stackvar(N) = succip
% ...
% finalization
% succip = stackvar(N)
% incr_sp(N)
% proceed
% L1: finalization
% proceed
%
% The advantage is that we don't set up the stack frame unless we need it.
%
% The actual optimization is more complex than this, because we want to delay
% the construction of the stack frame across more than one jump, if this is
% possible.
%
% The second transformation transforms code such as
%
% proc_entry:
% incr_sp(N)
% stackvar(N) = succip
% ...
% finalization
% succip = stackvar(N)
% incr_sp(N)
% goto proc_entry
%
% into
%
% proc_entry:
% incr_sp(N)
% stackvar(N) = succip
% L1:
% ...
% succip = stackvar(N)
% finalization
% goto L1
%
% The advantage is that we don't destroy the stack frame just to set it up
% again. The restore of succip can be omitted if the procedure makes no calls,
% since in that case succip must still contain the value it had when this
% procedure was called.
%
% Since the second transformation is a bigger win, we prefer to use it
% whenever both transformations are possible.
%
% NOTE: This module cannot handle code sequences of the form
%
% label1:
% label2:
%
% Jump optimization converts any gotos to label1 to gotos to label2, making
% label1 unused, and label optimization removes unused labels. (This works
% for any number of labels in a sequence, not just two.) Therefore the
% handle_options module turns on the jump and label optimizations whenever
% frame optimization is turned on.
%-----------------------------------------------------------------------------%
:- module frameopt.
:- interface.
:- import_module llds.
:- import_module bool, list.
% The first bool output says whether we performed any modifications.
% If yes, then we also introduced some extra labels that should be
% deleted. The second says whether we introduced any jumps that
% can be profitably be short-circuited.
:- pred frameopt_main(list(instruction)::in, list(instruction)::out,
bool::out, bool::out) is det.
%-----------------------------------------------------------------------------%
:- implementation.
:- import_module livemap, prog_data, opt_util, code_util, opt_debug.
:- import_module int, string, require, std_util, assoc_list, set, map, queue.
frameopt_main(Instrs0, Instrs, Mod, Jumps) :-
opt_util__get_prologue(Instrs0, ProcLabel, LabelInstr,
Comments0, Instrs1),
(
frameopt__detstack_setup(Instrs1, FrameSize, Msg, _, _, _)
->
opt_util__new_label_no(Instrs0, 1000, N0),
map__init(BlockMap0),
divide_into_basic_blocks([LabelInstr | Instrs1], ProcLabel, N0,
BasicInstrs, N1),
build_block_map(BasicInstrs, FrameSize, LabelSeq0,
BlockMap0, BlockMap1, ProcLabel, N1, N2),
analyze_block_map(LabelSeq0, BlockMap1, BlockMap2, KeepFrame),
(
KeepFrame = yes(FirstLabel - SecondLabel),
can_clobber_succip(LabelSeq0, BlockMap2,
CanClobberSuccip),
keep_frame(LabelSeq0, BlockMap2,
FirstLabel, SecondLabel, CanClobberSuccip,
BlockMap),
LabelSeq = LabelSeq0,
NewComment = comment("keeping stack frame") - "",
list__append(Comments0, [NewComment], Comments),
flatten_block_seq(LabelSeq, BlockMap, BodyInstrs),
list__append(Comments, BodyInstrs, Instrs),
Mod = yes,
Jumps = yes
;
KeepFrame = no,
( can_delay_frame(LabelSeq0, BlockMap2, yes) ->
delay_frame(LabelSeq0, BlockMap2,
FrameSize, Msg,
ProcLabel, N2, LabelSeq, BlockMap),
NewComment = comment("delaying stack frame")
- "",
list__append(Comments0, [NewComment], Comments),
flatten_block_seq(LabelSeq, BlockMap,
BodyInstrs),
list__append(Comments, BodyInstrs, Instrs),
Mod = yes,
Jumps = no
;
Instrs = Instrs0,
Mod = no,
Jumps = no
)
)
;
Instrs = Instrs0,
Mod = no,
Jumps = no
).
:- pred flatten_block_seq(list(label)::in, block_map::in,
list(instruction)::out) is det.
flatten_block_seq([], _, []).
flatten_block_seq([Label | Labels], BlockMap, Instrs) :-
flatten_block_seq(Labels, BlockMap, RestInstrs),
map__lookup(BlockMap, Label, BlockInfo),
BlockInfo = block_info(_, BlockInstrs, _, _, _),
list__append(BlockInstrs, RestInstrs, Instrs).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- type block_map == map(label, block_info).
:- type block_info
---> block_info(
label,
% The label of the first instr.
list(instruction),
% The code of the block.
list(label),
% The labels we can jump to
% (not falling through).
maybe(label),
% The label we fall through to
% (if there is one).
block_type
).
:- type block_type
---> setup % This is a block containing
% only setup instructions.
; ordinary(bool) % This block does not contain setup or
% teardown. The bool says whether the code
% in the block needs a stack frame.
; teardown(
% This block contains stack
% teardown and goto code.
list(instruction),
% the instr that restores succip (if any),
list(instruction),
% the livevals instr before the goto (if any),
instruction
% the goto instr
).
%-----------------------------------------------------------------------------%
% Add labels to the given instruction sequence so that
% every basic block has labels around it.
:- pred divide_into_basic_blocks(list(instruction)::in, proc_label::in,
int::in, list(instruction)::out, int::out) is det.
divide_into_basic_blocks([], _, N, [], N).
% Control can fall of the end of a procedure if that procedure
% ends with a call to another procedure that cannot succeed.
% This is the only situation in which the base case can be reached.
divide_into_basic_blocks([Instr0 | Instrs0], ProcLabel, N0, Instrs, N) :-
Instr0 = Uinstr0 - _Comment,
( opt_util__can_instr_branch_away(Uinstr0, yes) ->
(
Instrs0 = [Instr1 | _],
( Instr1 = label(_) - _ ->
divide_into_basic_blocks(Instrs0, ProcLabel,
N0, Instrs1, N),
Instrs = [Instr0 | Instrs1]
;
N1 is N0 + 1,
NewLabel = local(ProcLabel, N0),
NewInstr = label(NewLabel) - "",
divide_into_basic_blocks(Instrs0, ProcLabel,
N1, Instrs1, N),
Instrs = [Instr0, NewInstr | Instrs1]
)
;
Instrs0 = [],
Instrs = [Instr0],
N = N0
)
;
divide_into_basic_blocks(Instrs0, ProcLabel, N0, Instrs1, N),
Instrs = [Instr0 | Instrs1]
).
%-----------------------------------------------------------------------------%
% Given an instruction list in which labels mark the start of every
% basic block, divide it up into basic blocks of one of three types:
%
% - setup blocks, blocks that contain only stack setup instructions
% (incr_sp and assignment of succip to the bottom stack slot);
%
% - ordinary blocks that contain neither a stack setup nor a
% stack teardown;
%
% - teardown blocks that remove an existing stack frame.
%
% For such each block, create a block_info structure that gives the
% label starting the block, the instructions in the block, and its
% type. Two of the fields of the block_info structure are filled in
% with dummy values; they will be filled in for real later.
%
% Put these block_info structures into a table indexed by the label,
% and return the sequence of labels of the blocks in their original
% order.
:- pred build_block_map(list(instruction)::in, int::in, list(label)::out,
block_map::in, block_map::out, proc_label::in, int::in, int::out)
is det.
build_block_map([], _, [], BlockMap, BlockMap, _, N, N).
build_block_map([Instr0 | Instrs0], FrameSize, LabelSeq, BlockMap0, BlockMap,
ProcLabel, N0, N) :-
( Instr0 = label(Label) - _ ->
(
frameopt__detstack_setup(Instrs0, _, _, Setup,
Others, Remain)
->
% Create a block with just the Setup instructions
% in it.
BlockInfo = block_info(Label, [Instr0 | Setup],
[], no, setup),
list__append(Others, Remain, Instrs1),
(
Instrs1 = [Instr1 | _],
Instr1 = label(_) - _
->
N1 = N0,
Instrs2 = Instrs1
;
N1 is N0 + 1,
NewLabel = local(ProcLabel, N0),
NewInstr = label(NewLabel) - "",
Instrs2 = [NewInstr | Instrs1]
),
build_block_map(Instrs2, FrameSize, LabelSeq0,
BlockMap0, BlockMap1, ProcLabel, N1, N),
map__det_insert(BlockMap1, Label, BlockInfo, BlockMap),
LabelSeq = [Label | LabelSeq0]
;
frameopt__detstack_teardown(Instrs0, FrameSize,
Tail, Succip, Decrsp, Livevals, Goto, Remain)
->
list__append(Livevals, [Goto], Teardown0),
list__append(Decrsp, Teardown0, Teardown1),
list__append(Succip, Teardown1, Teardown),
( Tail = [] ->
MaybeTailInfo = no,
N1 = N0,
LabelledBlock = [Instr0 | Teardown],
TeardownLabel = Label,
TeardownInfo = block_info(TeardownLabel,
LabelledBlock, [], no,
teardown(Succip, Livevals, Goto))
;
block_needs_frame(Tail, Needs),
TailInfo = block_info(Label, [Instr0 | Tail],
[], no, ordinary(Needs)),
MaybeTailInfo = yes(TailInfo - Label),
N1 is N0 + 1,
NewLabel = local(ProcLabel, N0),
NewInstr = label(NewLabel) - "",
LabelledBlock = [NewInstr | Teardown],
TeardownLabel = NewLabel,
TeardownInfo = block_info(TeardownLabel,
LabelledBlock, [], no,
teardown(Succip, Livevals, Goto))
),
build_block_map(Remain, FrameSize, LabelSeq0,
BlockMap0, BlockMap1, ProcLabel, N1, N),
(
MaybeTailInfo = no,
map__det_insert(BlockMap1, TeardownLabel,
TeardownInfo, BlockMap),
LabelSeq = [TeardownLabel | LabelSeq0]
;
MaybeTailInfo = yes(TailInfo2 - TailLabel2),
map__det_insert(BlockMap1, TeardownLabel,
TeardownInfo, BlockMap2),
map__det_insert(BlockMap2, TailLabel2,
TailInfo2, BlockMap),
LabelSeq = [TailLabel2, TeardownLabel
| LabelSeq0]
)
;
opt_util__skip_to_next_label(Instrs0, Block, Instrs1),
block_needs_frame(Block, Needs),
BlockInfo = block_info(Label, [Instr0 | Block],
[], no, ordinary(Needs)),
build_block_map(Instrs1, FrameSize, LabelSeq0,
BlockMap0, BlockMap1, ProcLabel, N0, N),
map__det_insert(BlockMap1, Label, BlockInfo, BlockMap),
LabelSeq = [Label | LabelSeq0]
)
;
error("block does not start with label")
).
%-----------------------------------------------------------------------------%
% Does the given code start with a setup of a det stack frame? If yes,
% return the size of the frame and three instruction sequences,
% Setup, Others and Remain. Setup is the instruction sequence
% that sets up the det stack frame, Others is a sequence of
% non-interfering instructions that were interspersed with Setup
% but can be moved after Setup, and Remain is all remaining
% instructions.
:- pred frameopt__detstack_setup(list(instruction)::in, int::out, string::out,
list(instruction)::out, list(instruction)::out, list(instruction)::out)
is semidet.
frameopt__detstack_setup(Instrs0, FrameSize, Msg, Setup, Others, Remain) :-
opt_util__gather_comments(Instrs0, Others0, Instrs1),
Instrs1 = [SetupInstr1 | Instrs2],
SetupInstr1 = incr_sp(FrameSize, Msg) - _,
frameopt__detstack_setup_2(Instrs2, FrameSize, SetupInstr2,
Others0, Others, Remain),
Setup = [SetupInstr1, SetupInstr2].
:- pred frameopt__detstack_setup_2(list(instruction)::in, int::in,
instruction::out, list(instruction)::in, list(instruction)::out,
list(instruction)::out) is semidet.
frameopt__detstack_setup_2([Instr0 | Instrs0], FrameSize, Setup,
Others0, Others, Remain) :-
( Instr0 = assign(Lval, Rval) - _ ->
(
Lval = stackvar(FrameSize),
Rval = lval(succip)
->
Others = Others0,
Setup = Instr0,
Remain = Instrs0
;
Lval \= succip,
Lval \= stackvar(FrameSize)
->
list__append(Others0, [Instr0], Others1),
frameopt__detstack_setup_2(Instrs0, FrameSize, Setup,
Others1, Others, Remain)
;
fail
)
; Instr0 = comment(_) - _ ->
list__append(Others0, [Instr0], Others1),
frameopt__detstack_setup_2(Instrs0, FrameSize, Setup,
Others1, Others, Remain)
;
fail
).
%-----------------------------------------------------------------------------%
% Does the following block contain a teardown of a det stack frame,
% and a proceed or tailcall? If yes, we return
%
% - the instruction that restores succip as Succip
% - the decr_sp instruction as Decrsp
% - the livevals instruction as Livevals
% - the goto instruction as Goto
%
% The first three can appear in any order or may be missing, due to
% value numbering. This is also why we allow the teardown instructions
% to be interleaved with instructions that do not access the stack;
% any such instructions are returned as Extra. Remain is all the
% instructions after the teardown.
:- pred frameopt__detstack_teardown(list(instruction)::in, int::in,
list(instruction)::out, list(instruction)::out,
list(instruction)::out, list(instruction)::out,
instruction::out, list(instruction)::out) is semidet.
frameopt__detstack_teardown([Instr0 | Instrs0], FrameSize,
Extra, Succip, Decrsp, Livevals, Goto, Remain) :-
(
Instr0 = label(_) - _
->
fail
;
frameopt__detstack_teardown_2([Instr0 | Instrs0], FrameSize,
[], [], [], [],
ExtraPrime, SuccipPrime, DecrspPrime, LivevalsPrime,
GotoPrime, RemainPrime)
->
Extra = ExtraPrime,
Succip = SuccipPrime,
Decrsp = DecrspPrime,
Livevals = LivevalsPrime,
Goto = GotoPrime,
Remain = RemainPrime
;
frameopt__detstack_teardown(Instrs0, FrameSize,
Extra1, Succip, Decrsp, Livevals, Goto, Remain),
Extra = [Instr0 | Extra1]
).
:- pred frameopt__detstack_teardown_2(list(instruction)::in, int::in,
list(instruction)::in, list(instruction)::in,
list(instruction)::in, list(instruction)::in,
list(instruction)::out, list(instruction)::out,
list(instruction)::out, list(instruction)::out,
instruction::out, list(instruction)::out) is semidet.
frameopt__detstack_teardown_2(Instrs0, FrameSize,
Extra0, Succip0, Decrsp0, Livevals0,
Extra, Succip, Decrsp, Livevals, Goto, Remain) :-
opt_util__skip_comments(Instrs0, Instrs1),
Instrs1 = [Instr1 | Instrs2],
Instr1 = Uinstr1 - _,
(
Uinstr1 = assign(Lval, Rval),
(
Lval = succip,
Rval = lval(stackvar(FrameSize))
->
Succip0 = [],
Decrsp0 = [],
Succip1 = [Instr1],
frameopt__detstack_teardown_2(Instrs2, FrameSize,
Extra0, Succip1, Decrsp0, Livevals0,
Extra, Succip, Decrsp, Livevals, Goto, Remain)
;
opt_util__lval_refers_stackvars(Lval, no),
opt_util__rval_refers_stackvars(Rval, no),
list__append(Extra0, [Instr1], Extra1),
frameopt__detstack_teardown_2(Instrs2, FrameSize,
Extra1, Succip0, Decrsp0, Livevals0,
Extra, Succip, Decrsp, Livevals, Goto, Remain)
)
;
Uinstr1 = decr_sp(FrameSize),
Decrsp0 = [],
Decrsp1 = [Instr1],
frameopt__detstack_teardown_2(Instrs2, FrameSize,
Extra0, Succip0, Decrsp1, Livevals0,
Extra, Succip, Decrsp, Livevals, Goto, Remain)
;
Uinstr1 = livevals(_),
Livevals0 = [],
Livevals1 = [Instr1],
frameopt__detstack_teardown_2(Instrs2, FrameSize,
Extra0, Succip0, Decrsp0, Livevals1,
Extra, Succip, Decrsp, Livevals, Goto, Remain)
;
Uinstr1 = goto(_),
Decrsp0 = [_],
Extra = Extra0,
Succip = Succip0,
Decrsp = Decrsp0,
Livevals = Livevals0,
Goto = Instr1,
Remain = Instrs2
).
%-----------------------------------------------------------------------------%
% Does an ordinary block with the given content need a stack frame?
:- pred block_needs_frame(list(instruction)::in, bool::out) is det.
block_needs_frame(Instrs, NeedsFrame) :-
opt_util__block_refers_stackvars(Instrs, ReferStackVars),
( ReferStackVars = yes ->
NeedsFrame = yes
;
(
list__member(Instr, Instrs),
Instr = Uinstr - _,
(
Uinstr = call(_, _, _, _, _)
;
Uinstr = mkframe(_, _)
;
Uinstr = c_code(_)
;
Uinstr = pragma_c(_, _, MayCallMercury,
MaybeFixed, _, NeedStack),
(
MayCallMercury = may_call_mercury
;
MaybeFixed = yes(_)
;
NeedStack = yes
)
)
->
NeedsFrame = yes
;
NeedsFrame = no
)
).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% For each block in the given sequence, whose block_info structures
% in the given block map have been partially filled in, fill in the
% remaining two fields. These two fields give the labels the block
% can branch to on the side (this includes return addresses for
% calls), and the label if any to which it falls through.
%
% Also decide whether the optimization we want to apply is keeping
% the stack frame for recursive tail calls once it has been set up
% by the initial entry to the procedure, or delaying the creation of
% the stack frame as long as possible. We want to do the former
% whenever we find at least one teardown block that branches back
% to the beginning of the procedure; in such cases we return the
% the label starting the procedure and the label that should replace
% it in tailcalls that avoid the stack teardown, which is the label
% immediately after the initial stack setup block.
:- pred analyze_block_map(list(label)::in, block_map::in,
block_map::out, maybe(pair(label))::out) is det.
analyze_block_map(LabelSeq, BlockMap0, BlockMap, KeepFrameData) :-
(
LabelSeq = [FirstLabel, SecondLabel | _],
map__search(BlockMap0, FirstLabel, FirstBlockInfo),
FirstBlockInfo = block_info(FirstLabel, _, _, _, setup)
->
analyze_block_map_2(LabelSeq, BlockMap0, FirstLabel,
BlockMap, no, KeepFrame),
( KeepFrame = yes ->
KeepFrameData = yes(FirstLabel - SecondLabel)
;
KeepFrameData = no
)
;
error("bad data in analyze_block_map")
).
:- pred analyze_block_map_2(list(label)::in, block_map::in, label::in,
block_map::out, bool::in, bool::out) is det.
analyze_block_map_2([], BlockMap, _, BlockMap, KeepFrame, KeepFrame).
analyze_block_map_2([Label | Labels], BlockMap0, FirstLabel, BlockMap,
KeepFrame0, KeepFrame) :-
map__lookup(BlockMap0, Label, BlockInfo0),
BlockInfo0 = block_info(BlockLabel, BlockInstrs, _, _, Type),
(
Label = BlockLabel, % sanity check
list__last(BlockInstrs, LastInstr)
->
LastInstr = LastUinstr - _,
possible_targets(LastUinstr, SideLabels),
(
opt_util__can_instr_fall_through(LastUinstr, yes),
Labels = [NextLabel | _]
->
MaybeFallThrough = yes(NextLabel)
;
MaybeFallThrough = no
),
(
LastUinstr = goto(label(GotoLabel)),
same_label_ref(FirstLabel, GotoLabel)
->
KeepFrame1 = yes
;
KeepFrame1 = KeepFrame0
)
;
error("bad data in analyze_block_map_2")
),
BlockInfo = block_info(BlockLabel, BlockInstrs, SideLabels,
MaybeFallThrough, Type),
map__det_update(BlockMap0, Label, BlockInfo, BlockMap1),
analyze_block_map_2(Labels, BlockMap1, FirstLabel, BlockMap,
KeepFrame1, KeepFrame).
% The form of a label used in a tailcall may be different from
% the form used in the initial label. The initial label may be
% exported from the Mercury module or possibly from the C module,
% while the label used in the tailcall may use a more local form
% for better performance.
%
% This predicate tests whether the second label (from the tailcall)
% is a proper reference to the first label (from the initial label
% instruction).
:- pred same_label_ref(label::in, label::in) is semidet.
same_label_ref(exported(ProcLabel), exported(ProcLabel)).
same_label_ref(exported(ProcLabel), c_local(ProcLabel)).
same_label_ref(exported(ProcLabel), local(ProcLabel)).
same_label_ref(local(ProcLabel), c_local(ProcLabel)).
same_label_ref(local(ProcLabel), local(ProcLabel)).
same_label_ref(c_local(ProcLabel), c_local(ProcLabel)).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
:- pred can_clobber_succip(list(label)::in, block_map::in, bool::out) is det.
can_clobber_succip([], _BlockMap, no).
can_clobber_succip([Label | Labels], BlockMap, CanClobberSuccip) :-
map__lookup(BlockMap, Label, BlockInfo),
BlockInfo = block_info(_, Instrs, _, _, _),
(
list__member(Instr, Instrs),
Instr = Uinstr - _,
(
Uinstr = call(_, _, _, _, _)
;
% Only may_call_mercury pragma_c's can clobber succip.
Uinstr = pragma_c(_, _, may_call_mercury, _, _, _)
)
->
CanClobberSuccip = yes
;
can_clobber_succip(Labels, BlockMap, CanClobberSuccip)
).
%-----------------------------------------------------------------------------%
% Transform the given block sequence to effect the optimization
% of keeping the stack frame for recursive tail calls once it has
% been set up by the initial entry to the procedure.
% The two label arguments are the label starting the procedure
% (a form of which appears in existing tailcalls) and the label that
% should replace it in tailcalls that avoid the stack teardown.
:- pred keep_frame(list(label)::in, block_map::in, label::in, label::in,
bool::in, block_map::out) is det.
keep_frame([], BlockMap, _, _, _, BlockMap).
keep_frame([Label | Labels], BlockMap0, FirstLabel, SecondLabel,
CanClobberSuccip, BlockMap) :-
map__lookup(BlockMap0, Label, BlockInfo0),
(
BlockInfo0 = block_info(Label, OrigInstrs, [_], no,
teardown(Succip, Livevals, Goto)),
Goto = goto(label(GotoLabel)) - Comment,
same_label_ref(FirstLabel, GotoLabel)
->
(
OrigInstrs = [OrigInstr0 | _],
OrigInstr0 = label(_) - _
->
OrigLabelInstr = OrigInstr0
;
error("block does not begin with label")
),
string__append(Comment, " (keeping frame)", NewComment),
NewGoto = goto(label(SecondLabel)) - NewComment,
list__append(Livevals, [NewGoto], LivevalsGoto),
( CanClobberSuccip = yes ->
list__append(Succip, LivevalsGoto, BackInstrs)
;
BackInstrs = LivevalsGoto
),
Instrs = [OrigLabelInstr | BackInstrs],
BlockInfo = block_info(Label, Instrs, [SecondLabel], no,
ordinary(yes)),
map__det_update(BlockMap0, Label, BlockInfo, BlockMap1)
;
BlockMap1 = BlockMap0
),
keep_frame(Labels, BlockMap1, FirstLabel, SecondLabel,
CanClobberSuccip, BlockMap).
:- pred pick_last(list(T)::in, list(T)::out, T::out) is det.
pick_last([], _, _) :-
error("empty list in pick_last").
pick_last([First | Rest], NonLast, Last) :-
( Rest = [] ->
NonLast = [],
Last = First
;
pick_last(Rest, NonLast0, Last),
NonLast = [First | NonLast0]
).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% Check that we can use the delay_frame transformation. This requires
% that only the first block is of the setup type, and that the
% second block is of the ordinary type. Since the transformation
% is a null operation if the second block needs a stack frame,
% we lie a bit and say that the transformation is not applicable
% in such cases.
:- pred can_delay_frame(list(label)::in, block_map::in, bool::in) is semidet.
can_delay_frame([], _, _).
can_delay_frame([Label | Labels], BlockMap, First) :-
map__lookup(BlockMap, Label, BlockInfo),
BlockInfo = block_info(_, _, _, MaybeFallThrough, BlockType),
( BlockType = setup ->
First = yes,
MaybeFallThrough = yes(FallThrough),
map__lookup(BlockMap, FallThrough, FallThroughBlockInfo),
FallThroughBlockInfo = block_info(_, _, _, _, FallThroughType),
FallThroughType = ordinary(no)
;
can_delay_frame(Labels, BlockMap, no)
).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
% The data structures used in the delaying optimizations:
% map__search(RevMap, Label, SideLabels) should be true
% if the block started by Label can be reached via jump
% (i.e. not fallthrough) from the labels in SideLabels.
:- type rev_map == map(label, list(label)).
% map__search(ParMap, Label, ParallelLabel) should be true if
% Label starts a teardown block and ParallelLabel starts its parallel
% (i.e. a copy without the stack teardown code and therefore an
% ordinary block).
:- type par_map == map(label, label).
% set__member(Label, FallIntoParallel) should be true if
% Label starts a teardown block and the immediately previous block
% does not have a stack frame and falls through into the teardown
% block.
%
% If it is true, then we will put the new ParallelLabel block
% immediately before the Label block; if it is false, we will put it
% immediately after. (Both teardown blocks and their parallels
% end with a goto, so the first block cannot fall through to the
% second, nor can the presence of the second block prevent any
% fallthrough from the first block to some other block.)
%-----------------------------------------------------------------------------%
% The optimization of delaying the creation of stack frames as long
% as possible is in three main phases:
%
% - The first phase finds out which ordinary blocks need a
% a stack frame. This naturally includes blocks that access
% stackvars, and blocks that perform calls. It also includes
% blocks that jump to ordinary blocks that need a frame,
% or which are jumped to or fallen through to from ordinary
% blocks that need a stack frame. It does not include blocks
% that fall through to ordinary blocks that need a frame,
% since the frame setup code can be interposed between the
% two blocks.
%
% - The second phase gets rid of the frame setup code in the
% initial setup block, but its main task is to transform
% ordinary blocks that do not need a frame. Such blocks cannot
% directly jump to ordinary blocks that need a frame (if they
% could, they would have been marked as needing a frame too),
% but they can jump to teardown blocks that also assume the
% presence of a frame. Therefore the last instruction in such
% blocks, the only one that can jump out of the block, must be
% modified to jump to non-teardown parallels to these teardown
% blocks. These parallel blocks will be created in the third
% phase, but to make the substitution possible we allocate labels
% for them in this phase.
%
% We must also correctly process fallthrough from such blocks.
% If the block can fall through to a teardown block, we mark
% the teardown block so that its parallel will be put before it.
% If the block can fall through to an ordinary block that needs
% a frame, then we put stack frame setup code between the two
% blocks.
%
% - The third phase creates non-teardown parallels to the teardown
% blocks that need them, and puts them in their correct place,
% either just before or just after the original block.
:- pred delay_frame(list(label)::in, block_map::in, int::in, string::in,
proc_label::in, int::in, list(label)::out, block_map::out) is det.
delay_frame(LabelSeq0, BlockMap0, FrameSize, Msg, ProcLabel, N0,
LabelSeq, BlockMap) :-
map__init(RevMap0),
queue__init(Queue0),
delay_frame_init(LabelSeq0, BlockMap0, RevMap0, RevMap,
Queue0, Queue1),
set__init(FramedLabels0),
propagate_framed_labels(Queue1, BlockMap0, RevMap,
FramedLabels0, FramedLabels),
map__init(ParMap0),
set__init(FallIntoParallel0),
process_frame_delay(LabelSeq0, BlockMap0, ParMap0, FallIntoParallel0,
FramedLabels, FrameSize, Msg, ProcLabel, N0,
LabelSeq1, BlockMap1, ParMap, FallIntoParallel),
create_parallels(LabelSeq1, BlockMap1, ParMap, FallIntoParallel,
LabelSeq, BlockMap).
%-----------------------------------------------------------------------------%
% Initialize two data structures for the delaying operation.
% The first is a map showing the predecessors of each block,
% i.e. the set of blocks that can jump to each other block.
% The second is a queue of ordinary blocks that need a stack frame.
:- pred delay_frame_init(list(label)::in, block_map::in,
rev_map::in, rev_map::out, queue(label)::in, queue(label)::out) is det.
delay_frame_init([], _, RevMap, RevMap, Queue, Queue).
delay_frame_init([Label | Labels], BlockMap, RevMap0, RevMap, Queue0, Queue) :-
map__lookup(BlockMap, Label, BlockInfo),
BlockInfo = block_info(_, _, SideLabels, _, BlockType),
(
BlockType = setup,
Queue1 = Queue0
;
BlockType = ordinary(NeedsFrame),
(
NeedsFrame = no,
Queue1 = Queue0
;
NeedsFrame = yes,
queue__put(Queue0, Label, Queue1)
)
;
BlockType = teardown(_, _, _),
Queue1 = Queue0
),
rev_map_side_labels(SideLabels, Label, RevMap0, RevMap1),
delay_frame_init(Labels, BlockMap, RevMap1, RevMap, Queue1, Queue).
:- pred rev_map_side_labels(list(label)::in, label::in,
rev_map::in, rev_map::out) is det.
rev_map_side_labels([], _Label, RevMap, RevMap).
rev_map_side_labels([Label | Labels], SourceLabel, RevMap0, RevMap) :-
( map__search(RevMap0, Label, OtherSources0) ->
OtherSources = [SourceLabel | OtherSources0],
map__det_update(RevMap0, Label, OtherSources, RevMap1)
;
OtherSources = [SourceLabel],
map__det_insert(RevMap0, Label, OtherSources, RevMap1)
),
rev_map_side_labels(Labels, SourceLabel, RevMap1, RevMap).
%-----------------------------------------------------------------------------%
% Given FramedLabels0, a set of labels representing ordinary blocks
% that must have a stack frame, propagate the requirement for a stack
% frame to labels representing other ordinary blocks that
%
% - are reachable from a block in FramedLabels0, either by jump or
% by falling through, or
%
% - can perform a jump to a block in FramedLabels0.
%
% The requirement is not propagated to blocks that can fall through
% to a block in FramedLabels0, since on such paths stack frame setup
% code can be inserted between the two blocks.
:- pred propagate_framed_labels(queue(label)::in, block_map::in, rev_map::in,
set(label)::in, set(label)::out) is det.
propagate_framed_labels(Queue0, BlockMap, RevMap,
FramedLabels0, FramedLabels) :-
( queue__get(Queue0, Label, Queue1) ->
(
map__lookup(BlockMap, Label, BlockInfo),
BlockInfo = block_info(_, _, SideLabels,
MaybeFallThrough, BlockType),
BlockType = ordinary(_),
\+ set__member(Label, FramedLabels0)
->
set__insert(FramedLabels0, Label, FramedLabels1),
(
MaybeFallThrough = no,
ReachableLabels = SideLabels
;
MaybeFallThrough = yes(FallThrough),
ReachableLabels = [FallThrough | SideLabels]
),
queue__put_list(Queue1, ReachableLabels, Queue2),
( map__search(RevMap, Label, Sources) ->
queue__put_list(Queue2, Sources, Queue3)
;
Queue3 = Queue2
),
propagate_framed_labels(Queue3, BlockMap, RevMap,
FramedLabels1, FramedLabels)
;
propagate_framed_labels(Queue1, BlockMap, RevMap,
FramedLabels0, FramedLabels)
)
;
FramedLabels = FramedLabels0
).
%-----------------------------------------------------------------------------%
% The predicates process_frame_delay and transform_ordinary_block
% implement the second phase of delay_frame. For documentation,
% see the comment at the top of delay_frame.
:- pred process_frame_delay(list(label)::in, block_map::in,
par_map::in, set(label)::in,
set(label)::in, int::in, string::in, proc_label::in, int::in,
list(label)::out, block_map::out, par_map::out, set(label)::out) is det.
process_frame_delay([], BlockMap, ParMap, FallIntoParallel, _, _, _, _, _,
[], BlockMap, ParMap, FallIntoParallel).
process_frame_delay([Label0 | Labels0], BlockMap0, ParMap0, FallIntoParallel0,
FramedLabels, FrameSize, Msg, ProcLabel, N0,
Labels, BlockMap, ParMap, FallIntoParallel) :-
map__lookup(BlockMap0, Label0, BlockInfo0),
BlockInfo0 = block_info(Label0Copy, Instrs0, SideLabels0,
MaybeFallThrough0, Type),
( Label0 = Label0Copy ->
true
;
error("label in block_info is not copy")
),
(
Type = setup,
(
MaybeFallThrough0 = yes(FallThrough)
;
MaybeFallThrough0 = no,
error("no fallthrough for setup block")
),
( SideLabels0 = [] ->
true
;
error("nonempty side labels for setup block")
),
(
Instrs0 = [LabelInstrPrime | _],
LabelInstrPrime = label(_) - _
->
LabelInstr = LabelInstrPrime
;
error("setup block does not begin with label")
),
( set__member(FallThrough, FramedLabels) ->
% we can't delay the frame setup,
% so return everything unchanged
Labels = [Label0 | Labels0],
BlockMap = BlockMap0,
ParMap = ParMap0,
FallIntoParallel = FallIntoParallel0
;
BlockInfo = block_info(Label0, [LabelInstr],
SideLabels0, MaybeFallThrough0, ordinary(no)),
map__det_update(BlockMap0, Label0, BlockInfo,
BlockMap1),
process_frame_delay(Labels0, BlockMap1,
ParMap0, FallIntoParallel0, FramedLabels,
FrameSize, Msg, ProcLabel, N0,
Labels1, BlockMap, ParMap, FallIntoParallel),
Labels = [Label0 | Labels1]
)
;
Type = ordinary(_),
( set__member(Label0, FramedLabels) ->
% Every block reachable from this block, whether via
% jump or fallthrough, will be an ordinary block also
% in FramedLabels, or will be a teardown block.
% We already have a stack frame, and all our
% successors expect one, so we need not do anything.
process_frame_delay(Labels0, BlockMap0,
ParMap0, FallIntoParallel0, FramedLabels,
FrameSize, Msg, ProcLabel, N0,
Labels1, BlockMap, ParMap, FallIntoParallel),
Labels = [Label0 | Labels1]
;
% Every block reachable from this block, whether via
% jump or fallthrough, will be an ordinary block also
% not in FramedLabels, or will be a teardown block.
% The ordinary blocks are OK, since we don't have a
% stack frame and they don't expect one exither, but
% the teardown blocks are a different matter; we must
% make sure that we reach their non-teardown parallels
% instead.
transform_ordinary_block(Label0, Labels0, BlockInfo0,
BlockMap0, ParMap0, FallIntoParallel0,
FramedLabels, FrameSize, Msg, ProcLabel, N0,
Labels, BlockMap, ParMap, FallIntoParallel)
)
;
Type = teardown(_, _, _),
process_frame_delay(Labels0, BlockMap0,
ParMap0, FallIntoParallel0, FramedLabels,
FrameSize, Msg, ProcLabel, N0,
Labels1, BlockMap, ParMap, FallIntoParallel),
Labels = [Label0 | Labels1]
).
:- pred transform_ordinary_block(label::in, list(label)::in, block_info::in,
block_map::in, par_map::in, set(label)::in,
set(label)::in, int::in, string::in, proc_label::in, int::in,
list(label)::out, block_map::out, par_map::out, set(label)::out) is det.
transform_ordinary_block(Label0, Labels0, BlockInfo0, BlockMap0, ParMap0,
FallIntoParallel0, FramedLabels, FrameSize, Msg,
ProcLabel, N0, Labels, BlockMap, ParMap, FallIntoParallel) :-
BlockInfo0 = block_info(_, Instrs0, SideLabels0,
MaybeFallThrough0, Type),
mark_parallels_for_teardown(SideLabels0, SideLabels,
AssocLabelMap, BlockMap0, ProcLabel, N0, N1, ParMap0, ParMap1),
pick_last(Instrs0, PrevInstrs, LastInstr0),
map__from_assoc_list(AssocLabelMap, LabelMap),
opt_util__replace_labels_instruction(LastInstr0, LabelMap, no,
LastInstr),
list__append(PrevInstrs, [LastInstr], Instrs),
(
MaybeFallThrough0 = yes(FallThrough),
map__lookup(BlockMap0, FallThrough, FallThroughInfo),
FallThroughInfo = block_info(_, _, _, _, FallThroughType),
(
FallThroughType = setup,
error("ordinary block falls through to setup")
;
FallThroughType = ordinary(_),
FallIntoParallel1 = FallIntoParallel0,
ParMap2 = ParMap1,
( set__member(FallThrough, FramedLabels) ->
% We fall through from a block without a
% stack frame to a block which needs a
% stack frame, so we must create one.
NewLabel = local(ProcLabel, N1),
MaybeFallThrough = yes(NewLabel),
MaybeNewLabel = yes(NewLabel),
N2 is N1 + 1,
SetupCode = [
label(NewLabel)
- "late setup label",
incr_sp(FrameSize, Msg)
- "late setup",
assign(stackvar(FrameSize),
lval(succip))
- "late save"
],
SetupBlock = block_info(NewLabel, SetupCode,
[], MaybeFallThrough0, setup),
map__det_insert(BlockMap0, NewLabel,
SetupBlock, BlockMap1)
;
MaybeFallThrough = yes(FallThrough),
BlockMap1 = BlockMap0,
MaybeNewLabel = no,
N2 = N1
)
;
FallThroughType = teardown(_, _, _),
MaybeFallThrough = yes(FallThrough),
BlockMap1 = BlockMap0,
set__insert(FallIntoParallel0,
FallThrough, FallIntoParallel1),
MaybeNewLabel = no,
mark_parallel(FallThrough, _, ProcLabel, N1, N2,
ParMap1, ParMap2)
)
;
MaybeFallThrough0 = no,
MaybeFallThrough = no,
BlockMap1 = BlockMap0,
FallIntoParallel1 = FallIntoParallel0,
ParMap2 = ParMap1,
MaybeNewLabel = no,
N2 = N1
),
BlockInfo = block_info(Label0, Instrs, SideLabels,
MaybeFallThrough, Type),
map__set(BlockMap1, Label0, BlockInfo, BlockMap2),
process_frame_delay(Labels0, BlockMap2, ParMap2, FallIntoParallel1,
FramedLabels, FrameSize, Msg, ProcLabel, N2,
Labels1, BlockMap, ParMap, FallIntoParallel),
( MaybeNewLabel = yes(NewLabel2) ->
Labels = [Label0, NewLabel2 | Labels1]
;
Labels = [Label0 | Labels1]
).
%-----------------------------------------------------------------------------%
% The input is a list of labels that are jumped to from a frame
% which has no stack frame. Therefore if some of those labels start
% teardown blocks, we ensure that those blocks have non-teardown
% parallels, allocating labels for them if they haven't been allocated
% already. We return both the updated list of labels and the
% substitution (represented as an association list) that will have
% to applied to the jumping instruction.
:- pred mark_parallels_for_teardown(list(label)::in, list(label)::out,
assoc_list(label)::out, block_map::in,
proc_label::in, int::in, int::out, par_map::in, par_map::out) is det.
mark_parallels_for_teardown([], [], [], _, _, N, N, ParMap, ParMap).
mark_parallels_for_teardown([Label0 | Labels0], [Label | Labels],
[Label0 - Label | LabelMap], BlockMap,
ProcLabel, N0, N, ParMap0, ParMap) :-
map__lookup(BlockMap, Label0, BlockInfo),
BlockInfo = block_info(_, _, _, _, Type),
(
Type = setup,
error("reached setup via jump from ordinary block")
;
Type = ordinary(_),
Label = Label0,
N1 = N0,
ParMap1 = ParMap0
;
Type = teardown(_, _, _),
mark_parallel(Label0, Label, ProcLabel, N0, N1,
ParMap0, ParMap1)
),
mark_parallels_for_teardown(Labels0, Labels, LabelMap,
BlockMap, ProcLabel, N1, N, ParMap1, ParMap).
% Given the label of a teardown block, allocate a label for its
% non-teardown parallel if it doesn't already have one.
:- pred mark_parallel(label::in, label::out,
proc_label::in, int::in, int::out, par_map::in, par_map::out) is det.
mark_parallel(Label0, Label, ProcLabel, N0, N, ParMap0, ParMap) :-
( map__search(ParMap0, Label0, OldParallel) ->
Label = OldParallel,
N = N0,
ParMap = ParMap0
;
NewParallel = local(ProcLabel, N0),
Label = NewParallel,
N is N0 + 1,
map__det_insert(ParMap0, Label0, NewParallel, ParMap)
).
%-----------------------------------------------------------------------------%
% The third phase of the delay_frame optimization, creating
% the non-teardown parallel blocks.
:- pred create_parallels(list(label)::in, block_map::in, par_map::in,
set(label)::in, list(label)::out, block_map::out) is det.
create_parallels([], BlockMap, _, _, [], BlockMap).
create_parallels([Label0 | Labels0], BlockMap0, ParMap, FallIntoParallel,
Labels, BlockMap) :-
create_parallels(Labels0, BlockMap0, ParMap, FallIntoParallel,
Labels1, BlockMap1),
( map__search(ParMap, Label0, ParallelLabel) ->
map__lookup(BlockMap1, Label0, BlockInfo0),
BlockInfo0 = block_info(Label0Copy, _,
SideLabels, MaybeFallThrough, Type),
( Label0 = Label0Copy ->
true
;
error("label in block_info is not copy")
),
( MaybeFallThrough = no ->
true
;
error("block with parallel has fall through")
),
( Type = teardown(_, Livevals, Goto) ->
LabelInstr = label(ParallelLabel)
- "non-teardown parallel",
list__append(Livevals, [Goto], Replacement0),
Replacement = [LabelInstr | Replacement0],
NewBlockInfo = block_info(ParallelLabel, Replacement,
SideLabels, no, ordinary(no)),
map__det_insert(BlockMap1, ParallelLabel,
NewBlockInfo, BlockMap),
( set__member(Label0, FallIntoParallel) ->
Labels = [ParallelLabel, Label0 | Labels1]
;
Labels = [Label0, ParallelLabel | Labels1]
)
;
error("block with parallel is not teardown")
)
;
Labels = [Label0 | Labels1],
BlockMap = BlockMap1
).
%-----------------------------------------------------------------------------%
%-----------------------------------------------------------------------------%
|