summaryrefslogtreecommitdiffstats
path: root/tests/run-readelf-loc.sh
blob: 8594b540bfa8d8bbece2fe4004587af9dae519ab (plain)
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
#! /bin/sh
# Copyright (C) 2013 Red Hat, Inc.
# This file is part of elfutils.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# elfutils is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

. $srcdir/test-subr.sh

# - hello.c
# int say (const char *prefix);
#
# static char *
# subject (char *word, int count)
# {
#   return count > 0 ? word : (word + count);
# }
#
# int
# main (int argc, char **argv)
# {
#    return say (subject (argv[0], argc));
# }
#
# - world.c
# static int
# sad (char c)
# {
#   return c > 0 ? c : c + 1;
# }
#
# static int
# happy (const char *w)
# {
#   return sad (w[1]);
# }
#
# int
# say (const char *prefix)
# {
#   const char *world = "World";
#   return prefix ? sad (prefix[0]) : happy (world);
# }
#
# gcc -g -O2 -c hello.c
# gcc -g -O2 -c world.c
# gcc -g -o testfileloc hello.o world.o

testfiles testfileloc

# Process values as offsets from base addresses and resolve to symbols.
testrun_compare ${abs_top_builddir}/src/readelf --debug-dump=loc --debug-dump=ranges \
  testfileloc<<\EOF

DWARF section [33] '.debug_loc' at offset 0xd2a:

 CU [     b] base: 0x0000000000400480 <main>
 [     0] range 0, d
          0x0000000000400480 <main>..
          0x000000000040048c <main+0xc>
           [ 0] reg5
 [    23] range 5, d
          0x0000000000400485 <main+0x5>..
          0x000000000040048c <main+0xc>
           [ 0] reg5

 CU [    e0] base: 0x00000000004004a0 <say>
 [    46] range 12, 1a
          0x00000000004004b2 <say+0x12>..
          0x00000000004004b9 <say+0x19>
           [ 0] breg5 0

DWARF section [34] '.debug_ranges' at offset 0xd94:

 CU [     b] base: 0x0000000000400480 <main>
 [     0] range 0, 2
          0x0000000000400480 <main>..
          0x0000000000400481 <main+0x1>
          range 5, d
          0x0000000000400485 <main+0x5>..
          0x000000000040048c <main+0xc>

 CU [    e0] base: 0x00000000004004a0 <say>
 [    30] range d, f
          0x00000000004004ad <say+0xd>..
          0x00000000004004ae <say+0xe>
          range 12, 1a
          0x00000000004004b2 <say+0x12>..
          0x00000000004004b9 <say+0x19>
EOF

# Don't resolve addresses to symbols.
testrun_compare ${abs_top_builddir}/src/readelf -N --debug-dump=loc --debug-dump=ranges \
  testfileloc<<\EOF

DWARF section [33] '.debug_loc' at offset 0xd2a:

 CU [     b] base: 0x0000000000400480
 [     0] range 0, d
          0x0000000000400480..
          0x000000000040048c
           [ 0] reg5
 [    23] range 5, d
          0x0000000000400485..
          0x000000000040048c
           [ 0] reg5

 CU [    e0] base: 0x00000000004004a0
 [    46] range 12, 1a
          0x00000000004004b2..
          0x00000000004004b9
           [ 0] breg5 0

DWARF section [34] '.debug_ranges' at offset 0xd94:

 CU [     b] base: 0x0000000000400480
 [     0] range 0, 2
          0x0000000000400480..
          0x0000000000400481
          range 5, d
          0x0000000000400485..
          0x000000000040048c

 CU [    e0] base: 0x00000000004004a0
 [    30] range d, f
          0x00000000004004ad..
          0x00000000004004ae
          range 12, 1a
          0x00000000004004b2..
          0x00000000004004b9
EOF

# Produce "raw" unprocessed content.
testrun_compare ${abs_top_builddir}/src/readelf -U --debug-dump=loc --debug-dump=ranges \
  testfileloc<<\EOF

DWARF section [33] '.debug_loc' at offset 0xd2a:

 CU [     b] base: 0x0000000000400480
 [     0] range 0, d
           [ 0] reg5
 [    23] range 5, d
           [ 0] reg5

 CU [    e0] base: 0x00000000004004a0
 [    46] range 12, 1a
           [ 0] breg5 0

DWARF section [34] '.debug_ranges' at offset 0xd94:

 CU [     b] base: 0x0000000000400480
 [     0] range 0, 2
          range 5, d

 CU [    e0] base: 0x00000000004004a0
 [    30] range d, f
          range 12, 1a
EOF

# .debug_rnglists (DWARF5), see tests/testfile-dwarf-45.source
testfiles testfile-dwarf-5
testrun_compare ${abs_top_builddir}/src/readelf --debug-dump=loc testfile-dwarf-5<<\EOF

DWARF section [31] '.debug_loclists' at offset 0x1c0c:
Table at Offset 0x0:

 Length:               96
 DWARF version:         5
 Address size:          8
 Segment size:          0
 Offset entries:        0
 CU [     c] base: 0x0000000000400510 <foo>

  Offset: c, Index: 0
    offset_pair 0, a
      0x0000000000400510 <foo>..
      0x0000000000400519 <foo+0x9>
        [ 0] reg5
    offset_pair a, 34
      0x000000000040051a <foo+0xa>..
      0x0000000000400543 <foo+0x33>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: 1a, Index: e
    offset_pair 1b, 2d
      0x000000000040052b <foo+0x1b>..
      0x000000000040053c <foo+0x2c>
        [ 0] addr 0x601038 <m>
    end_of_list

  Offset: 28, Index: 1c
    offset_pair 1b, 21
      0x000000000040052b <foo+0x1b>..
      0x0000000000400530 <foo+0x20>
        [ 0] reg5
    end_of_list

  Offset: 2e, Index: 22
    offset_pair 1b, 27
      0x000000000040052b <foo+0x1b>..
      0x0000000000400536 <foo+0x26>
        [ 0] reg5
    offset_pair 29, 2d
      0x0000000000400539 <foo+0x29>..
      0x000000000040053c <foo+0x2c>
        [ 0] reg5
    end_of_list

  Offset: 39, Index: 2d
    offset_pair 21, 27
      0x0000000000400531 <foo+0x21>..
      0x0000000000400536 <foo+0x26>
        [ 0] reg5
    offset_pair 29, 2d
      0x0000000000400539 <foo+0x29>..
      0x000000000040053c <foo+0x2c>
        [ 0] reg5
    end_of_list

  Offset: 44, Index: 38
    offset_pair 21, 2d
      0x0000000000400531 <foo+0x21>..
      0x000000000040053c <foo+0x2c>
        [ 0] reg5
    end_of_list

  Offset: 4a, Index: 3e
    offset_pair 2d, 33
      0x000000000040053d <foo+0x2d>..
      0x0000000000400542 <foo+0x32>
        [ 0] reg5
    end_of_list

  Offset: 50, Index: 44
    offset_pair 40, 4f
      0x0000000000400550 <baz>..
      0x000000000040055e <baz+0xe>
        [ 0] reg5
    offset_pair 4f, 51
      0x000000000040055f <baz+0xf>..
      0x0000000000400560 <baz+0x10>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: 5e, Index: 52
    offset_pair 40, 50
      0x0000000000400550 <baz>..
      0x000000000040055f <baz+0xf>
        [ 0] reg5
    end_of_list

Table at Offset 0x64:

 Length:              159
 DWARF version:         5
 Address size:          8
 Segment size:          0
 Offset entries:        0
 CU [   218] base: 000000000000000000

  Offset: 70, Index: 0
    base_address 0x400410
      0x0000000000400410 <main>
    offset_pair 0, 14
      0x0000000000400410 <main>..
      0x0000000000400423 <main+0x13>
        [ 0] reg5
    offset_pair 14, 20
      0x0000000000400424 <main+0x14>..
      0x000000000040042f <main+0x1f>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: 87, Index: 17
    base_address 0x400410
      0x0000000000400410 <main>
    offset_pair 0, 18
      0x0000000000400410 <main>..
      0x0000000000400427 <main+0x17>
        [ 0] reg4
    offset_pair 18, 20
      0x0000000000400428 <main+0x18>..
      0x000000000040042f <main+0x1f>
        [ 0] entry_value:
             [ 0] reg4
        [ 3] stack_value
    end_of_list

  Offset: 9e, Index: 2e
    start_length 0x400421, 7
      0x0000000000400421 <main+0x11>..
      0x0000000000400427 <main+0x17>
        [ 0] reg0
    end_of_list

  Offset: ab, Index: 3b
    base_address 0x400570
      0x0000000000400570 <calc>
    offset_pair 0, 8
      0x0000000000400570 <calc>..
      0x0000000000400577 <calc+0x7>
        [ 0] reg5
    offset_pair 8, 2b
      0x0000000000400578 <calc+0x8>..
      0x000000000040059a <calc+0x2a>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: c2, Index: 52
    start_length 0x400588, b
      0x0000000000400588 <calc+0x18>..
      0x0000000000400592 <calc+0x22>
        [ 0] reg0
    end_of_list

  Offset: cf, Index: 5f
    base_address 0x400588
      0x0000000000400588 <calc+0x18>
    offset_pair 0, 2
      0x0000000000400588 <calc+0x18>..
      0x0000000000400589 <calc+0x19>
        [ 0] reg1
    offset_pair 2, 7
      0x000000000040058a <calc+0x1a>..
      0x000000000040058e <calc+0x1e>
        [ 0] reg5
    offset_pair 7, b
      0x000000000040058f <calc+0x1f>..
      0x0000000000400592 <calc+0x22>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] deref_size 1
        [ 5] const1u 56
        [ 7] shl
        [ 8] const1u 56
        [10] shra
        [11] stack_value
    end_of_list

  Offset: f3, Index: 83
    base_address 0x400588
      0x0000000000400588 <calc+0x18>
    offset_pair 0, 2
      0x0000000000400588 <calc+0x18>..
      0x0000000000400589 <calc+0x19>
        [ 0] reg1
    offset_pair 2, b
      0x000000000040058a <calc+0x1a>..
      0x0000000000400592 <calc+0x22>
        [ 0] reg5
    end_of_list

EOF

# Same as above, but for DWARF4, note completely different encoding, but
# the information is the same (check with diff -uwb).
testfiles testfile-dwarf-4
testrun_compare ${abs_top_builddir}/src/readelf --debug-dump=loc testfile-dwarf-4<<\EOF

DWARF section [31] '.debug_loc' at offset 0x1c86:

 CU [     b] base: 0x0000000000400510 <foo>
 [     0] range 0, a
          0x0000000000400510 <foo>..
          0x0000000000400519 <foo+0x9>
           [ 0] reg5
          range a, 34
          0x000000000040051a <foo+0xa>..
          0x0000000000400543 <foo+0x33>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [    39] range 1b, 2d
          0x000000000040052b <foo+0x1b>..
          0x000000000040053c <foo+0x2c>
           [ 0] addr 0x601038 <m>
 [    64] range 1b, 21
          0x000000000040052b <foo+0x1b>..
          0x0000000000400530 <foo+0x20>
           [ 0] reg5
 [    87] range 1b, 27
          0x000000000040052b <foo+0x1b>..
          0x0000000000400536 <foo+0x26>
           [ 0] reg5
          range 29, 2d
          0x0000000000400539 <foo+0x29>..
          0x000000000040053c <foo+0x2c>
           [ 0] reg5
 [    bd] range 21, 27
          0x0000000000400531 <foo+0x21>..
          0x0000000000400536 <foo+0x26>
           [ 0] reg5
          range 29, 2d
          0x0000000000400539 <foo+0x29>..
          0x000000000040053c <foo+0x2c>
           [ 0] reg5
 [    f3] range 21, 2d
          0x0000000000400531 <foo+0x21>..
          0x000000000040053c <foo+0x2c>
           [ 0] reg5
 [   116] range 2d, 33
          0x000000000040053d <foo+0x2d>..
          0x0000000000400542 <foo+0x32>
           [ 0] reg5
 [   139] range 40, 4f
          0x0000000000400550 <baz>..
          0x000000000040055e <baz+0xe>
           [ 0] reg5
          range 4f, 51
          0x000000000040055f <baz+0xf>..
          0x0000000000400560 <baz+0x10>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [   172] range 40, 50
          0x0000000000400550 <baz>..
          0x000000000040055f <baz+0xf>
           [ 0] reg5

 CU [   21c] base: 000000000000000000
 [   195] range 400410, 400424
          0x0000000000400410 <main>..
          0x0000000000400423 <main+0x13>
           [ 0] reg5
          range 400424, 400430
          0x0000000000400424 <main+0x14>..
          0x000000000040042f <main+0x1f>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [   1ce] range 400410, 400428
          0x0000000000400410 <main>..
          0x0000000000400427 <main+0x17>
           [ 0] reg4
          range 400428, 400430
          0x0000000000400428 <main+0x18>..
          0x000000000040042f <main+0x1f>
           [ 0] GNU_entry_value:
                [ 0] reg4
           [ 3] stack_value
 [   207] range 400421, 400428
          0x0000000000400421 <main+0x11>..
          0x0000000000400427 <main+0x17>
           [ 0] reg0
 [   22a] range 400570, 400578
          0x0000000000400570 <calc>..
          0x0000000000400577 <calc+0x7>
           [ 0] reg5
          range 400578, 40059b
          0x0000000000400578 <calc+0x8>..
          0x000000000040059a <calc+0x2a>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [   263] range 400588, 400593
          0x0000000000400588 <calc+0x18>..
          0x0000000000400592 <calc+0x22>
           [ 0] reg0
 [   286] range 400588, 40058a
          0x0000000000400588 <calc+0x18>..
          0x0000000000400589 <calc+0x19>
           [ 0] reg1
          range 40058a, 40058f
          0x000000000040058a <calc+0x1a>..
          0x000000000040058e <calc+0x1e>
           [ 0] reg5
          range 40058f, 400593
          0x000000000040058f <calc+0x1f>..
          0x0000000000400592 <calc+0x22>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] deref_size 1
           [ 5] const1u 56
           [ 7] shl
           [ 8] const1u 56
           [10] shra
           [11] stack_value
 [   2da] range 400588, 40058a
          0x0000000000400588 <calc+0x18>..
          0x0000000000400589 <calc+0x19>
           [ 0] reg1
          range 40058a, 400593
          0x000000000040058a <calc+0x1a>..
          0x0000000000400592 <calc+0x22>
           [ 0] reg5
EOF

# Split DWARF5 variant. Note that the .debug_loclists moved to the .dwo file
# and now uses an index and addrx indirections.
testfiles testfile-splitdwarf-5 testfile-hello5.dwo testfile-world5.dwo
testrun_compare ${abs_top_builddir}/src/readelf --debug-dump=loc --dwarf-skeleton=testfile-splitdwarf-5 testfile-hello5.dwo testfile-world5.dwo <<\EOF

testfile-hello5.dwo:


DWARF section [ 3] '.debug_loclists.dwo' at offset 0x236:
Table at Offset 0x0:

 Length:              125
 DWARF version:         5
 Address size:          8
 Segment size:          0
 Offset entries:        9
 CU [    14] base: 0x0000000000401160 <foo>

  Offsets starting at 0xc:
   [     0] 0x24
   [     1] 0x32
   [     2] 0x39
   [     3] 0x3f
   [     4] 0x4a
   [     5] 0x55
   [     6] 0x5b
   [     7] 0x61
   [     8] 0x6f

  Offset: 30, Index: 24
    startx_length f, a
      0x0000000000401160 <foo>..
      0x0000000000401169 <foo+0x9>
        [ 0] reg5
    startx_length 0, 2a
      0x000000000040116a <foo+0xa>..
      0x0000000000401193 <foo+0x33>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: 3e, Index: 32
    startx_length 11, 12
      0x000000000040117b <foo+0x1b>..
      0x000000000040118c <foo+0x2c>
        [ 0] addrx [18] 0x404038 <m>
    end_of_list

  Offset: 45, Index: 39
    startx_length 11, 6
      0x000000000040117b <foo+0x1b>..
      0x0000000000401180 <foo+0x20>
        [ 0] reg5
    end_of_list

  Offset: 4b, Index: 3f
    startx_length 11, c
      0x000000000040117b <foo+0x1b>..
      0x0000000000401186 <foo+0x26>
        [ 0] reg5
    startx_length 1, 4
      0x0000000000401189 <foo+0x29>..
      0x000000000040118c <foo+0x2c>
        [ 0] reg5
    end_of_list

  Offset: 56, Index: 4a
    startx_length 4, 6
      0x0000000000401181 <foo+0x21>..
      0x0000000000401186 <foo+0x26>
        [ 0] reg5
    startx_length 1, 4
      0x0000000000401189 <foo+0x29>..
      0x000000000040118c <foo+0x2c>
        [ 0] reg5
    end_of_list

  Offset: 61, Index: 55
    startx_length 4, c
      0x0000000000401181 <foo+0x21>..
      0x000000000040118c <foo+0x2c>
        [ 0] reg5
    end_of_list

  Offset: 67, Index: 5b
    startx_length 2, 6
      0x000000000040118d <foo+0x2d>..
      0x0000000000401192 <foo+0x32>
        [ 0] reg5
    end_of_list

  Offset: 6d, Index: 61
    startx_length 9, f
      0x00000000004011a0 <baz>..
      0x00000000004011ae <baz+0xe>
        [ 0] reg5
    startx_length 5, 2
      0x00000000004011af <baz+0xf>..
      0x00000000004011b0 <baz+0x10>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: 7b, Index: 6f
    startx_length 9, 10
      0x00000000004011a0 <baz>..
      0x00000000004011af <baz+0xf>
        [ 0] reg5
    end_of_list


testfile-world5.dwo:


DWARF section [ 3] '.debug_loclists.dwo' at offset 0x217:
Table at Offset 0x0:

 Length:              128
 DWARF version:         5
 Address size:          8
 Segment size:          0
 Offset entries:        7
 CU [    14] base: 000000000000000000

  Offsets starting at 0xc:
   [     0] 0x1c
   [     1] 0x2a
   [     2] 0x38
   [     3] 0x3e
   [     4] 0x4c
   [     5] 0x52
   [     6] 0x6d

  Offset: 28, Index: 1c
    startx_length 2, 14
      0x0000000000401060 <main>..
      0x0000000000401073 <main+0x13>
        [ 0] reg5
    startx_length 4, c
      0x0000000000401074 <main+0x14>..
      0x000000000040107f <main+0x1f>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: 36, Index: 2a
    startx_length 2, 18
      0x0000000000401060 <main>..
      0x0000000000401077 <main+0x17>
        [ 0] reg4
    startx_length 7, 6
      0x0000000000401078 <main+0x18>..
      0x000000000040107d <main+0x1d>
        [ 0] entry_value:
             [ 0] reg4
        [ 3] stack_value
    end_of_list

  Offset: 44, Index: 38
    startx_length 3, 7
      0x0000000000401071 <main+0x11>..
      0x0000000000401077 <main+0x17>
        [ 0] reg0
    end_of_list

  Offset: 4a, Index: 3e
    startx_length d, 8
      0x00000000004011c0 <calc>..
      0x00000000004011c7 <calc+0x7>
        [ 0] reg5
    startx_length e, 23
      0x00000000004011c8 <calc+0x8>..
      0x00000000004011ea <calc+0x2a>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] stack_value
    end_of_list

  Offset: 58, Index: 4c
    startx_length f, b
      0x00000000004011d8 <calc+0x18>..
      0x00000000004011e2 <calc+0x22>
        [ 0] reg0
    end_of_list

  Offset: 5e, Index: 52
    startx_length f, 2
      0x00000000004011d8 <calc+0x18>..
      0x00000000004011d9 <calc+0x19>
        [ 0] reg1
    startx_length 10, 5
      0x00000000004011da <calc+0x1a>..
      0x00000000004011de <calc+0x1e>
        [ 0] reg5
    startx_length 0, 4
      0x00000000004011df <calc+0x1f>..
      0x00000000004011e2 <calc+0x22>
        [ 0] entry_value:
             [ 0] reg5
        [ 3] deref_size 1
        [ 5] const1u 56
        [ 7] shl
        [ 8] const1u 56
        [10] shra
        [11] stack_value
    end_of_list

  Offset: 79, Index: 6d
    startx_length f, 2
      0x00000000004011d8 <calc+0x18>..
      0x00000000004011d9 <calc+0x19>
        [ 0] reg1
    startx_length 10, 9
      0x00000000004011da <calc+0x1a>..
      0x00000000004011e2 <calc+0x22>
        [ 0] reg5
    end_of_list

EOF

# GNU DebugFission split-dwarf variant. Still uses .debug_loc, but now in
# .dwo file, with somewhat similar, but different encoding from DWARF5.
testfiles testfile-splitdwarf-4 testfile-hello4.dwo testfile-world4.dwo
testrun_compare ${abs_top_builddir}/src/readelf --debug-dump=loc --dwarf-skeleton=testfile-splitdwarf-4 testfile-hello4.dwo testfile-world4.dwo <<\EOF

testfile-hello4.dwo:


DWARF section [ 3] '.debug_loc.dwo' at offset 0x253:

 CU [     b] base: 0x0000000000401160 <foo>
 [     0] range 401160, 40116a
          0x0000000000401160 <foo>..
          0x0000000000401169 <foo+0x9>
           [ 0] reg5
          range 40116a, 401194
          0x000000000040116a <foo+0xa>..
          0x0000000000401193 <foo+0x33>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [    16] range 40117b, 40118d
          0x000000000040117b <foo+0x1b>..
          0x000000000040118c <foo+0x2c>
           [ 0] GNU_addr_index [18] 0x404038 <m>
 [    21] range 40117b, 401181
          0x000000000040117b <foo+0x1b>..
          0x0000000000401180 <foo+0x20>
           [ 0] reg5
 [    2b] range 40117b, 401187
          0x000000000040117b <foo+0x1b>..
          0x0000000000401186 <foo+0x26>
           [ 0] reg5
          range 401189, 40118d
          0x0000000000401189 <foo+0x29>..
          0x000000000040118c <foo+0x2c>
           [ 0] reg5
 [    3e] range 401181, 401187
          0x0000000000401181 <foo+0x21>..
          0x0000000000401186 <foo+0x26>
           [ 0] reg5
          range 401189, 40118d
          0x0000000000401189 <foo+0x29>..
          0x000000000040118c <foo+0x2c>
           [ 0] reg5
 [    51] range 401181, 40118d
          0x0000000000401181 <foo+0x21>..
          0x000000000040118c <foo+0x2c>
           [ 0] reg5
 [    5b] range 40118d, 401193
          0x000000000040118d <foo+0x2d>..
          0x0000000000401192 <foo+0x32>
           [ 0] reg5
 [    65] range 4011a0, 4011af
          0x00000000004011a0 <baz>..
          0x00000000004011ae <baz+0xe>
           [ 0] reg5
          range 4011af, 4011b1
          0x00000000004011af <baz+0xf>..
          0x00000000004011b0 <baz+0x10>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [    7b] range 4011a0, 4011b0
          0x00000000004011a0 <baz>..
          0x00000000004011af <baz+0xf>
           [ 0] reg5

testfile-world4.dwo:


DWARF section [ 3] '.debug_loc.dwo' at offset 0x225:

 CU [     b] base: 000000000000000000
 [     0] range 401060, 401074
          0x0000000000401060 <main>..
          0x0000000000401073 <main+0x13>
           [ 0] reg5
          range 401074, 401080
          0x0000000000401074 <main+0x14>..
          0x000000000040107f <main+0x1f>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [    16] range 401060, 401078
          0x0000000000401060 <main>..
          0x0000000000401077 <main+0x17>
           [ 0] reg4
          range 401078, 40107e
          0x0000000000401078 <main+0x18>..
          0x000000000040107d <main+0x1d>
           [ 0] GNU_entry_value:
                [ 0] reg4
           [ 3] stack_value
 [    2c] range 401071, 401078
          0x0000000000401071 <main+0x11>..
          0x0000000000401077 <main+0x17>
           [ 0] reg0
 [    36] range 4011c0, 4011c8
          0x00000000004011c0 <calc>..
          0x00000000004011c7 <calc+0x7>
           [ 0] reg5
          range 4011c8, 4011eb
          0x00000000004011c8 <calc+0x8>..
          0x00000000004011ea <calc+0x2a>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
 [    4c] range 4011d8, 4011e3
          0x00000000004011d8 <calc+0x18>..
          0x00000000004011e2 <calc+0x22>
           [ 0] reg0
 [    56] range 4011d8, 4011da
          0x00000000004011d8 <calc+0x18>..
          0x00000000004011d9 <calc+0x19>
           [ 0] reg1
          range 4011da, 4011df
          0x00000000004011da <calc+0x1a>..
          0x00000000004011de <calc+0x1e>
           [ 0] reg5
          range 4011df, 4011e3
          0x00000000004011df <calc+0x1f>..
          0x00000000004011e2 <calc+0x22>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] deref_size 1
           [ 5] const1u 56
           [ 7] shl
           [ 8] const1u 56
           [10] shra
           [11] stack_value
 [    7d] range 4011d8, 4011da
          0x00000000004011d8 <calc+0x18>..
          0x00000000004011d9 <calc+0x19>
           [ 0] reg1
          range 4011da, 4011e3
          0x00000000004011da <calc+0x1a>..
          0x00000000004011e2 <calc+0x22>
           [ 0] reg5
EOF

# Partial dwarf-4 and partial GNU DebugFission split-dwarf.
#
# = popcount.c =
#
# int popcount (unsigned char u)
# {
#   int c = 0;
#   while (u != 0)
#     {
#       if ((u & 1) == 1)
#         c++;
#       u >>= 1;
#     }
#   return c;
# }
#
# = splitdwarf4-not-split4.c =
#
# extern int popcount (unsigned char);
#
# int main (int argc, char **argv)
# {
#   int i;
#   int p = argc;
#   for (i = 0; i < argc;  ++i)
#     p += popcount (argv[i][0]);
#   i += p;
#   return i;
# }
#
# gcc -gdwarf-4 -O2 -c popcount.c
# gcc -gdwarf-4 -gsplit-dwarf -O2 -c splitdwarf4-not-split4.c
# gcc -o testfile-splitdwarf4-not-split4 splitdwarf4-not-split4.o popcount.o
# eu-strip -f testfile-splitdwarf4-not-split4.debug \
#   testfile-splitdwarf4-not-split4

testfiles testfile-splitdwarf4-not-split4.debug
testfiles splitdwarf4-not-split4.dwo

testrun_compare ${abs_top_builddir}/src/readelf --debug-dump=info+ --debug-dump=loc testfile-splitdwarf4-not-split4.debug <<\EOF

DWARF section [28] '.debug_info' at offset 0x330:
 [Offset]
 Compilation unit at offset 0:
 Version: 4, Abbreviation section offset: 0, Address size: 8, Offset size: 4
 Unit type: skeleton (4), Unit id: 0x3d909d7bd0e69c0b
 [     b]  compile_unit         abbrev: 1
           ranges               (sec_offset) range list [     0]
           low_pc               (addr) 000000000000000000
           stmt_list            (sec_offset) 0
           GNU_dwo_name         (strp) "splitdwarf4-not-split4.dwo"
           comp_dir             (strp) "/tmp"
           GNU_pubnames         (flag_present) yes
           GNU_addr_base        (sec_offset) address base [     0]
           GNU_dwo_id           (data8) 0x3d909d7bd0e69c0b
           GNU_ranges_base      (sec_offset) 0
 Split compilation unit at offset 0:
 Version: 4, Abbreviation section offset: 0, Address size: 8, Offset size: 4
 Unit type: skeleton (4), Unit id: 0x3d909d7bd0e69c0b
 {     b}  compile_unit         abbrev: 1
           producer             (GNU_str_index) "GNU C17 9.0.0 20180528 (experimental) -mtune=generic -march=x86-64 -gdwarf-4 -gsplit-dwarf -O2"
           language             (data1) C99 (12)
           name                 (GNU_str_index) "splitdwarf4-not-split4.c"
           comp_dir             (GNU_str_index) "/tmp"
           GNU_dwo_id           (data8) 0x3d909d7bd0e69c0b
 {    18}    subprogram           abbrev: 2
             external             (flag_present) yes
             name                 (GNU_str_index) "main"
             decl_file            (data1) splitdwarf4-not-split4.c (1)
             decl_line            (data1) 3
             decl_column          (data1) 5
             prototyped           (flag_present) yes
             type                 (ref4) {    6d}
             low_pc               (GNU_addr_index) [4] 0x0000000000401050 <main>
             high_pc              (data8) 76 (0x000000000040109c <_start>)
             frame_base           (exprloc) 
              [ 0] call_frame_cfa
             GNU_all_call_sites   (flag_present) yes
             sibling              (ref4) {    6d}
 {    30}      formal_parameter     abbrev: 3
               name                 (GNU_str_index) "argc"
               decl_file            (data1) splitdwarf4-not-split4.c (1)
               decl_line            (data1) 3
               decl_column          (data1) 15
               type                 (ref4) {    6d}
               location             (sec_offset) location list [     0]
 {    3d}      formal_parameter     abbrev: 3
               name                 (GNU_str_index) "argv"
               decl_file            (data1) splitdwarf4-not-split4.c (1)
               decl_line            (data1) 3
               decl_column          (data1) 28
               type                 (ref4) {    74}
               location             (sec_offset) location list [    28]
 {    4a}      variable             abbrev: 4
               name                 (string) "i"
               decl_file            (data1) splitdwarf4-not-split4.c (1)
               decl_line            (data1) 5
               decl_column          (data1) 7
               type                 (ref4) {    6d}
               location             (sec_offset) location list [    47]
 {    58}      variable             abbrev: 4
               name                 (string) "p"
               decl_file            (data1) splitdwarf4-not-split4.c (1)
               decl_line            (data1) 6
               decl_column          (data1) 7
               type                 (ref4) {    6d}
               location             (sec_offset) location list [    73]
 {    66}      GNU_call_site        abbrev: 5
               low_pc               (GNU_addr_index) [1] 0x000000000040107f <main+0x2f>
               abstract_origin      (ref4) {    84}
 {    6d}    base_type            abbrev: 6
             byte_size            (data1) 4
             encoding             (data1) signed (5)
             name                 (string) "int"
 {    74}    pointer_type         abbrev: 7
             byte_size            (data1) 8
             type                 (ref4) {    7a}
 {    7a}    pointer_type         abbrev: 7
             byte_size            (data1) 8
             type                 (ref4) {    80}
 {    80}    base_type            abbrev: 8
             byte_size            (data1) 1
             encoding             (data1) signed_char (6)
             name                 (GNU_str_index) "char"
 {    84}    subprogram           abbrev: 9
             external             (flag_present) yes
             declaration          (flag_present) yes
             linkage_name         (GNU_str_index) "popcount"
             name                 (GNU_str_index) "popcount"
             decl_file            (data1) splitdwarf4-not-split4.c (1)
             decl_line            (data1) 1
             decl_column          (data1) 12
 Compilation unit at offset 52:
 Version: 4, Abbreviation section offset: 29, Address size: 8, Offset size: 4
 [    3f]  compile_unit         abbrev: 1
           producer             (strp) "GNU C17 9.0.0 20180528 (experimental) -mtune=generic -march=x86-64 -gdwarf-4 -O2"
           language             (data1) C99 (12)
           name                 (strp) "popcount.c"
           comp_dir             (strp) "/tmp"
           low_pc               (addr) 0x0000000000401180 <popcount>
           high_pc              (data8) 33 (0x00000000004011a1)
           stmt_list            (sec_offset) 145
 [    61]    subprogram           abbrev: 2
             external             (flag_present) yes
             name                 (strp) "popcount"
             decl_file            (data1) popcount.c (1)
             decl_line            (data1) 1
             decl_column          (data1) 5
             prototyped           (flag_present) yes
             type                 (ref4) [    a0]
             low_pc               (addr) 0x0000000000401180 <popcount>
             high_pc              (data8) 33 (0x00000000004011a1)
             frame_base           (exprloc) 
              [ 0] call_frame_cfa
             GNU_all_call_sites   (flag_present) yes
             sibling              (ref4) [    a0]
 [    83]      formal_parameter     abbrev: 3
               name                 (string) "u"
               decl_file            (data1) popcount.c (1)
               decl_line            (data1) 1
               decl_column          (data1) 29
               type                 (ref4) [    a7]
               location             (sec_offset) location list [     0]
 [    91]      variable             abbrev: 4
               name                 (string) "c"
               decl_file            (data1) popcount.c (1)
               decl_line            (data1) 3
               decl_column          (data1) 7
               type                 (ref4) [    a0]
               location             (sec_offset) location list [    60]
 [    a0]    base_type            abbrev: 5
             byte_size            (data1) 4
             encoding             (data1) signed (5)
             name                 (string) "int"
 [    a7]    base_type            abbrev: 6
             byte_size            (data1) 1
             encoding             (data1) unsigned_char (8)
             name                 (strp) "unsigned char"

DWARF section [32] '.debug_loc' at offset 0x5ef:

 CU [    3f] base: 0x0000000000401180 <popcount>
 [     0] range 0, 9
          0x0000000000401180 <popcount>..
          0x0000000000401188 <popcount+0x8>
           [ 0] reg5
          range 9, 1b
          0x0000000000401189 <popcount+0x9>..
          0x000000000040119a <popcount+0x1a>
           [ 0] reg1
          range 1b, 1d
          0x000000000040119b <popcount+0x1b>..
          0x000000000040119c <popcount+0x1c>
           [ 0] breg1 0
           [ 2] lit1
           [ 3] shr
           [ 4] stack_value
          range 1d, 21
          0x000000000040119d <popcount+0x1d>..
          0x00000000004011a0 <popcount+0x20>
           [ 0] reg1
 [    60] range 0, 9
          0x0000000000401180 <popcount>..
          0x0000000000401188 <popcount+0x8>
           [ 0] lit0
           [ 1] stack_value
          range 9, 20
          0x0000000000401189 <popcount+0x9>..
          0x000000000040119f <popcount+0x1f>
           [ 0] reg0
          range 20, 21
          0x00000000004011a0 <popcount+0x20>..
          0x00000000004011a0 <popcount+0x20>
           [ 0] lit0
           [ 1] stack_value
EOF

testrun_compare ${abs_top_builddir}/src/readelf --dwarf-skeleton=testfile-splitdwarf4-not-split4.debug --debug-dump=loc splitdwarf4-not-split4.dwo <<\EOF

DWARF section [ 3] '.debug_loc.dwo' at offset 0x15b:

 CU [     b] base: 000000000000000000
 [     0] range 401050, 40106e
          0x0000000000401050 <main>..
          0x000000000040106d <main+0x1d>
           [ 0] reg5
          range 40106e, 401086
          0x000000000040106e <main+0x1e>..
          0x0000000000401085 <main+0x35>
           [ 0] reg12
          range 401086, 401095
          0x0000000000401086 <main+0x36>..
          0x0000000000401094 <main+0x44>
           [ 0] GNU_entry_value:
                [ 0] reg5
           [ 3] stack_value
          range 401095, 40109c
          0x0000000000401095 <main+0x45>..
          0x000000000040109b <main+0x4b>
           [ 0] reg5
 [    28] range 401050, 40106e
          0x0000000000401050 <main>..
          0x000000000040106d <main+0x1d>
           [ 0] reg4
          range 40106e, 401095
          0x000000000040106e <main+0x1e>..
          0x0000000000401094 <main+0x44>
           [ 0] GNU_entry_value:
                [ 0] reg4
           [ 3] stack_value
          range 401095, 40109c
          0x0000000000401095 <main+0x45>..
          0x000000000040109b <main+0x4b>
           [ 0] reg4
 [    47] range 401050, 40106e
          0x0000000000401050 <main>..
          0x000000000040106d <main+0x1d>
           [ 0] lit0
           [ 1] stack_value
          range 401086, 40108e
          0x0000000000401086 <main+0x36>..
          0x000000000040108d <main+0x3d>
           [ 0] breg12 0
           [ 2] breg6 0
           [ 4] plus
           [ 5] stack_value
          range 40108e, 401095
          0x000000000040108e <main+0x3e>..
          0x0000000000401094 <main+0x44>
           [ 0] reg0
          range 401095, 40109c
          0x0000000000401095 <main+0x45>..
          0x000000000040109b <main+0x4b>
           [ 0] lit0
           [ 1] stack_value
 [    73] range 401050, 40106e
          0x0000000000401050 <main>..
          0x000000000040106d <main+0x1d>
           [ 0] reg5
          range 40106e, 401090
          0x000000000040106e <main+0x1e>..
          0x000000000040108f <main+0x3f>
           [ 0] reg6
          range 401095, 40109c
          0x0000000000401095 <main+0x45>..
          0x000000000040109b <main+0x4b>
           [ 0] reg5
EOF

exit 0