llvm-project/lldb/source
Sean Callanan 17cf1130ed Fixed a hang which causes LLDB to enter an infinite
loop if "memory read" is run with the -t option and
the type name contains a keyword like "struct" that
isn't followed by a space.  Now if a keyword isn't
followed by a space we continue searching after it,
instead of at the beginning of the type name.

Also optimized the code to not call strlen() on
a fixed set of statically-declared constant strings.

llvm-svn: 160016
2012-07-10 21:24:26 +00:00
..
API <rdar://problem/11357711> 2012-07-07 01:24:12 +00:00
Breakpoint Fix ignore counts on breakpoints so they actually work. 2012-06-26 22:27:55 +00:00
Commands Fixed a hang which causes LLDB to enter an infinite 2012-07-10 21:24:26 +00:00
Core <rdar://problem/11357711> 2012-07-07 01:24:12 +00:00
Expression Fixed a potential crash if a metadata category 2012-07-04 01:26:26 +00:00
Host Fixed errors and warnings on debug code. 2012-07-09 13:34:19 +00:00
Interpreter Turning the interpreter mutex into a static global to avoid a potential leak. Might need to be turned back into a pointer if it causes issues with the destructor chain. 2012-07-10 19:04:14 +00:00
Plugins Improve dynamic type resolution efficiency by looking for the type in the module that contains the vtable symbol first and only look for the first match. If we don't find anything, _then_ move on to the rest of the modules in the target and watch out for multiple matches. 2012-07-10 01:22:15 +00:00
Symbol Fixed a crash in logging when the name of an 2012-05-25 18:12:26 +00:00
Target <rdar://problem/11357711> 2012-07-07 01:24:12 +00:00
Utility Removed redundant isxdigit checks and added the ability to GetHexU8() so it can extract an 8 bit hex value if one is available. It will set EOF if "set_eof_on_fail" is true or if out of data. This allows a string decoder to grab a string without losing the last part of the packet with a packet like "414243,abc" (it can extract "ABC" and leave the file position set to the comma). 2012-04-07 00:42:53 +00:00
Makefile Don't include LLDBWrapPython.cpp here. Use it in Interpreter. 2012-05-29 14:03:55 +00:00
lldb-log.cpp Patch from Filipe Cabecinhas. 2012-04-26 17:07:53 +00:00
lldb.cpp Register the ProcessGDBRemote plugin ahead of the ProcessKDP plugin 2012-06-01 01:39:46 +00:00