1*472758f3SLionel Sambuc //===------------------------------- dwarf2.h -----------------------------===// 2*472758f3SLionel Sambuc // 3*472758f3SLionel Sambuc // The LLVM Compiler Infrastructure 4*472758f3SLionel Sambuc // 5*472758f3SLionel Sambuc // This file is dual licensed under the MIT and the University of Illinois Open 6*472758f3SLionel Sambuc // Source Licenses. See LICENSE.TXT for details. 7*472758f3SLionel Sambuc // 8*472758f3SLionel Sambuc //===----------------------------------------------------------------------===// 9*472758f3SLionel Sambuc 10*472758f3SLionel Sambuc 11*472758f3SLionel Sambuc /* 12*472758f3SLionel Sambuc These constants were taken from version 3 of the DWARF standard, 13*472758f3SLionel Sambuc which is Copyright (c) 2005 Free Standards Group, and 14*472758f3SLionel Sambuc Copyright (c) 1992, 1993 UNIX International, Inc. 15*472758f3SLionel Sambuc */ 16*472758f3SLionel Sambuc 17*472758f3SLionel Sambuc #ifndef __DWARF2__ 18*472758f3SLionel Sambuc #define __DWARF2__ 19*472758f3SLionel Sambuc 20*472758f3SLionel Sambuc // DWARF unwind instructions 21*472758f3SLionel Sambuc enum { 22*472758f3SLionel Sambuc DW_CFA_nop = 0x0, 23*472758f3SLionel Sambuc DW_CFA_set_loc = 0x1, 24*472758f3SLionel Sambuc DW_CFA_advance_loc1 = 0x2, 25*472758f3SLionel Sambuc DW_CFA_advance_loc2 = 0x3, 26*472758f3SLionel Sambuc DW_CFA_advance_loc4 = 0x4, 27*472758f3SLionel Sambuc DW_CFA_offset_extended = 0x5, 28*472758f3SLionel Sambuc DW_CFA_restore_extended = 0x6, 29*472758f3SLionel Sambuc DW_CFA_undefined = 0x7, 30*472758f3SLionel Sambuc DW_CFA_same_value = 0x8, 31*472758f3SLionel Sambuc DW_CFA_register = 0x9, 32*472758f3SLionel Sambuc DW_CFA_remember_state = 0xA, 33*472758f3SLionel Sambuc DW_CFA_restore_state = 0xB, 34*472758f3SLionel Sambuc DW_CFA_def_cfa = 0xC, 35*472758f3SLionel Sambuc DW_CFA_def_cfa_register = 0xD, 36*472758f3SLionel Sambuc DW_CFA_def_cfa_offset = 0xE, 37*472758f3SLionel Sambuc DW_CFA_def_cfa_expression = 0xF, 38*472758f3SLionel Sambuc DW_CFA_expression = 0x10, 39*472758f3SLionel Sambuc DW_CFA_offset_extended_sf = 0x11, 40*472758f3SLionel Sambuc DW_CFA_def_cfa_sf = 0x12, 41*472758f3SLionel Sambuc DW_CFA_def_cfa_offset_sf = 0x13, 42*472758f3SLionel Sambuc DW_CFA_val_offset = 0x14, 43*472758f3SLionel Sambuc DW_CFA_val_offset_sf = 0x15, 44*472758f3SLionel Sambuc DW_CFA_val_expression = 0x16, 45*472758f3SLionel Sambuc DW_CFA_advance_loc = 0x40, // high 2 bits are 0x1, lower 6 bits are delta 46*472758f3SLionel Sambuc DW_CFA_offset = 0x80, // high 2 bits are 0x2, lower 6 bits are register 47*472758f3SLionel Sambuc DW_CFA_restore = 0xC0, // high 2 bits are 0x3, lower 6 bits are register 48*472758f3SLionel Sambuc 49*472758f3SLionel Sambuc // GNU extensions 50*472758f3SLionel Sambuc DW_CFA_GNU_window_save = 0x2D, 51*472758f3SLionel Sambuc DW_CFA_GNU_args_size = 0x2E, 52*472758f3SLionel Sambuc DW_CFA_GNU_negative_offset_extended = 0x2F 53*472758f3SLionel Sambuc }; 54*472758f3SLionel Sambuc 55*472758f3SLionel Sambuc 56*472758f3SLionel Sambuc // FSF exception handling Pointer-Encoding constants 57*472758f3SLionel Sambuc // Used in CFI augmentation by GCC 58*472758f3SLionel Sambuc enum { 59*472758f3SLionel Sambuc DW_EH_PE_ptr = 0x00, 60*472758f3SLionel Sambuc DW_EH_PE_uleb128 = 0x01, 61*472758f3SLionel Sambuc DW_EH_PE_udata2 = 0x02, 62*472758f3SLionel Sambuc DW_EH_PE_udata4 = 0x03, 63*472758f3SLionel Sambuc DW_EH_PE_udata8 = 0x04, 64*472758f3SLionel Sambuc DW_EH_PE_signed = 0x08, 65*472758f3SLionel Sambuc DW_EH_PE_sleb128 = 0x09, 66*472758f3SLionel Sambuc DW_EH_PE_sdata2 = 0x0A, 67*472758f3SLionel Sambuc DW_EH_PE_sdata4 = 0x0B, 68*472758f3SLionel Sambuc DW_EH_PE_sdata8 = 0x0C, 69*472758f3SLionel Sambuc DW_EH_PE_absptr = 0x00, 70*472758f3SLionel Sambuc DW_EH_PE_pcrel = 0x10, 71*472758f3SLionel Sambuc DW_EH_PE_textrel = 0x20, 72*472758f3SLionel Sambuc DW_EH_PE_datarel = 0x30, 73*472758f3SLionel Sambuc DW_EH_PE_funcrel = 0x40, 74*472758f3SLionel Sambuc DW_EH_PE_aligned = 0x50, 75*472758f3SLionel Sambuc DW_EH_PE_indirect = 0x80, 76*472758f3SLionel Sambuc DW_EH_PE_omit = 0xFF 77*472758f3SLionel Sambuc }; 78*472758f3SLionel Sambuc 79*472758f3SLionel Sambuc 80*472758f3SLionel Sambuc // DWARF expressions 81*472758f3SLionel Sambuc enum { 82*472758f3SLionel Sambuc DW_OP_addr = 0x03, // constant address (size target specific) 83*472758f3SLionel Sambuc DW_OP_deref = 0x06, 84*472758f3SLionel Sambuc DW_OP_const1u = 0x08, // 1-byte constant 85*472758f3SLionel Sambuc DW_OP_const1s = 0x09, // 1-byte constant 86*472758f3SLionel Sambuc DW_OP_const2u = 0x0A, // 2-byte constant 87*472758f3SLionel Sambuc DW_OP_const2s = 0x0B, // 2-byte constant 88*472758f3SLionel Sambuc DW_OP_const4u = 0x0C, // 4-byte constant 89*472758f3SLionel Sambuc DW_OP_const4s = 0x0D, // 4-byte constant 90*472758f3SLionel Sambuc DW_OP_const8u = 0x0E, // 8-byte constant 91*472758f3SLionel Sambuc DW_OP_const8s = 0x0F, // 8-byte constant 92*472758f3SLionel Sambuc DW_OP_constu = 0x10, // ULEB128 constant 93*472758f3SLionel Sambuc DW_OP_consts = 0x11, // SLEB128 constant 94*472758f3SLionel Sambuc DW_OP_dup = 0x12, 95*472758f3SLionel Sambuc DW_OP_drop = 0x13, 96*472758f3SLionel Sambuc DW_OP_over = 0x14, 97*472758f3SLionel Sambuc DW_OP_pick = 0x15, // 1-byte stack index 98*472758f3SLionel Sambuc DW_OP_swap = 0x16, 99*472758f3SLionel Sambuc DW_OP_rot = 0x17, 100*472758f3SLionel Sambuc DW_OP_xderef = 0x18, 101*472758f3SLionel Sambuc DW_OP_abs = 0x19, 102*472758f3SLionel Sambuc DW_OP_and = 0x1A, 103*472758f3SLionel Sambuc DW_OP_div = 0x1B, 104*472758f3SLionel Sambuc DW_OP_minus = 0x1C, 105*472758f3SLionel Sambuc DW_OP_mod = 0x1D, 106*472758f3SLionel Sambuc DW_OP_mul = 0x1E, 107*472758f3SLionel Sambuc DW_OP_neg = 0x1F, 108*472758f3SLionel Sambuc DW_OP_not = 0x20, 109*472758f3SLionel Sambuc DW_OP_or = 0x21, 110*472758f3SLionel Sambuc DW_OP_plus = 0x22, 111*472758f3SLionel Sambuc DW_OP_plus_uconst = 0x23, // ULEB128 addend 112*472758f3SLionel Sambuc DW_OP_shl = 0x24, 113*472758f3SLionel Sambuc DW_OP_shr = 0x25, 114*472758f3SLionel Sambuc DW_OP_shra = 0x26, 115*472758f3SLionel Sambuc DW_OP_xor = 0x27, 116*472758f3SLionel Sambuc DW_OP_skip = 0x2F, // signed 2-byte constant 117*472758f3SLionel Sambuc DW_OP_bra = 0x28, // signed 2-byte constant 118*472758f3SLionel Sambuc DW_OP_eq = 0x29, 119*472758f3SLionel Sambuc DW_OP_ge = 0x2A, 120*472758f3SLionel Sambuc DW_OP_gt = 0x2B, 121*472758f3SLionel Sambuc DW_OP_le = 0x2C, 122*472758f3SLionel Sambuc DW_OP_lt = 0x2D, 123*472758f3SLionel Sambuc DW_OP_ne = 0x2E, 124*472758f3SLionel Sambuc DW_OP_lit0 = 0x30, // Literal 0 125*472758f3SLionel Sambuc DW_OP_lit1 = 0x31, // Literal 1 126*472758f3SLionel Sambuc DW_OP_lit2 = 0x32, // Literal 2 127*472758f3SLionel Sambuc DW_OP_lit3 = 0x33, // Literal 3 128*472758f3SLionel Sambuc DW_OP_lit4 = 0x34, // Literal 4 129*472758f3SLionel Sambuc DW_OP_lit5 = 0x35, // Literal 5 130*472758f3SLionel Sambuc DW_OP_lit6 = 0x36, // Literal 6 131*472758f3SLionel Sambuc DW_OP_lit7 = 0x37, // Literal 7 132*472758f3SLionel Sambuc DW_OP_lit8 = 0x38, // Literal 8 133*472758f3SLionel Sambuc DW_OP_lit9 = 0x39, // Literal 9 134*472758f3SLionel Sambuc DW_OP_lit10 = 0x3A, // Literal 10 135*472758f3SLionel Sambuc DW_OP_lit11 = 0x3B, // Literal 11 136*472758f3SLionel Sambuc DW_OP_lit12 = 0x3C, // Literal 12 137*472758f3SLionel Sambuc DW_OP_lit13 = 0x3D, // Literal 13 138*472758f3SLionel Sambuc DW_OP_lit14 = 0x3E, // Literal 14 139*472758f3SLionel Sambuc DW_OP_lit15 = 0x3F, // Literal 15 140*472758f3SLionel Sambuc DW_OP_lit16 = 0x40, // Literal 16 141*472758f3SLionel Sambuc DW_OP_lit17 = 0x41, // Literal 17 142*472758f3SLionel Sambuc DW_OP_lit18 = 0x42, // Literal 18 143*472758f3SLionel Sambuc DW_OP_lit19 = 0x43, // Literal 19 144*472758f3SLionel Sambuc DW_OP_lit20 = 0x44, // Literal 20 145*472758f3SLionel Sambuc DW_OP_lit21 = 0x45, // Literal 21 146*472758f3SLionel Sambuc DW_OP_lit22 = 0x46, // Literal 22 147*472758f3SLionel Sambuc DW_OP_lit23 = 0x47, // Literal 23 148*472758f3SLionel Sambuc DW_OP_lit24 = 0x48, // Literal 24 149*472758f3SLionel Sambuc DW_OP_lit25 = 0x49, // Literal 25 150*472758f3SLionel Sambuc DW_OP_lit26 = 0x4A, // Literal 26 151*472758f3SLionel Sambuc DW_OP_lit27 = 0x4B, // Literal 27 152*472758f3SLionel Sambuc DW_OP_lit28 = 0x4C, // Literal 28 153*472758f3SLionel Sambuc DW_OP_lit29 = 0x4D, // Literal 29 154*472758f3SLionel Sambuc DW_OP_lit30 = 0x4E, // Literal 30 155*472758f3SLionel Sambuc DW_OP_lit31 = 0x4F, // Literal 31 156*472758f3SLionel Sambuc DW_OP_reg0 = 0x50, // Contents of reg0 157*472758f3SLionel Sambuc DW_OP_reg1 = 0x51, // Contents of reg1 158*472758f3SLionel Sambuc DW_OP_reg2 = 0x52, // Contents of reg2 159*472758f3SLionel Sambuc DW_OP_reg3 = 0x53, // Contents of reg3 160*472758f3SLionel Sambuc DW_OP_reg4 = 0x54, // Contents of reg4 161*472758f3SLionel Sambuc DW_OP_reg5 = 0x55, // Contents of reg5 162*472758f3SLionel Sambuc DW_OP_reg6 = 0x56, // Contents of reg6 163*472758f3SLionel Sambuc DW_OP_reg7 = 0x57, // Contents of reg7 164*472758f3SLionel Sambuc DW_OP_reg8 = 0x58, // Contents of reg8 165*472758f3SLionel Sambuc DW_OP_reg9 = 0x59, // Contents of reg9 166*472758f3SLionel Sambuc DW_OP_reg10 = 0x5A, // Contents of reg10 167*472758f3SLionel Sambuc DW_OP_reg11 = 0x5B, // Contents of reg11 168*472758f3SLionel Sambuc DW_OP_reg12 = 0x5C, // Contents of reg12 169*472758f3SLionel Sambuc DW_OP_reg13 = 0x5D, // Contents of reg13 170*472758f3SLionel Sambuc DW_OP_reg14 = 0x5E, // Contents of reg14 171*472758f3SLionel Sambuc DW_OP_reg15 = 0x5F, // Contents of reg15 172*472758f3SLionel Sambuc DW_OP_reg16 = 0x60, // Contents of reg16 173*472758f3SLionel Sambuc DW_OP_reg17 = 0x61, // Contents of reg17 174*472758f3SLionel Sambuc DW_OP_reg18 = 0x62, // Contents of reg18 175*472758f3SLionel Sambuc DW_OP_reg19 = 0x63, // Contents of reg19 176*472758f3SLionel Sambuc DW_OP_reg20 = 0x64, // Contents of reg20 177*472758f3SLionel Sambuc DW_OP_reg21 = 0x65, // Contents of reg21 178*472758f3SLionel Sambuc DW_OP_reg22 = 0x66, // Contents of reg22 179*472758f3SLionel Sambuc DW_OP_reg23 = 0x67, // Contents of reg23 180*472758f3SLionel Sambuc DW_OP_reg24 = 0x68, // Contents of reg24 181*472758f3SLionel Sambuc DW_OP_reg25 = 0x69, // Contents of reg25 182*472758f3SLionel Sambuc DW_OP_reg26 = 0x6A, // Contents of reg26 183*472758f3SLionel Sambuc DW_OP_reg27 = 0x6B, // Contents of reg27 184*472758f3SLionel Sambuc DW_OP_reg28 = 0x6C, // Contents of reg28 185*472758f3SLionel Sambuc DW_OP_reg29 = 0x6D, // Contents of reg29 186*472758f3SLionel Sambuc DW_OP_reg30 = 0x6E, // Contents of reg30 187*472758f3SLionel Sambuc DW_OP_reg31 = 0x6F, // Contents of reg31 188*472758f3SLionel Sambuc DW_OP_breg0 = 0x70, // base register 0 + SLEB128 offset 189*472758f3SLionel Sambuc DW_OP_breg1 = 0x71, // base register 1 + SLEB128 offset 190*472758f3SLionel Sambuc DW_OP_breg2 = 0x72, // base register 2 + SLEB128 offset 191*472758f3SLionel Sambuc DW_OP_breg3 = 0x73, // base register 3 + SLEB128 offset 192*472758f3SLionel Sambuc DW_OP_breg4 = 0x74, // base register 4 + SLEB128 offset 193*472758f3SLionel Sambuc DW_OP_breg5 = 0x75, // base register 5 + SLEB128 offset 194*472758f3SLionel Sambuc DW_OP_breg6 = 0x76, // base register 6 + SLEB128 offset 195*472758f3SLionel Sambuc DW_OP_breg7 = 0x77, // base register 7 + SLEB128 offset 196*472758f3SLionel Sambuc DW_OP_breg8 = 0x78, // base register 8 + SLEB128 offset 197*472758f3SLionel Sambuc DW_OP_breg9 = 0x79, // base register 9 + SLEB128 offset 198*472758f3SLionel Sambuc DW_OP_breg10 = 0x7A, // base register 10 + SLEB128 offset 199*472758f3SLionel Sambuc DW_OP_breg11 = 0x7B, // base register 11 + SLEB128 offset 200*472758f3SLionel Sambuc DW_OP_breg12 = 0x7C, // base register 12 + SLEB128 offset 201*472758f3SLionel Sambuc DW_OP_breg13 = 0x7D, // base register 13 + SLEB128 offset 202*472758f3SLionel Sambuc DW_OP_breg14 = 0x7E, // base register 14 + SLEB128 offset 203*472758f3SLionel Sambuc DW_OP_breg15 = 0x7F, // base register 15 + SLEB128 offset 204*472758f3SLionel Sambuc DW_OP_breg16 = 0x80, // base register 16 + SLEB128 offset 205*472758f3SLionel Sambuc DW_OP_breg17 = 0x81, // base register 17 + SLEB128 offset 206*472758f3SLionel Sambuc DW_OP_breg18 = 0x82, // base register 18 + SLEB128 offset 207*472758f3SLionel Sambuc DW_OP_breg19 = 0x83, // base register 19 + SLEB128 offset 208*472758f3SLionel Sambuc DW_OP_breg20 = 0x84, // base register 20 + SLEB128 offset 209*472758f3SLionel Sambuc DW_OP_breg21 = 0x85, // base register 21 + SLEB128 offset 210*472758f3SLionel Sambuc DW_OP_breg22 = 0x86, // base register 22 + SLEB128 offset 211*472758f3SLionel Sambuc DW_OP_breg23 = 0x87, // base register 23 + SLEB128 offset 212*472758f3SLionel Sambuc DW_OP_breg24 = 0x88, // base register 24 + SLEB128 offset 213*472758f3SLionel Sambuc DW_OP_breg25 = 0x89, // base register 25 + SLEB128 offset 214*472758f3SLionel Sambuc DW_OP_breg26 = 0x8A, // base register 26 + SLEB128 offset 215*472758f3SLionel Sambuc DW_OP_breg27 = 0x8B, // base register 27 + SLEB128 offset 216*472758f3SLionel Sambuc DW_OP_breg28 = 0x8C, // base register 28 + SLEB128 offset 217*472758f3SLionel Sambuc DW_OP_breg29 = 0x8D, // base register 29 + SLEB128 offset 218*472758f3SLionel Sambuc DW_OP_breg30 = 0x8E, // base register 30 + SLEB128 offset 219*472758f3SLionel Sambuc DW_OP_breg31 = 0x8F, // base register 31 + SLEB128 offset 220*472758f3SLionel Sambuc DW_OP_regx = 0x90, // ULEB128 register 221*472758f3SLionel Sambuc DW_OP_fbreg = 0x91, // SLEB128 offset 222*472758f3SLionel Sambuc DW_OP_bregx = 0x92, // ULEB128 register followed by SLEB128 offset 223*472758f3SLionel Sambuc DW_OP_piece = 0x93, // ULEB128 size of piece addressed 224*472758f3SLionel Sambuc DW_OP_deref_size = 0x94, // 1-byte size of data retrieved 225*472758f3SLionel Sambuc DW_OP_xderef_size = 0x95, // 1-byte size of data retrieved 226*472758f3SLionel Sambuc DW_OP_nop = 0x96, 227*472758f3SLionel Sambuc DW_OP_push_object_addres = 0x97, 228*472758f3SLionel Sambuc DW_OP_call2 = 0x98, // 2-byte offset of DIE 229*472758f3SLionel Sambuc DW_OP_call4 = 0x99, // 4-byte offset of DIE 230*472758f3SLionel Sambuc DW_OP_call_ref = 0x9A, // 4- or 8-byte offset of DIE 231*472758f3SLionel Sambuc DW_OP_lo_user = 0xE0, 232*472758f3SLionel Sambuc DW_OP_APPLE_uninit = 0xF0, 233*472758f3SLionel Sambuc DW_OP_hi_user = 0xFF 234*472758f3SLionel Sambuc }; 235*472758f3SLionel Sambuc 236*472758f3SLionel Sambuc 237*472758f3SLionel Sambuc #endif 238