index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lldb
/
source
/
Target
/
Target.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Added Debugger::GetAsync{Output/Error}Stream, and use it to print parse error...
Jim Ingham
2011-06-02
1
-6
/
+2
*
Disable dynamic types being on by default until kinks get worked out when
Greg Clayton
2011-05-30
1
-6
/
+6
*
Added new lldb_private::Process memory read/write functions to stop a bunch
Greg Clayton
2011-05-22
1
-0
/
+75
*
Target::EvaluateExpression should suppress stop hooks.
Jim Ingham
2011-05-12
1
-1
/
+13
*
Make sure you have an executable module before trying to print its name.
Jim Ingham
2011-05-12
1
-1
/
+4
*
Made expressions that are just casts of pointer
Sean Callanan
2011-05-07
1
-1
/
+0
*
Change "frame var" over to using OptionGroups (and thus the OptionGroupVariab...
Jim Ingham
2011-05-04
1
-17
/
+30
*
This patch captures and serializes all output being written by the
Caroline Tice
2011-05-02
1
-2
/
+10
*
Fixed the SymbolContext::DumpStopContext() to correctly indent and dump
Greg Clayton
2011-04-23
1
-46
/
+115
*
Fix up how the ValueObjects manage their life cycle so that you can hand out ...
Jim Ingham
2011-04-22
1
-1
/
+1
*
Did some work on the "register read" command to only show the first register
Greg Clayton
2011-04-22
1
-33
/
+25
*
General cleanup on the UserSettingsController stuff. There were 5 different
Greg Clayton
2011-04-19
1
-24
/
+0
*
Add support for "dynamic values" for C++ classes. This currently only works ...
Jim Ingham
2011-04-16
1
-6
/
+67
*
Order of initialization lists.
Stephen Wilson
2011-04-11
1
-4
/
+4
*
Modified the ArchSpec to take an optional "Platform *" when setting the triple.
Greg Clayton
2011-04-07
1
-1
/
+2
*
Convert ValueObject to explicitly maintain the Execution Context in which the...
Jim Ingham
2011-03-31
1
-2
/
+1
*
Many improvements to the Platform base class and subclasses. The base Platform
Greg Clayton
2011-03-30
1
-31
/
+45
*
Added the ability to get the min and max instruction byte size for
Greg Clayton
2011-03-26
1
-6
/
+4
*
Fixed the LLDB build so that we can have private types, private enums and
Greg Clayton
2011-03-24
1
-82
/
+10
*
Added new platform commands:
Greg Clayton
2011-03-23
1
-1
/
+1
*
Tidy up the stop hook printing when only one thread matches, and there is onl...
Jim Ingham
2011-03-22
1
-3
/
+17
*
Added more platform support. There are now some new commands:
Greg Clayton
2011-03-19
1
-22
/
+11
*
Add a first pass at a "stop hook" mechanism. This allows you to add commands...
Jim Ingham
2011-03-11
1
-1
/
+257
*
The UserSettings controllers must be initialized & terminated in the
Caroline Tice
2011-03-10
1
-2
/
+12
*
LLDB now has "Platform" plug-ins. Platform plug-ins are plug-ins that provide
Greg Clayton
2011-03-08
1
-15
/
+20
*
Abtracted all mach-o and ELF out of ArchSpec. This patch is a modified form
Greg Clayton
2011-02-23
1
-25
/
+15
*
Added new target instance settings for execution settings:
Greg Clayton
2011-02-18
1
-25
/
+131
*
Destroy the dynamic loader plugin in Process::Finalize. If you wait till the...
Jim Ingham
2011-02-16
1
-2
/
+2
*
Made lldb_private::ArchSpec contain much more than just an architecture. It
Greg Clayton
2011-02-15
1
-42
/
+2
*
Applied a fix to qualify "UUID" with the lldb_private namespace to fix
Greg Clayton
2011-02-04
1
-1
/
+1
*
Removed unneeded header file.
Greg Clayton
2011-02-03
1
-1
/
+0
*
Removed a memory map loading of a file where the mmap contents were just
Greg Clayton
2011-02-03
1
-5
/
+4
*
Fixed a crasher due to not checking if a shared pointer (m_last_created_break...
Greg Clayton
2011-01-24
1
-2
/
+5
*
Added the ability to StackFrame::GetValueForVariableExpressionPath(...) to avoid
Greg Clayton
2011-01-20
1
-2
/
+3
*
Implemented a major overhaul of the way variables are handled
Sean Callanan
2011-01-13
1
-3
/
+27
*
Put more smarts into the RegisterContext base class. Now the base class has
Greg Clayton
2011-01-09
1
-1
/
+5
*
Added the ability for Target::ReadMemory to prefer to read from the file
Greg Clayton
2011-01-07
1
-10
/
+44
*
The LLDB API (lldb::SB*) is now thread safe!
Greg Clayton
2010-12-20
1
-0
/
+1
*
Fixed the "expression" command object to use the StackFrame::GetValueForExpre...
Greg Clayton
2010-12-15
1
-1
/
+3
*
Modified LLDB expressions to not have to JIT and run code just to see variable
Greg Clayton
2010-12-14
1
-3
/
+81
*
When shared libraries are unloaded, they are now removed from the target
Greg Clayton
2010-12-06
1
-0
/
+4
*
Added the ability for a process to inherit the current host environment. This
Greg Clayton
2010-12-04
1
-3
/
+7
*
Fixed an issue where the UserSettingsControllers were being created out of
Greg Clayton
2010-11-19
1
-9
/
+13
*
Cleaned up code that wasn't using the Initialize and Terminate paradigm by
Greg Clayton
2010-11-18
1
-17
/
+19
*
Modified all logging calls to hand out shared pointers to make sure we
Greg Clayton
2010-11-06
1
-9
/
+9
*
Cleaned up the API logging a lot more to reduce redundant information and
Greg Clayton
2010-10-31
1
-1
/
+5
*
Improved API logging.
Greg Clayton
2010-10-30
1
-1
/
+1
*
Modified the lldb_private::TypeList to use a std::multimap for quicker lookup
Greg Clayton
2010-10-29
1
-12
/
+5
*
Added a user-settable variable, 'target.expr-prefix',
Sean Callanan
2010-10-29
1
-9
/
+79
*
After a recent fix to not set the default architecture to "x86_64", the strin...
Greg Clayton
2010-10-27
1
-4
/
+7
[next]