|
8 | 8 |
|
9 | 9 | #include "lldb/Symbol/UnwindPlan.h"
|
10 | 10 |
|
| 11 | +#include "lldb/Expression/DWARFExpression.h" |
11 | 12 | #include "lldb/Target/Process.h"
|
12 | 13 | #include "lldb/Target/RegisterContext.h"
|
| 14 | +#include "lldb/Target/Target.h" |
13 | 15 | #include "lldb/Target/Thread.h"
|
14 | 16 | #include "lldb/Utility/ConstString.h"
|
15 | 17 | #include "lldb/Utility/Log.h"
|
@@ -64,6 +66,30 @@ void UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression(
|
64 | 66 | m_location.expr.length = len;
|
65 | 67 | }
|
66 | 68 |
|
| 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 | + |
67 | 93 | void UnwindPlan::Row::RegisterLocation::Dump(Stream &s,
|
68 | 94 | const UnwindPlan *unwind_plan,
|
69 | 95 | const UnwindPlan::Row *row,
|
@@ -120,9 +146,12 @@ void UnwindPlan::Row::RegisterLocation::Dump(Stream &s,
|
120 | 146 | case isDWARFExpression: {
|
121 | 147 | s.PutChar('=');
|
122 | 148 | 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(']'); |
126 | 155 | } break;
|
127 | 156 | }
|
128 | 157 | }
|
@@ -172,7 +201,9 @@ void UnwindPlan::Row::FAValue::Dump(Stream &s, const UnwindPlan *unwind_plan,
|
172 | 201 | s.PutChar(']');
|
173 | 202 | break;
|
174 | 203 | case isDWARFExpression:
|
175 |
| - s.PutCString("dwarf-expr"); |
| 204 | + DumpDWARFExpr(s, |
| 205 | + llvm::makeArrayRef(m_value.expr.opcodes, m_value.expr.length), |
| 206 | + thread); |
176 | 207 | break;
|
177 | 208 | default:
|
178 | 209 | s.PutCString("unspecified");
|
|
0 commit comments