hanchenye-llvm-project/lldb/source/Target
Enrico Granata 86cc982974 Massive enumeration name changes: a number of enums in ValueObject were not following the naming pattern
Changes to synthetic children:
 - the update(self): function can now (optionally) return a value - if it returns boolean value True, ValueObjectSyntheticFilter will not clear its caches across stop-points
   this should allow better performance for Python-based synthetic children when one can be sure that the child ValueObjects have not changed
 - making a difference between a synthetic VO and a VO with a synthetic value: now a ValueObjectSyntheticFilter will not return itself as its own synthetic value, but will (correctly)
   claim to itself be synthetic
 - cleared up the internal synthetic children architecture to make a more consistent use of pointers and references instead of shared pointers when possible
 - major cleanup of unnecessary #include, data and functions in ValueObjectSyntheticFilter itself
 - removed the SyntheticValueType enum and replaced it with a plain boolean (to which it was equivalent in the first place)
Some clean ups to the summary generation code
Centralized the code that clears out user-visible strings and data in ValueObject
More efficient summaries for libc++ containers

llvm-svn: 153061
2012-03-19 22:58:49 +00:00
..
ABI.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
CPPLanguageRuntime.cpp Adding support for an "equivalents map". This can be useful when compilers emit multiple, different names for the same actual type. In such scenarios, one of the type names can actually be found during a type lookup, while the others are just aliases. This can cause issues when trying to work with these aliased names and being unable to resolve them to an actual type (e.g. getting an SBType for the aliased name). 2012-02-03 01:41:25 +00:00
ExecutionContext.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
LanguageRuntime.cpp Add a command and an SB API to create exception breakpoints. Make the break output prettier for Exception breakpoints. 2012-03-06 00:37:27 +00:00
Makefile
Memory.cpp For stepping performance I added the ability to outlaw all memory accesseses 2012-02-22 04:37:26 +00:00
ObjCLanguageRuntime.cpp Updated the revision of LLVM/Clang used by LLDB. 2012-03-08 02:39:03 +00:00
OperatingSystem.cpp
PathMappingList.cpp <rdar://problem/11072382> 2012-03-19 22:22:41 +00:00
Platform.cpp Made a ModuleSpec class in Module.h which can specify a module using one or 2012-02-26 05:51:37 +00:00
Process.cpp Fix the process of getting the ObjC runtime - if we ask for it too early (in the process of handling the 2012-03-10 00:22:19 +00:00
RegisterContext.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
SectionLoadList.cpp <rdar://problem/10103468> 2012-02-24 01:59:29 +00:00
StackFrame.cpp Massive enumeration name changes: a number of enums in ValueObject were not following the naming pattern 2012-03-19 22:58:49 +00:00
StackFrameList.cpp If the unwinder fails to make us a frame 0, make one by hand from the SP & PC. 2012-03-01 02:53:40 +00:00
StackID.cpp Convert the thread plans over from using the stack count to do their logic to using StackID's. This 2012-03-01 00:50:50 +00:00
StopInfo.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
Target.cpp When comparing a Thread against a ThreadSpec, don't fetch the Thread's Name or QueueName if the ThreadSpec doesn't specify them. 2012-03-07 22:03:04 +00:00
TargetList.cpp Add a general mechanism to wait on the debugger for Broadcasters of a given class/event bit set. 2012-02-16 06:50:00 +00:00
Thread.cpp When comparing a Thread against a ThreadSpec, don't fetch the Thread's Name or QueueName if the ThreadSpec doesn't specify them. 2012-03-07 22:03:04 +00:00
ThreadList.cpp First pass at mach-o core file support is in. It currently works for x86_64 2012-02-09 06:16:32 +00:00
ThreadPlan.cpp First stage of implementing step by "run to next branch". Doesn't work yet, is turned off. 2012-03-09 04:10:47 +00:00
ThreadPlanBase.cpp
ThreadPlanCallFunction.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
ThreadPlanCallUserExpression.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
ThreadPlanRunToAddress.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
ThreadPlanShouldStopHere.cpp
ThreadPlanStepInRange.cpp First stage of implementing step by "run to next branch". Doesn't work yet, is turned off. 2012-03-09 04:10:47 +00:00
ThreadPlanStepInstruction.cpp Purge a couple more uses of stack count for stepping. 2012-03-01 20:01:22 +00:00
ThreadPlanStepOut.cpp Hardened the step-out plan in case it receives 2012-03-13 16:34:56 +00:00
ThreadPlanStepOverBreakpoint.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
ThreadPlanStepOverRange.cpp First stage of implementing step by "run to next branch". Doesn't work yet, is turned off. 2012-03-09 04:10:47 +00:00
ThreadPlanStepRange.cpp First stage of implementing step by "run to next branch". Doesn't work yet, is turned off. 2012-03-09 04:10:47 +00:00
ThreadPlanStepThrough.cpp Purge a couple more uses of stack count for stepping. 2012-03-01 20:01:22 +00:00
ThreadPlanStepUntil.cpp Convert the thread plans over from using the stack count to do their logic to using StackID's. This 2012-03-01 00:50:50 +00:00
ThreadPlanTestCondition.cpp Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptr 2012-02-21 00:09:25 +00:00
ThreadPlanTracer.cpp <rdar://problem/10103468> 2012-02-24 01:59:29 +00:00
ThreadSpec.cpp When comparing a Thread against a ThreadSpec, don't fetch the Thread's Name or QueueName if the ThreadSpec doesn't specify them. 2012-03-07 22:03:04 +00:00
UnixSignals.cpp
UnwindAssembly.cpp