- da9c5db Show the memory region name if there is one in the output of the "memory region" command by Greg Clayton · 7 years ago
- 87e403a Re-land "Extract construction of DataBufferLLVM into FileSystem" by Jonas Devlieghere · 7 years ago
- 9a89d93 Revert "Extract construction of DataBufferLLVM into FileSystem" by Davide Italiano · 7 years ago
- ceff664 Remove header grouping comments. by Jonas Devlieghere · 7 years ago
- 1cc0714 Extract construction of DataBufferLLVM into FileSystem by Jonas Devlieghere · 7 years ago
- 50bc1ed [FileSystem] Open File instances through the FileSystem. by Jonas Devlieghere · 7 years ago
- 8f3be7a [FileSystem] Move path resolution logic out of FileSpec by Jonas Devlieghere · 7 years ago
- dbd7fab [FileSystem] Remove Exists() from FileSpec by Jonas Devlieghere · 7 years ago
- 8fe53c49 Replace "nullptr-terminated" C-arrays of OptionValueEnumeration with safer llvm::ArrayRef by Tatyana Krasnukha · 7 years ago
- 937348c [FileSpec] Make style argument mandatory for SetFile. NFC by Jonas Devlieghere · 7 years ago
- 0509724 Reflow paragraphs in comments. by Adrian Prantl · 7 years ago
- 145d95c Move Args.cpp from Interpreter to Utility by Pavel Labath · 7 years ago
- 7b57946 Fix a thinko in CommandObjectMemoryRegion. by Jim Ingham · 7 years ago
- 47cbf4a Move Args::StringTo*** functions to a new OptionArgParser class by Pavel Labath · 7 years ago
- 97206d5 Rename Error -> Status. by Zachary Turner · 8 years ago
- bef72b7 getAsInteger is not a equivalent replacement for strtol by Jim Ingham · 8 years ago
- 3eb2b44 Delete some more dead includes. by Zachary Turner · 9 years ago
- 7f6a7a3 Remove FileSpec::ReadFileContents. by Zachary Turner · 9 years ago
- 666cc0b Move DataBuffer / DataExtractor and friends from Core -> Utility. by Zachary Turner · 9 years ago
- 29cb868 Isolate Target-specific functionality of DataExtractor. by Zachary Turner · 9 years ago
- bf9a773 Move classes from Core -> Utility. by Zachary Turner · 9 years ago
- 91ad7a9 Fix compiler warning. by Zachary Turner · 9 years ago
- 14f6b2c Modernize the Args access pattern in a few more commands. by Zachary Turner · 9 years ago
- 31d97a5 Rewrite all Property related functions in terms of StringRef. by Zachary Turner · 9 years ago
- c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
- 22a2628 Make ValueObjectMemory::Create accept StringRefs. by Zachary Turner · 9 years ago
- fe11483 Make Options::SetOptionValue take a StringRef. by Zachary Turner · 9 years ago
- 6a9767c Clean up the stop printing header lines. by Jim Ingham · 9 years ago
- 8cef4b0 Update OptionGroup::SetValue to take StringRef. by Zachary Turner · 9 years ago
- 7060243 Try to fix build errors on Android. by Zachary Turner · 9 years ago
- 1f0f5b5 Convert option tables to ArrayRefs. by Zachary Turner · 9 years ago
- ecbb0bb Fix more functions in Args to use StringRef. by Zachary Turner · 9 years ago
- b9c1b51 *** This commit represents a complete reformatting of the LLDB source code by Kate Stone · 9 years ago
- 4fd2f40 There exists at least one compiler on one platform that doesn't know how to assert on a std::shared_ptr<> by Enrico Granata · 9 years ago
- 7eef5fa Change "memory find" over to using a variation of the Boyer–Moore search algorithm by Enrico Granata · 9 years ago
- ac9c3a6 Tables of command options in LLDB benefit from hand-formatting to make it by Kate Stone · 9 years ago
- e1cfbc7 Decoupled Options from CommandInterpreter. by Todd Fiala · 9 years ago
- 7428a18 LLDB help content has accumulated over time without a recent attempt to by Kate Stone · 9 years ago
- 3385fa0 Since our expression parser needs to locate areas of memory that are not in use when you have a process that can't JIT code, like core file debugging, the core file process plug-ins should be able to override the Process::GetMemoryRegionInfo(...) function. by Greg Clayton · 9 years ago
- d09ae3b Cleanup the arguments for 'memory find' such that the help system reflects the real way to invoke it by Enrico Granata · 9 years ago
- b3a36df Handle any persistent Decl in the Clang expression parser, not just types. by Sean Callanan · 10 years ago
- 26cac3a Fix Clang-tidy modernize-use-nullptr and modernize-use-default warnings in some files in source/Commands; other minor fixes. by Eugene Zelenko · 10 years ago
- ebeff4c Fix buildbot failure because I got an include path wrong. by Jason Molenda · 10 years ago
- 62e0681 Add -Wimplicit-fallthrough command line option to clang in by Jason Molenda · 10 years ago
- ae088e5 Now that SymbolFileDWARF supports having types in completely separate .pcm file with "-fmodules -gmodules", each SymbolFileDWARF can reference module DWARF info by looking in other DWARF files. Then if you have 1000 .o files that each reference one or more .pcm files in their debug info, a simple Module::FindTypes(...) call can end up searching the same .pcm file over and over and over. Now all internal FindTypes methods in classes (ModuleList, Module, SymbolFile) now take an extra argument: by Greg Clayton · 10 years ago
- aaaa157 Fix TestMemoryRead after r252035 by Tamas Berghammer · 10 years ago
- 40d3570 Option letter o was already in use; use an uppercase E instead by Enrico Granata · 10 years ago
- 7a33621 Add a --offset option to memory read that allows one to specify, given a type, how many sizeof(type) bytes to speak before starting to read memory by Enrico Granata · 10 years ago
- ba507b0 Silence -Wqual-cast warnings from GCC 5.2 by Saleem Abdulrasool · 10 years ago
- 1556077 Handle eFormatVectorOfFloat16 by Enrico Granata · 10 years ago
- a0f0867 Resubmit: RenderScript command for printing allocation contents by Ewan Crawford · 10 years ago
- dee8834 Revert "RenderScript command for printing allocation contents" by Pavel Labath · 10 years ago
- 2b8c981 Fix warning in CommandObjectMemory by Tamas Berghammer · 10 years ago
- 13d21e9 commands: Use override instead of virtual. by Bruce Mitchener · 10 years ago
- b92bd75 Made Target hold a map of languages to TypeSystems, and added some accessors. by Sean Callanan · 10 years ago
- 8f1f9a1 Now persistent expression data no longer lives with the Target, but rather with by Sean Callanan · 10 years ago
- 4dbb271 Moved more Clang-specific parts of the expression parser into the Clang plugin. by Sean Callanan · 10 years ago
- 23a3b0e Rename clang_type_t to opaque_compiler_type_t. by Bruce Mitchener · 10 years ago
- 99558cc4 Final bit of type system cleanup that abstracts declaration contexts into lldb_private::CompilerDeclContext and renames ClangType to CompilerType in many accessors and functions. by Greg Clayton · 10 years ago
- a1e5dc8 ClangASTType is now CompilerType. by Greg Clayton · 10 years ago
- d8d4a57 First step in getting LLDB ready to support multiple different type systems. by Greg Clayton · 10 years ago
- 760af88 Jim suggested to use eArgTypeAddressOrExpression for the addresses that 'memory find' takes by Enrico Granata · 10 years ago
- 0b3b987 Fix the memory find command such that it can actually take an expression by Enrico Granata · 10 years ago
- c7c30eb Revert "Introduce a TypeSystem interface to support adding non-clang languages." by Pavel Labath · 10 years ago
- c33ae02 Introduce a TypeSystem interface to support adding non-clang languages. by Pavel Labath · 10 years ago
- 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
- e87764f Add support for custom commands to set flags on themselves by Enrico Granata · 10 years ago
- d7e6a4f Fixed a ton of gcc compile warnings by Vince Harron · 10 years ago
- dc3c3ee If memory read does not find a NULL terminator, still print whatever it gathered instead of just NOP'ing out by Enrico Granata · 10 years ago
- a78bd7f Don't #include FormatManager.h from Debugger.h by Zachary Turner · 11 years ago
- af0f45f Don't #include ClangPersistentVariables.h from Process.h by Zachary Turner · 11 years ago
- c95f7e2 Refactor OptionValue::SetValueFromCString to use llvm::StringRef by Pavel Labath · 11 years ago
- 250b1b89 Small fix for the "memory write -i filename" command -- if the user fails to specify the by Jason Molenda · 11 years ago
- 1cd5e92 Preparatory infrastructural work to support dynamically determining sizes of ObjC types via the runtime by Enrico Granata · 11 years ago
- 5275aaa Moved Args::StringToXIntYZ to StringConvert::ToXIntYZ by Vince Harron · 11 years ago
- f03e6d84 Very minimal support 24-bit kalimbas. Vanilla "memory read" for data sections by Matthew Gardiner · 11 years ago
- 47a8a5e Correct copied error message by Ed Maste · 11 years ago
- beed821 ASan malloc/free history threads by Kuba Brecka · 11 years ago
- 350b78e Reapply typo fix. by Bruce Mitchener · 11 years ago
- d37221d Revert "Fix broken tests due to new error output." by Zachary Turner · 11 years ago
- aaa0ba3 Fix typos. by Bruce Mitchener · 11 years ago
- 9734280 Fix broken tests due to new error output. by Todd Fiala · 11 years ago
- de963e9 Adds the notion of an OptionValidator. by Zachary Turner · 11 years ago
- ffeba25 Remove %zx in printf (only GCC supports it, not MSVC). by Virgile Bello · 12 years ago
- 6fea17e "size_t" isn't always 64 bit, it is 32 bit on 32 bit systems. All printf style statements that were assuming size_t were 64 bit were changed, and they were also changed to display them as unsigned values as "size_t" isn't signed. by Greg Clayton · 12 years ago
- 99fbc07 Fix Windows build using portable types for formatting the log outputs by Deepak Panickal · 12 years ago
- 8d81a84 Minor improvement to the "memory find" command by Enrico Granata · 12 years ago
- 6e49c48 Small typos in previous commit by Enrico Granata · 12 years ago
- 5346843 <rdar://problem/14322677> by Enrico Granata · 12 years ago
- b57e4a1 Roll back the changes I made in r193907 which created a new Frame by Jason Molenda · 12 years ago
- f23bf74 Add a new base class, Frame. It is a pure virtual function which by Jason Molenda · 12 years ago
- 779f921 Fix the format warnings. by Sylvestre Ledru · 12 years ago
- 0947a6e <rdar://problem/15296388> by Enrico Granata · 12 years ago
- 4d93b8c <rdar://problem/14393032> by Enrico Granata · 12 years ago
- e2607b5 Add OptionParser.h by Virgile Bello · 12 years ago
- bdae378 Cleanup/rearrange includes: by Virgile Bello · 12 years ago
- 46a4426 <rdar://problem/14521548> by Greg Clayton · 12 years ago
- 57ee306 Huge change to clean up types. by Greg Clayton · 12 years ago
- 7bd2bbb <rdar://problem/13779789> by Enrico Granata · 12 years ago
- 3fb543b Remove eFormatHalfFloat as it isn't needed. eFormatFloat should be used and the byte size will tell us how to display it. by Greg Clayton · 12 years ago