hanchenye-llvm-project/lldb/source/Symbol
Greg Clayton c96605461c <rdar://problem/10560053>
Fixed "target modules list" (aliased to "image list") to output more information
by default. Modified the "target modules list" to have a few new options:

"--header" or "-h" => show the image header address
"--offset" or "-o" => show the image header address offset from the address in the file (the slide applied to the shared library)

Removed the "--symfile-basename" or "-S" option, and repurposed it to 
"--symfile-unique" "-S" which will show the symbol file if it differs from
the executable file.

ObjectFile's can now be loaded from memory for cases where we don't have the
files cached locally in an SDK or net mounted root. ObjectFileMachO can now
read mach files from memory.

Moved the section data reading code into the ObjectFile so that the object
file can get the section data from Process memory if the file is only in
memory.

lldb_private::Module can now load its object file in a target with a rigid 
slide (very common operation for most dynamic linkers) by using:

bool 
Module::SetLoadAddress (Target &target, lldb::addr_t offset, bool &changed)

lldb::SBModule() now has a new constructor in the public interface:

SBModule::SBModule (lldb::SBProcess &process, lldb::addr_t header_addr);

This will find an appropriate ObjectFile plug-in to load an image from memory
where the object file header is at "header_addr".

llvm-svn: 149804
2012-02-05 02:38:54 +00:00
..
Block.cpp Moved lldb::user_id_t values to be 64 bit. This was going to be needed for 2011-10-19 18:09:39 +00:00
ClangASTContext.cpp I have brought LLDB up-to-date with top of tree 2012-02-04 08:49:35 +00:00
ClangASTImporter.cpp I have brought LLDB up-to-date with top of tree 2012-02-04 08:49:35 +00:00
ClangASTType.cpp I have brought LLDB up-to-date with top of tree 2012-02-04 08:49:35 +00:00
ClangExternalASTSourceCallbacks.cpp I have brought LLDB up-to-date with top of tree 2012-02-04 08:49:35 +00:00
ClangExternalASTSourceCommon.cpp Added the ability for clients to grab a set of symbol table indexes and then 2011-12-03 20:02:42 +00:00
ClangNamespaceDecl.cpp Modified the lldb_private::Type clang type resolving code to handle three 2010-11-13 03:52:47 +00:00
CompileUnit.cpp Moved lldb::user_id_t values to be 64 bit. This was going to be needed for 2011-10-19 18:09:39 +00:00
DWARFCallFrameInfo.cpp <rdar://problem/10560053> 2012-02-05 02:38:54 +00:00
Declaration.cpp Allow the built in ValueObject summary providers for C strings 2011-07-10 19:21:23 +00:00
FuncUnwinders.cpp Have the FuncUnwinder object request & provide an architecture-defined 2011-09-15 00:44:34 +00:00
Function.cpp Added code in the Host layer that can report system log messages 2012-01-05 03:57:59 +00:00
LineEntry.cpp Moved the section load list up into the target so we can use the target 2010-09-14 23:36:40 +00:00
LineTable.cpp Added a new option to the "source list" command that allows us to see where 2011-04-19 04:19:37 +00:00
Makefile Merged Eli Friedman's linux build changes where he added Makefile files that 2010-07-09 20:39:50 +00:00
ObjectFile.cpp <rdar://problem/10560053> 2012-02-05 02:38:54 +00:00
Symbol.cpp Added many more python convenience accessors: 2012-02-01 08:09:32 +00:00
SymbolContext.cpp Added code in the Host layer that can report system log messages 2012-01-05 03:57:59 +00:00
SymbolFile.cpp Added code in the Host layer that can report system log messages 2012-01-05 03:57:59 +00:00
SymbolVendor.cpp Switching back to using std::tr1::shared_ptr. We originally switched away 2012-01-29 20:56:30 +00:00
Symtab.cpp Fixed an issue with the Instruction subclasses where the strings might 2012-01-19 03:24:53 +00:00
Type.cpp Switching back to using std::tr1::shared_ptr. We originally switched away 2012-01-29 20:56:30 +00:00
TypeHierarchyNavigator.cpp System-wide summaries: 2011-07-15 23:30:15 +00:00
TypeList.cpp Changed lldb_private::Type over to use the intrusive ref counted pointers 2011-10-18 23:36:41 +00:00
UnwindPlan.cpp Update declarations for all functions/methods that accept printf-style 2011-09-20 21:44:10 +00:00
UnwindTable.cpp Renamed UnwindAssemblyProfiler to UnwindAssembly along with its source files. 2011-04-25 21:14:26 +00:00
Variable.cpp Switching back to using std::tr1::shared_ptr. We originally switched away 2012-01-29 20:56:30 +00:00
VariableList.cpp Added the ability to see global variables with a variable expression path so 2011-07-08 21:46:14 +00:00
VerifyDecl.cpp Added VerifyDecl, a function that, when LLDB is 2011-10-26 01:06:27 +00:00