aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Target/StackFrameList.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-09-06*** This commit represents a complete reformatting of the LLDB source codeKate Stone1-806/+716
2016-05-19second pass over removal of Mutex and ConditionSaleem Abdulrasool1-28/+27
2016-05-11Keep original source path and mapped path in LineEntryTed Woodward1-14/+15
2016-02-26Fix all of the unannotated switch cases to annotate the fall through or do th...Greg Clayton1-0/+1
2016-02-18Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Target;...Eugene Zelenko1-42/+34
2015-10-16Add a missing Mutex Locker in ResetCurrentInlinedDepthKeno Fischer1-0/+2
2015-10-15Minor indentation fix in StackFrameList.cpp.Stephane Sezer1-3/+3
2015-09-16Add an OperatingSystem plugin to support goroutinesRyan Brown1-0/+2
2015-09-07Use eAddressClassCode for address lookup for opcodes for stack framesTamas Berghammer1-2/+2
2015-06-01Fix address adjusment in stack frame inline block lookupTamas Berghammer1-1/+15
2015-02-23Add null RegisterContext assertionsEd Maste1-0/+1
2014-11-17Fixed more fallout from running the test suite remotely on iOS devices.Greg Clayton1-6/+9
2014-07-08Fix typos.Bruce Mitchener1-1/+1
2014-04-04sweep up -Wformat warnings from gccSaleem Abdulrasool1-1/+1
2013-11-22Patch from Todd Fiala: lldb will seg fault if for some reason there is no unw...Greg Clayton1-8/+11
2013-11-04Add new ivars to StackFrame so it can represent a stack collectedJason Molenda1-2/+8
2013-11-04Roll back the changes I made in r193907 which created a new FrameJason Molenda1-27/+26
2013-11-02Add a new base class, Frame. It is a pure virtual function whichJason Molenda1-26/+27
2013-10-18Mark the selected frame of the selected thread in backtraces.Jim Ingham1-2/+22
2013-05-24<rdar://problem/13643315> Greg Clayton1-7/+30
2013-04-18After discussing with Chris Lattner, we require C++11, so lets get rid of the...Greg Clayton1-1/+1
2013-04-18Since we use C++11, we should switch over to using std::unique_ptr when C++11...Greg Clayton1-1/+1
2013-04-12<rdar://problem/13491977>Greg Clayton1-19/+22
2013-03-28Be sure to take the mutex when the destructor is called in case other threads...Greg Clayton1-0/+3
2013-03-28Protect against the case where the current inlined depth is wrong, and leads ...Jim Ingham1-30/+51
2013-03-27<rdar://problem/13521159>Greg Clayton1-3/+3
2013-03-15<rdar://problem/13194155>Enrico Granata1-0/+4
2012-12-05<rdar://problem/12649160>Greg Clayton1-0/+1
2012-11-29Resolve printf formatting warnings on Linux:Daniel Malea1-2/+2
2012-10-12Bunch of cleanups for warnings found by the llvm static analyzer.Jim Ingham1-2/+0
2012-09-08Fiddle with the heuristic about where to set the stop point in a nested inlin...Jim Ingham1-0/+27
2012-09-07Add SetCurrentInlinedDepth API.Jim Ingham1-5/+27
2012-09-07For now, treat breakpoint hits like regular stops when calculation InlinedSta...Jim Ingham1-5/+6
2012-09-06When you reach the bottom of the inlined stack, don't say you can do a virtua...Jim Ingham1-1/+6
2012-09-05Turn on the "fancy inlined stepping."Jim Ingham1-3/+1
2012-09-01Initial check-in of "fancy" inlined stepping. Doesn't do anything useful unl...Jim Ingham1-2/+172
2012-07-11<rdar://problem/11852100>Greg Clayton1-6/+2
2012-05-04Don't expose the pthread_mutex_t underlying the Mutex & Mutex::Locker classes. Jim Ingham1-2/+2
2012-03-01If the unwinder fails to make us a frame 0, make one by hand from the SP & PC.Jim Ingham1-12/+12
2012-02-29Use the correct (computed by the unwinder) CallFrameAddress as the CFA for Fr...Jim Ingham1-26/+18
2012-02-29Make the StackFrameList::GetFrameAtIndex only fetch as many stack frames as n...Jim Ingham1-158/+187
2012-02-21Thread hardening part 3. Now lldb_private::Thread objects have std::weak_ptrGreg Clayton1-2/+2
2012-02-18The second part in thread hardening the internals of LLDB where we makeGreg Clayton1-8/+8
2012-02-17This checking is part one of trying to add some threading safety to ourGreg Clayton1-1/+1
2011-11-04Fixed the Xcode project building of LLVM to be a bit more user friendly:Greg Clayton1-1/+1
2011-10-07<rdar://problem/10226227>Greg Clayton1-1/+9
2011-10-05Fixed a crasher where the m_frames collection was being accessed withoutGreg Clayton1-3/+4
2011-10-01Cleaned up the the code that figures out the inlined stack frames given a Greg Clayton1-49/+13
2011-09-20Update declarations for all functions/methods that accept printf-styleJason Molenda1-1/+1
2011-09-08Move the SourceManager from the Debugger to the Target. That way it can stor...Jim Ingham1-2/+22