1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580
|
//===- llvm/unittest/IR/BasicBlockTest.cpp - BasicBlock unit tests --------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "llvm/IR/BasicBlock.h"
#include "llvm/IR/DebugInfo.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/AsmParser/Parser.h"
#include "llvm/IR/Function.h"
#include "llvm/IR/IRBuilder.h"
#include "llvm/IR/Instruction.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/LLVMContext.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/NoFolder.h"
#include "llvm/IR/Verifier.h"
#include "llvm/Support/SourceMgr.h"
#include "gmock/gmock-matchers.h"
#include "gtest/gtest.h"
#include <memory>
using namespace llvm;
static std::unique_ptr<Module> parseIR(LLVMContext &C, const char *IR) {
SMDiagnostic Err;
std::unique_ptr<Module> Mod = parseAssemblyString(IR, Err, C);
if (!Mod)
Err.print("BasicBlockDbgInfoTest", errs());
return Mod;
}
namespace {
// We can occasionally moveAfter an instruction so that it moves to the
// position that it already resides at. This is fine -- but gets complicated
// with dbg.value intrinsics. By moving an instruction, we can end up changing
// nothing but the location of debug-info intrinsics. That has to be modelled
// by DbgVariableRecords, the dbg.value replacement.
TEST(BasicBlockDbgInfoTest, InsertAfterSelf) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()), !dbg !11
%c = add i16 %b, 1, !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
// Fetch the entry block.
BasicBlock &BB = M->getFunction("f")->getEntryBlock();
Instruction *Inst1 = &*BB.begin();
Instruction *Inst2 = &*std::next(BB.begin());
Instruction *RetInst = &*std::next(Inst2->getIterator());
EXPECT_TRUE(Inst1->hasDbgRecords());
EXPECT_TRUE(Inst2->hasDbgRecords());
EXPECT_FALSE(RetInst->hasDbgRecords());
// If we move Inst2 to be after Inst1, then it comes _immediately_ after. Were
// we in dbg.value form we would then have:
// dbg.value
// %b = add
// %c = add
// dbg.value
// Check that this is replicated by DbgVariableRecords.
Inst2->moveAfter(Inst1);
// Inst1 should only have one DbgVariableRecord on it.
EXPECT_TRUE(Inst1->hasDbgRecords());
auto Range1 = Inst1->getDbgRecordRange();
EXPECT_EQ(std::distance(Range1.begin(), Range1.end()), 1u);
// Inst2 should have none.
EXPECT_FALSE(Inst2->hasDbgRecords());
// While the return inst should now have one on it.
EXPECT_TRUE(RetInst->hasDbgRecords());
auto Range2 = RetInst->getDbgRecordRange();
EXPECT_EQ(std::distance(Range2.begin(), Range2.end()), 1u);
}
TEST(BasicBlockDbgInfoTest, SplitBasicBlockBefore) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"---(
define dso_local void @func() #0 !dbg !10 {
%1 = alloca i32, align 4
tail call void @llvm.dbg.declare(metadata ptr %1, metadata !14, metadata !DIExpression()), !dbg !16
store i32 2, ptr %1, align 4, !dbg !16
ret void, !dbg !17
}
declare void @llvm.dbg.declare(metadata, metadata, metadata) #0
attributes #0 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!2, !3, !4, !5, !6, !7, !8}
!llvm.ident = !{!9}
!0 = distinct !DICompileUnit(language: DW_LANG_C11, file: !1, producer: "dummy", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, splitDebugInlining: false, nameTableKind: None)
!1 = !DIFile(filename: "dummy", directory: "dummy")
!2 = !{i32 7, !"Dwarf Version", i32 5}
!3 = !{i32 2, !"Debug Info Version", i32 3}
!4 = !{i32 1, !"wchar_size", i32 4}
!5 = !{i32 8, !"PIC Level", i32 2}
!6 = !{i32 7, !"PIE Level", i32 2}
!7 = !{i32 7, !"uwtable", i32 2}
!8 = !{i32 7, !"frame-pointer", i32 2}
!9 = !{!"dummy"}
!10 = distinct !DISubprogram(name: "func", scope: !1, file: !1, line: 1, type: !11, scopeLine: 1, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !13)
!11 = !DISubroutineType(types: !12)
!12 = !{null}
!13 = !{}
!14 = !DILocalVariable(name: "a", scope: !10, file: !1, line: 2, type: !15)
!15 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
!16 = !DILocation(line: 2, column: 6, scope: !10)
!17 = !DILocation(line: 3, column: 2, scope: !10)
)---");
ASSERT_TRUE(M);
Function *F = M->getFunction("func");
BasicBlock &BB = F->getEntryBlock();
auto I = std::prev(BB.end(), 2); // store i32 2, ptr %1.
BB.splitBasicBlockBefore(I, "before");
BasicBlock &BBBefore = F->getEntryBlock();
auto I2 = std::prev(BBBefore.end()); // br label %1 (new).
ASSERT_TRUE(I2->hasDbgRecords());
}
TEST(BasicBlockDbgInfoTest, MarkerOperations) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()), !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
// Fetch the entry block,
BasicBlock &BB = M->getFunction("f")->getEntryBlock();
EXPECT_EQ(BB.size(), 2u);
// Fetch out our two markers,
Instruction *Instr1 = &*BB.begin();
Instruction *Instr2 = Instr1->getNextNode();
DbgMarker *Marker1 = Instr1->DebugMarker;
DbgMarker *Marker2 = Instr2->DebugMarker;
// There's no TrailingDbgRecords marker allocated yet.
DbgMarker *EndMarker = nullptr;
// Check that the "getMarker" utilities operate as expected.
EXPECT_EQ(BB.getMarker(Instr1->getIterator()), Marker1);
EXPECT_EQ(BB.getMarker(Instr2->getIterator()), Marker2);
EXPECT_EQ(BB.getNextMarker(Instr1), Marker2);
EXPECT_EQ(BB.getNextMarker(Instr2), EndMarker); // Is nullptr.
// There should be two DbgVariableRecords,
EXPECT_EQ(Marker1->StoredDbgRecords.size(), 1u);
EXPECT_EQ(Marker2->StoredDbgRecords.size(), 1u);
// Unlink them and try to re-insert them through the basic block.
DbgRecord *DVR1 = &*Marker1->StoredDbgRecords.begin();
DbgRecord *DVR2 = &*Marker2->StoredDbgRecords.begin();
DVR1->removeFromParent();
DVR2->removeFromParent();
EXPECT_TRUE(Marker1->StoredDbgRecords.empty());
EXPECT_TRUE(Marker2->StoredDbgRecords.empty());
// This should appear in Marker1.
BB.insertDbgRecordBefore(DVR1, BB.begin());
EXPECT_EQ(Marker1->StoredDbgRecords.size(), 1u);
EXPECT_EQ(DVR1, &*Marker1->StoredDbgRecords.begin());
// This should attach to Marker2.
BB.insertDbgRecordAfter(DVR2, &*BB.begin());
EXPECT_EQ(Marker2->StoredDbgRecords.size(), 1u);
EXPECT_EQ(DVR2, &*Marker2->StoredDbgRecords.begin());
// Now, how about removing instructions? That should cause any
// DbgVariableRecords to "fall down".
Instr1->removeFromParent();
Marker1 = nullptr;
// DbgVariableRecords should now be in Marker2.
EXPECT_EQ(BB.size(), 1u);
EXPECT_EQ(Marker2->StoredDbgRecords.size(), 2u);
// They should also be in the correct order.
SmallVector<DbgRecord *, 2> DVRs;
for (DbgRecord &DVR : Marker2->getDbgRecordRange())
DVRs.push_back(&DVR);
EXPECT_EQ(DVRs[0], DVR1);
EXPECT_EQ(DVRs[1], DVR2);
// If we remove the end instruction, the DbgVariableRecords should fall down
// into the trailing marker.
EXPECT_EQ(BB.getTrailingDbgRecords(), nullptr);
Instr2->removeFromParent();
EXPECT_TRUE(BB.empty());
EndMarker = BB.getTrailingDbgRecords();
ASSERT_NE(EndMarker, nullptr);
EXPECT_EQ(EndMarker->StoredDbgRecords.size(), 2u);
// Again, these should arrive in the correct order.
DVRs.clear();
for (DbgRecord &DVR : EndMarker->getDbgRecordRange())
DVRs.push_back(&DVR);
EXPECT_EQ(DVRs[0], DVR1);
EXPECT_EQ(DVRs[1], DVR2);
// Inserting a normal instruction at the beginning: shouldn't dislodge the
// DbgVariableRecords. It's intended to not go at the start.
Instr1->insertBefore(BB, BB.begin());
EXPECT_EQ(EndMarker->StoredDbgRecords.size(), 2u);
Instr1->removeFromParent();
// Inserting at end(): should dislodge the DbgVariableRecords, if they were
// dbg.values then they would sit "above" the new instruction.
Instr1->insertBefore(BB, BB.end());
EXPECT_EQ(Instr1->DebugMarker->StoredDbgRecords.size(), 2u);
// We should de-allocate the trailing marker when something is inserted
// at end().
EXPECT_EQ(BB.getTrailingDbgRecords(), nullptr);
// Remove Instr1: now the DbgVariableRecords will fall down again,
Instr1->removeFromParent();
EndMarker = BB.getTrailingDbgRecords();
EXPECT_EQ(EndMarker->StoredDbgRecords.size(), 2u);
// Inserting a terminator, however it's intended, should dislodge the
// trailing DbgVariableRecords, as it's the clear intention of the caller that
// this be the final instr in the block, and DbgVariableRecords aren't allowed
// to live off the end forever.
Instr2->insertBefore(BB, BB.begin());
EXPECT_EQ(Instr2->DebugMarker->StoredDbgRecords.size(), 2u);
EXPECT_EQ(BB.getTrailingDbgRecords(), nullptr);
// Teardown,
Instr1->insertBefore(BB, BB.begin());
}
TEST(BasicBlockDbgInfoTest, HeadBitOperations) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%c = add i16 %a, 1, !dbg !11
%d = add i16 %a, 1, !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
// Test that the movement of debug-data when using moveBefore etc and
// insertBefore etc are governed by the "head" bit of iterators.
BasicBlock &BB = M->getFunction("f")->getEntryBlock();
// Test that the head bit behaves as expected: it should be set when the
// code wants the _start_ of the block, but not otherwise.
EXPECT_TRUE(BB.getFirstInsertionPt().getHeadBit());
BasicBlock::iterator BeginIt = BB.begin();
EXPECT_TRUE(BeginIt.getHeadBit());
// If you launder the instruction pointer through dereferencing and then
// get the iterator again with getIterator, the head bit is lost. This is
// deliberate: if you're calling getIterator, then you're requesting an
// iterator for the position of _this_ instruction, not "the start of this
// block".
BasicBlock::iterator BeginIt2 = BeginIt->getIterator();
EXPECT_FALSE(BeginIt2.getHeadBit());
// Fetch some instruction pointers.
Instruction *BInst = &*BeginIt;
Instruction *CInst = BInst->getNextNode();
Instruction *DInst = CInst->getNextNode();
// CInst should have debug-info.
ASSERT_TRUE(CInst->DebugMarker);
EXPECT_FALSE(CInst->DebugMarker->StoredDbgRecords.empty());
// If we move "c" to the start of the block, just normally, then the
// DbgVariableRecords should fall down to "d".
CInst->moveBefore(BB, BeginIt2);
EXPECT_TRUE(!CInst->DebugMarker ||
CInst->DebugMarker->StoredDbgRecords.empty());
ASSERT_TRUE(DInst->DebugMarker);
EXPECT_FALSE(DInst->DebugMarker->StoredDbgRecords.empty());
// Wheras if we move D to the start of the block with moveBeforePreserving,
// the DbgVariableRecords should move with it.
DInst->moveBeforePreserving(BB, BB.begin());
EXPECT_FALSE(DInst->DebugMarker->StoredDbgRecords.empty());
EXPECT_EQ(&*BB.begin(), DInst);
// Similarly, moveAfterPreserving "D" to "C" should move DbgVariableRecords
// with "D".
DInst->moveAfterPreserving(CInst);
EXPECT_FALSE(DInst->DebugMarker->StoredDbgRecords.empty());
// (move back to the start...)
DInst->moveBeforePreserving(BB, BB.begin());
// Current order of insts: "D -> C -> B -> Ret". DbgVariableRecords on "D".
// If we move "C" to the beginning of the block, it should go before the
// DbgVariableRecords. They'll stay on "D".
CInst->moveBefore(BB, BB.begin());
EXPECT_TRUE(!CInst->DebugMarker ||
CInst->DebugMarker->StoredDbgRecords.empty());
EXPECT_FALSE(DInst->DebugMarker->StoredDbgRecords.empty());
EXPECT_EQ(&*BB.begin(), CInst);
EXPECT_EQ(CInst->getNextNode(), DInst);
// Move back.
CInst->moveBefore(BInst->getIterator());
EXPECT_EQ(&*BB.begin(), DInst);
// Current order of insts: "D -> C -> B -> Ret". DbgVariableRecords on "D".
// Now move CInst to the position of DInst, but using getIterator instead of
// BasicBlock::begin. This signals that we want the "C" instruction to be
// immediately before "D", with any DbgVariableRecords on "D" now moving to
// "C". It's the equivalent of moving an instruction to the position between a
// run of dbg.values and the next instruction.
CInst->moveBefore(BB, DInst->getIterator());
// CInst gains the DbgVariableRecords.
EXPECT_TRUE(!DInst->DebugMarker ||
DInst->DebugMarker->StoredDbgRecords.empty());
EXPECT_FALSE(CInst->DebugMarker->StoredDbgRecords.empty());
EXPECT_EQ(&*BB.begin(), CInst);
}
TEST(BasicBlockDbgInfoTest, InstrDbgAccess) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%c = add i16 %a, 1, !dbg !11
%d = add i16 %a, 1, !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
// Check that DbgVariableRecords can be accessed from Instructions without
// digging into the depths of DbgMarkers.
BasicBlock &BB = M->getFunction("f")->getEntryBlock();
Instruction *BInst = &*BB.begin();
Instruction *CInst = BInst->getNextNode();
Instruction *DInst = CInst->getNextNode();
ASSERT_FALSE(BInst->DebugMarker);
ASSERT_TRUE(CInst->DebugMarker);
ASSERT_EQ(CInst->DebugMarker->StoredDbgRecords.size(), 1u);
DbgRecord *DVR1 = &*CInst->DebugMarker->StoredDbgRecords.begin();
ASSERT_TRUE(DVR1);
EXPECT_FALSE(BInst->hasDbgRecords());
// Clone DbgVariableRecords from one inst to another. Other arguments to clone
// are tested in DbgMarker test.
auto Range1 = BInst->cloneDebugInfoFrom(CInst);
EXPECT_EQ(BInst->DebugMarker->StoredDbgRecords.size(), 1u);
DbgRecord *DVR2 = &*BInst->DebugMarker->StoredDbgRecords.begin();
EXPECT_EQ(std::distance(Range1.begin(), Range1.end()), 1u);
EXPECT_EQ(&*Range1.begin(), DVR2);
EXPECT_NE(DVR1, DVR2);
// We should be able to get a range over exactly the same information.
auto Range2 = BInst->getDbgRecordRange();
EXPECT_EQ(Range1.begin(), Range2.begin());
EXPECT_EQ(Range1.end(), Range2.end());
// We should be able to query if there are DbgVariableRecords,
EXPECT_TRUE(BInst->hasDbgRecords());
EXPECT_TRUE(CInst->hasDbgRecords());
EXPECT_FALSE(DInst->hasDbgRecords());
// Dropping should be easy,
BInst->dropDbgRecords();
EXPECT_FALSE(BInst->hasDbgRecords());
EXPECT_EQ(BInst->DebugMarker->StoredDbgRecords.size(), 0u);
// And we should be able to drop individual DbgVariableRecords.
CInst->dropOneDbgRecord(DVR1);
EXPECT_FALSE(CInst->hasDbgRecords());
EXPECT_EQ(CInst->DebugMarker->StoredDbgRecords.size(), 0u);
}
/* Let's recall the big illustration from BasicBlock::spliceDebugInfo:
Dest
|
this-block: A----A----A ====A----A----A----A---A---A
Src-block ++++B---B---B---B:::C
| |
First Last
in all it's glory. Depending on the bit-configurations for the iterator head
/ tail bits on the three named iterators, there are eight ways for a splice to
occur. To save the amount of thinking needed to pack this into one unit test,
just test the same IR eight times with difference splices. The IR shall be
thus:
define i16 @f(i16 %a) !dbg !6 {
entry:
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()), !dbg !11
br label %exit, !dbg !11
exit:
call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata !DIExpression()), !dbg !11
%c = add i16 %b, 1, !dbg !11
ret i16 0, !dbg !11
}
The iterators will be:
Dest: exit block, "c" instruction.
First: entry block, "b" instruction.
Last: entry block, branch instruction.
The numbered configurations will be:
| Dest-Head | First-Head | Last-tail
----+----------------+----------------+------------
0 | false | false | false
1 | true | false | false
2 | false | true | false
3 | true | true | false
4 | false | false | true
5 | true | false | true
6 | false | true | true
7 | true | true | true
Each numbered test scenario will also have a short explanation indicating what
this bit configuration represents.
*/
static const std::string SpliceTestIR = R"(
define i16 @f(i16 %a) !dbg !6 {
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()), !dbg !11
br label %exit, !dbg !11
exit:
call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata !DIExpression()), !dbg !11
%c = add i16 %b, 1, !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)";
class DbgSpliceTest : public ::testing::Test {
protected:
LLVMContext C;
std::unique_ptr<Module> M;
BasicBlock *BBEntry, *BBExit;
BasicBlock::iterator Dest, First, Last;
Instruction *BInst, *Branch, *CInst;
DbgVariableRecord *DVRA, *DVRB, *DVRConst;
void SetUp() override {
M = parseIR(C, SpliceTestIR.c_str());
BBEntry = &M->getFunction("f")->getEntryBlock();
BBExit = BBEntry->getNextNode();
Dest = BBExit->begin();
First = BBEntry->begin();
Last = BBEntry->getTerminator()->getIterator();
BInst = &*First;
Branch = &*Last;
CInst = &*Dest;
DVRA =
cast<DbgVariableRecord>(&*BInst->DebugMarker->StoredDbgRecords.begin());
DVRB = cast<DbgVariableRecord>(
&*Branch->DebugMarker->StoredDbgRecords.begin());
DVRConst =
cast<DbgVariableRecord>(&*CInst->DebugMarker->StoredDbgRecords.begin());
}
bool InstContainsDbgVariableRecord(Instruction *I, DbgVariableRecord *DVR) {
for (DbgRecord &D : I->getDbgRecordRange()) {
if (&D == DVR) {
// Confirm too that the links between the records are correct.
EXPECT_EQ(DVR->Marker, I->DebugMarker);
EXPECT_EQ(I->DebugMarker->MarkedInstr, I);
return true;
}
}
return false;
}
bool CheckDVROrder(Instruction *I,
SmallVector<DbgVariableRecord *> CheckVals) {
SmallVector<DbgRecord *> Vals;
for (DbgRecord &D : I->getDbgRecordRange())
Vals.push_back(&D);
EXPECT_EQ(Vals.size(), CheckVals.size());
if (Vals.size() != CheckVals.size())
return false;
for (unsigned int I = 0; I < Vals.size(); ++I) {
EXPECT_EQ(Vals[I], CheckVals[I]);
// Provide another expectation failure to let us localise what goes wrong,
// by returning a flag to the caller.
if (Vals[I] != CheckVals[I])
return false;
}
return true;
}
};
TEST_F(DbgSpliceTest, DbgSpliceTest0) {
Dest.setHeadBit(false);
First.setHeadBit(false);
Last.setTailBit(false);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from First, not including leading dbg.value, to Last, including the
trailing dbg.value. Place at Dest, between the constant dbg.value and %c.
%b, and the following dbg.value, should move, to:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on Dest, in exit block.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRB));
// DVRA, should have "fallen" onto the branch, remained in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRA));
// DVRConst should be on the moved %b instruction.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRConst));
}
TEST_F(DbgSpliceTest, DbgSpliceTest1) {
Dest.setHeadBit(true);
First.setHeadBit(false);
Last.setTailBit(false);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from First, not including leading dbg.value, to Last, including the
trailing dbg.value. Place at the head of Dest, i.e. at the very start of
BBExit, before any debug-info there. Becomes:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 Last br label %exit, !dbg !11
BBExit exit:
First %b = add i16 %a, 1, !dbg !11
DVRB call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata
!DIExpression()), !dbg !11 DVRConst call void @llvm.dbg.value(metadata i16 0,
metadata !9, metadata !DIExpression()), !dbg !11 Dest %c = add i16 %b, 1,
!dbg !11 ret i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on CInst, in exit block.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRB));
// DVRA, should have "fallen" onto the branch, remained in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRA));
// DVRConst should be behind / after the moved instructions, remain on CInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRConst));
// Order of DVRB and DVRConst should be thus:
EXPECT_TRUE(CheckDVROrder(CInst, {DVRB, DVRConst}));
}
TEST_F(DbgSpliceTest, DbgSpliceTest2) {
Dest.setHeadBit(false);
First.setHeadBit(true);
Last.setTailBit(false);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from head of First, which includes the leading dbg.value, to Last,
including the trailing dbg.value. Place in front of Dest, but after any
debug-info there. Becomes:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 DVRA call void @llvm.dbg.value(metadata i16 %a,
metadata !9, metadata !DIExpression()), !dbg !11 First %b = add i16 %a, 1,
!dbg !11 DVRB call void @llvm.dbg.value(metadata i16 %b, metadata !9,
metadata !DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret
i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
// DVRB: should be on CInst, in exit block.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRB));
// DVRA, should have transferred with the spliced instructions, remains on
// the "b" inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRA));
// DVRConst should be ahead of the moved instructions, ahead of BInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRConst));
// Order of DVRA and DVRConst should be thus:
EXPECT_TRUE(CheckDVROrder(BInst, {DVRConst, DVRA}));
}
TEST_F(DbgSpliceTest, DbgSpliceTest3) {
Dest.setHeadBit(true);
First.setHeadBit(true);
Last.setTailBit(false);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from head of First, which includes the leading dbg.value, to Last,
including the trailing dbg.value. Place at head of Dest, before any
debug-info there. Becomes:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
Last br label %exit, !dbg !11
BBExit exit:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9,
metadata !DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret
i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
// DVRB: should be on CInst, in exit block.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRB));
// DVRA, should have transferred with the spliced instructions, remains on
// the "b" inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRA));
// DVRConst should be behind the moved instructions, ahead of CInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRConst));
// Order of DVRB and DVRConst should be thus:
EXPECT_TRUE(CheckDVROrder(CInst, {DVRB, DVRConst}));
}
TEST_F(DbgSpliceTest, DbgSpliceTest4) {
Dest.setHeadBit(false);
First.setHeadBit(false);
Last.setTailBit(true);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from First, not including the leading dbg.value, to Last, but NOT
including the trailing dbg.value because the tail bit is set. Place at Dest,
after any debug-info there. Becomes:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 DVRB call void @llvm.dbg.value(metadata i16 %b,
metadata !9, metadata !DIExpression()), !dbg !11 Last br label %exit, !dbg
!11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 Dest %c =
add i16 %b, 1, !dbg !11 ret i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on Branch as before, remain in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRB));
// DVRA, should have remained in entry block, falls onto Branch inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRA));
// DVRConst should be ahead of the moved instructions, BInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRConst));
// Order of DVRA and DVRA should be thus:
EXPECT_TRUE(CheckDVROrder(Branch, {DVRA, DVRB}));
}
TEST_F(DbgSpliceTest, DbgSpliceTest5) {
Dest.setHeadBit(true);
First.setHeadBit(false);
Last.setTailBit(true);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from First, not including the leading dbg.value, to Last, but NOT
including the trailing dbg.value because the tail bit is set. Place at head
of Dest, before any debug-info there. Becomes:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 DVRB call void @llvm.dbg.value(metadata i16 %b,
metadata !9, metadata !DIExpression()), !dbg !11 Last br label %exit, !dbg
!11
BBExit exit:
First %b = add i16 %a, 1, !dbg !11
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on Branch as before, remain in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRB));
// DVRA, should have remained in entry block, falls onto Branch inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRA));
// DVRConst should be behind of the moved instructions, on CInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRConst));
// Order of DVRA and DVRB should be thus:
EXPECT_TRUE(CheckDVROrder(Branch, {DVRA, DVRB}));
}
TEST_F(DbgSpliceTest, DbgSpliceTest6) {
Dest.setHeadBit(false);
First.setHeadBit(true);
Last.setTailBit(true);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from First, including the leading dbg.value, to Last, but NOT
including the trailing dbg.value because the tail bit is set. Place at Dest,
after any debug-info there. Becomes:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRB call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata
!DIExpression()), !dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 DVRA call void @llvm.dbg.value(metadata i16 %a,
metadata !9, metadata !DIExpression()), !dbg !11 First %b = add i16 %a, 1,
!dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on Branch as before, remain in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRB));
// DVRA, should have transferred to BBExit, on B inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRA));
// DVRConst should be ahead of the moved instructions, on BInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRConst));
// Order of DVRA and DVRConst should be thus:
EXPECT_TRUE(CheckDVROrder(BInst, {DVRConst, DVRA}));
}
TEST_F(DbgSpliceTest, DbgSpliceTest7) {
Dest.setHeadBit(true);
First.setHeadBit(true);
Last.setTailBit(true);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from First, including the leading dbg.value, to Last, but NOT
including the trailing dbg.value because the tail bit is set. Place at head
of Dest, before any debug-info there. Becomes:
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRB call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata
!DIExpression()), !dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRConst call
void @llvm.dbg.value(metadata i16 0, metadata !9, metadata !DIExpression()),
!dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, First, Last);
EXPECT_EQ(BInst->getParent(), BBExit);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on Branch as before, remain in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRB));
// DVRA, should have transferred to BBExit, on B inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(BInst, DVRA));
// DVRConst should be after of the moved instructions, on CInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRConst));
}
// But wait, there's more! What if you splice a range that is empty, but
// implicitly contains debug-info? In the dbg.value design for debug-info,
// this would be an explicit range, but in DbgVariableRecord debug-info, it
// isn't. Check that if we try to do that, with differing head-bit values, that
// DbgVariableRecords are transferred.
// Test with empty transfers to Dest, with head bit set and not set.
TEST_F(DbgSpliceTest, DbgSpliceEmpty0) {
Dest.setHeadBit(false);
First.setHeadBit(false);
Last.setHeadBit(false);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from BBEntry.getFirstInsertionPt to First -- this implicitly is a
splice of DVRA, but the iterators are pointing at the same instruction. The
only difference is the setting of the head bit. Becomes;
define i16 @f(i16 %a) !dbg !6 {
First %b = add i16 %a, 1, !dbg !11
DVRB call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata
!DIExpression()), !dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 DVRA call void @llvm.dbg.value(metadata i16 %a,
metadata !9, metadata !DIExpression()), !dbg !11 Dest %c = add i16 %b, 1,
!dbg !11 ret i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, BBEntry->getFirstInsertionPt(), First);
EXPECT_EQ(BInst->getParent(), BBEntry);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on Branch as before, remain in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRB));
// DVRA, should have transferred to BBExit, on C inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRA));
// DVRConst should be ahead of the moved DbgVariableRecord, on CInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRConst));
// Order of DVRA and DVRConst should be thus:
EXPECT_TRUE(CheckDVROrder(CInst, {DVRConst, DVRA}));
}
TEST_F(DbgSpliceTest, DbgSpliceEmpty1) {
Dest.setHeadBit(true);
First.setHeadBit(false);
Last.setHeadBit(false);
/*
define i16 @f(i16 %a) !dbg !6 {
BBEntry entry:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 First %b = add i16 %a, 1, !dbg !11 DVRB call
void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata !DIExpression()),
!dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRConst call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata
!DIExpression()), !dbg !11 Dest %c = add i16 %b, 1, !dbg !11 ret i16 0,
!dbg !11
}
Splice from BBEntry.getFirstInsertionPt to First -- this implicitly is a
splice of DVRA, but the iterators are pointing at the same instruction. The
only difference is the setting of the head bit. Insert at head of Dest,
i.e. before DVRConst. Becomes;
define i16 @f(i16 %a) !dbg !6 {
First %b = add i16 %a, 1, !dbg !11
DVRB call void @llvm.dbg.value(metadata i16 %b, metadata !9, metadata
!DIExpression()), !dbg !11 Last br label %exit, !dbg !11
BBExit exit:
DVRA call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata
!DIExpression()), !dbg !11 DVRConst call void @llvm.dbg.value(metadata i16 0,
metadata !9, metadata !DIExpression()), !dbg !11 Dest %c = add i16 %b, 1,
!dbg !11 ret i16 0, !dbg !11
}
*/
BBExit->splice(Dest, BBEntry, BBEntry->getFirstInsertionPt(), First);
EXPECT_EQ(BInst->getParent(), BBEntry);
EXPECT_EQ(CInst->getParent(), BBExit);
EXPECT_EQ(Branch->getParent(), BBEntry);
// DVRB: should be on Branch as before, remain in entry block.
EXPECT_TRUE(InstContainsDbgVariableRecord(Branch, DVRB));
// DVRA, should have transferred to BBExit, on C inst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRA));
// DVRConst should be ahead of the moved DbgVariableRecord, on CInst.
EXPECT_TRUE(InstContainsDbgVariableRecord(CInst, DVRConst));
// Order of DVRA and DVRConst should be thus:
EXPECT_TRUE(CheckDVROrder(CInst, {DVRA, DVRConst}));
}
// If we splice new instructions into a block with trailing DbgVariableRecords,
// then the trailing DbgVariableRecords should get flushed back out.
TEST(BasicBlockDbgInfoTest, DbgSpliceTrailing) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
entry:
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
br label %exit
exit:
%b = add i16 %a, 1, !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
BasicBlock &Entry = M->getFunction("f")->getEntryBlock();
BasicBlock &Exit = *Entry.getNextNode();
// Begin by forcing entry block to have dangling DbgVariableRecord.
Entry.getTerminator()->eraseFromParent();
ASSERT_NE(Entry.getTrailingDbgRecords(), nullptr);
EXPECT_TRUE(Entry.empty());
// Now transfer the entire contents of the exit block into the entry.
Entry.splice(Entry.end(), &Exit, Exit.begin(), Exit.end());
// The trailing DbgVariableRecord should have been placed at the front of
// what's been spliced in.
Instruction *BInst = &*Entry.begin();
ASSERT_TRUE(BInst->DebugMarker);
EXPECT_EQ(BInst->DebugMarker->StoredDbgRecords.size(), 1u);
}
// When we remove instructions from the program, adjacent DbgVariableRecords
// coalesce together into one DbgMarker. In "old" dbg.value mode you could
// re-insert the removed instruction back into the middle of a sequence of
// dbg.values. Test that this can be replicated correctly by DbgVariableRecords
TEST(BasicBlockDbgInfoTest, RemoveInstAndReinsert) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
entry:
%qux = sub i16 %a, 0
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%foo = add i16 %a, %a
call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata !DIExpression()), !dbg !11
ret i16 1
}
declare void @llvm.dbg.value(metadata, metadata, metadata)
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
BasicBlock &Entry = M->getFunction("f")->getEntryBlock();
// Fetch the relevant instructions from the converted function.
Instruction *SubInst = &*Entry.begin();
ASSERT_TRUE(isa<BinaryOperator>(SubInst));
Instruction *AddInst = SubInst->getNextNode();
ASSERT_TRUE(isa<BinaryOperator>(AddInst));
Instruction *RetInst = AddInst->getNextNode();
ASSERT_TRUE(isa<ReturnInst>(RetInst));
// add and sub should both have one DbgVariableRecord on add and ret.
EXPECT_FALSE(SubInst->hasDbgRecords());
EXPECT_TRUE(AddInst->hasDbgRecords());
EXPECT_TRUE(RetInst->hasDbgRecords());
auto R1 = AddInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R1.begin(), R1.end()), 1u);
auto R2 = RetInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R2.begin(), R2.end()), 1u);
// The Supported (TM) code sequence for removing then reinserting insts
// after another instruction:
std::optional<DbgVariableRecord::self_iterator> Pos =
AddInst->getDbgReinsertionPosition();
AddInst->removeFromParent();
// We should have a re-insertion position.
ASSERT_TRUE(Pos);
// Both DbgVariableRecords should now be attached to the ret inst.
auto R3 = RetInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R3.begin(), R3.end()), 2u);
// Re-insert and re-insert.
AddInst->insertAfter(SubInst->getIterator());
Entry.reinsertInstInDbgRecords(AddInst, Pos);
// We should be back into a position of having one DbgVariableRecord on add
// and ret.
EXPECT_FALSE(SubInst->hasDbgRecords());
EXPECT_TRUE(AddInst->hasDbgRecords());
EXPECT_TRUE(RetInst->hasDbgRecords());
auto R4 = AddInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R4.begin(), R4.end()), 1u);
auto R5 = RetInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R5.begin(), R5.end()), 1u);
}
// Test instruction removal and re-insertion, this time with one
// DbgVariableRecord that should hop up one instruction.
TEST(BasicBlockDbgInfoTest, RemoveInstAndReinsertForOneDbgVariableRecord) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
entry:
%qux = sub i16 %a, 0
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
%foo = add i16 %a, %a
ret i16 1
}
declare void @llvm.dbg.value(metadata, metadata, metadata)
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
BasicBlock &Entry = M->getFunction("f")->getEntryBlock();
// Fetch the relevant instructions from the converted function.
Instruction *SubInst = &*Entry.begin();
ASSERT_TRUE(isa<BinaryOperator>(SubInst));
Instruction *AddInst = SubInst->getNextNode();
ASSERT_TRUE(isa<BinaryOperator>(AddInst));
Instruction *RetInst = AddInst->getNextNode();
ASSERT_TRUE(isa<ReturnInst>(RetInst));
// There should be one DbgVariableRecord.
EXPECT_FALSE(SubInst->hasDbgRecords());
EXPECT_TRUE(AddInst->hasDbgRecords());
EXPECT_FALSE(RetInst->hasDbgRecords());
auto R1 = AddInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R1.begin(), R1.end()), 1u);
// The Supported (TM) code sequence for removing then reinserting insts:
std::optional<DbgVariableRecord::self_iterator> Pos =
AddInst->getDbgReinsertionPosition();
AddInst->removeFromParent();
// No re-insertion position as there were no DbgVariableRecords on the ret.
ASSERT_FALSE(Pos);
// The single DbgVariableRecord should now be attached to the ret inst.
EXPECT_TRUE(RetInst->hasDbgRecords());
auto R2 = RetInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R2.begin(), R2.end()), 1u);
// Re-insert and re-insert.
AddInst->insertAfter(SubInst->getIterator());
Entry.reinsertInstInDbgRecords(AddInst, Pos);
// We should be back into a position of having one DbgVariableRecord on the
// AddInst.
EXPECT_FALSE(SubInst->hasDbgRecords());
EXPECT_TRUE(AddInst->hasDbgRecords());
EXPECT_FALSE(RetInst->hasDbgRecords());
auto R3 = AddInst->getDbgRecordRange();
EXPECT_EQ(std::distance(R3.begin(), R3.end()), 1u);
}
// Similar to the above, what if we splice into an empty block with debug-info,
// with debug-info at the start of the moving range, that we intend to be
// transferred. The dbg.value of %a should remain at the start, but come ahead
// of the i16 0 dbg.value.
TEST(BasicBlockDbgInfoTest, DbgSpliceToEmpty1) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
entry:
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
br label %exit
exit:
call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata !DIExpression()), !dbg !11
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 1, metadata !9, metadata !DIExpression()), !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
Function &F = *M->getFunction("f");
BasicBlock &Entry = F.getEntryBlock();
BasicBlock &Exit = *Entry.getNextNode();
// Begin by forcing entry block to have dangling DbgVariableRecord.
Entry.getTerminator()->eraseFromParent();
ASSERT_NE(Entry.getTrailingDbgRecords(), nullptr);
EXPECT_TRUE(Entry.empty());
// Now transfer the entire contents of the exit block into the entry. This
// includes both dbg.values.
Entry.splice(Entry.end(), &Exit, Exit.begin(), Exit.end());
// We should now have two dbg.values on the first instruction, and they
// should be in the correct order of %a, then 0.
Instruction *BInst = &*Entry.begin();
ASSERT_TRUE(BInst->hasDbgRecords());
EXPECT_EQ(BInst->DebugMarker->StoredDbgRecords.size(), 2u);
SmallVector<DbgVariableRecord *, 2> DbgVariableRecords;
for (DbgRecord &DVR : BInst->getDbgRecordRange())
DbgVariableRecords.push_back(cast<DbgVariableRecord>(&DVR));
EXPECT_EQ(DbgVariableRecords[0]->getVariableLocationOp(0), F.getArg(0));
Value *SecondDVRValue = DbgVariableRecords[1]->getVariableLocationOp(0);
ASSERT_TRUE(isa<ConstantInt>(SecondDVRValue));
EXPECT_EQ(cast<ConstantInt>(SecondDVRValue)->getZExtValue(), 0ull);
// No trailing DbgVariableRecords in the entry block now.
EXPECT_EQ(Entry.getTrailingDbgRecords(), nullptr);
}
// Similar test again, but this time: splice the contents of exit into entry,
// with the intention of leaving the first dbg.value (i16 0) behind.
TEST(BasicBlockDbgInfoTest, DbgSpliceToEmpty2) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
entry:
call void @llvm.dbg.value(metadata i16 %a, metadata !9, metadata !DIExpression()), !dbg !11
br label %exit
exit:
call void @llvm.dbg.value(metadata i16 0, metadata !9, metadata !DIExpression()), !dbg !11
%b = add i16 %a, 1, !dbg !11
call void @llvm.dbg.value(metadata i16 1, metadata !9, metadata !DIExpression()), !dbg !11
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
Function &F = *M->getFunction("f");
BasicBlock &Entry = F.getEntryBlock();
BasicBlock &Exit = *Entry.getNextNode();
// Begin by forcing entry block to have dangling DbgVariableRecord.
Entry.getTerminator()->eraseFromParent();
ASSERT_NE(Entry.getTrailingDbgRecords(), nullptr);
EXPECT_TRUE(Entry.empty());
// Now transfer into the entry block -- fetching the first instruction with
// begin and then calling getIterator clears the "head" bit, meaning that the
// range to move will not include any leading DbgVariableRecords.
Entry.splice(Entry.end(), &Exit, Exit.begin()->getIterator(), Exit.end());
// We should now have one dbg.values on the first instruction, %a.
Instruction *BInst = &*Entry.begin();
ASSERT_TRUE(BInst->hasDbgRecords());
EXPECT_EQ(BInst->DebugMarker->StoredDbgRecords.size(), 1u);
SmallVector<DbgVariableRecord *, 2> DbgVariableRecords;
for (DbgRecord &DVR : BInst->getDbgRecordRange())
DbgVariableRecords.push_back(cast<DbgVariableRecord>(&DVR));
EXPECT_EQ(DbgVariableRecords[0]->getVariableLocationOp(0), F.getArg(0));
// No trailing DbgVariableRecords in the entry block now.
EXPECT_EQ(Entry.getTrailingDbgRecords(), nullptr);
// We should have nothing left in the exit block...
EXPECT_TRUE(Exit.empty());
// ... except for some dangling DbgVariableRecords.
EXPECT_NE(Exit.getTrailingDbgRecords(), nullptr);
EXPECT_FALSE(Exit.getTrailingDbgRecords()->empty());
Exit.getTrailingDbgRecords()->eraseFromParent();
Exit.deleteTrailingDbgRecords();
}
// What if we moveBefore end() -- there might be no debug-info there, in which
// case we shouldn't crash.
TEST(BasicBlockDbgInfoTest, DbgMoveToEnd) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @f(i16 %a) !dbg !6 {
entry:
br label %exit
exit:
ret i16 0, !dbg !11
}
declare void @llvm.dbg.value(metadata, metadata, metadata) #0
attributes #0 = { nounwind readnone speculatable willreturn }
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
Function &F = *M->getFunction("f");
BasicBlock &Entry = F.getEntryBlock();
BasicBlock &Exit = *Entry.getNextNode();
// Move the return to the end of the entry block.
Instruction *Br = Entry.getTerminator();
Instruction *Ret = Exit.getTerminator();
EXPECT_EQ(Entry.getTrailingDbgRecords(), nullptr);
Ret->moveBefore(Entry, Entry.end());
Br->eraseFromParent();
// There should continue to not be any debug-info anywhere.
EXPECT_EQ(Entry.getTrailingDbgRecords(), nullptr);
EXPECT_EQ(Exit.getTrailingDbgRecords(), nullptr);
EXPECT_FALSE(Ret->hasDbgRecords());
}
TEST(BasicBlockDbgInfoTest, CloneTrailingRecordsToEmptyBlock) {
LLVMContext C;
std::unique_ptr<Module> M = parseIR(C, R"(
define i16 @foo(i16 %a) !dbg !6 {
entry:
%b = add i16 %a, 0
#dbg_value(i16 %b, !9, !DIExpression(), !11)
ret i16 0, !dbg !11
}
!llvm.dbg.cu = !{!0}
!llvm.module.flags = !{!5}
!0 = distinct !DICompileUnit(language: DW_LANG_C, file: !1, producer: "debugify", isOptimized: true, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
!1 = !DIFile(filename: "t.ll", directory: "/")
!2 = !{}
!5 = !{i32 2, !"Debug Info Version", i32 3}
!6 = distinct !DISubprogram(name: "foo", linkageName: "foo", scope: null, file: !1, line: 1, type: !7, scopeLine: 1, spFlags: DISPFlagDefinition | DISPFlagOptimized, unit: !0, retainedNodes: !8)
!7 = !DISubroutineType(types: !2)
!8 = !{!9}
!9 = !DILocalVariable(name: "1", scope: !6, file: !1, line: 1, type: !10)
!10 = !DIBasicType(name: "ty16", size: 16, encoding: DW_ATE_unsigned)
!11 = !DILocation(line: 1, column: 1, scope: !6)
)");
ASSERT_TRUE(M);
Function *F = M->getFunction("foo");
BasicBlock &BB = F->getEntryBlock();
// Start with no trailing records.
ASSERT_FALSE(BB.getTrailingDbgRecords());
BasicBlock::iterator Ret = std::prev(BB.end());
BasicBlock::iterator B = std::prev(Ret);
// Delete terminator which has debug records: we now get trailing records.
Ret->eraseFromParent();
EXPECT_TRUE(BB.getTrailingDbgRecords());
BasicBlock *NewBB = BasicBlock::Create(C, "NewBB", F);
NewBB->splice(NewBB->end(), &BB, B, BB.end());
// The trailing records should've been absorbed into NewBB.
EXPECT_FALSE(BB.getTrailingDbgRecords());
EXPECT_TRUE(NewBB->getTrailingDbgRecords());
if (DbgMarker *Trailing = NewBB->getTrailingDbgRecords()) {
EXPECT_EQ(llvm::range_size(Trailing->getDbgRecordRange()), 1u);
// Drop the trailing records now, to prevent a cleanup assertion.
Trailing->eraseFromParent();
NewBB->deleteTrailingDbgRecords();
}
}
} // End anonymous namespace.
|