mirror of
https://github.com/intel/llvm.git
synced 2026-01-20 01:58:44 +08:00
Added support for reading thread-local storage variables, as defined using the __thread modifier.
To make this work this patch extends LLDB to: - Explicitly track the link_map address for each module. This is effectively the module handle, not sure why it wasn't already being stored off anywhere. As an extension later, it would be nice if someone were to add support for printing this as part of the modules list. - Allow reading the per-thread data pointer via ptrace. I have added support for Linux here. I'll be happy to add support for FreeBSD once this is reviewed. OS X does not appear to have __thread variables, so maybe we don't need it there. Windows support should eventually be workable along the same lines. - Make DWARF expressions track which module they originated from. - Add support for the DW_OP_GNU_push_tls_address DWARF opcode, as generated by gcc and recent versions of clang. Earlier versions of clang (such as 3.2, which is default on Ubuntu right now) do not generate TLS debug info correctly so can not be supported here. - Understand the format of the pthread DTV block. This is where it gets tricky. We have three basic options here: 1) Call "dlinfo" or "__tls_get_addr" on the inferior and ask it directly. However this won't work on core dumps, and generally speaking it's not a good idea for the debugger to call functions itself, as it has the potential to not work depending on the state of the target. 2) Use libthread_db. This is what GDB does. However this option requires having a version of libthread_db on the host cross-compiled for each potential target. This places a large burden on the user, and would make it very hard to cross-debug from Windows to Linux, for example. Trying to build a library intended exclusively for one OS on a different one is not pleasant. GDB sidesteps the problem and asks the user to figure it out. 3) Parse the DTV structure ourselves. On initial inspection this seems to be a bad option, as the DTV structure (the format used by the runtime to manage TLS data) is not in fact a kernel data structure, it is implemented entirely in useerland in libc. Therefore the layout of it's fields are version and OS dependent, and are not standardized. However, it turns out not to be such a problem. All OSes use basically the same algorithm (a per-module lookup table) as detailed in Ulrich Drepper's TLS ELF ABI document, so we can easily write code to decode it ourselves. The only question therefore is the exact field layouts required. Happily, the implementors of libpthread expose the structure of the DTV via metadata exported as symbols from the .so itself, designed exactly for this kind of thing. So this patch simply reads that metadata in, and re-implements libthread_db's algorithm itself. We thereby get cross-platform TLS lookup without either requiring third-party libraries, while still being independent of the version of libpthread being used. Test case included. llvm-svn: 192922
This commit is contained in:
@@ -38,10 +38,12 @@
|
||||
#include "lldb/Target/RegisterContext.h"
|
||||
#include "lldb/Target/StackFrame.h"
|
||||
#include "lldb/Target/StackID.h"
|
||||
#include "lldb/Target/Thread.h"
|
||||
|
||||
using namespace lldb;
|
||||
using namespace lldb_private;
|
||||
|
||||
// TODO- why is this also defined (in a better way) in DWARFDefines.cpp?
|
||||
const char *
|
||||
DW_OP_value_to_name (uint32_t val)
|
||||
{
|
||||
@@ -220,6 +222,7 @@ DW_OP_value_to_name (uint32_t val)
|
||||
// DWARFExpression constructor
|
||||
//----------------------------------------------------------------------
|
||||
DWARFExpression::DWARFExpression() :
|
||||
m_module_wp(),
|
||||
m_data(),
|
||||
m_reg_kind (eRegisterKindDWARF),
|
||||
m_loclist_slide (LLDB_INVALID_ADDRESS)
|
||||
@@ -227,6 +230,7 @@ DWARFExpression::DWARFExpression() :
|
||||
}
|
||||
|
||||
DWARFExpression::DWARFExpression(const DWARFExpression& rhs) :
|
||||
m_module_wp(rhs.m_module_wp),
|
||||
m_data(rhs.m_data),
|
||||
m_reg_kind (rhs.m_reg_kind),
|
||||
m_loclist_slide(rhs.m_loclist_slide)
|
||||
@@ -234,11 +238,14 @@ DWARFExpression::DWARFExpression(const DWARFExpression& rhs) :
|
||||
}
|
||||
|
||||
|
||||
DWARFExpression::DWARFExpression(const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t data_length) :
|
||||
DWARFExpression::DWARFExpression(lldb::ModuleSP module_sp, const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t data_length) :
|
||||
m_module_wp(),
|
||||
m_data(data, data_offset, data_length),
|
||||
m_reg_kind (eRegisterKindDWARF),
|
||||
m_loclist_slide(LLDB_INVALID_ADDRESS)
|
||||
{
|
||||
if (module_sp)
|
||||
m_module_wp = module_sp;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
@@ -262,11 +269,12 @@ DWARFExpression::SetOpcodeData (const DataExtractor& data)
|
||||
}
|
||||
|
||||
void
|
||||
DWARFExpression::CopyOpcodeData (const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t data_length)
|
||||
DWARFExpression::CopyOpcodeData (lldb::ModuleSP module_sp, const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t data_length)
|
||||
{
|
||||
const uint8_t *bytes = data.PeekData(data_offset, data_length);
|
||||
if (bytes)
|
||||
{
|
||||
m_module_wp = module_sp;
|
||||
m_data.SetData(DataBufferSP(new DataBufferHeap(bytes, data_length)));
|
||||
m_data.SetByteOrder(data.GetByteOrder());
|
||||
m_data.SetAddressByteSize(data.GetAddressByteSize());
|
||||
@@ -274,8 +282,9 @@ DWARFExpression::CopyOpcodeData (const DataExtractor& data, lldb::offset_t data_
|
||||
}
|
||||
|
||||
void
|
||||
DWARFExpression::SetOpcodeData (const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t data_length)
|
||||
DWARFExpression::SetOpcodeData (lldb::ModuleSP module_sp, const DataExtractor& data, lldb::offset_t data_offset, lldb::offset_t data_length)
|
||||
{
|
||||
m_module_wp = module_sp;
|
||||
m_data.SetData(data, data_offset, data_length);
|
||||
}
|
||||
|
||||
@@ -588,6 +597,9 @@ DWARFExpression::DumpLocation (Stream *s, lldb::offset_t offset, lldb::offset_t
|
||||
// case DW_OP_APPLE_array_ref:
|
||||
// s->PutCString("DW_OP_APPLE_array_ref");
|
||||
// break;
|
||||
case DW_OP_GNU_push_tls_address:
|
||||
s->PutCString("DW_OP_GNU_push_tls_address"); // 0xe0
|
||||
break;
|
||||
case DW_OP_APPLE_uninit:
|
||||
s->PutCString("DW_OP_APPLE_uninit"); // 0xF0
|
||||
break;
|
||||
@@ -919,7 +931,8 @@ GetOpcodeDataSize (const DataExtractor &data, const lldb::offset_t data_offset,
|
||||
case DW_OP_form_tls_address: // 0x9b DWARF3
|
||||
case DW_OP_call_frame_cfa: // 0x9c DWARF3
|
||||
case DW_OP_stack_value: // 0x9f DWARF4
|
||||
return 0;
|
||||
case DW_OP_GNU_push_tls_address: // 0xe0 GNU extension
|
||||
return 0;
|
||||
|
||||
// Opcodes with a single 1 byte arguments
|
||||
case DW_OP_const1u: // 0x08 1 1-byte constant
|
||||
@@ -1221,6 +1234,8 @@ DWARFExpression::Evaluate
|
||||
Error *error_ptr
|
||||
) const
|
||||
{
|
||||
ModuleSP module_sp = m_module_wp.lock();
|
||||
|
||||
if (IsLocationList())
|
||||
{
|
||||
lldb::offset_t offset = 0;
|
||||
@@ -1268,7 +1283,7 @@ DWARFExpression::Evaluate
|
||||
|
||||
if (length > 0 && lo_pc <= pc && pc < hi_pc)
|
||||
{
|
||||
return DWARFExpression::Evaluate (exe_ctx, expr_locals, decl_map, reg_ctx, m_data, offset, length, m_reg_kind, initial_value_ptr, result, error_ptr);
|
||||
return DWARFExpression::Evaluate (exe_ctx, expr_locals, decl_map, reg_ctx, module_sp, m_data, offset, length, m_reg_kind, initial_value_ptr, result, error_ptr);
|
||||
}
|
||||
offset += length;
|
||||
}
|
||||
@@ -1280,7 +1295,7 @@ DWARFExpression::Evaluate
|
||||
}
|
||||
|
||||
// Not a location list, just a single expression.
|
||||
return DWARFExpression::Evaluate (exe_ctx, expr_locals, decl_map, reg_ctx, m_data, 0, m_data.GetByteSize(), m_reg_kind, initial_value_ptr, result, error_ptr);
|
||||
return DWARFExpression::Evaluate (exe_ctx, expr_locals, decl_map, reg_ctx, module_sp, m_data, 0, m_data.GetByteSize(), m_reg_kind, initial_value_ptr, result, error_ptr);
|
||||
}
|
||||
|
||||
|
||||
@@ -1292,6 +1307,7 @@ DWARFExpression::Evaluate
|
||||
ClangExpressionVariableList *expr_locals,
|
||||
ClangExpressionDeclMap *decl_map,
|
||||
RegisterContext *reg_ctx,
|
||||
lldb::ModuleSP opcode_ctx,
|
||||
const DataExtractor& opcodes,
|
||||
const lldb::offset_t opcodes_offset,
|
||||
const lldb::offset_t opcodes_length,
|
||||
@@ -2659,6 +2675,54 @@ DWARFExpression::Evaluate
|
||||
return false;
|
||||
}
|
||||
break;
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
// OPCODE: DW_OP_GNU_push_tls_address
|
||||
// OPERANDS: none
|
||||
// DESCRIPTION: Pops a TLS offset from the stack, converts it to
|
||||
// an absolute value, and pushes it back on.
|
||||
//----------------------------------------------------------------------
|
||||
case DW_OP_GNU_push_tls_address:
|
||||
{
|
||||
if (stack.size() < 1)
|
||||
{
|
||||
if (error_ptr)
|
||||
error_ptr->SetErrorString("DW_OP_GNU_push_tls_address needs an argument.");
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!exe_ctx || !opcode_ctx)
|
||||
{
|
||||
if (error_ptr)
|
||||
error_ptr->SetErrorString("No context to evaluate TLS within.");
|
||||
return false;
|
||||
}
|
||||
|
||||
Thread *thread = exe_ctx->GetThreadPtr();
|
||||
if (!thread)
|
||||
{
|
||||
if (error_ptr)
|
||||
error_ptr->SetErrorString("No thread to evaluate TLS within.");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Lookup the TLS block address for this thread and module.
|
||||
addr_t tls_addr = thread->GetThreadLocalData (opcode_ctx);
|
||||
|
||||
if (tls_addr == LLDB_INVALID_ADDRESS)
|
||||
{
|
||||
if (error_ptr)
|
||||
error_ptr->SetErrorString ("No TLS data currently exists for this thread.");
|
||||
return false;
|
||||
}
|
||||
|
||||
// Convert the TLS offset into the absolute address.
|
||||
Scalar tmp = stack.back().ResolveValue(exe_ctx);
|
||||
stack.back() = tmp + tls_addr;
|
||||
stack.back().SetValueType (Value::eValueTypeLoadAddress);
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
if (log)
|
||||
log->Printf("Unhandled opcode %s in DWARFExpression.", DW_OP_value_to_name(op));
|
||||
|
||||
Reference in New Issue
Block a user