hanchenye-llvm-project/lldb/source/Symbol
Tamas Berghammer 2a2712e062 Fix build breakage caused by r280490
llvm-svn: 280492
2016-09-02 15:56:33 +00:00
..
ArmUnwindInfo.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
Block.cpp Handle the case when a variable is only valid in part of the enclosing scope 2016-02-25 12:23:37 +00:00
CMakeLists.txt Support for OCaml native debugging 2016-08-02 11:15:55 +00:00
ClangASTContext.cpp Fix a typo/thinko - this was generating the wrong kind of array 2016-08-30 21:33:29 +00:00
ClangASTImporter.cpp Move some functions from DWARFASTParserClang to ClangASTImporter. 2016-03-28 22:53:41 +00:00
ClangExternalASTSourceCallbacks.cpp Trying to submit 254476 one more time. This implement -gmodule debugging support. 2015-12-08 01:02:08 +00:00
ClangExternalASTSourceCommon.cpp second pass over removal of Mutex and Condition 2016-05-19 05:13:57 +00:00
ClangUtil.cpp Add some unit tests for ClangASTContext. 2016-04-01 23:20:35 +00:00
CompactUnwindInfo.cpp Add support for using armv7 compact unwind information 2016-06-07 02:19:54 +00:00
CompileUnit.cpp Warning about debugging optimized code was not happening without dSYMs. Now it works for DWARF in .o files on Darwin. 2016-07-05 23:01:20 +00:00
CompilerDecl.cpp Removed the m_decl_objects map from ClangASTContext. 2016-05-23 18:30:59 +00:00
CompilerDeclContext.cpp Take 2: Use an artifical namespace so that member vars do not hide local vars. 2016-02-05 19:10:04 +00:00
CompilerType.cpp Add SBType::GetArrayType() such that - given a type - one can make an array (of a given size) of that type 2016-08-30 20:39:58 +00:00
DWARFCallFrameInfo.cpp Delete Host/windows/win32.h 2016-08-09 23:06:08 +00:00
DebugMacros.cpp Read macro info from .debug_macro section and use it for expression evaluation. 2015-12-16 00:22:08 +00:00
Declaration.cpp
FuncUnwinders.cpp Enhance FuncUnwinders::GetUnwindPlanAtNonCallSite to detect when we 2016-07-06 23:06:19 +00:00
Function.cpp The compiler may use "line number 0" to indicate compiler generated goo that it can't 2016-02-03 00:07:23 +00:00
GoASTContext.cpp Import block pointers from DWARF as Clang block pointers, not as structs. 2016-05-02 21:15:31 +00:00
JavaASTContext.cpp Removed the m_decl_objects map from ClangASTContext. 2016-05-23 18:30:59 +00:00
LineEntry.cpp Keep original source path and mapped path in LineEntry 2016-05-11 22:46:53 +00:00
LineTable.cpp Typo corrections identified by codespell 2016-07-19 15:28:02 +00:00
OCamlASTContext.cpp Fix build breakage caused by r280490 2016-09-02 15:56:33 +00:00
ObjectFile.cpp Delete Host/windows/win32.h 2016-08-09 23:06:08 +00:00
Symbol.cpp Unconditionally accept symbol sizes from elf 2016-01-19 10:24:51 +00:00
SymbolContext.cpp Added support for thread local variables on all Apple OS variants. 2016-07-01 17:17:23 +00:00
SymbolFile.cpp 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: 2016-02-10 21:28:13 +00:00
SymbolVendor.cpp Warning about debugging optimized code was not happening without dSYMs. Now it works for DWARF in .o files on Darwin. 2016-07-05 23:01:20 +00:00
Symtab.cpp Delete Host/windows/win32.h 2016-08-09 23:06:08 +00:00
Type.cpp When creating typedefs, don't call Type::GetName() since that might recursively call "lldb_private::Type::ResolveClangType(lldb_private::Type::ResolveStateTag)" and cause a crash. A lldb_private::Type should have a valid name if it is created without a backing CompilerType. Also provide a name that we can recognize so if we see it in a as the typename of a variable, we will know to check it out. This crash is happening quite a bit and we need to determine if this is due to incorrect debug info, or just due to some bug in LLDBD. 2016-03-29 18:22:07 +00:00
TypeList.cpp Testcase and fix for bug 24074 2015-10-08 09:45:41 +00:00
TypeMap.cpp Fix a crasher in SymbolContext::SortTypeList() where something that was iterating over a std::multimap was actually mutating the list. 2015-11-19 23:10:45 +00:00
TypeSystem.cpp Add SBType::GetArrayType() such that - given a type - one can make an array (of a given size) of that type 2016-08-30 20:39:58 +00:00
UnwindPlan.cpp Remove assert since it was crashing the mutli process driver tests. Made the code behave correctly when indexes are out of range or the collection is empty and is "log enable lldb unwind" is enabled, log an error message. 2016-07-12 23:07:50 +00:00
UnwindTable.cpp second pass over removal of Mutex and Condition 2016-05-19 05:13:57 +00:00
Variable.cpp Added support for thread local variables on all Apple OS variants. 2016-07-01 17:17:23 +00:00
VariableList.cpp
VerifyDecl.cpp