Blame 0002-PATCH-lld-Import-compact_unwind_encoding.h-from-libu.patch

2a948c7
From 43dfe54ce017c8d37eaec480a2f13a492bbc4203 Mon Sep 17 00:00:00 2001
2a948c7
From: serge-sans-paille <sguelton@redhat.com>
2a948c7
Date: Thu, 25 Feb 2021 14:24:14 +0100
2a948c7
Subject: [PATCH 2/2] [PATCH][lld] Import compact_unwind_encoding.h from
2a948c7
 libunwind
2a948c7
2a948c7
This avoids an implicit cross package dependency
2a948c7
---
2a948c7
 lld/include/mach-o/compact_unwind_encoding.h | 477 +++++++++++++++++++++++++++
2a948c7
 1 file changed, 477 insertions(+)
2a948c7
 create mode 100644 lld/include/mach-o/compact_unwind_encoding.h
2a948c7
2a948c7
diff --git a/lld/include/mach-o/compact_unwind_encoding.h b/lld/include/mach-o/compact_unwind_encoding.h
2a948c7
new file mode 100644
2a948c7
index 0000000..5301b10
2a948c7
--- /dev/null
2a948c7
+++ b/lld/include/mach-o/compact_unwind_encoding.h
07ce44f
@@ -0,0 +1,477 @@
07ce44f
+//===------------------ mach-o/compact_unwind_encoding.h ------------------===//
07ce44f
+//
07ce44f
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
07ce44f
+// See https://llvm.org/LICENSE.txt for license information.
07ce44f
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
07ce44f
+//
07ce44f
+//
07ce44f
+// Darwin's alternative to DWARF based unwind encodings.
07ce44f
+//
07ce44f
+//===----------------------------------------------------------------------===//
07ce44f
+
07ce44f
+
07ce44f
+#ifndef __COMPACT_UNWIND_ENCODING__
07ce44f
+#define __COMPACT_UNWIND_ENCODING__
07ce44f
+
07ce44f
+#include <stdint.h>
07ce44f
+
07ce44f
+//
07ce44f
+// Compilers can emit standard DWARF FDEs in the __TEXT,__eh_frame section
07ce44f
+// of object files. Or compilers can emit compact unwind information in
07ce44f
+// the __LD,__compact_unwind section.
07ce44f
+//
07ce44f
+// When the linker creates a final linked image, it will create a
07ce44f
+// __TEXT,__unwind_info section.  This section is a small and fast way for the
07ce44f
+// runtime to access unwind info for any given function.  If the compiler
07ce44f
+// emitted compact unwind info for the function, that compact unwind info will
07ce44f
+// be encoded in the __TEXT,__unwind_info section. If the compiler emitted
07ce44f
+// DWARF unwind info, the __TEXT,__unwind_info section will contain the offset
07ce44f
+// of the FDE in the __TEXT,__eh_frame section in the final linked image.
07ce44f
+//
07ce44f
+// Note: Previously, the linker would transform some DWARF unwind infos into
07ce44f
+//       compact unwind info.  But that is fragile and no longer done.
07ce44f
+
07ce44f
+
07ce44f
+//
07ce44f
+// The compact unwind endoding is a 32-bit value which encoded in an
07ce44f
+// architecture specific way, which registers to restore from where, and how
07ce44f
+// to unwind out of the function.
07ce44f
+//
07ce44f
+typedef uint32_t compact_unwind_encoding_t;
07ce44f
+
07ce44f
+
07ce44f
+// architecture independent bits
07ce44f
+enum {
07ce44f
+    UNWIND_IS_NOT_FUNCTION_START           = 0x80000000,
07ce44f
+    UNWIND_HAS_LSDA                        = 0x40000000,
07ce44f
+    UNWIND_PERSONALITY_MASK                = 0x30000000,
07ce44f
+};
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+//
07ce44f
+// x86
07ce44f
+//
07ce44f
+// 1-bit: start
07ce44f
+// 1-bit: has lsda
07ce44f
+// 2-bit: personality index
07ce44f
+//
07ce44f
+// 4-bits: 0=old, 1=ebp based, 2=stack-imm, 3=stack-ind, 4=DWARF
07ce44f
+//  ebp based:
07ce44f
+//        15-bits (5*3-bits per reg) register permutation
07ce44f
+//        8-bits for stack offset
07ce44f
+//  frameless:
07ce44f
+//        8-bits stack size
07ce44f
+//        3-bits stack adjust
07ce44f
+//        3-bits register count
07ce44f
+//        10-bits register permutation
07ce44f
+//
07ce44f
+enum {
07ce44f
+    UNWIND_X86_MODE_MASK                         = 0x0F000000,
07ce44f
+    UNWIND_X86_MODE_EBP_FRAME                    = 0x01000000,
07ce44f
+    UNWIND_X86_MODE_STACK_IMMD                   = 0x02000000,
07ce44f
+    UNWIND_X86_MODE_STACK_IND                    = 0x03000000,
07ce44f
+    UNWIND_X86_MODE_DWARF                        = 0x04000000,
07ce44f
+
07ce44f
+    UNWIND_X86_EBP_FRAME_REGISTERS               = 0x00007FFF,
07ce44f
+    UNWIND_X86_EBP_FRAME_OFFSET                  = 0x00FF0000,
07ce44f
+
07ce44f
+    UNWIND_X86_FRAMELESS_STACK_SIZE              = 0x00FF0000,
07ce44f
+    UNWIND_X86_FRAMELESS_STACK_ADJUST            = 0x0000E000,
07ce44f
+    UNWIND_X86_FRAMELESS_STACK_REG_COUNT         = 0x00001C00,
07ce44f
+    UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION   = 0x000003FF,
07ce44f
+
07ce44f
+    UNWIND_X86_DWARF_SECTION_OFFSET              = 0x00FFFFFF,
07ce44f
+};
07ce44f
+
07ce44f
+enum {
07ce44f
+    UNWIND_X86_REG_NONE     = 0,
07ce44f
+    UNWIND_X86_REG_EBX      = 1,
07ce44f
+    UNWIND_X86_REG_ECX      = 2,
07ce44f
+    UNWIND_X86_REG_EDX      = 3,
07ce44f
+    UNWIND_X86_REG_EDI      = 4,
07ce44f
+    UNWIND_X86_REG_ESI      = 5,
07ce44f
+    UNWIND_X86_REG_EBP      = 6,
07ce44f
+};
07ce44f
+
07ce44f
+//
07ce44f
+// For x86 there are four modes for the compact unwind encoding:
07ce44f
+// UNWIND_X86_MODE_EBP_FRAME:
07ce44f
+//    EBP based frame where EBP is push on stack immediately after return address,
07ce44f
+//    then ESP is moved to EBP. Thus, to unwind ESP is restored with the current
07ce44f
+//    EPB value, then EBP is restored by popping off the stack, and the return
07ce44f
+//    is done by popping the stack once more into the pc.
07ce44f
+//    All non-volatile registers that need to be restored must have been saved
07ce44f
+//    in a small range in the stack that starts EBP-4 to EBP-1020.  The offset/4
07ce44f
+//    is encoded in the UNWIND_X86_EBP_FRAME_OFFSET bits.  The registers saved
07ce44f
+//    are encoded in the UNWIND_X86_EBP_FRAME_REGISTERS bits as five 3-bit entries.
07ce44f
+//    Each entry contains which register to restore.
07ce44f
+// UNWIND_X86_MODE_STACK_IMMD:
07ce44f
+//    A "frameless" (EBP not used as frame pointer) function with a small 
07ce44f
+//    constant stack size.  To return, a constant (encoded in the compact
07ce44f
+//    unwind encoding) is added to the ESP. Then the return is done by
07ce44f
+//    popping the stack into the pc.
07ce44f
+//    All non-volatile registers that need to be restored must have been saved
07ce44f
+//    on the stack immediately after the return address.  The stack_size/4 is
07ce44f
+//    encoded in the UNWIND_X86_FRAMELESS_STACK_SIZE (max stack size is 1024).
07ce44f
+//    The number of registers saved is encoded in UNWIND_X86_FRAMELESS_STACK_REG_COUNT.
07ce44f
+//    UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION constains which registers were
07ce44f
+//    saved and their order.
07ce44f
+// UNWIND_X86_MODE_STACK_IND:
07ce44f
+//    A "frameless" (EBP not used as frame pointer) function large constant 
07ce44f
+//    stack size.  This case is like the previous, except the stack size is too
07ce44f
+//    large to encode in the compact unwind encoding.  Instead it requires that 
07ce44f
+//    the function contains "subl $nnnnnnnn,ESP" in its prolog.  The compact 
07ce44f
+//    encoding contains the offset to the nnnnnnnn value in the function in
07ce44f
+//    UNWIND_X86_FRAMELESS_STACK_SIZE.  
07ce44f
+// UNWIND_X86_MODE_DWARF:
07ce44f
+//    No compact unwind encoding is available.  Instead the low 24-bits of the
07ce44f
+//    compact encoding is the offset of the DWARF FDE in the __eh_frame section.
07ce44f
+//    This mode is never used in object files.  It is only generated by the 
07ce44f
+//    linker in final linked images which have only DWARF unwind info for a
07ce44f
+//    function.
07ce44f
+//
07ce44f
+// The permutation encoding is a Lehmer code sequence encoded into a
07ce44f
+// single variable-base number so we can encode the ordering of up to
07ce44f
+// six registers in a 10-bit space.
07ce44f
+//
07ce44f
+// The following is the algorithm used to create the permutation encoding used
07ce44f
+// with frameless stacks.  It is passed the number of registers to be saved and
07ce44f
+// an array of the register numbers saved.
07ce44f
+//
07ce44f
+//uint32_t permute_encode(uint32_t registerCount, const uint32_t registers[6])
07ce44f
+//{
07ce44f
+//    uint32_t renumregs[6];
07ce44f
+//    for (int i=6-registerCount; i < 6; ++i) {
07ce44f
+//        int countless = 0;
07ce44f
+//        for (int j=6-registerCount; j < i; ++j) {
07ce44f
+//            if ( registers[j] < registers[i] )
07ce44f
+//                ++countless;
07ce44f
+//        }
07ce44f
+//        renumregs[i] = registers[i] - countless -1;
07ce44f
+//    }
07ce44f
+//    uint32_t permutationEncoding = 0;
07ce44f
+//    switch ( registerCount ) {
07ce44f
+//        case 6:
07ce44f
+//            permutationEncoding |= (120*renumregs[0] + 24*renumregs[1]
07ce44f
+//                                    + 6*renumregs[2] + 2*renumregs[3]
07ce44f
+//                                      + renumregs[4]);
07ce44f
+//            break;
07ce44f
+//        case 5:
07ce44f
+//            permutationEncoding |= (120*renumregs[1] + 24*renumregs[2]
07ce44f
+//                                    + 6*renumregs[3] + 2*renumregs[4]
07ce44f
+//                                      + renumregs[5]);
07ce44f
+//            break;
07ce44f
+//        case 4:
07ce44f
+//            permutationEncoding |= (60*renumregs[2] + 12*renumregs[3]
07ce44f
+//                                   + 3*renumregs[4] + renumregs[5]);
07ce44f
+//            break;
07ce44f
+//        case 3:
07ce44f
+//            permutationEncoding |= (20*renumregs[3] + 4*renumregs[4]
07ce44f
+//                                     + renumregs[5]);
07ce44f
+//            break;
07ce44f
+//        case 2:
07ce44f
+//            permutationEncoding |= (5*renumregs[4] + renumregs[5]);
07ce44f
+//            break;
07ce44f
+//        case 1:
07ce44f
+//            permutationEncoding |= (renumregs[5]);
07ce44f
+//            break;
07ce44f
+//    }
07ce44f
+//    return permutationEncoding;
07ce44f
+//}
07ce44f
+//
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+//
07ce44f
+// x86_64
07ce44f
+//
07ce44f
+// 1-bit: start
07ce44f
+// 1-bit: has lsda
07ce44f
+// 2-bit: personality index
07ce44f
+//
07ce44f
+// 4-bits: 0=old, 1=rbp based, 2=stack-imm, 3=stack-ind, 4=DWARF
07ce44f
+//  rbp based:
07ce44f
+//        15-bits (5*3-bits per reg) register permutation
07ce44f
+//        8-bits for stack offset
07ce44f
+//  frameless:
07ce44f
+//        8-bits stack size
07ce44f
+//        3-bits stack adjust
07ce44f
+//        3-bits register count
07ce44f
+//        10-bits register permutation
07ce44f
+//
07ce44f
+enum {
07ce44f
+    UNWIND_X86_64_MODE_MASK                         = 0x0F000000,
07ce44f
+    UNWIND_X86_64_MODE_RBP_FRAME                    = 0x01000000,
07ce44f
+    UNWIND_X86_64_MODE_STACK_IMMD                   = 0x02000000,
07ce44f
+    UNWIND_X86_64_MODE_STACK_IND                    = 0x03000000,
07ce44f
+    UNWIND_X86_64_MODE_DWARF                        = 0x04000000,
07ce44f
+
07ce44f
+    UNWIND_X86_64_RBP_FRAME_REGISTERS               = 0x00007FFF,
07ce44f
+    UNWIND_X86_64_RBP_FRAME_OFFSET                  = 0x00FF0000,
07ce44f
+
07ce44f
+    UNWIND_X86_64_FRAMELESS_STACK_SIZE              = 0x00FF0000,
07ce44f
+    UNWIND_X86_64_FRAMELESS_STACK_ADJUST            = 0x0000E000,
07ce44f
+    UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT         = 0x00001C00,
07ce44f
+    UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION   = 0x000003FF,
07ce44f
+
07ce44f
+    UNWIND_X86_64_DWARF_SECTION_OFFSET              = 0x00FFFFFF,
07ce44f
+};
07ce44f
+
07ce44f
+enum {
07ce44f
+    UNWIND_X86_64_REG_NONE       = 0,
07ce44f
+    UNWIND_X86_64_REG_RBX        = 1,
07ce44f
+    UNWIND_X86_64_REG_R12        = 2,
07ce44f
+    UNWIND_X86_64_REG_R13        = 3,
07ce44f
+    UNWIND_X86_64_REG_R14        = 4,
07ce44f
+    UNWIND_X86_64_REG_R15        = 5,
07ce44f
+    UNWIND_X86_64_REG_RBP        = 6,
07ce44f
+};
07ce44f
+//
07ce44f
+// For x86_64 there are four modes for the compact unwind encoding:
07ce44f
+// UNWIND_X86_64_MODE_RBP_FRAME:
07ce44f
+//    RBP based frame where RBP is push on stack immediately after return address,
07ce44f
+//    then RSP is moved to RBP. Thus, to unwind RSP is restored with the current 
07ce44f
+//    EPB value, then RBP is restored by popping off the stack, and the return 
07ce44f
+//    is done by popping the stack once more into the pc.
07ce44f
+//    All non-volatile registers that need to be restored must have been saved
07ce44f
+//    in a small range in the stack that starts RBP-8 to RBP-2040.  The offset/8 
07ce44f
+//    is encoded in the UNWIND_X86_64_RBP_FRAME_OFFSET bits.  The registers saved
07ce44f
+//    are encoded in the UNWIND_X86_64_RBP_FRAME_REGISTERS bits as five 3-bit entries.
07ce44f
+//    Each entry contains which register to restore.  
07ce44f
+// UNWIND_X86_64_MODE_STACK_IMMD:
07ce44f
+//    A "frameless" (RBP not used as frame pointer) function with a small 
07ce44f
+//    constant stack size.  To return, a constant (encoded in the compact 
07ce44f
+//    unwind encoding) is added to the RSP. Then the return is done by 
07ce44f
+//    popping the stack into the pc.
07ce44f
+//    All non-volatile registers that need to be restored must have been saved
07ce44f
+//    on the stack immediately after the return address.  The stack_size/8 is
07ce44f
+//    encoded in the UNWIND_X86_64_FRAMELESS_STACK_SIZE (max stack size is 2048).
07ce44f
+//    The number of registers saved is encoded in UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT.
07ce44f
+//    UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION constains which registers were
07ce44f
+//    saved and their order.  
07ce44f
+// UNWIND_X86_64_MODE_STACK_IND:
07ce44f
+//    A "frameless" (RBP not used as frame pointer) function large constant 
07ce44f
+//    stack size.  This case is like the previous, except the stack size is too
07ce44f
+//    large to encode in the compact unwind encoding.  Instead it requires that 
07ce44f
+//    the function contains "subq $nnnnnnnn,RSP" in its prolog.  The compact 
07ce44f
+//    encoding contains the offset to the nnnnnnnn value in the function in
07ce44f
+//    UNWIND_X86_64_FRAMELESS_STACK_SIZE.  
07ce44f
+// UNWIND_X86_64_MODE_DWARF:
07ce44f
+//    No compact unwind encoding is available.  Instead the low 24-bits of the
07ce44f
+//    compact encoding is the offset of the DWARF FDE in the __eh_frame section.
07ce44f
+//    This mode is never used in object files.  It is only generated by the 
07ce44f
+//    linker in final linked images which have only DWARF unwind info for a
07ce44f
+//    function.
07ce44f
+//
07ce44f
+
07ce44f
+
07ce44f
+// ARM64
07ce44f
+//
07ce44f
+// 1-bit: start
07ce44f
+// 1-bit: has lsda
07ce44f
+// 2-bit: personality index
07ce44f
+//
07ce44f
+// 4-bits: 4=frame-based, 3=DWARF, 2=frameless
07ce44f
+//  frameless:
07ce44f
+//        12-bits of stack size
07ce44f
+//  frame-based:
07ce44f
+//        4-bits D reg pairs saved
07ce44f
+//        5-bits X reg pairs saved
07ce44f
+//  DWARF:
07ce44f
+//        24-bits offset of DWARF FDE in __eh_frame section
07ce44f
+//
07ce44f
+enum {
07ce44f
+    UNWIND_ARM64_MODE_MASK                     = 0x0F000000,
07ce44f
+    UNWIND_ARM64_MODE_FRAMELESS                = 0x02000000,
07ce44f
+    UNWIND_ARM64_MODE_DWARF                    = 0x03000000,
07ce44f
+    UNWIND_ARM64_MODE_FRAME                    = 0x04000000,
07ce44f
+
07ce44f
+    UNWIND_ARM64_FRAME_X19_X20_PAIR            = 0x00000001,
07ce44f
+    UNWIND_ARM64_FRAME_X21_X22_PAIR            = 0x00000002,
07ce44f
+    UNWIND_ARM64_FRAME_X23_X24_PAIR            = 0x00000004,
07ce44f
+    UNWIND_ARM64_FRAME_X25_X26_PAIR            = 0x00000008,
07ce44f
+    UNWIND_ARM64_FRAME_X27_X28_PAIR            = 0x00000010,
07ce44f
+    UNWIND_ARM64_FRAME_D8_D9_PAIR              = 0x00000100,
07ce44f
+    UNWIND_ARM64_FRAME_D10_D11_PAIR            = 0x00000200,
07ce44f
+    UNWIND_ARM64_FRAME_D12_D13_PAIR            = 0x00000400,
07ce44f
+    UNWIND_ARM64_FRAME_D14_D15_PAIR            = 0x00000800,
07ce44f
+
07ce44f
+    UNWIND_ARM64_FRAMELESS_STACK_SIZE_MASK     = 0x00FFF000,
07ce44f
+    UNWIND_ARM64_DWARF_SECTION_OFFSET          = 0x00FFFFFF,
07ce44f
+};
07ce44f
+// For arm64 there are three modes for the compact unwind encoding:
07ce44f
+// UNWIND_ARM64_MODE_FRAME:
07ce44f
+//    This is a standard arm64 prolog where FP/LR are immediately pushed on the
07ce44f
+//    stack, then SP is copied to FP. If there are any non-volatile registers
07ce44f
+//    saved, then are copied into the stack frame in pairs in a contiguous
07ce44f
+//    range right below the saved FP/LR pair.  Any subset of the five X pairs 
07ce44f
+//    and four D pairs can be saved, but the memory layout must be in register
07ce44f
+//    number order.  
07ce44f
+// UNWIND_ARM64_MODE_FRAMELESS:
07ce44f
+//    A "frameless" leaf function, where FP/LR are not saved. The return address 
07ce44f
+//    remains in LR throughout the function. If any non-volatile registers
07ce44f
+//    are saved, they must be pushed onto the stack before any stack space is
07ce44f
+//    allocated for local variables.  The stack sized (including any saved
07ce44f
+//    non-volatile registers) divided by 16 is encoded in the bits 
07ce44f
+//    UNWIND_ARM64_FRAMELESS_STACK_SIZE_MASK.
07ce44f
+// UNWIND_ARM64_MODE_DWARF:
07ce44f
+//    No compact unwind encoding is available.  Instead the low 24-bits of the
07ce44f
+//    compact encoding is the offset of the DWARF FDE in the __eh_frame section.
07ce44f
+//    This mode is never used in object files.  It is only generated by the 
07ce44f
+//    linker in final linked images which have only DWARF unwind info for a
07ce44f
+//    function.
07ce44f
+//
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+////////////////////////////////////////////////////////////////////////////////
07ce44f
+//
07ce44f
+//  Relocatable Object Files: __LD,__compact_unwind
07ce44f
+//
07ce44f
+////////////////////////////////////////////////////////////////////////////////
07ce44f
+
07ce44f
+//
07ce44f
+// A compiler can generated compact unwind information for a function by adding
07ce44f
+// a "row" to the __LD,__compact_unwind section.  This section has the 
07ce44f
+// S_ATTR_DEBUG bit set, so the section will be ignored by older linkers. 
07ce44f
+// It is removed by the new linker, so never ends up in final executables. 
07ce44f
+// This section is a table, initially with one row per function (that needs 
07ce44f
+// unwind info).  The table columns and some conceptual entries are:
07ce44f
+//
07ce44f
+//     range-start               pointer to start of function/range
07ce44f
+//     range-length              
07ce44f
+//     compact-unwind-encoding   32-bit encoding  
07ce44f
+//     personality-function      or zero if no personality function
07ce44f
+//     lsda                      or zero if no LSDA data
07ce44f
+//
07ce44f
+// The length and encoding fields are 32-bits.  The other are all pointer sized. 
07ce44f
+//
07ce44f
+// In x86_64 assembly, these entry would look like:
07ce44f
+//
07ce44f
+//     .section __LD,__compact_unwind,regular,debug
07ce44f
+//
07ce44f
+//     #compact unwind for _foo
07ce44f
+//     .quad    _foo
07ce44f
+//     .set     L1,LfooEnd-_foo
07ce44f
+//     .long    L1
07ce44f
+//     .long    0x01010001
07ce44f
+//     .quad    0
07ce44f
+//     .quad    0
07ce44f
+//
07ce44f
+//     #compact unwind for _bar
07ce44f
+//     .quad    _bar
07ce44f
+//     .set     L2,LbarEnd-_bar
07ce44f
+//     .long    L2
07ce44f
+//     .long    0x01020011
07ce44f
+//     .quad    __gxx_personality
07ce44f
+//     .quad    except_tab1
07ce44f
+//
07ce44f
+//
07ce44f
+// Notes: There is no need for any labels in the the __compact_unwind section.  
07ce44f
+//        The use of the .set directive is to force the evaluation of the 
07ce44f
+//        range-length at assembly time, instead of generating relocations.
07ce44f
+//
07ce44f
+// To support future compiler optimizations where which non-volatile registers 
07ce44f
+// are saved changes within a function (e.g. delay saving non-volatiles until
07ce44f
+// necessary), there can by multiple lines in the __compact_unwind table for one
07ce44f
+// function, each with a different (non-overlapping) range and each with 
07ce44f
+// different compact unwind encodings that correspond to the non-volatiles 
07ce44f
+// saved at that range of the function.
07ce44f
+//
07ce44f
+// If a particular function is so wacky that there is no compact unwind way
07ce44f
+// to encode it, then the compiler can emit traditional DWARF unwind info.  
07ce44f
+// The runtime will use which ever is available.
07ce44f
+//
07ce44f
+// Runtime support for compact unwind encodings are only available on 10.6 
07ce44f
+// and later.  So, the compiler should not generate it when targeting pre-10.6. 
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+////////////////////////////////////////////////////////////////////////////////
07ce44f
+//
07ce44f
+//  Final Linked Images: __TEXT,__unwind_info
07ce44f
+//
07ce44f
+////////////////////////////////////////////////////////////////////////////////
07ce44f
+
07ce44f
+//
07ce44f
+// The __TEXT,__unwind_info section is laid out for an efficient two level lookup.
07ce44f
+// The header of the section contains a coarse index that maps function address
07ce44f
+// to the page (4096 byte block) containing the unwind info for that function.  
07ce44f
+//
07ce44f
+
07ce44f
+#define UNWIND_SECTION_VERSION 1
07ce44f
+struct unwind_info_section_header
07ce44f
+{
07ce44f
+    uint32_t    version;            // UNWIND_SECTION_VERSION
07ce44f
+    uint32_t    commonEncodingsArraySectionOffset;
07ce44f
+    uint32_t    commonEncodingsArrayCount;
07ce44f
+    uint32_t    personalityArraySectionOffset;
07ce44f
+    uint32_t    personalityArrayCount;
07ce44f
+    uint32_t    indexSectionOffset;
07ce44f
+    uint32_t    indexCount;
07ce44f
+    // compact_unwind_encoding_t[]
07ce44f
+    // uint32_t personalities[]
07ce44f
+    // unwind_info_section_header_index_entry[]
07ce44f
+    // unwind_info_section_header_lsda_index_entry[]
07ce44f
+};
07ce44f
+
07ce44f
+struct unwind_info_section_header_index_entry
07ce44f
+{
07ce44f
+    uint32_t        functionOffset;
07ce44f
+    uint32_t        secondLevelPagesSectionOffset;  // section offset to start of regular or compress page
07ce44f
+    uint32_t        lsdaIndexArraySectionOffset;    // section offset to start of lsda_index array for this range
07ce44f
+};
07ce44f
+
07ce44f
+struct unwind_info_section_header_lsda_index_entry
07ce44f
+{
07ce44f
+    uint32_t        functionOffset;
07ce44f
+    uint32_t        lsdaOffset;
07ce44f
+};
07ce44f
+
07ce44f
+//
07ce44f
+// There are two kinds of second level index pages: regular and compressed.
07ce44f
+// A compressed page can hold up to 1021 entries, but it cannot be used
07ce44f
+// if too many different encoding types are used.  The regular page holds
07ce44f
+// 511 entries.
07ce44f
+//
07ce44f
+
07ce44f
+struct unwind_info_regular_second_level_entry
07ce44f
+{
07ce44f
+    uint32_t                    functionOffset;
07ce44f
+    compact_unwind_encoding_t    encoding;
07ce44f
+};
07ce44f
+
07ce44f
+#define UNWIND_SECOND_LEVEL_REGULAR 2
07ce44f
+struct unwind_info_regular_second_level_page_header
07ce44f
+{
07ce44f
+    uint32_t    kind;    // UNWIND_SECOND_LEVEL_REGULAR
07ce44f
+    uint16_t    entryPageOffset;
07ce44f
+    uint16_t    entryCount;
07ce44f
+    // entry array
07ce44f
+};
07ce44f
+
07ce44f
+#define UNWIND_SECOND_LEVEL_COMPRESSED 3
07ce44f
+struct unwind_info_compressed_second_level_page_header
07ce44f
+{
07ce44f
+    uint32_t    kind;    // UNWIND_SECOND_LEVEL_COMPRESSED
07ce44f
+    uint16_t    entryPageOffset;
07ce44f
+    uint16_t    entryCount;
07ce44f
+    uint16_t    encodingsPageOffset;
07ce44f
+    uint16_t    encodingsCount;
07ce44f
+    // 32-bit entry array
07ce44f
+    // encodings array
07ce44f
+};
07ce44f
+
07ce44f
+#define UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entry)            (entry & 0x00FFFFFF)
07ce44f
+#define UNWIND_INFO_COMPRESSED_ENTRY_ENCODING_INDEX(entry)        ((entry >> 24) & 0xFF)
07ce44f
+
07ce44f
+
07ce44f
+
07ce44f
+#endif
07ce44f
+
2a948c7
-- 
2a948c7
1.8.3.1
2a948c7