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

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