aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
AgeCommit message (Expand)AuthorFilesLines
2011-11-13<rdar://problem/10103980>Greg Clayton1-40/+0
2011-11-03Modified all Process::Launch() calls to use a ProcessLaunchInfo structureGreg Clayton1-20/+39
2011-10-28Fix up how we shut down the communication with debugserver so we don't rely onJim Ingham1-12/+4
2011-10-26Cleaned up many error codes. For any who is filling in error strings intoGreg Clayton1-3/+3
2011-10-21If a process plug-in was specified by name, always let the plug-in get used.Greg Clayton1-0/+3
2011-10-19Moved lldb::user_id_t values to be 64 bit. This was going to be needed forGreg Clayton1-17/+17
2011-10-15Quiet the default "log enable lldb step" output down a little bit.Jim Ingham1-3/+3
2011-10-14SBValue::Watch() and SBValue::WatchPointee() are now the official API for cre...Johnny Chen1-6/+6
2011-10-06ProcessGDBRemote::BuildDynamicRegisterInfo() - even if we don't have a Target...Jason Molenda1-1/+11
2011-10-01Cleaned up the the code that figures out the inlined stack frames given a Greg Clayton1-0/+5
2011-09-23Added the ability to restrict breakpoints by function name, function regexp, ...Jim Ingham1-1/+1
2011-09-20Update declarations for all functions/methods that accept printf-styleJason Molenda1-1/+1
2011-09-17Foe x86_64/i386, piggyback the hardware index of the fired watchpoint in the ...Johnny Chen1-1/+2
2011-09-09Fix compiler warnings for GetGDBStoppointType().Johnny Chen1-2/+2
2011-09-06Fill out implementation of Enable/DisableWatchpoint() for ProcessGDBRemote cl...Johnny Chen1-4/+46
2011-08-22Added a new plug-in type: lldb_private::OperatingSystem. The operating system Greg Clayton1-29/+18
2011-08-11Added the ability to remove orphaned module shared pointers from a ModuleList.Greg Clayton1-3/+3
2011-08-10Include the qLaunchSuccess and qC packets in the Greg Clayton1-1/+2
2011-08-10While tracking down memory consumption issue a few things were needed: the Greg Clayton1-1/+1
2011-08-09Fix a crash while running the test suite. Need to check the (LogSP)log share...Johnny Chen1-3/+6
2011-08-09Added some logging and did some member renaming.Greg Clayton1-0/+9
2011-07-17Added a boolean to the pure virtual lldb_private::Process::CanDebug(...)Greg Clayton1-1/+1
2011-06-24Removed an member variable "m_local_debugserver" that is no longer needed.Greg Clayton1-2/+2
2011-06-24Fixed SBTarget attach calls to properly deal with being connected to a remotelyGreg Clayton1-39/+35
2011-06-04Created a std::string in the base StopInfo class for the description andGreg Clayton1-1/+104
2011-06-03Move inferior mmap/munmap call code into their own functions in utility libPeter Collingbourne1-154/+21
2011-06-02Make sure we don't lose our stop reply packet in the case where the otherGreg Clayton1-21/+6
2011-05-22Added functions to lldb_private::Address to set an address from a load addressGreg Clayton1-0/+17
2011-05-20Centralize the code that gathers the thread ID list from the remote GDBGreg Clayton1-26/+15
2011-05-17Fixed the "mmap" to work on MacOSX/darwin by supplying the correct arguemnts.Greg Clayton1-1/+1
2011-05-17Added an allocated memory cache to avoid having to allocate memory over andGreg Clayton1-1/+1
2011-05-16Fixed an issue where large memory writes might not get chunked up into smallerGreg Clayton1-0/+8
2011-05-15Dump JIT memory requirements when "log enable lldb expr" logging is enabled.Greg Clayton1-1/+7
2011-05-15Added the ability to get the return value from a ThreadPlanCallFunctionGreg Clayton1-25/+126
2011-05-14Expand the ABI prepare trivial function call to allow 6 simple args.Greg Clayton1-2/+90
2011-05-08Fixed not being able to launch the i386 slice of a universal binary by addingGreg Clayton1-0/+1
2011-04-30Added the ability to set the Platform path for a module through the SBModuleGreg Clayton1-8/+1
2011-04-12Moved the execution context that was in the Debugger intoGreg Clayton1-221/+68
2011-04-01Added the ability to get a broadcaster event name for a given broadcasterGreg Clayton1-0/+2
2011-03-30Many improvements to the Platform base class and subclasses. The base PlatformGreg Clayton1-20/+24
2011-03-30Unfortunately, sranddev() is not available on all platforms so seed using theStephen Wilson1-1/+4
2011-03-29Can't just call "rand" to get a random port, 'cause then you'll get the same ...Jim Ingham1-0/+7
2011-03-25Simple fixes for the gdb remote process plugin on Linux.Stephen Wilson1-1/+2
2011-03-23Added new platform commands:Greg Clayton1-22/+40
2011-03-22Split the GDBRemoteCommunication class into three classes:Greg Clayton1-19/+21
2011-03-19Added more platform support. There are now some new commands:Greg Clayton1-48/+1
2011-03-10Centralize the GDB remote timeout value into the GDBRemoteCommunication as aGreg Clayton1-23/+23
2011-03-08LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provideGreg Clayton1-37/+17
2011-03-02Added a missing API call in SBTarget that enables one to getGreg Clayton1-10/+15
2011-02-24Fixed CommandReturnObject::SetImmediateErrorFile() to set the correct stream.Greg Clayton1-338/+231