hanchenye-llvm-project/lldb/source/Core
Jason Molenda 5d4102417b Initialize the "is_loaded" local in LoadModuleAtAddress in
case Process::GetFileLoadAddress fails to set it to a real
value.  (fixing "conditional use of garbage value" clang warning)

llvm-svn: 275731
2016-07-17 20:01:54 +00:00
..
Address.cpp Fix the use of lldb::eSymbolContextVariable. 2016-06-21 20:00:36 +00:00
AddressRange.cpp Add -Wimplicit-fallthrough command line option to clang in 2016-02-16 04:14:33 +00:00
AddressResolver.cpp
AddressResolverFileLine.cpp
AddressResolverName.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-02 01:09:03 +00:00
ArchSpec.cpp [LLDB][MIPS] Setting appropriate ArchSpec::m_flags based on ABI 2016-05-11 13:08:29 +00:00
Baton.cpp
Broadcaster.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
CMakeLists.txt [cmake] Remove LLVM_NO_RTTI. 2015-09-03 08:46:55 +00:00
Communication.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
Connection.cpp
ConnectionMachPort.cpp I make no claims that Mach ports work, but at least we should check the right thing 2015-06-03 22:35:55 +00:00
ConnectionSharedMemory.cpp Revert "Add a read_full_buffer argument to ConnectionFileDescriptor::Read" 2016-05-03 14:07:41 +00:00
ConstString.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-10 23:57:12 +00:00
CxaDemangle.cpp Shuffle an #undef to avoid a warning on FreeBSD 2016-03-14 20:39:08 +00:00
DataBufferHeap.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-03 00:51:40 +00:00
DataBufferMemoryMap.cpp Adopt mmap flags that allow mmap'ed memory to be less crash prone. 2016-05-20 19:18:20 +00:00
DataEncoder.cpp Remove unnecessary <limits> includes. 2016-03-15 21:11:02 +00:00
DataExtractor.cpp 64-bit LEB values are not always correctly decoded due to a casting issue, now they are. 2016-06-28 17:14:18 +00:00
Debugger.cpp Fixed a threading race condition where we could crash after calling Debugger::Terminate(). 2016-07-11 22:50:18 +00:00
Disassembler.cpp Now that there are no cycles that cause leaks in the disassembler/instruction classes, we can get rid of the FIXME lines that were working around this issue. 2016-06-07 23:19:00 +00:00
DynamicLoader.cpp Initialize the "is_loaded" local in LoadModuleAtAddress in 2016-07-17 20:01:54 +00:00
EmulateInstruction.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-03 00:51:40 +00:00
Error.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-10 23:57:12 +00:00
Event.cpp Fix some long standing issues that caused tests to be flaky. 2016-05-12 22:58:52 +00:00
FastDemangle.cpp Fix all of the unannotated switch cases to annotate the fall through or do the right thing and break. 2016-02-26 01:20:20 +00:00
FileLineResolver.cpp
FileSpecList.cpp Remove unnecessary <limits> includes. 2016-03-15 21:11:02 +00:00
FormatEntity.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-10 23:57:12 +00:00
History.cpp
IOHandler.cpp second pass over removal of Mutex and Condition 2016-05-19 05:13:57 +00:00
Listener.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
Log.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
Logging.cpp Add a new "lldb" log channel named "demangle". If we have crashes that are related to demangling, we now can enable this logging and we will be able to reproduce demangler crashes (usually due to overflowing the stack) without needing someone's project. 2016-05-27 00:17:18 +00:00
Mangled.cpp Add a new "lldb" log channel named "demangle". If we have crashes that are related to demangling, we now can enable this logging and we will be able to reproduce demangler crashes (usually due to overflowing the stack) without needing someone's project. 2016-05-27 00:17:18 +00:00
Module.cpp Centralize the way symbol and functions are looked up by making a Module::LookupInfo class that does all of the heavy lifting. 2016-07-13 17:12:24 +00:00
ModuleChild.cpp
ModuleList.cpp Centralize the way symbol and functions are looked up by making a Module::LookupInfo class that does all of the heavy lifting. 2016-07-13 17:12:24 +00:00
Opcode.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-11 21:55:47 +00:00
PluginManager.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
RegisterValue.cpp Fix cmake build after r266524. 2016-04-16 16:29:17 +00:00
RegularExpression.cpp Fix Clang-tidy modernize-use-nullptr warnings in some files in source/Core; other minor fixes. 2016-03-12 00:31:13 +00:00
Scalar.cpp Avoid an assertion failure when a bit field is extracted from a value of the same size. 2016-05-19 13:51:20 +00:00
SearchFilter.cpp second pass over removal of Mutex and Condition 2016-05-19 05:13:57 +00:00
Section.cpp 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. 2016-06-09 16:34:06 +00:00
SourceManager.cpp Silence some MSVC warnings. 2015-08-26 23:55:14 +00:00
State.cpp
Stream.cpp Make lldb::endian::InlHostByteOrder() private. 2015-11-07 04:40:13 +00:00
StreamAsynchronousIO.cpp Fix warnings detected by -Wpessimizing-move 2015-07-28 09:18:32 +00:00
StreamCallback.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
StreamFile.cpp
StreamGDBRemote.cpp
StreamString.cpp Silence -Wqual-cast warnings from GCC 5.2 2015-10-18 19:34:38 +00:00
StringList.cpp Remove duplicate header added in r256927 2016-01-07 14:34:52 +00:00
StructuredData.cpp Make the "lldb/Utility/JSON.h" able to parse JSON into tokens with the new JSONParser class. 2015-07-06 23:40:40 +00:00
Timer.cpp remove use of Mutex in favour of std::{,recursive_}mutex 2016-05-18 01:59:10 +00:00
UUID.cpp
UserID.cpp
UserSettingsController.cpp Add an "experimental" setting to disable injecting local variables into expressions. 2016-07-07 18:25:48 +00:00
VMRange.cpp
Value.cpp Certain hardware architectures have registers of 256 bits in size 2016-03-10 00:14:29 +00:00
ValueObject.cpp "frame variable" and "target variable" shouldn't allow us to get the address of bitfields. 2016-07-06 23:16:24 +00:00
ValueObjectCast.cpp [SBValue] Add a method GetNumChildren(uint32_t max) 2015-10-21 19:28:08 +00:00
ValueObjectChild.cpp More rework of the updating logic for ValueObjectChild. Still just refactoring with no feature change 2015-11-09 23:59:53 +00:00
ValueObjectConstResult.cpp Add an LLDB data formatter for single-element NSArray and NSDictionary Cocoa containers 2016-02-29 21:06:50 +00:00
ValueObjectConstResultCast.cpp Add an LLDB data formatter for single-element NSArray and NSDictionary Cocoa containers 2016-02-29 21:06:50 +00:00
ValueObjectConstResultChild.cpp Add an LLDB data formatter for single-element NSArray and NSDictionary Cocoa containers 2016-02-29 21:06:50 +00:00
ValueObjectConstResultImpl.cpp Add an LLDB data formatter for single-element NSArray and NSDictionary Cocoa containers 2016-02-29 21:06:50 +00:00
ValueObjectDynamicValue.cpp Make IsSyntheticChildrenGenerated() virtual so that dynamic and synthetic values can refer back to their parents 2016-07-08 18:39:36 +00:00
ValueObjectList.cpp
ValueObjectMemory.cpp [SBValue] Add a method GetNumChildren(uint32_t max) 2015-10-21 19:28:08 +00:00
ValueObjectRegister.cpp [SBValue] Add a method GetNumChildren(uint32_t max) 2015-10-21 19:28:08 +00:00
ValueObjectSyntheticFilter.cpp Make IsSyntheticChildrenGenerated() virtual so that dynamic and synthetic values can refer back to their parents 2016-07-08 18:39:36 +00:00
ValueObjectVariable.cpp Add support for DW_OP_push_object_address in dwarf expressions 2016-02-26 14:21:10 +00:00