llvm-project/lldb/source/Commands
Pavel Labath 23f70e8359 SymbolVendor: Introduce Module::GetSymbolFile
Summary:
This is the next step in avoiding funneling all SymbolFile calls through
the SymbolVendor. Right now, it is just a convenience function, but it
allows us to update all calls to SymbolVendor functions to access the
SymbolFile directly. Once all call sites have been updated, we can
remove the GetSymbolVendor member function.

This patch just updates the calls to GetSymbolVendor, which were calling
it just so they could fetch the underlying symbol file. Other calls will
be done in follow-ups.

Reviewers: JDevlieghere, clayborg, jingham

Subscribers: lldb-commits

Differential Revision: https://reviews.llvm.org/D65435

llvm-svn: 367664
2019-08-02 08:16:35 +00:00
..
CMakeLists.txt [lldb] Rename Options.inc to CommandOptions.inc [NFC] 2019-07-16 09:27:02 +00:00
CommandCompletions.cpp Fix completion for functions in anonymous namespaces 2019-07-31 17:58:00 +00:00
CommandObjectApropos.cpp [CommandObject] Use GetDebugger() helper method (NFC) 2019-04-27 06:19:42 +00:00
CommandObjectApropos.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectBreakpoint.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectBreakpoint.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectBreakpointCommand.cpp Format OptionEnumValueElement (NFC) 2019-08-02 00:18:44 +00:00
CommandObjectBreakpointCommand.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectBugreport.cpp Propagate command interpreter errors from lldlbinit 2019-05-08 01:23:47 +00:00
CommandObjectBugreport.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectCommands.cpp Format OptionEnumValueElement (NFC) 2019-08-02 00:18:44 +00:00
CommandObjectCommands.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectDisassemble.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectDisassemble.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectExpression.cpp Format OptionEnumValueElement (NFC) 2019-08-02 00:18:44 +00:00
CommandObjectExpression.h [lldb] NFC modernize codebase with modernize-use-nullptr 2019-05-23 11:14:47 +00:00
CommandObjectFrame.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectFrame.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectGUI.cpp [CommandObject] Use GetDebugger() helper method (NFC) 2019-04-27 06:19:42 +00:00
CommandObjectGUI.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectHelp.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectHelp.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectLanguage.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectLanguage.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectLog.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectLog.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectMemory.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectMemory.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectMultiword.cpp [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectPlatform.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectPlatform.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectPlugin.cpp [CommandObject] Use GetDebugger() helper method (NFC) 2019-04-27 06:19:42 +00:00
CommandObjectPlugin.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectProcess.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectProcess.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectQuit.cpp [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectQuit.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectRegister.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectRegister.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectReproducer.cpp [Reproducers] Fix incorrect help message 2019-07-30 18:06:38 +00:00
CommandObjectReproducer.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectSettings.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectSettings.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectSource.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectSource.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectStats.cpp Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectStats.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectTarget.cpp SymbolVendor: Introduce Module::GetSymbolFile 2019-08-02 08:16:35 +00:00
CommandObjectTarget.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectThread.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectThread.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectType.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectType.h Update the file headers across all of the LLVM projects in the monorepo 2019-01-19 08:50:56 +00:00
CommandObjectVersion.cpp [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectVersion.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectWatchpoint.cpp [lldb] Also include the array definition in CommandOptions.inc 2019-07-28 06:24:07 +00:00
CommandObjectWatchpoint.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
CommandObjectWatchpointCommand.cpp Format OptionEnumValueElement (NFC) 2019-08-02 00:18:44 +00:00
CommandObjectWatchpointCommand.h [NFC] Remove ASCII lines from comments 2019-04-10 20:48:55 +00:00
Options.td [lldb] Don't dynamically allocate the posix option validator. 2019-07-26 11:46:21 +00:00
OptionsBase.td [lldb] Don't dynamically allocate the posix option validator. 2019-07-26 11:46:21 +00:00