summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/ExpressionParser
Commit message (Expand)AuthorAgeFilesLines
* Expression eval lookup speedup by not returning methods in ManualDWARFIndex::...Levon Ter-Grigoryan2020-01-141-3/+3
* [lldb/Expression] Improve interpreter error message with a non-running targetMed Ismail Bennani2020-01-141-2/+3
* [lldb] Remove FieldDecl stealing hack by rerouting indirect imports to the or...Raphael Isemann2020-01-101-14/+0
* Add missing nullptr checks.Adrian Prantl2020-01-105-26/+36
* [lldb][NFC] Use static_cast instead of reinterpret_cast where possibleRaphael Isemann2020-01-072-4/+2
* [lldb][NFC] Remove forward declaration for non-existent type clang::Action an...Raphael Isemann2020-01-032-6/+2
* [lldb][NFC] Create type-safe function for creating a CompilerType from a Qual...Raphael Isemann2020-01-021-4/+3
* [lldb][NFC] Simplify CompilerType constructors/destructors and fix unused var...Raphael Isemann2020-01-011-2/+0
* [lldb][NFC] Delete static versions of ClangASTContext::CreateFunctionTypeRaphael Isemann2019-12-291-2/+2
* [lldb][NFC] Remove GetASTContext call in ClangPersistentVariablesRaphael Isemann2019-12-283-27/+36
* [lldb][NFC] Remove GetASTContext call in ClangDeclVendorRaphael Isemann2019-12-283-15/+14
* [lldb] Remove some calls to GetASTContextRaphael Isemann2019-12-261-15/+10
* [lldb][NFC] Remove ClangExternalASTSourceCommonRaphael Isemann2019-12-242-3/+4
* [lldb][NFC] Remove unused 'type' parameter in ClangExpressionDeclMap::FindGlo...Raphael Isemann2019-12-232-23/+6
* [lldb] Add sanity check to CreateDeclContext and fixed illformed CompilerCont...Raphael Isemann2019-12-231-1/+3
* [lldb][NFC] Make CompilerDeclContext construction type safeRaphael Isemann2019-12-231-3/+1
* [lldb][NFC] Return a reference from ClangASTContext::getASTContext and remove...Raphael Isemann2019-12-213-34/+13
* [lldb][NFC] Remove all ASTContext getter wrappers from ClangASTContextRaphael Isemann2019-12-213-8/+4
* [lldb] Fix ARM32 inferior callsJan Kratochvil2019-12-211-1/+1
* [lldb][NFC] Remove redundant ASTContext args to CopyDecl/DeportDeclRaphael Isemann2019-12-202-4/+2
* [lldb][NFC] Add unit test for persistent variable lookup with ClangExpression...Raphael Isemann2019-12-182-10/+26
* [lldb][NFC] Allow creating ClangExpressionDeclMap and ClangASTSource without ...Raphael Isemann2019-12-176-19/+47
* [lldb] Remove modern-type-lookupRaphael Isemann2019-12-175-274/+7
* [lldb][NFC] Remove all unnecessary includes for ClangASTSourceCommon.hRaphael Isemann2019-12-171-1/+0
* [lldb][NFC] Remove all overloads of Copy/DeportType in ClangASTImporterRaphael Isemann2019-12-162-7/+3
* [lldb][NFC] Remove ClangASTImporter::ResolveDeclOriginRaphael Isemann2019-12-162-37/+24
* [Target] Remove Target::GetScratchClangASTContextAlex Langford2019-12-123-16/+26
* [lldb] Remove ClangASTMetricsRaphael Isemann2019-12-122-17/+0
* [lldb][NFC] Remove dead metadata code in ClangASTSourceProxyRaphael Isemann2019-12-111-12/+0
* [lldb][NFC] Extract searching for function SymbolContexts out of ClangExpress...Raphael Isemann2019-12-032-92/+116
* [lldb][NFC] Remove ClangASTContext::GetBuiltinTypeForEncodingAndBitSize overloadRaphael Isemann2019-11-291-2/+2
* [lldb][NFC] Explicitly ask for a ClangASTContext in ClangASTSourceRaphael Isemann2019-11-294-30/+24
* [lldb][NFC] Remove unused variable in ClangASTSource::CompleteTypeRaphael Isemann2019-11-281-1/+0
* [lldb][NFC] Allow range-based for-loops on VariableListRaphael Isemann2019-11-251-3/+1
* [lldb] Remove lldb's own ASTDumperRaphael Isemann2019-11-255-276/+70
* [lldb][NFC] Do an early exit in LookupLocalVarNamespace and LookUpLldbObjCClassRaphael Isemann2019-11-232-48/+56
* [lldb][NFC] NFC refactoring for ClangExpressionDeclMap::LookupInModulesDeclVe...Raphael Isemann2019-11-231-55/+30
* [lldb][NFC] NFC refactoring ClangExpressionDeclMap::LookupLocalVariableRaphael Isemann2019-11-231-36/+33
* [lldb][NFC] Fix LLDB build after ModuleManager->ASTReader renameRaphael Isemann2019-11-232-2/+2
* [lldb][NFC] Modernize string handling in ClangExpressionDeclMap::FindExternal...Raphael Isemann2019-11-211-11/+8
* [lldb][NFC] Move searching functions in ClangExpressionDeclMap to own functionRaphael Isemann2019-11-212-89/+121
* [lldb][NFC] Reduce scope of some variables in ClangExpressionDeclMap::FindExt...Raphael Isemann2019-11-211-5/+3
* [lldb][NFC] Move searching local variables into own functionRaphael Isemann2019-11-212-39/+74
* [lldb][NFC] Move searching the ClangModulesDeclVendor into own functionRaphael Isemann2019-11-212-72/+86
* [lldb][NFC] Move searching for the local variable namespace into own functionRaphael Isemann2019-11-212-24/+38
* [lldb][NFC] Early exit in ClangExpressionDeclMap::FindExternalVisibleDeclsRaphael Isemann2019-11-211-302/+302
* [lldb][NFC] Move searching for $__lldb_objc_class into its own functionRaphael Isemann2019-11-202-122/+134
* [lldb][NFC] Move searching for $__lldb_class into its own function in ClangEx...Raphael Isemann2019-11-202-94/+117
* [lldb][NFC] Move ClangExpressionDeclMap's persistent decl search into its own...Raphael Isemann2019-11-202-53/+73
* [lldb][NFC] Simplify ClangASTContext::GetBasicTypesRaphael Isemann2019-11-201-13/+12
OpenPOWER on IntegriCloud