- f760f5a Simplify ObjectFile::GetArchitecture by Pavel Labath · 7 years ago
- 8d20cfd [NFC] Replace `compare` with (in)equality operator where applicable. by Jonas Devlieghere · 7 years ago
- 672d2c1 Remove comments after header includes. by Jonas Devlieghere · 7 years ago
- 3a58d89 [FileSystem] Add convenience method to check for directories. 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
- 59b78bc [FileSystem] Remove GetByteSize() from FileSpec by Jonas Devlieghere · 7 years ago
- 4637696 [FileSystem] Extend file system and have it use the VFS. by Jonas Devlieghere · 7 years ago
- 117b1fa Don't type-erase the FunctionNameType or TypeClass enums. by Zachary Turner · 7 years ago
- 991e445 Don't type-erase the SymbolContextItem enumeration. by Zachary Turner · 7 years ago
- a7f19e5 Use a DenseMap for looking up functions by UID in CompileUnit::FindFunctionByUID by Raphael Isemann · 7 years ago
- 9ba5157 Misc module/dwarf logging improvements by Leonard Mosescu · 7 years ago
- 2272c48 Use llvm::VersionTuple instead of manual version marshalling by Pavel Labath · 7 years ago
- 9cd4def Fix Module::FindTypes to return the correct number of matches. by Frederic Riss · 7 years ago
- 34cda14 Remove append parameter to FindGlobalVariables by Pavel Labath · 7 years ago
- 8e8d4b9 Break dependency from Core to ObjectFileJIT. by Zachary Turner · 7 years ago
- 1739b7d Really test type lookup in TestCppTypeLookup.py by Frederic Riss · 7 years ago
- fbe748a Use conventional spelling of always-failing assert. by Richard Smith · 7 years ago
- 9fecd37 Use the UUID from the minidump's CodeView Record for placeholder modules by Leonard Mosescu · 7 years ago
- c485f05 Fix expression parser to not accept any type whose basename matches for a type that must exist at root level by Greg Clayton · 7 years ago
- 0509724 Reflow paragraphs in comments. by Adrian Prantl · 7 years ago
- 47196a2 Improve LLDB's handling of non-local minidumps by Leonard Mosescu · 7 years ago
- b1cb0b79 s/LLVM_ON_WIN32/_WIN32/, lldb by Nico Weber · 7 years ago
- 16064d3 Re-land: [lldb] Use vFlash commands when writing to target's flash memory regions by Pavel Labath · 8 years ago
- 389dbb7 [Module] Throw away some more commented code. NFCI. by Davide Italiano · 8 years ago
- 38d0632 Move Timer and TraceOptions from Core to Utility by Pavel Labath · 8 years ago
- f9d1647 Remove an expensive lock from Timer by Pavel Labath · 8 years ago
- 97206d5 Rename Error -> Status. by Zachary Turner · 8 years ago
- 7fca8c0 Provide a mechanism to do some pre-loading of symbols up front. by Jim Ingham · 8 years ago
- 2f3df61 iwyu fixes for lldbCore. by Zachary Turner · 8 years ago
- 9a4bce7 FindTypes should find "struct TypeName" as well as "TypeName". by Jim Ingham · 9 years ago
- 7d86ee5 Resubmit FileSystem changes. by Zachary Turner · 9 years ago
- 30e6cbf Revert "Use LLVM for all stat-related functionality." by Pavel Labath · 9 years ago
- 990e3cd Use LLVM for all stat-related functionality. by Zachary Turner · 9 years ago
- 666cc0b Move DataBuffer / DataExtractor and friends from Core -> Utility. by Zachary Turner · 9 years ago
- 6f9e690 Move Log from Core -> Utility. by Zachary Turner · 9 years ago
- 5d0c114 FindFunctions now works again with mangled names. by Greg Clayton · 9 years ago
- bf9a773 Move classes from Core -> Utility. by Zachary Turner · 9 years ago
- b10fb96 Provide option to set pc of the file loaded in memory. by Hafiz Abid Qadeer · 9 years ago
- 4687db0 Provide a substitute to load command of gdb. by Hafiz Abid Qadeer · 9 years ago
- 556b161 Improve Type::GetTypeScopeAndBasenameHelper and add unit tests by Tamas Berghammer · 9 years ago
- c156427 Don't allow direct access to StreamString's internal buffer. by Zachary Turner · 9 years ago
- 7e2cfbf Remove TimeValue usage from Core/Module by Pavel Labath · 9 years ago
- 771ef6d Fix Clang-tidy readability-redundant-string-cstr warnings by Malcolm Parsons · 9 years ago
- 1408bf7 Remove TimeValue usage from FileSpec.h by Pavel Labath · 9 years ago
- a498f0e Change Module::RemapPath to use StringRef. by Zachary Turner · 9 years ago
- 95eae42 Make lldb::Regex 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
- f343968f Delete Host/windows/win32.h by Zachary Turner · 9 years ago
- 6234a5c Centralize the way symbol and functions are looked up by making a Module::LookupInfo class that does all of the heavy lifting. by Greg Clayton · 9 years ago
- 4c8e782 Fix the use of lldb::eSymbolContextVariable. by Greg Clayton · 9 years ago
- 16ff860 remove use of Mutex in favour of std::{,recursive_}mutex by Saleem Abdulrasool · 9 years ago
- c5dac77 Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. by Eugene Zelenko · 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
- c35b91c Set symbol types for function symbols loaded from PE/COFF by Adrian McCarthy · 10 years ago
- 0d9dd7d [LLDB] Consider only valid symbols while resolving by address by Mohit K. Bhakkad · 10 years ago
- 5beec21 Moved the target specific ClangASTContext initialization over into ClangASTContext::CreateInstance. by Greg Clayton · 10 years ago
- 4069730 Testcase and fix for bug 24074 by Ravitheja Addepally · 10 years ago
- e5ffa08 Revert 248366 "Testcase and fix for bug 24074" by Enrico Granata · 10 years ago
- 9fcf72e Testcase and fix for bug 24074 by Ravitheja Addepally · 10 years ago
- 56939cb TypeSystem is now a plugin interface and removed any "ClangASTContext &Class::GetClangASTContext()" functions. by Greg Clayton · 10 years ago
- 57bee1e Add a TypeSystem for Go by Ryan Brown · 10 years ago
- 980662e Fix TestLoadUnload.test_load_unload for android API > 21 by Tamas Berghammer · 10 years ago
- aa816b8 Move more functionality from the LanguageRuntimes to the Languages. by Jim Ingham · 10 years ago
- 0e0984e Move things from the LanguageRuntime that obviously belong in the new Language plugin instead. by Jim Ingham · 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
- 8b4edba Move all clang type system DWARF type parsing into ClangASTContext.cpp. by Greg Clayton · 10 years ago
- d00438e Fix issues with separate symbolfile handling by Tamas Berghammer · 10 years ago
- 88c05f5 Use double-checked locking to avoid locking the Module mutex if we don't need to. This avoid a deadlock we were seeing in Xcode. by Greg Clayton · 10 years ago
- 23b1dec Add support for specifying a language to use when parsing breakpoints. by Dawn Perchik · 10 years ago
- 358cf1e Resubmitting 240466 after fixing the linux test suite failures. by Greg Clayton · 10 years ago
- 1124045 Don't #include "lldb-python.h" from anywhere. by Zachary Turner · 10 years ago
- 90271672 Make sure that "add-dsym" can't crash us when using it. by Greg Clayton · 10 years ago
- 3294de2 Move lldb-log.cpp to core/Logging.cpp by Zachary Turner · 11 years ago
- a893d30 Remove Host::Backtrace in favor of llvm::sys::PrintStackTrace() by Zachary Turner · 11 years ago
- 88c6b62 Don't #include ClangASTContext.h from Module.h by Zachary Turner · 11 years ago
- b6cd5fe Fix Bug 20400 by Chaoren Lin · 11 years ago
- 08928f3 Don't wait for the dynamic loader to set a module as a dynamic link editor, figure it out through the ObjectFile. by Greg Clayton · 11 years ago
- 65b0e76 If we say: by Greg Clayton · 11 years ago
- 5e6f452 Don't stomp the triple when loading a PECOFF target. by Zachary Turner · 11 years ago
- fa39bb4 Setting breakpoints with name mask eFunctionNameTypeBase was broken for straight C names by 220432. Get by Jim Ingham · 11 years ago
- c379540 Fixed name lookups for names that contain "::" but aren't actually C++ qualified C++ names. by Greg Clayton · 11 years ago
- 0ee56ce Add error report when Module::GetObjectFile() fails to find a plugin to open an object file. by Todd Fiala · 11 years ago
- 05a09c6 When adding a dSYM to an existing ObjectFile, we can have a situation by Jason Molenda · 11 years ago
- 994740f Don't search for module resources at all if the setting is set to "false". by Greg Clayton · 11 years ago
- fe7295d In order for the debug script filename to be valid as a module name, LLDB does some textual replacements. However, if one were unaware of this, they might name their script using the 'untampered' file name and they would get no feedback about it. Add logic to LLDB to make sure we tell people about those changes if it turns out they might need to know. Fixes rdar://14310572 by Enrico Granata · 11 years ago
- d8eaa17 Update lldb to track recent Triple arm64 enum removal and collapse into aarch64. by Todd Fiala · 11 years ago
- a746e8e Start converting usages of off_t to other types. by Zachary Turner · 11 years ago
- d93c4a3 Fix typos. by Bruce Mitchener · 11 years ago
- 7ab7f89 iOS simulator cleanup to make sure we use "*-apple-ios" for iOS simulator apps and binaries. by Greg Clayton · 11 years ago
- 36d7c89 Fixed the Module::Module(ModuleSpec) constructor to properly copy the file offset and object file mod time from the actual module specifications so we will always be able to directly load the image we care about when calling Module::GetObjectFile(). by Greg Clayton · 11 years ago
- 324a103 sweep up -Wformat warnings from gcc by Saleem Abdulrasool · 11 years ago
- a332978 lldb arm64 import. by Jason Molenda · 11 years ago
- afcbdb1 <rdar://problem/14515139> by Enrico Granata · 12 years ago
- 23f8c95 JITed functions can now have debug info and be debugged with debug and source info: by Greg Clayton · 12 years ago
- 62e5f4d Cleanup some dead assignements reported by scan-build by Arnaud A. de Grandmaison · 12 years ago
- 17220c1 Add support for JIT debugging on Linux using the GDB JIT interface. Patch written with Keno Fischer. by Andrew MacPherson · 12 years ago
- 34f1159 Fixed SBDebugger.CreateTarget("filename") and also make sure remote targets don't pickup bogus locally cached files. by Greg Clayton · 12 years ago
- 8d08a78 Temporarily revert part of Greg's changes in r202738 which are causing problems with the testsuite and SBDebugger::CreateTarget(). by Jason Molenda · 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