1 //===-- CompactUnwindInfo.cpp ---------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "lldb/Symbol/CompactUnwindInfo.h"
10 #include "lldb/Core/Module.h"
11 #include "lldb/Core/Section.h"
12 #include "lldb/Symbol/ObjectFile.h"
13 #include "lldb/Symbol/UnwindPlan.h"
14 #include "lldb/Target/Process.h"
15 #include "lldb/Target/Target.h"
16 #include "lldb/Utility/ArchSpec.h"
17 #include "lldb/Utility/DataBufferHeap.h"
18 #include "lldb/Utility/Log.h"
19 #include "lldb/Utility/StreamString.h"
21 #include "llvm/Support/MathExtras.h"
27 using namespace lldb_private
;
29 namespace lldb_private
{
31 // Constants from <mach-o/compact_unwind_encoding.h>
33 FLAGS_ANONYMOUS_ENUM(){
34 UNWIND_IS_NOT_FUNCTION_START
= 0x80000000, UNWIND_HAS_LSDA
= 0x40000000,
35 UNWIND_PERSONALITY_MASK
= 0x30000000,
38 FLAGS_ANONYMOUS_ENUM(){
39 UNWIND_X86_MODE_MASK
= 0x0F000000,
40 UNWIND_X86_MODE_EBP_FRAME
= 0x01000000,
41 UNWIND_X86_MODE_STACK_IMMD
= 0x02000000,
42 UNWIND_X86_MODE_STACK_IND
= 0x03000000,
43 UNWIND_X86_MODE_DWARF
= 0x04000000,
45 UNWIND_X86_EBP_FRAME_REGISTERS
= 0x00007FFF,
46 UNWIND_X86_EBP_FRAME_OFFSET
= 0x00FF0000,
48 UNWIND_X86_FRAMELESS_STACK_SIZE
= 0x00FF0000,
49 UNWIND_X86_FRAMELESS_STACK_ADJUST
= 0x0000E000,
50 UNWIND_X86_FRAMELESS_STACK_REG_COUNT
= 0x00001C00,
51 UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION
= 0x000003FF,
53 UNWIND_X86_DWARF_SECTION_OFFSET
= 0x00FFFFFF,
57 UNWIND_X86_REG_NONE
= 0,
58 UNWIND_X86_REG_EBX
= 1,
59 UNWIND_X86_REG_ECX
= 2,
60 UNWIND_X86_REG_EDX
= 3,
61 UNWIND_X86_REG_EDI
= 4,
62 UNWIND_X86_REG_ESI
= 5,
63 UNWIND_X86_REG_EBP
= 6,
66 FLAGS_ANONYMOUS_ENUM(){
67 UNWIND_X86_64_MODE_MASK
= 0x0F000000,
68 UNWIND_X86_64_MODE_RBP_FRAME
= 0x01000000,
69 UNWIND_X86_64_MODE_STACK_IMMD
= 0x02000000,
70 UNWIND_X86_64_MODE_STACK_IND
= 0x03000000,
71 UNWIND_X86_64_MODE_DWARF
= 0x04000000,
73 UNWIND_X86_64_RBP_FRAME_REGISTERS
= 0x00007FFF,
74 UNWIND_X86_64_RBP_FRAME_OFFSET
= 0x00FF0000,
76 UNWIND_X86_64_FRAMELESS_STACK_SIZE
= 0x00FF0000,
77 UNWIND_X86_64_FRAMELESS_STACK_ADJUST
= 0x0000E000,
78 UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT
= 0x00001C00,
79 UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION
= 0x000003FF,
81 UNWIND_X86_64_DWARF_SECTION_OFFSET
= 0x00FFFFFF,
85 UNWIND_X86_64_REG_NONE
= 0,
86 UNWIND_X86_64_REG_RBX
= 1,
87 UNWIND_X86_64_REG_R12
= 2,
88 UNWIND_X86_64_REG_R13
= 3,
89 UNWIND_X86_64_REG_R14
= 4,
90 UNWIND_X86_64_REG_R15
= 5,
91 UNWIND_X86_64_REG_RBP
= 6,
94 FLAGS_ANONYMOUS_ENUM(){
95 UNWIND_ARM64_MODE_MASK
= 0x0F000000,
96 UNWIND_ARM64_MODE_FRAMELESS
= 0x02000000,
97 UNWIND_ARM64_MODE_DWARF
= 0x03000000,
98 UNWIND_ARM64_MODE_FRAME
= 0x04000000,
100 UNWIND_ARM64_FRAME_X19_X20_PAIR
= 0x00000001,
101 UNWIND_ARM64_FRAME_X21_X22_PAIR
= 0x00000002,
102 UNWIND_ARM64_FRAME_X23_X24_PAIR
= 0x00000004,
103 UNWIND_ARM64_FRAME_X25_X26_PAIR
= 0x00000008,
104 UNWIND_ARM64_FRAME_X27_X28_PAIR
= 0x00000010,
105 UNWIND_ARM64_FRAME_D8_D9_PAIR
= 0x00000100,
106 UNWIND_ARM64_FRAME_D10_D11_PAIR
= 0x00000200,
107 UNWIND_ARM64_FRAME_D12_D13_PAIR
= 0x00000400,
108 UNWIND_ARM64_FRAME_D14_D15_PAIR
= 0x00000800,
110 UNWIND_ARM64_FRAMELESS_STACK_SIZE_MASK
= 0x00FFF000,
111 UNWIND_ARM64_DWARF_SECTION_OFFSET
= 0x00FFFFFF,
114 FLAGS_ANONYMOUS_ENUM(){
115 UNWIND_ARM_MODE_MASK
= 0x0F000000,
116 UNWIND_ARM_MODE_FRAME
= 0x01000000,
117 UNWIND_ARM_MODE_FRAME_D
= 0x02000000,
118 UNWIND_ARM_MODE_DWARF
= 0x04000000,
120 UNWIND_ARM_FRAME_STACK_ADJUST_MASK
= 0x00C00000,
122 UNWIND_ARM_FRAME_FIRST_PUSH_R4
= 0x00000001,
123 UNWIND_ARM_FRAME_FIRST_PUSH_R5
= 0x00000002,
124 UNWIND_ARM_FRAME_FIRST_PUSH_R6
= 0x00000004,
126 UNWIND_ARM_FRAME_SECOND_PUSH_R8
= 0x00000008,
127 UNWIND_ARM_FRAME_SECOND_PUSH_R9
= 0x00000010,
128 UNWIND_ARM_FRAME_SECOND_PUSH_R10
= 0x00000020,
129 UNWIND_ARM_FRAME_SECOND_PUSH_R11
= 0x00000040,
130 UNWIND_ARM_FRAME_SECOND_PUSH_R12
= 0x00000080,
132 UNWIND_ARM_FRAME_D_REG_COUNT_MASK
= 0x00000700,
134 UNWIND_ARM_DWARF_SECTION_OFFSET
= 0x00FFFFFF,
138 #ifndef UNWIND_SECOND_LEVEL_REGULAR
139 #define UNWIND_SECOND_LEVEL_REGULAR 2
142 #ifndef UNWIND_SECOND_LEVEL_COMPRESSED
143 #define UNWIND_SECOND_LEVEL_COMPRESSED 3
146 #ifndef UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET
147 #define UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entry) (entry & 0x00FFFFFF)
150 #ifndef UNWIND_INFO_COMPRESSED_ENTRY_ENCODING_INDEX
151 #define UNWIND_INFO_COMPRESSED_ENTRY_ENCODING_INDEX(entry) \
152 ((entry >> 24) & 0xFF)
155 #define EXTRACT_BITS(value, mask) \
157 llvm::countTrailingZeros(static_cast<uint32_t>(mask), llvm::ZB_Width)) & \
158 (((1 << llvm::countPopulation(static_cast<uint32_t>(mask)))) - 1))
162 CompactUnwindInfo::CompactUnwindInfo(ObjectFile
&objfile
, SectionSP
§ion_sp
)
163 : m_objfile(objfile
), m_section_sp(section_sp
),
164 m_section_contents_if_encrypted(), m_mutex(), m_indexes(),
165 m_indexes_computed(eLazyBoolCalculate
), m_unwindinfo_data(),
166 m_unwindinfo_data_computed(false), m_unwind_header() {}
170 CompactUnwindInfo::~CompactUnwindInfo() = default;
172 bool CompactUnwindInfo::GetUnwindPlan(Target
&target
, Address addr
,
173 UnwindPlan
&unwind_plan
) {
174 if (!IsValid(target
.GetProcessSP())) {
177 FunctionInfo function_info
;
178 if (GetCompactUnwindInfoForFunction(target
, addr
, function_info
)) {
179 // shortcut return for functions that have no compact unwind
180 if (function_info
.encoding
== 0)
183 if (ArchSpec arch
= m_objfile
.GetArchitecture()) {
185 Log
*log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND
));
186 if (log
&& log
->GetVerbose()) {
190 Address::DumpStyle::DumpStyleResolvedDescriptionNoFunctionArguments
,
191 Address::DumpStyle::DumpStyleFileAddress
,
192 arch
.GetAddressByteSize());
193 LLDB_LOGF(log
, "Got compact unwind encoding 0x%x for function %s",
194 function_info
.encoding
, strm
.GetData());
197 if (function_info
.valid_range_offset_start
!= 0 &&
198 function_info
.valid_range_offset_end
!= 0) {
199 SectionList
*sl
= m_objfile
.GetSectionList();
201 addr_t func_range_start_file_addr
=
202 function_info
.valid_range_offset_start
+
203 m_objfile
.GetBaseAddress().GetFileAddress();
204 AddressRange
func_range(func_range_start_file_addr
,
205 function_info
.valid_range_offset_end
-
206 function_info
.valid_range_offset_start
,
208 unwind_plan
.SetPlanValidAddressRange(func_range
);
212 if (arch
.GetTriple().getArch() == llvm::Triple::x86_64
) {
213 return CreateUnwindPlan_x86_64(target
, function_info
, unwind_plan
,
216 if (arch
.GetTriple().getArch() == llvm::Triple::aarch64
||
217 arch
.GetTriple().getArch() == llvm::Triple::aarch64_32
) {
218 return CreateUnwindPlan_arm64(target
, function_info
, unwind_plan
, addr
);
220 if (arch
.GetTriple().getArch() == llvm::Triple::x86
) {
221 return CreateUnwindPlan_i386(target
, function_info
, unwind_plan
, addr
);
223 if (arch
.GetTriple().getArch() == llvm::Triple::arm
||
224 arch
.GetTriple().getArch() == llvm::Triple::thumb
) {
225 return CreateUnwindPlan_armv7(target
, function_info
, unwind_plan
, addr
);
232 bool CompactUnwindInfo::IsValid(const ProcessSP
&process_sp
) {
233 if (m_section_sp
.get() == nullptr)
236 if (m_indexes_computed
== eLazyBoolYes
&& m_unwindinfo_data_computed
)
239 ScanIndex(process_sp
);
241 return m_indexes_computed
== eLazyBoolYes
&& m_unwindinfo_data_computed
;
244 void CompactUnwindInfo::ScanIndex(const ProcessSP
&process_sp
) {
245 std::lock_guard
<std::mutex
> guard(m_mutex
);
246 if (m_indexes_computed
== eLazyBoolYes
&& m_unwindinfo_data_computed
)
249 // We can't read the index for some reason.
250 if (m_indexes_computed
== eLazyBoolNo
) {
254 Log
*log(GetLogIfAllCategoriesSet(LIBLLDB_LOG_UNWIND
));
256 m_objfile
.GetModule()->LogMessage(
257 log
, "Reading compact unwind first-level indexes");
259 if (!m_unwindinfo_data_computed
) {
260 if (m_section_sp
->IsEncrypted()) {
261 // Can't get section contents of a protected/encrypted section until we
262 // have a live process and can read them out of memory.
263 if (process_sp
.get() == nullptr)
265 m_section_contents_if_encrypted
=
266 std::make_shared
<DataBufferHeap
>(m_section_sp
->GetByteSize(), 0);
268 if (process_sp
->ReadMemory(
269 m_section_sp
->GetLoadBaseAddress(&process_sp
->GetTarget()),
270 m_section_contents_if_encrypted
->GetBytes(),
271 m_section_sp
->GetByteSize(),
272 error
) == m_section_sp
->GetByteSize() &&
274 m_unwindinfo_data
.SetAddressByteSize(
275 process_sp
->GetTarget().GetArchitecture().GetAddressByteSize());
276 m_unwindinfo_data
.SetByteOrder(
277 process_sp
->GetTarget().GetArchitecture().GetByteOrder());
278 m_unwindinfo_data
.SetData(m_section_contents_if_encrypted
, 0);
281 m_objfile
.ReadSectionData(m_section_sp
.get(), m_unwindinfo_data
);
283 if (m_unwindinfo_data
.GetByteSize() != m_section_sp
->GetByteSize())
285 m_unwindinfo_data_computed
= true;
288 if (m_unwindinfo_data
.GetByteSize() > 0) {
291 // struct unwind_info_section_header
293 // uint32_t version; // UNWIND_SECTION_VERSION
294 // uint32_t commonEncodingsArraySectionOffset;
295 // uint32_t commonEncodingsArrayCount;
296 // uint32_t personalityArraySectionOffset;
297 // uint32_t personalityArrayCount;
298 // uint32_t indexSectionOffset;
299 // uint32_t indexCount;
301 m_unwind_header
.version
= m_unwindinfo_data
.GetU32(&offset
);
302 m_unwind_header
.common_encodings_array_offset
=
303 m_unwindinfo_data
.GetU32(&offset
);
304 m_unwind_header
.common_encodings_array_count
=
305 m_unwindinfo_data
.GetU32(&offset
);
306 m_unwind_header
.personality_array_offset
=
307 m_unwindinfo_data
.GetU32(&offset
);
308 m_unwind_header
.personality_array_count
= m_unwindinfo_data
.GetU32(&offset
);
309 uint32_t indexSectionOffset
= m_unwindinfo_data
.GetU32(&offset
);
311 uint32_t indexCount
= m_unwindinfo_data
.GetU32(&offset
);
313 if (m_unwind_header
.common_encodings_array_offset
>
314 m_unwindinfo_data
.GetByteSize() ||
315 m_unwind_header
.personality_array_offset
>
316 m_unwindinfo_data
.GetByteSize() ||
317 indexSectionOffset
> m_unwindinfo_data
.GetByteSize() ||
318 offset
> m_unwindinfo_data
.GetByteSize()) {
319 Host::SystemLog(Host::eSystemLogError
, "error: Invalid offset "
320 "encountered in compact unwind "
322 // don't trust anything from this compact_unwind section if it looks
323 // blatantly invalid data in the header.
324 m_indexes_computed
= eLazyBoolNo
;
328 // Parse the basic information from the indexes We wait to scan the second
329 // level page info until it's needed
331 // struct unwind_info_section_header_index_entry {
332 // uint32_t functionOffset;
333 // uint32_t secondLevelPagesSectionOffset;
334 // uint32_t lsdaIndexArraySectionOffset;
337 bool clear_address_zeroth_bit
= false;
338 if (ArchSpec arch
= m_objfile
.GetArchitecture()) {
339 if (arch
.GetTriple().getArch() == llvm::Triple::arm
||
340 arch
.GetTriple().getArch() == llvm::Triple::thumb
)
341 clear_address_zeroth_bit
= true;
344 offset
= indexSectionOffset
;
345 for (uint32_t idx
= 0; idx
< indexCount
; idx
++) {
346 uint32_t function_offset
=
347 m_unwindinfo_data
.GetU32(&offset
); // functionOffset
348 uint32_t second_level_offset
=
349 m_unwindinfo_data
.GetU32(&offset
); // secondLevelPagesSectionOffset
350 uint32_t lsda_offset
=
351 m_unwindinfo_data
.GetU32(&offset
); // lsdaIndexArraySectionOffset
353 if (second_level_offset
> m_section_sp
->GetByteSize() ||
354 lsda_offset
> m_section_sp
->GetByteSize()) {
355 m_indexes_computed
= eLazyBoolNo
;
358 if (clear_address_zeroth_bit
)
359 function_offset
&= ~1ull;
361 UnwindIndex this_index
;
362 this_index
.function_offset
= function_offset
;
363 this_index
.second_level
= second_level_offset
;
364 this_index
.lsda_array_start
= lsda_offset
;
366 if (m_indexes
.size() > 0) {
367 m_indexes
[m_indexes
.size() - 1].lsda_array_end
= lsda_offset
;
370 if (second_level_offset
== 0) {
371 this_index
.sentinal_entry
= true;
374 m_indexes
.push_back(this_index
);
376 m_indexes_computed
= eLazyBoolYes
;
378 m_indexes_computed
= eLazyBoolNo
;
382 uint32_t CompactUnwindInfo::GetLSDAForFunctionOffset(uint32_t lsda_offset
,
384 uint32_t function_offset
) {
385 // struct unwind_info_section_header_lsda_index_entry {
386 // uint32_t functionOffset;
387 // uint32_t lsdaOffset;
390 offset_t first_entry
= lsda_offset
;
392 uint32_t high
= lsda_count
;
394 uint32_t mid
= (low
+ high
) / 2;
395 offset_t offset
= first_entry
+ (mid
* 8);
396 uint32_t mid_func_offset
=
397 m_unwindinfo_data
.GetU32(&offset
); // functionOffset
398 uint32_t mid_lsda_offset
= m_unwindinfo_data
.GetU32(&offset
); // lsdaOffset
399 if (mid_func_offset
== function_offset
) {
400 return mid_lsda_offset
;
402 if (mid_func_offset
< function_offset
) {
411 lldb::offset_t
CompactUnwindInfo::BinarySearchRegularSecondPage(
412 uint32_t entry_page_offset
, uint32_t entry_count
, uint32_t function_offset
,
413 uint32_t *entry_func_start_offset
, uint32_t *entry_func_end_offset
) {
414 // typedef uint32_t compact_unwind_encoding_t;
415 // struct unwind_info_regular_second_level_entry {
416 // uint32_t functionOffset;
417 // compact_unwind_encoding_t encoding;
419 offset_t first_entry
= entry_page_offset
;
422 uint32_t high
= entry_count
;
423 uint32_t last
= high
- 1;
425 uint32_t mid
= (low
+ high
) / 2;
426 offset_t offset
= first_entry
+ (mid
* 8);
427 uint32_t mid_func_offset
=
428 m_unwindinfo_data
.GetU32(&offset
); // functionOffset
429 uint32_t next_func_offset
= 0;
431 offset
= first_entry
+ ((mid
+ 1) * 8);
432 next_func_offset
= m_unwindinfo_data
.GetU32(&offset
); // functionOffset
434 if (mid_func_offset
<= function_offset
) {
435 if (mid
== last
|| (next_func_offset
> function_offset
)) {
436 if (entry_func_start_offset
)
437 *entry_func_start_offset
= mid_func_offset
;
438 if (mid
!= last
&& entry_func_end_offset
)
439 *entry_func_end_offset
= next_func_offset
;
440 return first_entry
+ (mid
* 8);
448 return LLDB_INVALID_OFFSET
;
451 uint32_t CompactUnwindInfo::BinarySearchCompressedSecondPage(
452 uint32_t entry_page_offset
, uint32_t entry_count
,
453 uint32_t function_offset_to_find
, uint32_t function_offset_base
,
454 uint32_t *entry_func_start_offset
, uint32_t *entry_func_end_offset
) {
455 offset_t first_entry
= entry_page_offset
;
458 uint32_t high
= entry_count
;
459 uint32_t last
= high
- 1;
461 uint32_t mid
= (low
+ high
) / 2;
462 offset_t offset
= first_entry
+ (mid
* 4);
463 uint32_t entry
= m_unwindinfo_data
.GetU32(&offset
); // entry
464 uint32_t mid_func_offset
= UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(entry
);
465 mid_func_offset
+= function_offset_base
;
466 uint32_t next_func_offset
= 0;
468 offset
= first_entry
+ ((mid
+ 1) * 4);
469 uint32_t next_entry
= m_unwindinfo_data
.GetU32(&offset
); // entry
470 next_func_offset
= UNWIND_INFO_COMPRESSED_ENTRY_FUNC_OFFSET(next_entry
);
471 next_func_offset
+= function_offset_base
;
473 if (mid_func_offset
<= function_offset_to_find
) {
474 if (mid
== last
|| (next_func_offset
> function_offset_to_find
)) {
475 if (entry_func_start_offset
)
476 *entry_func_start_offset
= mid_func_offset
;
477 if (mid
!= last
&& entry_func_end_offset
)
478 *entry_func_end_offset
= next_func_offset
;
479 return UNWIND_INFO_COMPRESSED_ENTRY_ENCODING_INDEX(entry
);
491 bool CompactUnwindInfo::GetCompactUnwindInfoForFunction(
492 Target
&target
, Address address
, FunctionInfo
&unwind_info
) {
493 unwind_info
.encoding
= 0;
494 unwind_info
.lsda_address
.Clear();
495 unwind_info
.personality_ptr_address
.Clear();
497 if (!IsValid(target
.GetProcessSP()))
500 addr_t text_section_file_address
= LLDB_INVALID_ADDRESS
;
501 SectionList
*sl
= m_objfile
.GetSectionList();
503 SectionSP text_sect
= sl
->FindSectionByType(eSectionTypeCode
, true);
504 if (text_sect
.get()) {
505 text_section_file_address
= text_sect
->GetFileAddress();
508 if (text_section_file_address
== LLDB_INVALID_ADDRESS
)
511 addr_t function_offset
=
512 address
.GetFileAddress() - m_objfile
.GetBaseAddress().GetFileAddress();
515 key
.function_offset
= function_offset
;
517 std::vector
<UnwindIndex
>::const_iterator it
;
518 it
= std::lower_bound(m_indexes
.begin(), m_indexes
.end(), key
);
519 if (it
== m_indexes
.end()) {
523 if (it
->function_offset
!= key
.function_offset
) {
524 if (it
!= m_indexes
.begin())
528 if (it
->sentinal_entry
) {
532 auto next_it
= it
+ 1;
533 if (next_it
!= m_indexes
.end()) {
534 // initialize the function offset end range to be the start of the next
535 // index offset. If we find an entry which is at the end of the index
536 // table, this will establish the range end.
537 unwind_info
.valid_range_offset_end
= next_it
->function_offset
;
540 offset_t second_page_offset
= it
->second_level
;
541 offset_t lsda_array_start
= it
->lsda_array_start
;
542 offset_t lsda_array_count
= (it
->lsda_array_end
- it
->lsda_array_start
) / 8;
544 offset_t offset
= second_page_offset
;
545 uint32_t kind
= m_unwindinfo_data
.GetU32(
546 &offset
); // UNWIND_SECOND_LEVEL_REGULAR or UNWIND_SECOND_LEVEL_COMPRESSED
548 if (kind
== UNWIND_SECOND_LEVEL_REGULAR
) {
549 // struct unwind_info_regular_second_level_page_header {
550 // uint32_t kind; // UNWIND_SECOND_LEVEL_REGULAR
551 // uint16_t entryPageOffset;
552 // uint16_t entryCount;
554 // typedef uint32_t compact_unwind_encoding_t;
555 // struct unwind_info_regular_second_level_entry {
556 // uint32_t functionOffset;
557 // compact_unwind_encoding_t encoding;
559 uint16_t entry_page_offset
=
560 m_unwindinfo_data
.GetU16(&offset
); // entryPageOffset
561 uint16_t entry_count
= m_unwindinfo_data
.GetU16(&offset
); // entryCount
563 offset_t entry_offset
= BinarySearchRegularSecondPage(
564 second_page_offset
+ entry_page_offset
, entry_count
, function_offset
,
565 &unwind_info
.valid_range_offset_start
,
566 &unwind_info
.valid_range_offset_end
);
567 if (entry_offset
== LLDB_INVALID_OFFSET
) {
570 entry_offset
+= 4; // skip over functionOffset
571 unwind_info
.encoding
= m_unwindinfo_data
.GetU32(&entry_offset
); // encoding
572 if (unwind_info
.encoding
& UNWIND_HAS_LSDA
) {
573 SectionList
*sl
= m_objfile
.GetSectionList();
575 uint32_t lsda_offset
= GetLSDAForFunctionOffset(
576 lsda_array_start
, lsda_array_count
, function_offset
);
577 addr_t objfile_base_address
=
578 m_objfile
.GetBaseAddress().GetFileAddress();
579 unwind_info
.lsda_address
.ResolveAddressUsingFileSections(
580 objfile_base_address
+ lsda_offset
, sl
);
583 if (unwind_info
.encoding
& UNWIND_PERSONALITY_MASK
) {
584 uint32_t personality_index
=
585 EXTRACT_BITS(unwind_info
.encoding
, UNWIND_PERSONALITY_MASK
);
587 if (personality_index
> 0) {
589 if (personality_index
< m_unwind_header
.personality_array_count
) {
590 offset_t offset
= m_unwind_header
.personality_array_offset
;
591 offset
+= 4 * personality_index
;
592 SectionList
*sl
= m_objfile
.GetSectionList();
594 uint32_t personality_offset
= m_unwindinfo_data
.GetU32(&offset
);
595 addr_t objfile_base_address
=
596 m_objfile
.GetBaseAddress().GetFileAddress();
597 unwind_info
.personality_ptr_address
.ResolveAddressUsingFileSections(
598 objfile_base_address
+ personality_offset
, sl
);
604 } else if (kind
== UNWIND_SECOND_LEVEL_COMPRESSED
) {
605 // struct unwind_info_compressed_second_level_page_header {
606 // uint32_t kind; // UNWIND_SECOND_LEVEL_COMPRESSED
607 // uint16_t entryPageOffset; // offset from this 2nd lvl page
608 // idx to array of entries
609 // // (an entry has a function
610 // offset and index into the
612 // // NB function offset from the
613 // entry in the compressed page
614 // // must be added to the index's
615 // functionOffset value.
616 // uint16_t entryCount;
617 // uint16_t encodingsPageOffset; // offset from this 2nd lvl page
618 // idx to array of encodings
619 // uint16_t encodingsCount;
621 uint16_t entry_page_offset
=
622 m_unwindinfo_data
.GetU16(&offset
); // entryPageOffset
623 uint16_t entry_count
= m_unwindinfo_data
.GetU16(&offset
); // entryCount
624 uint16_t encodings_page_offset
=
625 m_unwindinfo_data
.GetU16(&offset
); // encodingsPageOffset
626 uint16_t encodings_count
=
627 m_unwindinfo_data
.GetU16(&offset
); // encodingsCount
629 uint32_t encoding_index
= BinarySearchCompressedSecondPage(
630 second_page_offset
+ entry_page_offset
, entry_count
, function_offset
,
631 it
->function_offset
, &unwind_info
.valid_range_offset_start
,
632 &unwind_info
.valid_range_offset_end
);
633 if (encoding_index
== UINT32_MAX
||
635 encodings_count
+ m_unwind_header
.common_encodings_array_count
) {
638 uint32_t encoding
= 0;
639 if (encoding_index
< m_unwind_header
.common_encodings_array_count
) {
640 offset
= m_unwind_header
.common_encodings_array_offset
+
641 (encoding_index
* sizeof(uint32_t));
642 encoding
= m_unwindinfo_data
.GetU32(
643 &offset
); // encoding entry from the commonEncodingsArray
645 uint32_t page_specific_entry_index
=
646 encoding_index
- m_unwind_header
.common_encodings_array_count
;
647 offset
= second_page_offset
+ encodings_page_offset
+
648 (page_specific_entry_index
* sizeof(uint32_t));
649 encoding
= m_unwindinfo_data
.GetU32(
650 &offset
); // encoding entry from the page-specific encoding array
655 unwind_info
.encoding
= encoding
;
656 if (unwind_info
.encoding
& UNWIND_HAS_LSDA
) {
657 SectionList
*sl
= m_objfile
.GetSectionList();
659 uint32_t lsda_offset
= GetLSDAForFunctionOffset(
660 lsda_array_start
, lsda_array_count
, function_offset
);
661 addr_t objfile_base_address
=
662 m_objfile
.GetBaseAddress().GetFileAddress();
663 unwind_info
.lsda_address
.ResolveAddressUsingFileSections(
664 objfile_base_address
+ lsda_offset
, sl
);
667 if (unwind_info
.encoding
& UNWIND_PERSONALITY_MASK
) {
668 uint32_t personality_index
=
669 EXTRACT_BITS(unwind_info
.encoding
, UNWIND_PERSONALITY_MASK
);
671 if (personality_index
> 0) {
673 if (personality_index
< m_unwind_header
.personality_array_count
) {
674 offset_t offset
= m_unwind_header
.personality_array_offset
;
675 offset
+= 4 * personality_index
;
676 SectionList
*sl
= m_objfile
.GetSectionList();
678 uint32_t personality_offset
= m_unwindinfo_data
.GetU32(&offset
);
679 addr_t objfile_base_address
=
680 m_objfile
.GetBaseAddress().GetFileAddress();
681 unwind_info
.personality_ptr_address
.ResolveAddressUsingFileSections(
682 objfile_base_address
+ personality_offset
, sl
);
692 enum x86_64_eh_regnum
{
709 rip
= 16 // this is officially the Return Address register number, but close
713 // Convert the compact_unwind_info.h register numbering scheme to
714 // eRegisterKindEHFrame (eh_frame) register numbering scheme.
715 uint32_t translate_to_eh_frame_regnum_x86_64(uint32_t unwind_regno
) {
716 switch (unwind_regno
) {
717 case UNWIND_X86_64_REG_RBX
:
718 return x86_64_eh_regnum::rbx
;
719 case UNWIND_X86_64_REG_R12
:
720 return x86_64_eh_regnum::r12
;
721 case UNWIND_X86_64_REG_R13
:
722 return x86_64_eh_regnum::r13
;
723 case UNWIND_X86_64_REG_R14
:
724 return x86_64_eh_regnum::r14
;
725 case UNWIND_X86_64_REG_R15
:
726 return x86_64_eh_regnum::r15
;
727 case UNWIND_X86_64_REG_RBP
:
728 return x86_64_eh_regnum::rbp
;
730 return LLDB_INVALID_REGNUM
;
734 bool CompactUnwindInfo::CreateUnwindPlan_x86_64(Target
&target
,
735 FunctionInfo
&function_info
,
736 UnwindPlan
&unwind_plan
,
737 Address pc_or_function_start
) {
738 unwind_plan
.SetSourceName("compact unwind info");
739 unwind_plan
.SetSourcedFromCompiler(eLazyBoolYes
);
740 unwind_plan
.SetUnwindPlanValidAtAllInstructions(eLazyBoolNo
);
741 unwind_plan
.SetUnwindPlanForSignalTrap(eLazyBoolNo
);
742 unwind_plan
.SetRegisterKind(eRegisterKindEHFrame
);
744 unwind_plan
.SetLSDAAddress(function_info
.lsda_address
);
745 unwind_plan
.SetPersonalityFunctionPtr(function_info
.personality_ptr_address
);
747 UnwindPlan::RowSP
row(new UnwindPlan::Row
);
749 const int wordsize
= 8;
750 int mode
= function_info
.encoding
& UNWIND_X86_64_MODE_MASK
;
752 case UNWIND_X86_64_MODE_RBP_FRAME
: {
753 row
->GetCFAValue().SetIsRegisterPlusOffset(
754 translate_to_eh_frame_regnum_x86_64(UNWIND_X86_64_REG_RBP
),
757 row
->SetRegisterLocationToAtCFAPlusOffset(x86_64_eh_regnum::rbp
,
758 wordsize
* -2, true);
759 row
->SetRegisterLocationToAtCFAPlusOffset(x86_64_eh_regnum::rip
,
760 wordsize
* -1, true);
761 row
->SetRegisterLocationToIsCFAPlusOffset(x86_64_eh_regnum::rsp
, 0, true);
763 uint32_t saved_registers_offset
=
764 EXTRACT_BITS(function_info
.encoding
, UNWIND_X86_64_RBP_FRAME_OFFSET
);
766 uint32_t saved_registers_locations
=
767 EXTRACT_BITS(function_info
.encoding
, UNWIND_X86_64_RBP_FRAME_REGISTERS
);
769 saved_registers_offset
+= 2;
771 for (int i
= 0; i
< 5; i
++) {
772 uint32_t regnum
= saved_registers_locations
& 0x7;
774 case UNWIND_X86_64_REG_NONE
:
776 case UNWIND_X86_64_REG_RBX
:
777 case UNWIND_X86_64_REG_R12
:
778 case UNWIND_X86_64_REG_R13
:
779 case UNWIND_X86_64_REG_R14
:
780 case UNWIND_X86_64_REG_R15
:
781 row
->SetRegisterLocationToAtCFAPlusOffset(
782 translate_to_eh_frame_regnum_x86_64(regnum
),
783 wordsize
* -saved_registers_offset
, true);
786 saved_registers_offset
--;
787 saved_registers_locations
>>= 3;
789 unwind_plan
.AppendRow(row
);
793 case UNWIND_X86_64_MODE_STACK_IND
: {
794 // The clang in Xcode 6 is emitting incorrect compact unwind encodings for
795 // this style of unwind. It was fixed in llvm r217020. The clang in Xcode
800 case UNWIND_X86_64_MODE_STACK_IMMD
: {
801 uint32_t stack_size
= EXTRACT_BITS(function_info
.encoding
,
802 UNWIND_X86_64_FRAMELESS_STACK_SIZE
);
803 uint32_t register_count
= EXTRACT_BITS(
804 function_info
.encoding
, UNWIND_X86_64_FRAMELESS_STACK_REG_COUNT
);
805 uint32_t permutation
= EXTRACT_BITS(
806 function_info
.encoding
, UNWIND_X86_64_FRAMELESS_STACK_REG_PERMUTATION
);
808 if (mode
== UNWIND_X86_64_MODE_STACK_IND
&&
809 function_info
.valid_range_offset_start
!= 0) {
810 uint32_t stack_adjust
= EXTRACT_BITS(
811 function_info
.encoding
, UNWIND_X86_64_FRAMELESS_STACK_ADJUST
);
813 // offset into the function instructions; 0 == beginning of first
815 uint32_t offset_to_subl_insn
= EXTRACT_BITS(
816 function_info
.encoding
, UNWIND_X86_64_FRAMELESS_STACK_SIZE
);
818 SectionList
*sl
= m_objfile
.GetSectionList();
820 ProcessSP process_sp
= target
.GetProcessSP();
822 Address
subl_payload_addr(function_info
.valid_range_offset_start
, sl
);
823 subl_payload_addr
.Slide(offset_to_subl_insn
);
825 uint64_t large_stack_size
= process_sp
->ReadUnsignedIntegerFromMemory(
826 subl_payload_addr
.GetLoadAddress(&target
), 4, 0, error
);
827 if (large_stack_size
!= 0 && error
.Success()) {
828 // Got the large stack frame size correctly - use it
829 stack_size
= large_stack_size
+ (stack_adjust
* wordsize
);
841 int32_t offset
= mode
== UNWIND_X86_64_MODE_STACK_IND
843 : stack_size
* wordsize
;
844 row
->GetCFAValue().SetIsRegisterPlusOffset(x86_64_eh_regnum::rsp
, offset
);
847 row
->SetRegisterLocationToAtCFAPlusOffset(x86_64_eh_regnum::rip
,
848 wordsize
* -1, true);
849 row
->SetRegisterLocationToIsCFAPlusOffset(x86_64_eh_regnum::rsp
, 0, true);
851 if (register_count
> 0) {
853 // We need to include (up to) 6 registers in 10 bits. That would be 18
854 // bits if we just used 3 bits per reg to indicate the order they're
855 // saved on the stack.
857 // This is done with Lehmer code permutation, e.g. see
858 // http://stackoverflow.com/questions/1506078/fast-permutation-number-
859 // permutation-mapping-algorithms
860 int permunreg
[6] = {0, 0, 0, 0, 0, 0};
862 // This decodes the variable-base number in the 10 bits and gives us the
863 // Lehmer code sequence which can then be decoded.
865 switch (register_count
) {
867 permunreg
[0] = permutation
/ 120; // 120 == 5!
868 permutation
-= (permunreg
[0] * 120);
869 permunreg
[1] = permutation
/ 24; // 24 == 4!
870 permutation
-= (permunreg
[1] * 24);
871 permunreg
[2] = permutation
/ 6; // 6 == 3!
872 permutation
-= (permunreg
[2] * 6);
873 permunreg
[3] = permutation
/ 2; // 2 == 2!
874 permutation
-= (permunreg
[3] * 2);
875 permunreg
[4] = permutation
; // 1 == 1!
879 permunreg
[0] = permutation
/ 120;
880 permutation
-= (permunreg
[0] * 120);
881 permunreg
[1] = permutation
/ 24;
882 permutation
-= (permunreg
[1] * 24);
883 permunreg
[2] = permutation
/ 6;
884 permutation
-= (permunreg
[2] * 6);
885 permunreg
[3] = permutation
/ 2;
886 permutation
-= (permunreg
[3] * 2);
887 permunreg
[4] = permutation
;
890 permunreg
[0] = permutation
/ 60;
891 permutation
-= (permunreg
[0] * 60);
892 permunreg
[1] = permutation
/ 12;
893 permutation
-= (permunreg
[1] * 12);
894 permunreg
[2] = permutation
/ 3;
895 permutation
-= (permunreg
[2] * 3);
896 permunreg
[3] = permutation
;
899 permunreg
[0] = permutation
/ 20;
900 permutation
-= (permunreg
[0] * 20);
901 permunreg
[1] = permutation
/ 4;
902 permutation
-= (permunreg
[1] * 4);
903 permunreg
[2] = permutation
;
906 permunreg
[0] = permutation
/ 5;
907 permutation
-= (permunreg
[0] * 5);
908 permunreg
[1] = permutation
;
911 permunreg
[0] = permutation
;
915 // Decode the Lehmer code for this permutation of the registers v.
916 // http://en.wikipedia.org/wiki/Lehmer_code
918 int registers
[6] = {UNWIND_X86_64_REG_NONE
, UNWIND_X86_64_REG_NONE
,
919 UNWIND_X86_64_REG_NONE
, UNWIND_X86_64_REG_NONE
,
920 UNWIND_X86_64_REG_NONE
, UNWIND_X86_64_REG_NONE
};
921 bool used
[7] = {false, false, false, false, false, false, false};
922 for (uint32_t i
= 0; i
< register_count
; i
++) {
924 for (int j
= 1; j
< 7; j
++) {
926 if (renum
== permunreg
[i
]) {
936 uint32_t saved_registers_offset
= 1;
937 saved_registers_offset
++;
939 for (int i
= (sizeof(registers
) / sizeof(int)) - 1; i
>= 0; i
--) {
940 switch (registers
[i
]) {
941 case UNWIND_X86_64_REG_NONE
:
943 case UNWIND_X86_64_REG_RBX
:
944 case UNWIND_X86_64_REG_R12
:
945 case UNWIND_X86_64_REG_R13
:
946 case UNWIND_X86_64_REG_R14
:
947 case UNWIND_X86_64_REG_R15
:
948 case UNWIND_X86_64_REG_RBP
:
949 row
->SetRegisterLocationToAtCFAPlusOffset(
950 translate_to_eh_frame_regnum_x86_64(registers
[i
]),
951 wordsize
* -saved_registers_offset
, true);
952 saved_registers_offset
++;
957 unwind_plan
.AppendRow(row
);
961 case UNWIND_X86_64_MODE_DWARF
: {
972 enum i386_eh_regnum
{
981 eip
= 8 // this is officially the Return Address register number, but close
985 // Convert the compact_unwind_info.h register numbering scheme to
986 // eRegisterKindEHFrame (eh_frame) register numbering scheme.
987 uint32_t translate_to_eh_frame_regnum_i386(uint32_t unwind_regno
) {
988 switch (unwind_regno
) {
989 case UNWIND_X86_REG_EBX
:
990 return i386_eh_regnum::ebx
;
991 case UNWIND_X86_REG_ECX
:
992 return i386_eh_regnum::ecx
;
993 case UNWIND_X86_REG_EDX
:
994 return i386_eh_regnum::edx
;
995 case UNWIND_X86_REG_EDI
:
996 return i386_eh_regnum::edi
;
997 case UNWIND_X86_REG_ESI
:
998 return i386_eh_regnum::esi
;
999 case UNWIND_X86_REG_EBP
:
1000 return i386_eh_regnum::ebp
;
1002 return LLDB_INVALID_REGNUM
;
1006 bool CompactUnwindInfo::CreateUnwindPlan_i386(Target
&target
,
1007 FunctionInfo
&function_info
,
1008 UnwindPlan
&unwind_plan
,
1009 Address pc_or_function_start
) {
1010 unwind_plan
.SetSourceName("compact unwind info");
1011 unwind_plan
.SetSourcedFromCompiler(eLazyBoolYes
);
1012 unwind_plan
.SetUnwindPlanValidAtAllInstructions(eLazyBoolNo
);
1013 unwind_plan
.SetUnwindPlanForSignalTrap(eLazyBoolNo
);
1014 unwind_plan
.SetRegisterKind(eRegisterKindEHFrame
);
1016 unwind_plan
.SetLSDAAddress(function_info
.lsda_address
);
1017 unwind_plan
.SetPersonalityFunctionPtr(function_info
.personality_ptr_address
);
1019 UnwindPlan::RowSP
row(new UnwindPlan::Row
);
1021 const int wordsize
= 4;
1022 int mode
= function_info
.encoding
& UNWIND_X86_MODE_MASK
;
1024 case UNWIND_X86_MODE_EBP_FRAME
: {
1025 row
->GetCFAValue().SetIsRegisterPlusOffset(
1026 translate_to_eh_frame_regnum_i386(UNWIND_X86_REG_EBP
), 2 * wordsize
);
1028 row
->SetRegisterLocationToAtCFAPlusOffset(i386_eh_regnum::ebp
,
1029 wordsize
* -2, true);
1030 row
->SetRegisterLocationToAtCFAPlusOffset(i386_eh_regnum::eip
,
1031 wordsize
* -1, true);
1032 row
->SetRegisterLocationToIsCFAPlusOffset(i386_eh_regnum::esp
, 0, true);
1034 uint32_t saved_registers_offset
=
1035 EXTRACT_BITS(function_info
.encoding
, UNWIND_X86_EBP_FRAME_OFFSET
);
1037 uint32_t saved_registers_locations
=
1038 EXTRACT_BITS(function_info
.encoding
, UNWIND_X86_EBP_FRAME_REGISTERS
);
1040 saved_registers_offset
+= 2;
1042 for (int i
= 0; i
< 5; i
++) {
1043 uint32_t regnum
= saved_registers_locations
& 0x7;
1045 case UNWIND_X86_REG_NONE
:
1047 case UNWIND_X86_REG_EBX
:
1048 case UNWIND_X86_REG_ECX
:
1049 case UNWIND_X86_REG_EDX
:
1050 case UNWIND_X86_REG_EDI
:
1051 case UNWIND_X86_REG_ESI
:
1052 row
->SetRegisterLocationToAtCFAPlusOffset(
1053 translate_to_eh_frame_regnum_i386(regnum
),
1054 wordsize
* -saved_registers_offset
, true);
1057 saved_registers_offset
--;
1058 saved_registers_locations
>>= 3;
1060 unwind_plan
.AppendRow(row
);
1064 case UNWIND_X86_MODE_STACK_IND
:
1065 case UNWIND_X86_MODE_STACK_IMMD
: {
1066 uint32_t stack_size
=
1067 EXTRACT_BITS(function_info
.encoding
, UNWIND_X86_FRAMELESS_STACK_SIZE
);
1068 uint32_t register_count
= EXTRACT_BITS(
1069 function_info
.encoding
, UNWIND_X86_FRAMELESS_STACK_REG_COUNT
);
1070 uint32_t permutation
= EXTRACT_BITS(
1071 function_info
.encoding
, UNWIND_X86_FRAMELESS_STACK_REG_PERMUTATION
);
1073 if (mode
== UNWIND_X86_MODE_STACK_IND
&&
1074 function_info
.valid_range_offset_start
!= 0) {
1075 uint32_t stack_adjust
= EXTRACT_BITS(function_info
.encoding
,
1076 UNWIND_X86_FRAMELESS_STACK_ADJUST
);
1078 // offset into the function instructions; 0 == beginning of first
1080 uint32_t offset_to_subl_insn
=
1081 EXTRACT_BITS(function_info
.encoding
, UNWIND_X86_FRAMELESS_STACK_SIZE
);
1083 SectionList
*sl
= m_objfile
.GetSectionList();
1085 ProcessSP process_sp
= target
.GetProcessSP();
1087 Address
subl_payload_addr(function_info
.valid_range_offset_start
, sl
);
1088 subl_payload_addr
.Slide(offset_to_subl_insn
);
1090 uint64_t large_stack_size
= process_sp
->ReadUnsignedIntegerFromMemory(
1091 subl_payload_addr
.GetLoadAddress(&target
), 4, 0, error
);
1092 if (large_stack_size
!= 0 && error
.Success()) {
1093 // Got the large stack frame size correctly - use it
1094 stack_size
= large_stack_size
+ (stack_adjust
* wordsize
);
1107 mode
== UNWIND_X86_MODE_STACK_IND
? stack_size
: stack_size
* wordsize
;
1108 row
->GetCFAValue().SetIsRegisterPlusOffset(i386_eh_regnum::esp
, offset
);
1110 row
->SetRegisterLocationToAtCFAPlusOffset(i386_eh_regnum::eip
,
1111 wordsize
* -1, true);
1112 row
->SetRegisterLocationToIsCFAPlusOffset(i386_eh_regnum::esp
, 0, true);
1114 if (register_count
> 0) {
1116 // We need to include (up to) 6 registers in 10 bits. That would be 18
1117 // bits if we just used 3 bits per reg to indicate the order they're
1118 // saved on the stack.
1120 // This is done with Lehmer code permutation, e.g. see
1121 // http://stackoverflow.com/questions/1506078/fast-permutation-number-
1122 // permutation-mapping-algorithms
1123 int permunreg
[6] = {0, 0, 0, 0, 0, 0};
1125 // This decodes the variable-base number in the 10 bits and gives us the
1126 // Lehmer code sequence which can then be decoded.
1128 switch (register_count
) {
1130 permunreg
[0] = permutation
/ 120; // 120 == 5!
1131 permutation
-= (permunreg
[0] * 120);
1132 permunreg
[1] = permutation
/ 24; // 24 == 4!
1133 permutation
-= (permunreg
[1] * 24);
1134 permunreg
[2] = permutation
/ 6; // 6 == 3!
1135 permutation
-= (permunreg
[2] * 6);
1136 permunreg
[3] = permutation
/ 2; // 2 == 2!
1137 permutation
-= (permunreg
[3] * 2);
1138 permunreg
[4] = permutation
; // 1 == 1!
1142 permunreg
[0] = permutation
/ 120;
1143 permutation
-= (permunreg
[0] * 120);
1144 permunreg
[1] = permutation
/ 24;
1145 permutation
-= (permunreg
[1] * 24);
1146 permunreg
[2] = permutation
/ 6;
1147 permutation
-= (permunreg
[2] * 6);
1148 permunreg
[3] = permutation
/ 2;
1149 permutation
-= (permunreg
[3] * 2);
1150 permunreg
[4] = permutation
;
1153 permunreg
[0] = permutation
/ 60;
1154 permutation
-= (permunreg
[0] * 60);
1155 permunreg
[1] = permutation
/ 12;
1156 permutation
-= (permunreg
[1] * 12);
1157 permunreg
[2] = permutation
/ 3;
1158 permutation
-= (permunreg
[2] * 3);
1159 permunreg
[3] = permutation
;
1162 permunreg
[0] = permutation
/ 20;
1163 permutation
-= (permunreg
[0] * 20);
1164 permunreg
[1] = permutation
/ 4;
1165 permutation
-= (permunreg
[1] * 4);
1166 permunreg
[2] = permutation
;
1169 permunreg
[0] = permutation
/ 5;
1170 permutation
-= (permunreg
[0] * 5);
1171 permunreg
[1] = permutation
;
1174 permunreg
[0] = permutation
;
1178 // Decode the Lehmer code for this permutation of the registers v.
1179 // http://en.wikipedia.org/wiki/Lehmer_code
1181 int registers
[6] = {UNWIND_X86_REG_NONE
, UNWIND_X86_REG_NONE
,
1182 UNWIND_X86_REG_NONE
, UNWIND_X86_REG_NONE
,
1183 UNWIND_X86_REG_NONE
, UNWIND_X86_REG_NONE
};
1184 bool used
[7] = {false, false, false, false, false, false, false};
1185 for (uint32_t i
= 0; i
< register_count
; i
++) {
1187 for (int j
= 1; j
< 7; j
++) {
1189 if (renum
== permunreg
[i
]) {
1199 uint32_t saved_registers_offset
= 1;
1200 saved_registers_offset
++;
1202 for (int i
= (sizeof(registers
) / sizeof(int)) - 1; i
>= 0; i
--) {
1203 switch (registers
[i
]) {
1204 case UNWIND_X86_REG_NONE
:
1206 case UNWIND_X86_REG_EBX
:
1207 case UNWIND_X86_REG_ECX
:
1208 case UNWIND_X86_REG_EDX
:
1209 case UNWIND_X86_REG_EDI
:
1210 case UNWIND_X86_REG_ESI
:
1211 case UNWIND_X86_REG_EBP
:
1212 row
->SetRegisterLocationToAtCFAPlusOffset(
1213 translate_to_eh_frame_regnum_i386(registers
[i
]),
1214 wordsize
* -saved_registers_offset
, true);
1215 saved_registers_offset
++;
1221 unwind_plan
.AppendRow(row
);
1225 case UNWIND_X86_MODE_DWARF
: {
1232 // DWARF register numbers from "DWARF for the ARM 64-bit Architecture (AArch64)"
1235 enum arm64_eh_regnum
{
1252 // Compact unwind encodes d8-d15 but we don't have eh_frame / dwarf reg #'s
1253 // for the 64-bit fp regs. Normally in DWARF it's context sensitive - so it
1254 // knows it is fetching a 32- or 64-bit quantity from reg v8 to indicate s0
1255 // or d0 - but the unwinder is operating at a lower level and we'd try to
1256 // fetch 128 bits if we were told that v8 were stored on the stack...
1267 enum arm_eh_regnum
{
1303 bool CompactUnwindInfo::CreateUnwindPlan_arm64(Target
&target
,
1304 FunctionInfo
&function_info
,
1305 UnwindPlan
&unwind_plan
,
1306 Address pc_or_function_start
) {
1307 unwind_plan
.SetSourceName("compact unwind info");
1308 unwind_plan
.SetSourcedFromCompiler(eLazyBoolYes
);
1309 unwind_plan
.SetUnwindPlanValidAtAllInstructions(eLazyBoolNo
);
1310 unwind_plan
.SetUnwindPlanForSignalTrap(eLazyBoolNo
);
1311 unwind_plan
.SetRegisterKind(eRegisterKindEHFrame
);
1313 unwind_plan
.SetLSDAAddress(function_info
.lsda_address
);
1314 unwind_plan
.SetPersonalityFunctionPtr(function_info
.personality_ptr_address
);
1316 UnwindPlan::RowSP
row(new UnwindPlan::Row
);
1318 const int wordsize
= 8;
1319 int mode
= function_info
.encoding
& UNWIND_ARM64_MODE_MASK
;
1321 if (mode
== UNWIND_ARM64_MODE_DWARF
)
1324 if (mode
== UNWIND_ARM64_MODE_FRAMELESS
) {
1327 uint32_t stack_size
=
1328 (EXTRACT_BITS(function_info
.encoding
,
1329 UNWIND_ARM64_FRAMELESS_STACK_SIZE_MASK
)) *
1332 // Our previous Call Frame Address is the stack pointer plus the stack size
1333 row
->GetCFAValue().SetIsRegisterPlusOffset(arm64_eh_regnum::sp
, stack_size
);
1335 // Our previous PC is in the LR
1336 row
->SetRegisterLocationToRegister(arm64_eh_regnum::pc
, arm64_eh_regnum::ra
,
1339 unwind_plan
.AppendRow(row
);
1343 // Should not be possible
1344 if (mode
!= UNWIND_ARM64_MODE_FRAME
)
1347 // mode == UNWIND_ARM64_MODE_FRAME
1349 row
->GetCFAValue().SetIsRegisterPlusOffset(arm64_eh_regnum::fp
, 2 * wordsize
);
1351 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::fp
, wordsize
* -2,
1353 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::pc
, wordsize
* -1,
1355 row
->SetRegisterLocationToIsCFAPlusOffset(arm64_eh_regnum::sp
, 0, true);
1357 int reg_pairs_saved_count
= 1;
1359 uint32_t saved_register_bits
= function_info
.encoding
& 0xfff;
1361 if (saved_register_bits
& UNWIND_ARM64_FRAME_X19_X20_PAIR
) {
1362 int cfa_offset
= reg_pairs_saved_count
* -2 * wordsize
;
1363 cfa_offset
-= wordsize
;
1364 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x19
, cfa_offset
,
1366 cfa_offset
-= wordsize
;
1367 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x20
, cfa_offset
,
1369 reg_pairs_saved_count
++;
1372 if (saved_register_bits
& UNWIND_ARM64_FRAME_X21_X22_PAIR
) {
1373 int cfa_offset
= reg_pairs_saved_count
* -2 * wordsize
;
1374 cfa_offset
-= wordsize
;
1375 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x21
, cfa_offset
,
1377 cfa_offset
-= wordsize
;
1378 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x22
, cfa_offset
,
1380 reg_pairs_saved_count
++;
1383 if (saved_register_bits
& UNWIND_ARM64_FRAME_X23_X24_PAIR
) {
1384 int cfa_offset
= reg_pairs_saved_count
* -2 * wordsize
;
1385 cfa_offset
-= wordsize
;
1386 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x23
, cfa_offset
,
1388 cfa_offset
-= wordsize
;
1389 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x24
, cfa_offset
,
1391 reg_pairs_saved_count
++;
1394 if (saved_register_bits
& UNWIND_ARM64_FRAME_X25_X26_PAIR
) {
1395 int cfa_offset
= reg_pairs_saved_count
* -2 * wordsize
;
1396 cfa_offset
-= wordsize
;
1397 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x25
, cfa_offset
,
1399 cfa_offset
-= wordsize
;
1400 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x26
, cfa_offset
,
1402 reg_pairs_saved_count
++;
1405 if (saved_register_bits
& UNWIND_ARM64_FRAME_X27_X28_PAIR
) {
1406 int cfa_offset
= reg_pairs_saved_count
* -2 * wordsize
;
1407 cfa_offset
-= wordsize
;
1408 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x27
, cfa_offset
,
1410 cfa_offset
-= wordsize
;
1411 row
->SetRegisterLocationToAtCFAPlusOffset(arm64_eh_regnum::x28
, cfa_offset
,
1413 reg_pairs_saved_count
++;
1416 // If we use the v8-v15 regnums here, the unwinder will try to grab 128 bits
1418 // not sure if we have a good way to represent the 64-bitness of these saves.
1420 if (saved_register_bits
& UNWIND_ARM64_FRAME_D8_D9_PAIR
) {
1421 reg_pairs_saved_count
++;
1423 if (saved_register_bits
& UNWIND_ARM64_FRAME_D10_D11_PAIR
) {
1424 reg_pairs_saved_count
++;
1426 if (saved_register_bits
& UNWIND_ARM64_FRAME_D12_D13_PAIR
) {
1427 reg_pairs_saved_count
++;
1429 if (saved_register_bits
& UNWIND_ARM64_FRAME_D14_D15_PAIR
) {
1430 reg_pairs_saved_count
++;
1433 unwind_plan
.AppendRow(row
);
1437 bool CompactUnwindInfo::CreateUnwindPlan_armv7(Target
&target
,
1438 FunctionInfo
&function_info
,
1439 UnwindPlan
&unwind_plan
,
1440 Address pc_or_function_start
) {
1441 unwind_plan
.SetSourceName("compact unwind info");
1442 unwind_plan
.SetSourcedFromCompiler(eLazyBoolYes
);
1443 unwind_plan
.SetUnwindPlanValidAtAllInstructions(eLazyBoolNo
);
1444 unwind_plan
.SetUnwindPlanForSignalTrap(eLazyBoolNo
);
1445 unwind_plan
.SetRegisterKind(eRegisterKindEHFrame
);
1447 unwind_plan
.SetLSDAAddress(function_info
.lsda_address
);
1448 unwind_plan
.SetPersonalityFunctionPtr(function_info
.personality_ptr_address
);
1450 UnwindPlan::RowSP
row(new UnwindPlan::Row
);
1452 const int wordsize
= 4;
1453 int mode
= function_info
.encoding
& UNWIND_ARM_MODE_MASK
;
1455 if (mode
== UNWIND_ARM_MODE_DWARF
)
1458 uint32_t stack_adjust
= (EXTRACT_BITS(function_info
.encoding
,
1459 UNWIND_ARM_FRAME_STACK_ADJUST_MASK
)) *
1462 row
->GetCFAValue().SetIsRegisterPlusOffset(arm_r7
,
1463 (2 * wordsize
) + stack_adjust
);
1465 row
->SetRegisterLocationToAtCFAPlusOffset(
1466 arm_r7
, (wordsize
* -2) - stack_adjust
, true);
1467 row
->SetRegisterLocationToAtCFAPlusOffset(
1468 arm_pc
, (wordsize
* -1) - stack_adjust
, true);
1469 row
->SetRegisterLocationToIsCFAPlusOffset(arm_sp
, 0, true);
1471 int cfa_offset
= -stack_adjust
- (2 * wordsize
);
1473 uint32_t saved_register_bits
= function_info
.encoding
& 0xff;
1475 if (saved_register_bits
& UNWIND_ARM_FRAME_FIRST_PUSH_R6
) {
1476 cfa_offset
-= wordsize
;
1477 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r6
, cfa_offset
, true);
1480 if (saved_register_bits
& UNWIND_ARM_FRAME_FIRST_PUSH_R5
) {
1481 cfa_offset
-= wordsize
;
1482 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r5
, cfa_offset
, true);
1485 if (saved_register_bits
& UNWIND_ARM_FRAME_FIRST_PUSH_R4
) {
1486 cfa_offset
-= wordsize
;
1487 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r4
, cfa_offset
, true);
1490 if (saved_register_bits
& UNWIND_ARM_FRAME_SECOND_PUSH_R12
) {
1491 cfa_offset
-= wordsize
;
1492 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r12
, cfa_offset
, true);
1495 if (saved_register_bits
& UNWIND_ARM_FRAME_SECOND_PUSH_R11
) {
1496 cfa_offset
-= wordsize
;
1497 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r11
, cfa_offset
, true);
1500 if (saved_register_bits
& UNWIND_ARM_FRAME_SECOND_PUSH_R10
) {
1501 cfa_offset
-= wordsize
;
1502 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r10
, cfa_offset
, true);
1505 if (saved_register_bits
& UNWIND_ARM_FRAME_SECOND_PUSH_R9
) {
1506 cfa_offset
-= wordsize
;
1507 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r9
, cfa_offset
, true);
1510 if (saved_register_bits
& UNWIND_ARM_FRAME_SECOND_PUSH_R8
) {
1511 cfa_offset
-= wordsize
;
1512 row
->SetRegisterLocationToAtCFAPlusOffset(arm_r8
, cfa_offset
, true);
1515 if (mode
== UNWIND_ARM_MODE_FRAME_D
) {
1516 uint32_t d_reg_bits
=
1517 EXTRACT_BITS(function_info
.encoding
, UNWIND_ARM_FRAME_D_REG_COUNT_MASK
);
1518 switch (d_reg_bits
) {
1522 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d8
, cfa_offset
, true);
1528 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d10
, cfa_offset
, true);
1530 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d8
, cfa_offset
, true);
1537 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d12
, cfa_offset
, true);
1539 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d10
, cfa_offset
, true);
1541 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d8
, cfa_offset
, true);
1549 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d14
, cfa_offset
, true);
1551 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d12
, cfa_offset
, true);
1553 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d10
, cfa_offset
, true);
1555 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d8
, cfa_offset
, true);
1560 // sp = (sp - 24) & (-16);
1561 // vst {d8, d9, d10}
1563 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d14
, cfa_offset
, true);
1565 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d12
, cfa_offset
, true);
1567 // FIXME we don't have a way to represent reg saves at an specific
1568 // alignment short of
1569 // coming up with some DWARF location description.
1574 // sp = (sp - 40) & (-16);
1575 // vst {d8, d9, d10, d11}
1579 row
->SetRegisterLocationToAtCFAPlusOffset(arm_d14
, cfa_offset
, true);
1581 // FIXME we don't have a way to represent reg saves at an specific
1582 // alignment short of
1583 // coming up with some DWARF location description.
1587 // sp = (sp - 56) & (-16);
1588 // vst {d8, d9, d10, d11}
1589 // vst {d12, d13, d14}
1591 // FIXME we don't have a way to represent reg saves at an specific
1592 // alignment short of
1593 // coming up with some DWARF location description.
1597 // sp = (sp - 64) & (-16);
1598 // vst {d8, d9, d10, d11}
1599 // vst {d12, d13, d14, d15}
1601 // FIXME we don't have a way to represent reg saves at an specific
1602 // alignment short of
1603 // coming up with some DWARF location description.
1609 unwind_plan
.AppendRow(row
);