diff options
author | Adrian McCarthy <amccarth@google.com> | 2016-01-26 00:58:09 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2016-01-26 00:58:09 +0000 |
commit | c35b91cee23079e32f421dbea5e2697ae492ef6b (patch) | |
tree | 77d3717f5d965f8742cb4ac16ae70eedf84b0d61 /lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h | |
parent | 86ff2689a5e6050e24a9bc11aea1364169d7299f (diff) | |
download | bcm5719-llvm-c35b91cee23079e32f421dbea5e2697ae492ef6b.tar.gz bcm5719-llvm-c35b91cee23079e32f421dbea5e2697ae492ef6b.zip |
Set symbol types for function symbols loaded from PE/COFF
This fixes the regression of several tests on Windows after rL258621.
The root problem is that ObjectFilePECOFF was not setting type information for the symbols, and the new CL rejects symbols without type information, breaking functionality like thread step-over.
The fix sets the type information for functions (and creates a TODO for other types).
Along the way, I fixed some typos and formatting that made the code I was debugging harder to understand.
In the long run, we should consider replacing most of ObjectFilePECOFF with the COFF parsing code from LLVM.
Differential Revision: http://reviews.llvm.org/D16563
llvm-svn: 258758
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h b/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h index fd33cd3d32f..44e5ee1b044 100644 --- a/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h +++ b/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h @@ -101,7 +101,10 @@ public: static bool MagicBytesMatch (lldb::DataBufferSP& data_sp); - + + static lldb::SymbolType + MapSymbolType(uint16_t coff_symbol_type); + bool ParseHeader() override; @@ -116,7 +119,7 @@ public: uint32_t GetAddressByteSize() const override; - + // virtual lldb_private::AddressClass // GetAddressClass (lldb::addr_t file_addr); |