Lines Matching refs:encoding

167         if (function_info.encoding == 0)  in GetUnwindPlan()
179 …rintf ("Got compact unwind encoding 0x%x for function %s", function_info.encoding, strm.GetData()); in GetUnwindPlan()
484 unwind_info.encoding = 0; in GetCompactUnwindInfoForFunction()
566 unwind_info.encoding = m_unwindinfo_data.GetU32(&entry_offset); // encoding in GetCompactUnwindInfoForFunction()
567 if (unwind_info.encoding & UNWIND_HAS_LSDA) in GetCompactUnwindInfoForFunction()
577 if (unwind_info.encoding & UNWIND_PERSONALITY_MASK) in GetCompactUnwindInfoForFunction()
579 … uint32_t personality_index = EXTRACT_BITS (unwind_info.encoding, UNWIND_PERSONALITY_MASK); in GetCompactUnwindInfoForFunction()
623 uint32_t encoding = 0; in GetCompactUnwindInfoForFunction() local
627encoding = m_unwindinfo_data.GetU32(&offset); // encoding entry from the commonEncodingsArray in GetCompactUnwindInfoForFunction()
633encoding = m_unwindinfo_data.GetU32(&offset); // encoding entry from the page-specific encoding … in GetCompactUnwindInfoForFunction()
635 if (encoding == 0) in GetCompactUnwindInfoForFunction()
638 unwind_info.encoding = encoding; in GetCompactUnwindInfoForFunction()
639 if (unwind_info.encoding & UNWIND_HAS_LSDA) in GetCompactUnwindInfoForFunction()
649 if (unwind_info.encoding & UNWIND_PERSONALITY_MASK) in GetCompactUnwindInfoForFunction()
651 … uint32_t personality_index = EXTRACT_BITS (unwind_info.encoding, UNWIND_PERSONALITY_MASK); in GetCompactUnwindInfoForFunction()
733 int mode = function_info.encoding & UNWIND_X86_64_MODE_MASK; in CreateUnwindPlan_x86_64()
746 …uint32_t saved_registers_offset = EXTRACT_BITS (function_info.encoding, UNWIND_X86_64_RBP_FRAME_OF… in CreateUnwindPlan_x86_64()
748 …uint32_t saved_registers_locations = EXTRACT_BITS (function_info.encoding, UNWIND_X86_64_RBP_FRAME… in CreateUnwindPlan_x86_64()
786 … uint32_t stack_size = EXTRACT_BITS (function_info.encoding, UNWIND_X86_64_FRAMELESS_STACK_SIZE); in CreateUnwindPlan_x86_64()
787 …uint32_t register_count = EXTRACT_BITS (function_info.encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_… in CreateUnwindPlan_x86_64()
788 …uint32_t permutation = EXTRACT_BITS (function_info.encoding, UNWIND_X86_64_FRAMELESS_STACK_REG_PER… in CreateUnwindPlan_x86_64()
792 …uint32_t stack_adjust = EXTRACT_BITS (function_info.encoding, UNWIND_X86_64_FRAMELESS_STACK_ADJUST… in CreateUnwindPlan_x86_64()
795 …uint32_t offset_to_subl_insn = EXTRACT_BITS (function_info.encoding, UNWIND_X86_64_FRAMELESS_STACK… in CreateUnwindPlan_x86_64()
1017 int mode = function_info.encoding & UNWIND_X86_MODE_MASK; in CreateUnwindPlan_i386()
1029 …uint32_t saved_registers_offset = EXTRACT_BITS (function_info.encoding, UNWIND_X86_EBP_FRAME_OFFSE… in CreateUnwindPlan_i386()
1031 …uint32_t saved_registers_locations = EXTRACT_BITS (function_info.encoding, UNWIND_X86_EBP_FRAME_RE… in CreateUnwindPlan_i386()
1061 … uint32_t stack_size = EXTRACT_BITS (function_info.encoding, UNWIND_X86_FRAMELESS_STACK_SIZE); in CreateUnwindPlan_i386()
1062 …uint32_t register_count = EXTRACT_BITS (function_info.encoding, UNWIND_X86_FRAMELESS_STACK_REG_COU… in CreateUnwindPlan_i386()
1063 …uint32_t permutation = EXTRACT_BITS (function_info.encoding, UNWIND_X86_FRAMELESS_STACK_REG_PERMUT… in CreateUnwindPlan_i386()
1067 … uint32_t stack_adjust = EXTRACT_BITS (function_info.encoding, UNWIND_X86_FRAMELESS_STACK_ADJUST); in CreateUnwindPlan_i386()
1070 …uint32_t offset_to_subl_insn = EXTRACT_BITS (function_info.encoding, UNWIND_X86_FRAMELESS_STACK_SI… in CreateUnwindPlan_i386()