This website requires JavaScript.
Explore
Help
Sign In
shylie
/
llvm-project
Watch
1
Star
0
Fork
0
You've already forked llvm-project
Code
Issues
Pull Requests
Actions
6
Packages
Projects
Releases
Wiki
Activity
llvm-project
/
lldb
/
source
History
Sean Callanan
1276c33345
Added a --force option to "memory read,"
...
disallowing reads over 1KiB in total size unless the user explicitly allows them. llvm-svn: 155750
2012-04-28 01:27:38 +00:00
..
API
Added the ability to specify the symbol file for a module when adding it to a target.
2012-04-23 20:23:39 +00:00
Breakpoint
<rdar://problem/11282938>
2012-04-23 22:00:21 +00:00
Commands
Added a --force option to "memory read,"
2012-04-28 01:27:38 +00:00
Core
Don't call SBDebugger::SetInternalVariable in the sigwinch_handler, since that takes locks and potentially does allocations.
2012-04-26 21:39:32 +00:00
Expression
Made the IR interpreter move all floats, not just "wide"
2012-04-26 20:51:20 +00:00
Host
Bump to lldb-145.
2012-04-27 02:25:20 +00:00
Interpreter
Patch from Viktor Kutuzov: changes the method declarations to const for the Args::GetCommandString and Agrs::GetQuotedCommandString methods. It allows using of these methods within the other const methods.
2012-04-25 22:30:32 +00:00
Plugins
Patch from Filipe Cabecinhas.
2012-04-26 17:33:20 +00:00
Symbol
Save more memory by not parsing the symbol table for stand alone DWARF files. We currently have SymbolFile plug-ins which all get the chance to say what they can parse in a symbol file. Prior to this fix we would ask the SymbolFileDWARF plug-in what abilities it had, and it would answer with "everything", and then we would check the SymbolFileSymtab plug-in what abilities it had, in case it had more abilities. The checking that SymbolFileSymtab does is a bit expensive as it pulls in the entire symbol table just to see if it can offer a few scraps of debug information. This causes all stand along DWARF files to pull in their symbol tables even though those symbols will never be used. This fix will check all SymbolFile plug-ins for their abilities and if any plug-in responds with "everything", then we stop the search.
2012-04-26 16:53:42 +00:00
Target
Clean up the way modules are looked for when calling Target::GetSharedModule(...). We were ignoring remapped files, even if they were valid. Also if we have a UUID, we should check our global module list first.
2012-04-27 00:58:27 +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
lldb-log.cpp
Patch from Filipe Cabecinhas.
2012-04-26 17:07:53 +00:00
lldb.cpp
Patch from Viktor Kutuzov <vkutuzov@accesssoftek.com>:
2012-04-14 00:54:42 +00:00
Makefile
Patch from Jean-Daniel Dupas:
2010-07-12 23:14:00 +00:00