- Feb 04, 2011
-
-
Greg Clayton authored
(lldb) process connect <remote-url> Currently when you specify a file with the file command it helps us to find a process plug-in that is suitable for debugging. If you specify a file you can rely upon this to find the correct debugger plug-in: % lldb a.out Current executable set to 'a.out' (x86_64). (lldb) process connect connect://localhost:2345 ... If you don't specify a file, you will need to specify the plug-in name that you wish to use: % lldb (lldb) process connect --plugin process.gdb-remote connect://localhost:2345 Other connection URL examples: (lldb) process connect connect://localhost:2345 (lldb) process connect tcp://127.0.0.1 (lldb) process connect file:///dev/ttyS1 We are currently treating the "connect://host:port" as a way to do raw socket connections. If there is a URL for this already, please let me know and we will adopt it. So now you can connect to a remote debug server with the ProcessGDBRemote plug-in. After connection, it will ask for the pid info using the "qC" packet and if it responds with a valid process ID, it will be equivalent to attaching. If it response with an error or invalid process ID, the LLDB process will be in a new state: eStateConnected. This allows us to then download a program or specify the program to run (using the 'A' packet), or specify a process to attach to (using the "vAttach" packets), or query info about the processes that might be available. llvm-svn: 124846
-
Johnny Chen authored
apropos 'environment variable' searches all settings description and returns a topic related to: target.process.env-vars llvm-svn: 124841
-
Johnny Chen authored
to represent the supervisor call instruction (previosuly software interrupt). llvm-svn: 124840
-
Caroline Tice authored
llvm-svn: 124836
-
Johnny Chen authored
llvm-svn: 124828
-
- Feb 03, 2011
-
-
Greg Clayton authored
condition that could occur when launching or attaching. What could happen is you would launch/attach to a process, then you would need to tell a listener to watch for process state changed events. In this case, if you waited too long to listen for events, you could miss the initial stop event, requiring clients to listen, then check the process state. llvm-svn: 124818
-
Caroline Tice authored
llvm-svn: 124811
-
Caroline Tice authored
llvm-svn: 124810
-
Johnny Chen authored
llvm-svn: 124806
-
Greg Clayton authored
llvm-svn: 124804
-
Greg Clayton authored
being read directly into a string. The use of memory mapping here was useless. llvm-svn: 124803
-
Greg Clayton authored
(regardless if the interrupt was sent), and false of not. llvm-svn: 124766
-
Johnny Chen authored
llvm-svn: 124764
-
Johnny Chen authored
llvm-svn: 124763
-
Johnny Chen authored
substitutions in order to achieve file mappings. Modify CommandObjectTarget.cpp to properly set the status of the return object to make scripting like this: self.runCmd("target image-search-paths add %s %s" % (os.getcwd(), new_dir)) works. llvm-svn: 124762
-
- Feb 02, 2011
-
-
Caroline Tice authored
more test cases Fixed minor bug in the breakpoint id range translation code. llvm-svn: 124729
-
Greg Clayton authored
LLDB plugin directory and a user LLDB plugin directory. We currently still need to work out at what layer the plug-ins will be, but at least we are prepared for plug-ins. Plug-ins will attempt to be loaded from the "/Developer/Library/PrivateFrameworks/LLDB.framework/Resources/Plugins" folder, and from the "~/Library/Application Support/LLDB/Plugins" folder on MacOSX. Each plugin will be scanned for: extern "C" bool LLDBPluginInitialize(void); extern "C" void LLDBPluginTerminate(void); If at least LLDBPluginInitialize is found, the plug-in will be loaded. The LLDBPluginInitialize function returns a bool that indicates if the plug-in should stay loaded or not (plug-ins might check the current OS, current hardware, or anything else and determine they don't want to run on the current host). The plug-in is uniqued by path and added to a static loaded plug-in map. The plug-in scanning happens during "lldb_private::Initialize()" which calls to the PluginManager::Initialize() function. Likewise with termination lldb_private::Terminate() calls PluginManager::Terminate(). The paths for the plug-in directories is fetched through new Host calls: bool Host::GetLLDBPath (ePathTypeLLDBSystemPlugins, dir_spec); bool Host::GetLLDBPath (ePathTypeLLDBUserPlugins, dir_spec); This way linux and other systems can define their own appropriate locations for plug-ins to be loaded. To allow dynamic shared library loading, the Host layer has also been modified to include shared library open, close and get symbol: static void * Host::DynamicLibraryOpen (const FileSpec &file_spec, Error &error); static Error Host::DynamicLibraryClose (void *dynamic_library_handle); static void * Host::DynamicLibraryGetSymbol (void *dynamic_library_handle, const char *symbol_name, Error &error); lldb_private::FileSpec also has been modified to support directory enumeration in an attempt to abstract the directory enumeration into one spot in the code. The directory enumertion function is static and takes a callback: typedef enum EnumerateDirectoryResult { eEnumerateDirectoryResultNext, // Enumerate next entry in the current directory eEnumerateDirectoryResultEnter, // Recurse into the current entry if it is a directory or symlink, or next if not eEnumerateDirectoryResultExit, // Exit from the current directory at the current level. eEnumerateDirectoryResultQuit // Stop directory enumerations at any level }; typedef FileSpec::EnumerateDirectoryResult (*EnumerateDirectoryCallbackType) (void *baton, FileSpec::FileType file_type, const FileSpec &spec); static FileSpec::EnumerateDirectoryResult FileSpec::EnumerateDirectory (const char *dir_path, bool find_directories, bool find_files, bool find_other, EnumerateDirectoryCallbackType callback, void *callback_baton); This allow clients to specify the directory to search, and specifies if only files, directories or other (pipe, symlink, fifo, etc) files will cause the callback to be called. The callback also gets to return with the action that should be performed after this directory entry. eEnumerateDirectoryResultNext specifies to continue enumerating through a directory with the next entry. eEnumerateDirectoryResultEnter specifies to recurse down into a directory entry, or if the file is not a directory or symlink/alias to a directory, then just iterate to the next entry. eEnumerateDirectoryResultExit specifies to exit the current directory and skip any entries that might be remaining, yet continue enumerating to the next entry in the parent directory. And finally eEnumerateDirectoryResultQuit means to abort all directory enumerations at all levels. Modified the Declaration class to not include column information currently since we don't have any compilers that currently support column based declaration information. Columns support can be re-enabled with the additions of a #define. Added the ability to find an EmulateInstruction plug-in given a target triple and optional plug-in name in the plug-in manager. Fixed a few cases where opendir/readdir was being used, but yet not closedir was being used. Soon these will be deprecated in favor of the new directory enumeration call that was added to the FileSpec class. llvm-svn: 124716
-
Caroline Tice authored
(<rdar://problem/8946573>) llvm-svn: 124711
-
Johnny Chen authored
which represent "bl <label>", "blx <label>", and "blx <Rm>" instructions. llvm-svn: 124710
-
Johnny Chen authored
it passes when using clang as the compiler to build the inferior. llvm-svn: 124707
-
Greg Clayton authored
llvm-svn: 124706
-
Sean Callanan authored
diagnostics of Clang AST classes for the purpose of debugging the types LLDB produces for DWARF objects. The ASTDumper is currently only used in log output if you enable verbose mode in the expression log: log enable -v lldb expr Its output then appears in the log for external variables used by the expr command. llvm-svn: 124703
-
- Feb 01, 2011
-
-
Johnny Chen authored
llvm-svn: 124671
-
Johnny Chen authored
an operation to load multiple extension registers from the stack. llvm-svn: 124670
-
Greg Clayton authored
llvm-svn: 124658
-
Greg Clayton authored
Added a cleanup helper object to make sure the directory that was opened with "DIR *opendir(const char *)" is closed if it is valid with a call to "int closedir (DIR *)". llvm-svn: 124649
-
Greg Clayton authored
Added a cleanup helper object to make sure the directory that was opened with "DIR *opendir(const char *)" is closed if it is valid with a call to "int closedir (DIR *)". llvm-svn: 124648
-
Greg Clayton authored
llvm-svn: 124644
-
Greg Clayton authored
llvm-svn: 124643
-
Johnny Chen authored
C++ virtual function and virtual inheritance. llvm-svn: 124642
-
Greg Clayton authored
llvm-svn: 124638
-
Greg Clayton authored
callbacks use member functions. llvm-svn: 124636
-
Greg Clayton authored
source files around into the places they need to go. llvm-svn: 124631
-
Greg Clayton authored
that you run into with inheritance. llvm-svn: 124619
-
Johnny Chen authored
g_arm_opcodes and g_thumb_opcodes tables. Plus a minor comment fix for EmulateInstruction.h. llvm-svn: 124617
-
- Jan 31, 2011
-
-
Caroline Tice authored
llvm-svn: 124600
-
Caroline Tice authored
llvm-svn: 124598
-
Johnny Chen authored
to adjust the stack pointer by adding an imm7-scaled value to the SP. llvm-svn: 124596
-
Johnny Chen authored
llvm-svn: 124595
-
Caroline Tice authored
llvm-svn: 124594
-