Skip to content

Commit 7a78420

Browse files
committedApr 23, 2019
UnwindPlan: pretty-print dwarf expressions
Summary: Previously we were printing the dwarf expressions in unwind rules simply as "dwarf-expr". This patch uses the existing dwarf-printing capabilities in lldb to enhance this dump output, and print the full decoded dwarf expression. Reviewers: jasonmolenda, clayborg Subscribers: aprantl, lldb-commits Differential Revision: https://reviews.llvm.org/D60949 llvm-svn: 358959
1 parent 63a2aa7 commit 7a78420

File tree

3 files changed

+62
-4
lines changed

3 files changed

+62
-4
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.text
2+
.globl main
3+
.type main, @function
4+
main:
5+
.LFB0:
6+
.cfi_startproc
7+
.cfi_escape 0x0f, 0x05, 0x77, 0x00, 0x08, 0x00, 0x22
8+
.cfi_escape 0x16, 0x10, 0x04, 0x09, 0xf8, 0x22, 0x06
9+
movl $47, %eax
10+
ret
11+
.cfi_endproc
12+
.LFE0:
13+
.size main, .-main
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# REQUIRES: target-x86_64, system-linux, native
2+
3+
# RUN: %clang %p/Inputs/unwind-plan-dwarf-dump.s -o %t
4+
# RUN: %lldb %t -s %s -o exit | FileCheck %s
5+
6+
breakpoint set -n main
7+
# CHECK: Breakpoint 1:
8+
9+
process launch
10+
# CHECK: stop reason = breakpoint 1.1
11+
12+
target modules show-unwind -n main
13+
# CHECK: eh_frame UnwindPlan:
14+
# CHECK: row[0]: 0: CFA=DW_OP_breg7 +0, DW_OP_const1u 0x00, DW_OP_plus => rip=DW_OP_const1s -8, DW_OP_plus , DW_OP_deref

‎lldb/source/Symbol/UnwindPlan.cpp

+35-4
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88

99
#include "lldb/Symbol/UnwindPlan.h"
1010

11+
#include "lldb/Expression/DWARFExpression.h"
1112
#include "lldb/Target/Process.h"
1213
#include "lldb/Target/RegisterContext.h"
14+
#include "lldb/Target/Target.h"
1315
#include "lldb/Target/Thread.h"
1416
#include "lldb/Utility/ConstString.h"
1517
#include "lldb/Utility/Log.h"
@@ -64,6 +66,30 @@ void UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression(
6466
m_location.expr.length = len;
6567
}
6668

69+
static llvm::Optional<std::pair<lldb::ByteOrder, uint32_t>>
70+
GetByteOrderAndAddrSize(Thread *thread) {
71+
if (!thread)
72+
return llvm::None;
73+
ProcessSP process_sp = thread->GetProcess();
74+
if (!process_sp)
75+
return llvm::None;
76+
ArchSpec arch = process_sp->GetTarget().GetArchitecture();
77+
return std::make_pair(arch.GetByteOrder(), arch.GetAddressByteSize());
78+
}
79+
80+
static void DumpDWARFExpr(Stream &s, llvm::ArrayRef<uint8_t> expr, Thread *thread) {
81+
if (auto order_and_width = GetByteOrderAndAddrSize(thread)) {
82+
DataExtractor extractor(expr.data(), expr.size(), order_and_width->first,
83+
order_and_width->second);
84+
if (!DWARFExpression::PrintDWARFExpression(s, extractor,
85+
order_and_width->second,
86+
/*dwarf_ref_size*/ 4,
87+
/*location_expression*/ false))
88+
s.PutCString("invalid-dwarf-expr");
89+
} else
90+
s.PutCString("dwarf-expr");
91+
}
92+
6793
void UnwindPlan::Row::RegisterLocation::Dump(Stream &s,
6894
const UnwindPlan *unwind_plan,
6995
const UnwindPlan::Row *row,
@@ -120,9 +146,12 @@ void UnwindPlan::Row::RegisterLocation::Dump(Stream &s,
120146
case isDWARFExpression: {
121147
s.PutChar('=');
122148
if (m_type == atDWARFExpression)
123-
s.PutCString("[dwarf-expr]");
124-
else
125-
s.PutCString("dwarf-expr");
149+
s.PutChar('[');
150+
DumpDWARFExpr(
151+
s, llvm::makeArrayRef(m_location.expr.opcodes, m_location.expr.length),
152+
thread);
153+
if (m_type == atDWARFExpression)
154+
s.PutChar(']');
126155
} break;
127156
}
128157
}
@@ -172,7 +201,9 @@ void UnwindPlan::Row::FAValue::Dump(Stream &s, const UnwindPlan *unwind_plan,
172201
s.PutChar(']');
173202
break;
174203
case isDWARFExpression:
175-
s.PutCString("dwarf-expr");
204+
DumpDWARFExpr(s,
205+
llvm::makeArrayRef(m_value.expr.opcodes, m_value.expr.length),
206+
thread);
176207
break;
177208
default:
178209
s.PutCString("unspecified");

0 commit comments

Comments
 (0)
Please sign in to comment.