Loading...
  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
/*
 * Copyright (c) 2022 Apple Inc. All rights reserved.
 *
 * @APPLE_LICENSE_HEADER_START@
 *
 * This file contains Original Code and/or Modifications of Original Code
 * as defined in and that are subject to the Apple Public Source License
 * Version 2.0 (the 'License'). You may not use this file except in
 * compliance with the License. Please obtain a copy of the License at
 * http://www.opensource.apple.com/apsl/ and read it before using this
 * file.
 *
 * The Original Code and all software distributed under the License are
 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
 * Please see the License for the specific language governing rights and
 * limitations under the License.
 *
 * @APPLE_LICENSE_HEADER_END@
 */

#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include <unordered_map>
#include <unordered_set>


#include <mach-o/compact_unwind_encoding.h>

#include "CompactUnwind.h"
#include "Misc.h"


namespace mach_o {


CompactUnwind::CompactUnwind(Architecture arch, const uint8_t* start, size_t size)
: _arch(arch), _unwindTable((unwind_info_section_header*)start), _unwindTableSize(size)
{
}

Error CompactUnwind::valid() const
{
    if ( _unwindTable->version != UNWIND_SECTION_VERSION )
        return Error("invalid unwind table version");
    if ( _unwindTable->commonEncodingsArraySectionOffset > _unwindTableSize )
        return Error("common encodings out of range");
    if ( _unwindTable->commonEncodingsArraySectionOffset + _unwindTable->commonEncodingsArrayCount*4 > _unwindTableSize )
        return Error("common encodings out of range");
    if ( _unwindTable->personalityArraySectionOffset > _unwindTableSize )
        return Error("personality table out of range");
    if ( _unwindTable->personalityArraySectionOffset + _unwindTable->personalityArrayCount*4 > _unwindTableSize )
        return Error("personality table out of range");
    if ( _unwindTable->indexSectionOffset > _unwindTableSize )
        return Error("index table out of range");
    if ( _unwindTable->indexSectionOffset + _unwindTable->indexCount*12 > _unwindTableSize )
        return Error("index table out of range");

    return Error::none();
}

Error CompactUnwind::forEachFirstLevelTableEntry(void (^callback)(uint32_t funcsStartOffset, uint32_t funcsEndOffset, uint32_t secondLevelOffset, uint32_t lsdaIndexOffset)) const
{
    const unwind_info_section_header_index_entry* indexes = (unwind_info_section_header_index_entry*)(((uint8_t*)_unwindTable) + _unwindTable->indexSectionOffset);
    for (uint32_t i=0; i < _unwindTable->indexCount-1; ++i) {
        const unwind_info_section_header_index_entry& entry = indexes[i];
        const unwind_info_section_header_index_entry& next  = indexes[i+1];
        if ( entry.secondLevelPagesSectionOffset > _unwindTableSize )
            return Error("second level table offset out of range");
        callback(entry.functionOffset, next.functionOffset, entry.secondLevelPagesSectionOffset, entry.lsdaIndexArraySectionOffset);
    }
    return Error::none();
}

Error CompactUnwind::forEachSecondLevelCompressedTableEntry(const struct unwind_info_compressed_second_level_page_header* pageHeader, uint32_t pageFunsOffset, void (^callback)(const UnwindInfo&)) const
{
    const compact_unwind_encoding_t* commonEncodings = (compact_unwind_encoding_t*)(((uint8_t*)_unwindTable)+_unwindTable->commonEncodingsArraySectionOffset);
    const compact_unwind_encoding_t* personalities   = (compact_unwind_encoding_t*)(((uint8_t*)_unwindTable)+_unwindTable->personalityArraySectionOffset);
    const compact_unwind_encoding_t* pageEncodings   = (compact_unwind_encoding_t*)(((uint8_t*)pageHeader)+pageHeader->encodingsPageOffset);
    const uint32_t* entries = (uint32_t*)(((uint8_t*)pageHeader)+pageHeader->entryPageOffset);
    for (uint16_t i=0; i < pageHeader->entryCount; ++i) {
        uint8_t encodingIndex = UNWIND_INFO_COMPRESSED_ENTRY_ENCODING_INDEX(entries[i]);
        compact_unwind_encoding_t encoding;
        if ( encodingIndex < _unwindTable->commonEncodingsArrayCount )
            encoding = commonEncodings[encodingIndex];
        else
            encoding = pageEncodings[encodingIndex-_unwindTable->commonEncodingsArrayCount];
        uint32_t funcOff = UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entries[i])+pageFunsOffset;
        uint32_t lsdaOffset = 0;
        uint32_t personalityOffset = 0;
        if ( encoding & UNWIND_HAS_LSDA ) {
            int personalityIndex = (encoding & UNWIND_PERSONALITY_MASK) >> (__builtin_ctz(UNWIND_PERSONALITY_MASK));
            personalityOffset = personalities[personalityIndex-1];
            lsdaOffset        = findLSDA(funcOff);
        }
        callback({funcOff, encoding, lsdaOffset, personalityOffset});
    }
    return Error::none();
}

Error CompactUnwind::forEachSecondLevelRegularTableEntry(const struct unwind_info_regular_second_level_page_header* pageHeader, void (^callback)(const UnwindInfo&)) const
{
    const unwind_info_regular_second_level_entry* entries       = (unwind_info_regular_second_level_entry*)((uint8_t*)pageHeader + pageHeader->entryPageOffset);
    const compact_unwind_encoding_t*              personalities = (compact_unwind_encoding_t*)(((uint8_t*)_unwindTable)+_unwindTable->personalityArraySectionOffset);
    for (uint32_t i=0; i < pageHeader->entryCount; ++i) {
        uint32_t lsdaOffset = 0;
        uint32_t personalityOffset = 0;
        if ( entries[i].encoding & UNWIND_HAS_LSDA ) {
            int personalityIndex = (entries[i].encoding & UNWIND_PERSONALITY_MASK) >> (__builtin_ctz(UNWIND_PERSONALITY_MASK));
            personalityOffset = personalities[personalityIndex-1];
            lsdaOffset = findLSDA(entries[i].functionOffset);
        }
        callback({entries[i].functionOffset, entries[i].encoding, lsdaOffset, personalityOffset});
    }
    return Error::none();
}

uint32_t CompactUnwind::findLSDA(uint32_t funcOffset) const
{
    const unwind_info_section_header_index_entry*       indexes                        = (unwind_info_section_header_index_entry*)(((uint8_t*)_unwindTable) + _unwindTable->indexSectionOffset);
    uint32_t                                            lsdaIndexArraySectionOffset    = indexes[0].lsdaIndexArraySectionOffset;
    uint32_t                                            lsdaIndexArrayEndSectionOffset = indexes[_unwindTable->indexCount-1].lsdaIndexArraySectionOffset;
    uint32_t                                            lsdaIndexArrayCount            = (lsdaIndexArrayEndSectionOffset-lsdaIndexArraySectionOffset)/sizeof(unwind_info_section_header_lsda_index_entry);
    const unwind_info_section_header_lsda_index_entry*  lsdas                          = (unwind_info_section_header_lsda_index_entry*)(((uint8_t*)_unwindTable) + lsdaIndexArraySectionOffset);
    for (uint32_t j=0; j < lsdaIndexArrayCount; ++j) {
        if ( lsdas[j].functionOffset == funcOffset ) {
            return lsdas[j].lsdaOffset;
        }
    }
    return 0;
}


void CompactUnwind::forEachUnwindInfo(void (^callback)(const UnwindInfo&)) const
{
    __block Error err;
    Error result = forEachFirstLevelTableEntry(^(uint32_t funcsStartOffset, uint32_t funcsEndOffset, uint32_t secondLevelOffset, uint32_t lsdaIndexOffset) {
        if ( funcsStartOffset > funcsEndOffset ) {
            err = Error("first level table function offsets not sequential");
            return;
        }
        const unwind_info_compressed_second_level_page_header* secondLevelTable = (unwind_info_compressed_second_level_page_header*)(((uint8_t*)_unwindTable) + secondLevelOffset);
        if ( secondLevelTable->kind == UNWIND_SECOND_LEVEL_COMPRESSED ) {
            err = forEachSecondLevelCompressedTableEntry(secondLevelTable, funcsStartOffset, callback);
        }
        else if ( secondLevelTable->kind == UNWIND_SECOND_LEVEL_REGULAR ) {
            const unwind_info_regular_second_level_page_header* secondLevelTableReg = (unwind_info_regular_second_level_page_header*)secondLevelTable;
            err = forEachSecondLevelRegularTableEntry(secondLevelTableReg, callback);
        }
        else {
            err = Error("second level table has invalid kind");
        }
    });
}

void CompactUnwind::encodingToString(uint32_t encoding, const void* funcBytes, char strBuf[128]) const
{
    if ( _arch.usesArm64Instructions() )
        encodingToString_arm64(encoding, funcBytes, strBuf);
    else if ( _arch.usesx86_64Instructions() )
        encodingToString_x86_64(encoding, funcBytes, strBuf);
    else
        strlcpy(strBuf, "arch not supported yet", 22);
}

#define EXTRACT_BITS(value, mask) \
( (value >> __builtin_ctz(mask)) & (((1 << __builtin_popcount(mask)))-1) )

void CompactUnwind::encodingToString_arm64(uint32_t encoding, const void*, char strBuf[128]) const
{
    uint32_t stackSize;
    switch ( encoding & UNWIND_ARM64_MODE_MASK ) {
    case UNWIND_ARM64_MODE_FRAMELESS:
        stackSize = EXTRACT_BITS(encoding, UNWIND_ARM64_FRAMELESS_STACK_SIZE_MASK);
        if ( stackSize == 0 )
            strlcpy(strBuf, "no frame, no saved registers ", 128);
        else
            snprintf(strBuf, 128, "stack size=%d: ", 16 * stackSize);
        if ( encoding & UNWIND_ARM64_FRAME_X19_X20_PAIR )
            strlcat(strBuf, "x19/20 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X21_X22_PAIR )
            strlcat(strBuf, "x21/22 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X23_X24_PAIR )
            strlcat(strBuf, "x23/24 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X25_X26_PAIR )
            strlcat(strBuf, "x25/26 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X27_X28_PAIR )
            strlcat(strBuf, "x27/28 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D8_D9_PAIR )
            strlcat(strBuf, "d8/9 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D10_D11_PAIR )
            strlcat(strBuf, "d10/11 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D12_D13_PAIR )
            strlcat(strBuf, "d12/13 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D14_D15_PAIR )
            strlcat(strBuf, "d14/15 ", 128);
        break;
    case UNWIND_ARM64_MODE_FRAME:
        strlcpy(strBuf, "std frame: ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X19_X20_PAIR )
            strlcat(strBuf, "x19/20 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X21_X22_PAIR )
            strlcat(strBuf, "x21/22 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X23_X24_PAIR )
            strlcat(strBuf, "x23/24 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X25_X26_PAIR )
            strlcat(strBuf, "x25/26 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_X27_X28_PAIR )
            strlcat(strBuf, "x27/28 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D8_D9_PAIR )
            strlcat(strBuf, "d8/9 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D10_D11_PAIR )
            strlcat(strBuf, "d10/11 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D12_D13_PAIR )
            strlcat(strBuf, "d12/13 ", 128);
        if ( encoding & UNWIND_ARM64_FRAME_D14_D15_PAIR )
            strlcat(strBuf, "d14/15 ", 128);
        break;
    case UNWIND_ARM64_MODE_DWARF:
        snprintf(strBuf, 128, "dwarf offset 0x%08X, ", encoding & UNWIND_X86_64_DWARF_SECTION_OFFSET);
        break;
    default:
        if ( encoding == 0 )
            strlcpy(strBuf, "no unwind info ", 128);
        else
            strlcpy(strBuf, "unknown arm64 compact encoding ", 128);
        break;
    }
}


void CompactUnwind::encodingToString_x86_64(uint32_t encoding, const void* funcBytes, char strBuf[128]) const
{
    *strBuf = '\0';
    switch ( encoding & UNWIND_X86_64_MODE_MASK ) {
    case UNWIND_X86_64_MODE_RBP_FRAME:
        {
            uint32_t savedRegistersOffset = EXTRACT_BITS(encoding, UNWIND_X86_64_RBP_FRAME_OFFSET);
            uint32_t savedRegistersLocations = EXTRACT_BITS(encoding, UNWIND_X86_64_RBP_FRAME_REGISTERS);
            if ( savedRegistersLocations == 0 ) {
                strlcpy(strBuf, "rbp frame, no saved registers", 128);
            }
            else {
                snprintf(strBuf, 128, "rbp frame, at -%d:", savedRegistersOffset*8);
                bool needComma = false;
                for (int i=0; i < 5; ++i) {
                    if ( needComma )
                        strncat(strBuf, ",", 128);
                    else
                        needComma = true;
                    switch (savedRegistersLocations & 0x7) {
                    case UNWIND_X86_64_REG_NONE:
                        strlcat(strBuf, "-", 128);
                        break;
                    case UNWIND_X86_64_REG_RBX:
                        strlcat(strBuf, "rbx", 128);
                        break;
                    case UNWIND_X86_64_REG_R12:
                        strlcat(strBuf, "r12", 128);
                        break;
                    case UNWIND_X86_64_REG_R13:
                        strlcat(strBuf, "r13", 128);
                        break;
                    case UNWIND_X86_64_REG_R14:
                        strlcat(strBuf, "r14", 128);
                        break;
                    case UNWIND_X86_64_REG_R15:
                        strlcat(strBuf, "r15", 128);
                        break;
                    default:
                        strlcat(strBuf, "r?", 128);
                    }
                    savedRegistersLocations = (savedRegistersLocations >> 3);
                    if ( savedRegistersLocations == 0 )
                        break;
                }
            }
        }
        break;
    case UNWIND_X86_64_MODE_STACK_IMMD:
    case UNWIND_X86_64_MODE_STACK_IND:
        {
            uint32_t stackSize = EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_SIZE);
            uint32_t stackAdjust = EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_ADJUST);
            uint32_t regCount = EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT);
            uint32_t permutation = EXTRACT_BITS(encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION);
            if ( (encoding & UNWIND_X86_64_MODE_MASK) == UNWIND_X86_64_MODE_STACK_IND ) {
                // stack size is encoded in subl $xxx,%esp instruction
                uint32_t subl = *((uint32_t*)((uint8_t*)funcBytes+stackSize));
                snprintf(strBuf, 128, "stack size=0x%08X, ", subl + 8*stackAdjust);
            }
            else {
                snprintf(strBuf, 128, "stack size=%d, ", stackSize*8);
            }
            if ( regCount == 0 ) {
                strlcat(strBuf, "no registers saved", 128);
            }
            else {
                int permunreg[6];
                switch ( regCount ) {
                case 6:
                    permunreg[0] = permutation/120;
                    permutation -= (permunreg[0]*120);
                    permunreg[1] = permutation/24;
                    permutation -= (permunreg[1]*24);
                    permunreg[2] = permutation/6;
                    permutation -= (permunreg[2]*6);
                    permunreg[3] = permutation/2;
                    permutation -= (permunreg[3]*2);
                    permunreg[4] = permutation;
                    permunreg[5] = 0;
                    break;
                case 5:
                    permunreg[0] = permutation/120;
                    permutation -= (permunreg[0]*120);
                    permunreg[1] = permutation/24;
                    permutation -= (permunreg[1]*24);
                    permunreg[2] = permutation/6;
                    permutation -= (permunreg[2]*6);
                    permunreg[3] = permutation/2;
                    permutation -= (permunreg[3]*2);
                    permunreg[4] = permutation;
                    break;
                case 4:
                    permunreg[0] = permutation/60;
                    permutation -= (permunreg[0]*60);
                    permunreg[1] = permutation/12;
                    permutation -= (permunreg[1]*12);
                    permunreg[2] = permutation/3;
                    permutation -= (permunreg[2]*3);
                    permunreg[3] = permutation;
                    break;
                case 3:
                    permunreg[0] = permutation/20;
                    permutation -= (permunreg[0]*20);
                    permunreg[1] = permutation/4;
                    permutation -= (permunreg[1]*4);
                    permunreg[2] = permutation;
                    break;
                case 2:
                    permunreg[0] = permutation/5;
                    permutation -= (permunreg[0]*5);
                    permunreg[1] = permutation;
                    break;
                case 1:
                    permunreg[0] = permutation;
                    break;
                }
                // renumber registers back to standard numbers
                int registers[6];
                bool used[7] = { false, false, false, false, false, false, false };
                for (int i=0; i < regCount; ++i) {
                    int renum = 0;
                    for (int u=1; u < 7; ++u) {
                        if ( !used[u] ) {
                            if ( renum == permunreg[i] ) {
                                registers[i] = u;
                                used[u] = true;
                                break;
                            }
                            ++renum;
                        }
                    }
                }
                bool needComma = false;
                for (int i=0; i < regCount; ++i) {
                    if ( needComma )
                        strlcat(strBuf, ",", 128);
                    else
                        needComma = true;
                    switch ( registers[i] ) {
                    case UNWIND_X86_64_REG_RBX:
                        strlcat(strBuf, "rbx", 128);
                        break;
                    case UNWIND_X86_64_REG_R12:
                        strlcat(strBuf, "r12", 128);
                        break;
                    case UNWIND_X86_64_REG_R13:
                        strlcat(strBuf, "r13", 128);
                        break;
                    case UNWIND_X86_64_REG_R14:
                        strlcat(strBuf, "r14", 128);
                        break;
                    case UNWIND_X86_64_REG_R15:
                        strlcat(strBuf, "r15", 128);
                        break;
                    case UNWIND_X86_64_REG_RBP:
                        strlcat(strBuf, "rbp", 128);
                        break;
                    default:
                        strlcat(strBuf, "r??", 128);
                    }
                }
            }
        }
        break;
    case UNWIND_X86_64_MODE_DWARF:
        snprintf(strBuf, 128, "dwarf offset 0x%08X, ", encoding & UNWIND_X86_64_DWARF_SECTION_OFFSET);
        break;
    default:
        if ( encoding == 0 )
            strlcat(strBuf, "no unwind information", 128);
        else
            strlcat(strBuf, "tbd ", 128);
    }
}

bool CompactUnwind::findUnwindInfo(uint32_t targetFunctionOffset, UnwindInfo& result) const
{
    // binary search first level table
    const unwind_info_section_header_index_entry* firstLevelTable = (unwind_info_section_header_index_entry*)(((uint8_t*)_unwindTable) + _unwindTable->indexSectionOffset);
    if ( targetFunctionOffset < firstLevelTable[0].functionOffset )
        return false;  // target before range covered by unwind info
    uint32_t low  = 0;
    uint32_t high = _unwindTable->indexCount;
    uint32_t last = high - 1;
    while (low < high) {
        uint32_t mid = (low + high) / 2;
        if ( firstLevelTable[mid].functionOffset <= targetFunctionOffset ) {
            if ( (mid == last) || (firstLevelTable[mid+1].functionOffset > targetFunctionOffset) ) {
                low = mid;
                break;
            }
            else {
                low = mid + 1;
            }
        }
        else {
            high = mid;
        }
    }
    const uint32_t firstLevelIndex             = low;
    const uint32_t firstLevelFunctionOffset    = firstLevelTable[firstLevelIndex].functionOffset;
    const uint32_t firstLevelEndFunctionOffset = firstLevelTable[firstLevelIndex+1].functionOffset;
    const void*    secondLevelAddr             = (uint8_t*)_unwindTable + firstLevelTable[firstLevelIndex].secondLevelPagesSectionOffset;

    if ( targetFunctionOffset > firstLevelEndFunctionOffset )
        return false;  // target beyond range covered by unwind info

    // do a binary search of second level page index, where index[e].offset <= targetOffset < index[e+1].offset
    uint32_t pageKind    = *((uint32_t*)secondLevelAddr);
    if ( pageKind == UNWIND_SECOND_LEVEL_REGULAR ) {
        // regular page
        const unwind_info_regular_second_level_page_header* pageHeader = (unwind_info_regular_second_level_page_header*)secondLevelAddr;
        const unwind_info_regular_second_level_entry*       entries    = (unwind_info_regular_second_level_entry*)((uint8_t*)secondLevelAddr + pageHeader->entryPageOffset);
        low  = 0;
        high = pageHeader->entryCount;
        last = pageHeader->entryCount - 1;
        while ( low < high ) {
            uint32_t mid = (low + high)/2;
            if ( entries[mid].functionOffset <= targetFunctionOffset ) {
                if ( (mid == last) || (entries[mid+1].functionOffset > targetFunctionOffset) ) {
                    // next is past target address, so we found it
                    low = mid;
                    result.funcOffset = entries[mid].functionOffset;
                    result.encoding   = entries[mid].encoding;
                    result.lsdaOffset = 0;
                    result.personalityOffset = 0;
                    break;
                }
                else {
                    low = mid+1;
                }
            }
            else {
                high = mid;
            }
        }
    }
    else if ( pageKind == UNWIND_SECOND_LEVEL_COMPRESSED ) {
        // compressed page
        const unwind_info_compressed_second_level_page_header* pageHeader      = (unwind_info_compressed_second_level_page_header*)secondLevelAddr;
        const uint32_t*                                        entries         = (uint32_t*)((uint8_t*)secondLevelAddr + pageHeader->entryPageOffset);
        const uint32_t                                         targetOffset    = targetFunctionOffset - firstLevelFunctionOffset;
        const uint32_t*                                        commonEncodings = (uint32_t*)(((uint8_t*)_unwindTable)+_unwindTable->commonEncodingsArraySectionOffset);
        const uint32_t*                                        pageEncodings   = (uint32_t*)(((uint8_t*)pageHeader)+pageHeader->encodingsPageOffset);
        last = pageHeader->entryCount - 1;
        high = pageHeader->entryCount;
        while ( low < high ) {
            uint32_t mid = (low + high)/2;
            if ( UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entries[mid]) <= targetOffset ) {
                if ( (mid == last) || (UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entries[mid+1]) > targetOffset) ) {
                    low = mid;
                    result.funcOffset = UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entries[mid]) + firstLevelFunctionOffset;
                    uint8_t encodingIndex = UNWIND_INFO_COMPRESSED_ENTRY_ENCODING_INDEX(entries[mid]);
                    if ( encodingIndex < _unwindTable->commonEncodingsArrayCount )
                        result.encoding = commonEncodings[encodingIndex];
                    else
                        result.encoding = pageEncodings[encodingIndex];
                    result.lsdaOffset = 0;
                    result.personalityOffset = 0;
                   break;
                }
                else {
                    low = mid+1;
                }
            }
            else {
                high = mid;
            }
        }
    }
    else {
        return false;
    }

    if ( result.encoding & UNWIND_HAS_LSDA ) {
        // binary search lsda table range for entry with exact match for functionOffset
        const void*     lsdaArrayStartAddr  = (uint8_t*)_unwindTable + firstLevelTable[firstLevelIndex].lsdaIndexArraySectionOffset;
        const uint32_t  lsdaArrayCount      = (firstLevelTable[firstLevelIndex+1].lsdaIndexArraySectionOffset - firstLevelTable[firstLevelIndex].lsdaIndexArraySectionOffset)/sizeof(unwind_info_section_header_lsda_index_entry);
        const unwind_info_section_header_lsda_index_entry* lsdaArray = (unwind_info_section_header_lsda_index_entry*)lsdaArrayStartAddr;
        low = 0;
        high = lsdaArrayCount;
        while ( low < high ) {
            uint32_t mid = (low + high)/2;
            if ( lsdaArray[mid].functionOffset == result.funcOffset ) {
                result.lsdaOffset = lsdaArray[mid].lsdaOffset;
                break;
            }
            else if ( lsdaArray[mid].functionOffset < result.funcOffset ) {
                low = mid+1;
            }
            else {
                high = mid;
            }
        }
        uint32_t personalityIndex = (result.encoding & UNWIND_PERSONALITY_MASK) >> (__builtin_ctz(UNWIND_PERSONALITY_MASK));
        if ( personalityIndex != 0 ) {
            --personalityIndex; // change 1-based to zero-based index
            if ( personalityIndex > _unwindTable->personalityArrayCount )
                 return false;
            const uint32_t* personalityArray = (uint32_t*)((uint8_t*)_unwindTable + _unwindTable->personalityArraySectionOffset);
            result.personalityOffset = personalityArray[personalityIndex];
        }
    }
    return true;
}


uint32_t CompactUnwind::compactUnwindEntrySize(bool is64)
{
    return is64 ? (4 * sizeof(uint64_t)) : (5 * sizeof(uint32_t));
}


#if BUILDING_MACHO_WRITER

bool CompactUnwind::encodingMeansUseDwarf(Architecture arch, uint32_t encoding)
{
    if ( arch.usesArm64Instructions() )
        return ((encoding & UNWIND_ARM64_MODE_MASK) == UNWIND_ARM64_MODE_DWARF);
    else if ( arch.usesx86_64Instructions() )
        return ((encoding & UNWIND_X86_64_MODE_MASK) == UNWIND_X86_64_MODE_DWARF);
    assert(0 && "arch not supported for compact unwind");
}

bool CompactUnwind::encodingCannotBeMerged(Architecture arch, uint32_t encoding)
{
    if ( arch.usesx86_64Instructions() )
        return ((encoding & UNWIND_X86_64_MODE_MASK) == UNWIND_X86_64_MODE_STACK_IND);
    return false;
}

// there are two bits in compact unwind that encode which personality function is used
// this function keeps track of which personality functions are used and when their 2-bit index is
void CompactUnwind::updatePersonalityForEntry(WriterUnwindInfo& entry, std::vector<UniquePersonality>& personalities)
{
    if ( (entry.personalityHandle != nullptr) || (entry.personalityOffset != 0) ) {
        std::optional<uint32_t> index;
        for ( const UniquePersonality& personality : personalities ) {
            if ( personality.handle == entry.personalityHandle ) {
                index = &personality - personalities.data();
                break;
            }
            else if ( (personality.handle == 0) && (entry.personalityHandle == 0)
                       && (personality.offset != 0) && (personality.offset == entry.personalityOffset) ) {
                index = &personality - personalities.data();
                break;
            }
        }
        if ( !index.has_value() ) {
            index = personalities.size();
            personalities.push_back({ entry.personalityOffset, entry.personalityHandle });
        }
        // update entry with personality index
        entry.encoding |= ((index.value()+ 1) << (__builtin_ctz(UNWIND_PERSONALITY_MASK)) );
    }
}

void CompactUnwind::compressDuplicates(Architecture arch, std::vector<WriterUnwindInfo>& entries, uint32_t& lsdaCount,
                                       CommonEncodingsMap& commonEncodings, std::vector<UniquePersonality>& personalities)
{
    lsdaCount = 0;
    // build a vector removing entries where next function has same encoding
    WriterUnwindInfo last = { ~0U, ~0U, ~0U, ~0U, nullptr, nullptr, nullptr };
    // encoding frequency to build common encodings
    size_t inEntriesSize = entries.size();
    std::unordered_map<compact_unwind_encoding_t, unsigned int> encodingsUsed;
    std::erase_if(entries, [&](WriterUnwindInfo& entry) {
        this->updatePersonalityForEntry(entry, personalities);
        bool newNeedsDwarf  = encodingMeansUseDwarf(arch, entry.encoding);
        bool cannotBeMerged = encodingCannotBeMerged(arch, entry.encoding);
        bool duplicate      = true;
        // remove entries which have same encoding and personalityPointer as last one
        if ( newNeedsDwarf || (entry.encoding != last.encoding) || (entry.personalityHandle != last.personalityHandle)
            || cannotBeMerged  || (entry.lsdaHandle != nullptr) ) {
            duplicate = false;

            // never put dwarf into common table
            if ( !newNeedsDwarf )
                encodingsUsed[entry.encoding] += 1;
        }
        if ( entry.encoding & UNWIND_HAS_LSDA ) {
            ++lsdaCount;
            assert(entry.lsdaHandle != nullptr);
        }
        last = entry;
        return duplicate;
    });

    using EncodingsAndUsage = std::pair<compact_unwind_encoding_t, unsigned int>;
    // put encodings into a vector and sort them descending by frequency and
    // ascending by the encoding value
    // there's a limited number of unique encodings but many entries so it's
    // faster to use an unordered map for encodings and sort it here
    std::vector<EncodingsAndUsage> encodingsByUsage;
    encodingsByUsage.resize(encodingsUsed.size());
    std::copy(encodingsUsed.begin(), encodingsUsed.end(), encodingsByUsage.begin());
    std::sort(encodingsByUsage.begin(), encodingsByUsage.end(),
            [](const EncodingsAndUsage& l, const EncodingsAndUsage& r) {
                if ( l.second != r.second )
                    return l.second > r.second;
                /* sort by encoding time for same number of usages for deterministic output */
                return l.first < r.first;
            });
    // put the most common encodings into the common table, but at most 127 of them
    uint32_t maxNumCommonEncodings = std::min((uint32_t)encodingsByUsage.size(), 127u);
    for ( uint32_t i = 0; i < maxNumCommonEncodings; ++i ) {
        if ( encodingsByUsage[i].second <= 1 )
            break;
        commonEncodings[encodingsByUsage[i].first] = i;
    }
    if (_verbose) fprintf(stderr, "compressDuplicates() entries.size()=%lu, uniqueEntries.size()=%lu, lsdaCount=%u\n",
                          inEntriesSize, entries.size(), lsdaCount);
    if (_verbose) fprintf(stderr, "compressDuplicates() %lu common encodings found\n", commonEncodings.size());
}

uint8_t CompactUnwind::encodingIndex(uint32_t encoding, const CommonEncodingsMap& commonEncodings, const CommonEncodingsMap& pageSpecificEncodings)
{
    const auto& pos = commonEncodings.find(encoding);
    if ( pos != commonEncodings.end() )
        return pos->second;
    else
        return pageSpecificEncodings.at(encoding);
}

void CompactUnwind::makeRegularSecondLevelPage(const std::vector<WriterUnwindInfo>& uniqueInfos, uint32_t pageSize,
                                               size_t& curInfosIndex, uint8_t*& pageStart, unwind_info_section_header_lsda_index_entry*& lsdaContent)
{
    const size_t maxEntriesPerPage = (pageSize - sizeof(unwind_info_regular_second_level_page_header))/sizeof(unwind_info_regular_second_level_entry);
    const size_t entriesToAdd      = std::min(maxEntriesPerPage, uniqueInfos.size() - curInfosIndex);

    unwind_info_regular_second_level_page_header* pageHeader = (unwind_info_regular_second_level_page_header*)pageStart;
    pageHeader->kind                = UNWIND_SECOND_LEVEL_REGULAR;
    pageHeader->entryPageOffset     = sizeof(unwind_info_regular_second_level_page_header);
    pageHeader->entryCount          = entriesToAdd;

    unwind_info_regular_second_level_entry* entryArray = (unwind_info_regular_second_level_entry*)((uint8_t*)pageHeader + pageHeader->entryPageOffset);
    for (uint32_t i=0; i < entriesToAdd; ++i) {
        const WriterUnwindInfo& info = uniqueInfos[curInfosIndex + i];
        entryArray[i].functionOffset = info.funcOffset;
        entryArray[i].encoding       = info.encoding;
        uint64_t entrySectionOffset = (uint8_t*)&entryArray[i].functionOffset - (uint8_t*)&_bytes[0];
        this->_imageOffsetFixups.push_back({ info.funcHandle, (uint32_t)entrySectionOffset, false });
        if ( info.encoding & UNWIND_HAS_LSDA ) {
            lsdaContent->functionOffset = info.funcOffset;
            lsdaContent->lsdaOffset     = info.lsdaOffset;
            assert(info.lsdaHandle != nullptr);

            uint64_t sectionOffset = (uint8_t*)&lsdaContent->functionOffset - (uint8_t*)&_bytes[0];
            this->_imageOffsetFixups.push_back({ info.funcHandle, (uint32_t)sectionOffset, false });

            sectionOffset = (uint8_t*)&lsdaContent->lsdaOffset - (uint8_t*)&_bytes[0];
            this->_imageOffsetFixups.push_back({ info.lsdaHandle, (uint32_t)sectionOffset, false });

            ++lsdaContent;
        }
    }

    // update what has been processed
    curInfosIndex += entriesToAdd;
    pageStart     += (pageHeader->entryPageOffset + pageHeader->entryCount *sizeof(unwind_info_regular_second_level_entry));
}

void CompactUnwind::makeCompressedSecondLevelPage(const std::vector<WriterUnwindInfo>& uniqueInfos, const CommonEncodingsMap& commonEncodings,
                                                  uint32_t pageSize, size_t& curInfosIndex, uint8_t*& pageStart, unwind_info_section_header_lsda_index_entry*& lsdaContent)
{
    // first pass calculates how many compressed entries we could fit in this sized page
    // keep adding entries to page until:
    //  1) encoding table plus entry table plus header exceed page size
    //  2) the file offset delta from the first to last function > 24 bits
    //  3) custom encoding index reaches 255
    //  4) run out of uniqueInfos to encode
    CommonEncodingsMap pageSpecificEncodings;
    uint32_t space          = pageSize - sizeof(unwind_info_compressed_second_level_page_header);
    uint32_t entryCount     = 0;
    while ( curInfosIndex + entryCount < uniqueInfos.size() // 4) run out of uniqueInfos to encode
            && space >= sizeof(uint32_t) ) { // 1) enough room to encode a compressed entry
        const WriterUnwindInfo& info = uniqueInfos[curInfosIndex + entryCount];
        if ( commonEncodings.find(info.encoding) == commonEncodings.end() ) {
            if ( pageSpecificEncodings.find(info.encoding) == pageSpecificEncodings.end() ) {
                // 1) enough room for the new encoding and the entry, no point adding the encoding
                // only if there won't be place for the entry
                if ( space < (sizeof(uint32_t) * 2) )
                    break;

                // need to add page specific encoding
                uint32_t nextEncodingIndex = (uint32_t)(commonEncodings.size() + pageSpecificEncodings.size());
                if ( nextEncodingIndex <= 255 ) {
                    pageSpecificEncodings[info.encoding] = nextEncodingIndex;
                    space -= sizeof(uint32_t);
                } else {
                    break; // 3) custom encoding index reaches 255
                }
            }
        }
        // compute function offset
        assert(info.funcOffset >= uniqueInfos[curInfosIndex].funcOffset);
        uint32_t funcOffsetWithInPage = info.funcOffset - uniqueInfos[curInfosIndex].funcOffset;
        if ( funcOffsetWithInPage > 0x00FFFF00 ) {
            // don't use 0x00FFFFFF because addresses may vary after atoms are laid out again
            break; // 2) the file offset delta from the first to last function > 24 bits
        }
        ++entryCount;
        space -= sizeof(uint32_t);
    }

    // fallback to regular encoding when eligible compressed entries don't use all the available page space,
    // this isn't the last page and the number of the eligible entries is smaller
    // than the number of regular entries that can be encoded in this page
    if ( space >= minPageSize && (curInfosIndex + entryCount) < uniqueInfos.size() )  {
        const size_t maxEntriesPerPage = (pageSize - sizeof(unwind_info_regular_second_level_page_header))/sizeof(unwind_info_regular_second_level_entry);
        if ( entryCount < maxEntriesPerPage ) {
            makeRegularSecondLevelPage(uniqueInfos, pageSize, curInfosIndex, pageStart, lsdaContent);
            return;
        }
     }

    // second pass fills in page
    unwind_info_compressed_second_level_page_header* pageHeader = (unwind_info_compressed_second_level_page_header*)pageStart;
    pageHeader->kind                = UNWIND_SECOND_LEVEL_COMPRESSED;
    pageHeader->entryPageOffset     = sizeof(unwind_info_compressed_second_level_page_header);
    pageHeader->entryCount          = entryCount;
    pageHeader->encodingsPageOffset = pageHeader->entryPageOffset + entryCount*sizeof(uint32_t);
    pageHeader->encodingsCount      = pageSpecificEncodings.size();
    uint32_t* const entriesArray    = (uint32_t*)((uint8_t*)pageHeader + pageHeader->entryPageOffset);
    uint32_t        firstFuncOffset = uniqueInfos[curInfosIndex].funcOffset;
    const void*     firstFuncHandle = uniqueInfos[curInfosIndex].funcHandle;
    for (uint32_t i=0; i < entryCount; ++i) {
        const WriterUnwindInfo& info  = uniqueInfos[curInfosIndex + i];
        uint32_t          offset      = info.funcOffset - firstFuncOffset;
        uint8_t           eIndex      = encodingIndex(info.encoding, commonEncodings, pageSpecificEncodings);
        entriesArray[i]               = (offset & 0x00FFFFFF) | (eIndex << 24);
        uint64_t sectionOffset        = (uint8_t*)&entriesArray[i] - (uint8_t*)&_bytes[0];
        this->_diff24Fixups.push_back({ info.funcHandle, firstFuncHandle, (uint32_t)sectionOffset });

        if ( info.encoding & UNWIND_HAS_LSDA ) {
            lsdaContent->functionOffset = info.funcOffset;
            lsdaContent->lsdaOffset     = info.lsdaOffset;
            assert(info.lsdaHandle != nullptr);

            sectionOffset = (uint8_t*)&lsdaContent->functionOffset - (uint8_t*)&_bytes[0];
            this->_imageOffsetFixups.push_back({ info.funcHandle, (uint32_t)sectionOffset, false });

            sectionOffset = (uint8_t*)&lsdaContent->lsdaOffset - (uint8_t*)&_bytes[0];
            this->_imageOffsetFixups.push_back({ info.lsdaHandle, (uint32_t)sectionOffset, false });

            ++lsdaContent;
        }
    }
    uint32_t* const encodingsArray      = (uint32_t*)((uint8_t*)pageHeader + pageHeader->encodingsPageOffset);
    uint32_t const  commonEncodingsSize = (uint32_t)commonEncodings.size();
    for (const auto& enc : pageSpecificEncodings) {
        encodingsArray[enc.second - commonEncodingsSize] = enc.first;
    }

    // update what has been processed
    curInfosIndex += entryCount;
    pageStart     += (pageHeader->encodingsPageOffset + pageHeader->encodingsCount *sizeof(uint32_t));
}


//
// FIXME CompactUnwind needs two modes: fast and optimized.
//   Fast uses regular pages every and is easy to size and layout
//   Optimize tries to make the table as small as possible, but that means the size estimation will be expensive
//
size_t CompactUnwind::estimateCompactUnwindTableSize(std::span<const WriterUnwindInfo> unwindInfos)
{
    std::unordered_set<uint32_t> uniqueEncodings;
    unsigned lsdaCount = 0;
    for (const WriterUnwindInfo& entry : unwindInfos) {
        uniqueEncodings.insert(entry.encoding);
        if ( entry.encoding & UNWIND_HAS_LSDA )
            ++lsdaCount;
    }
    //fprintf(stderr, "ext: unwindInfos.size=%lu   uniqueEncodings.size=%lu\n", unwindInfos.size(), uniqueEncodings.size());
    // calculate worst case size where all pages are regular
    return 64 + 20 + unwindInfos.size()*8 + lsdaCount*8 + unwindInfos.size()/32 + uniqueEncodings.size()*4;
}

// Note: unwindInfos must come in sorted by functionOffset
CompactUnwind::CompactUnwind(Architecture arch, std::vector<WriterUnwindInfo> unwindInfos)
{
    // build new compressed list by removing entries where next function has same encoding
    // put the most common encodings into the common table, but at most 127 of them
    // build up vector of personality functions used, with an index for each
    uint32_t                        lsdaCount;
    CommonEncodingsMap              commonEncodings;
    std::vector<UniquePersonality>  personalities;
    compressDuplicates(arch, unwindInfos, lsdaCount, commonEncodings, personalities);
    // FIXME: need a way to error out if there are more than 3 personality functions used

    // calculate worst case size for all unwind info pages when allocating buffer
    const size_t entriesPerRegularPage = (maxPageSize-sizeof(unwind_info_regular_second_level_page_header))/sizeof(unwind_info_regular_second_level_entry);
    const size_t pageCountUpperBound = ((unwindInfos.size() - 1)/entriesPerRegularPage) + 3;
    _bytes.resize(estimateCompactUnwindTableSize(unwindInfos));

    // fill in section header
    unwind_info_section_header* header = (unwind_info_section_header*)&_bytes[0];
    header->version                           = UNWIND_SECTION_VERSION;
    header->commonEncodingsArraySectionOffset = sizeof(unwind_info_section_header);
    header->commonEncodingsArrayCount         = (uint32_t)commonEncodings.size();
    header->personalityArraySectionOffset     = header->commonEncodingsArraySectionOffset + (uint32_t)(commonEncodings.size()*sizeof(compact_unwind_encoding_t));
    header->personalityArrayCount             = (uint32_t)personalities.size();
    header->indexSectionOffset                = header->personalityArraySectionOffset + (uint32_t)(personalities.size()*sizeof(uint32_t));
    header->indexCount                        = 0;  // fill in after second level pages built

    // fill in commmon encodings
    uint32_t* commonEncodingsArray = (uint32_t*)&_bytes[header->commonEncodingsArraySectionOffset];
    for (const auto& enc : commonEncodings ) {
        assert(enc.second < header->commonEncodingsArrayCount);
        commonEncodingsArray[enc.second] = enc.first;
    }

    // fill in personalities
    uint32_t* personalityArray = (uint32_t*)&_bytes[header->personalityArraySectionOffset];
    for (const auto& p : personalities) {
        size_t index = &p - personalities.data();
        personalityArray[index] = p.offset;

        uint64_t sectionOffset = (uint8_t*)&personalityArray[index] - (uint8_t*)header;
        this->_imageOffsetFixups.push_back({ p.handle, (uint32_t)sectionOffset, false });
    }

    // build second level pages and fill in first level as each is built
    unwind_info_section_header_index_entry*      firstLevelTable    = (unwind_info_section_header_index_entry*)&_bytes[header->indexSectionOffset];
    unwind_info_section_header_lsda_index_entry* lsdaContent        = (unwind_info_section_header_lsda_index_entry*)&_bytes[header->indexSectionOffset+pageCountUpperBound*sizeof(unwind_info_section_header_index_entry)];
    uint8_t*                                     secondLevelContent = (uint8_t*)&lsdaContent[lsdaCount];
    uint8_t* const                               firstSecondContent = secondLevelContent;
    size_t curInfosIndex = 0;
    // reserve approximate buffers for fixup vectors
    this->_imageOffsetFixups.reserve(unwindInfos.size() / 2);
    this->_diff24Fixups.reserve(unwindInfos.size() / 2);

    while (curInfosIndex < unwindInfos.size()) {
        uint64_t sectionOffset = (uint8_t*)&firstLevelTable[header->indexCount].functionOffset - (uint8_t*)header;
        this->_imageOffsetFixups.push_back({ unwindInfos[curInfosIndex].funcHandle,
            (uint32_t)sectionOffset,
            false });

        firstLevelTable[header->indexCount].functionOffset                = unwindInfos[curInfosIndex].funcOffset;
        firstLevelTable[header->indexCount].secondLevelPagesSectionOffset = (uint32_t)(secondLevelContent - &_bytes[0]);
        firstLevelTable[header->indexCount].lsdaIndexArraySectionOffset   = (uint32_t)((uint8_t*)lsdaContent - &_bytes[0]);
        makeCompressedSecondLevelPage(unwindInfos, commonEncodings, maxPageSize, curInfosIndex, secondLevelContent, lsdaContent);

        header->indexCount++;
        // 8-byte align next page
        secondLevelContent = (uint8_t*)(((uintptr_t)secondLevelContent+7) & (-8));
    }
    // add extra top level index to denote the end
    {
        firstLevelTable[header->indexCount].functionOffset                = unwindInfos.back().funcOffset;
        firstLevelTable[header->indexCount].secondLevelPagesSectionOffset = 0;
        firstLevelTable[header->indexCount].lsdaIndexArraySectionOffset   = (uint32_t)(firstSecondContent - &_bytes[0]);

        uint64_t sectionOffset = (uint8_t*)&firstLevelTable[header->indexCount].functionOffset - (uint8_t*)header;
        this->_imageOffsetFixups.push_back({
            unwindInfos.back().funcHandle,
            (uint32_t)sectionOffset,
            true
        });

        header->indexCount++;
    }

    assert(header->indexCount <= pageCountUpperBound && "not enough space reserved for compact unwind first level table");

    // update pointers to the constructed table can be used
    //fprintf(stderr, "est-size=%lu, act-size=%lu, ext2=%lu\n", _bytes.size(), secondLevelContent-&_bytes[0], estimateCompactUnwindTableSize(unwindInfos));
    assert(secondLevelContent <= &_bytes[_bytes.size()]);
    _bytes.resize(secondLevelContent-&_bytes[0]);
    _unwindTable     = header;
    _unwindTableSize = _bytes.size();
}



#endif // BUILDING_MACHO_WRITER




} // namespace mach_o