index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lldb
/
source
/
Symbol
/
Variable.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[lldb][NFC] Make some checks more readable in Variable::PrivateAutoComplete
Raphael Isemann
2020-01-01
1
-3
/
+3
*
[lldb] Remove some (almost) unused Stream::operator<<'s
Pavel Labath
2019-12-04
1
-1
/
+1
*
[lldb][NFC] Remove forward declaration of PrivateAutoCompleteMembers
Raphael Isemann
2019-11-28
1
-7
/
+0
*
[lldb] remove unsigned Stream::operator<< overloads
Pavel Labath
2019-11-26
1
-1
/
+1
*
[lldb][NFC] Allow range-based for-loops on VariableList
Raphael Isemann
2019-11-25
1
-11
/
+6
*
Doxygenify comments.
Adrian Prantl
2019-09-20
1
-9
/
+6
*
[lldb][NFC] Remove WordComplete mode, make result array indexed from 0 and re...
Raphael Isemann
2019-08-22
1
-6
/
+2
*
[lldb][NFC] Use CompletionRequest in Variable::AutoComplete
Raphael Isemann
2019-08-19
1
-43
/
+32
*
[Utility] Reimplement RegularExpression on top of llvm::Regex
Jonas Devlieghere
2019-08-16
1
-9
/
+3
*
[Symbol] Fix some botched logic in Variable::GetLanguage
Alex Langford
2019-07-24
1
-5
/
+5
*
[Symbol] Improve Variable::GetLanguage
Alex Langford
2019-07-22
1
-4
/
+13
*
[NFC] Remove ASCII lines from comments
Jonas Devlieghere
2019-04-10
1
-4
/
+0
*
Pass ConstString by value (NFC)
Adrian Prantl
2019-03-06
1
-1
/
+1
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
Fix undefined behavior in Variable.h
Zachary Turner
2018-12-11
1
-1
/
+2
*
Fix a use-after-free of the ABI plugin.
Zachary Turner
2018-11-15
1
-8
/
+9
*
Fix (and improve) the support for C99 variable length array types
Adrian Prantl
2018-11-05
1
-1
/
+1
*
Add missing boundary checks to variable completion.
Raphael Isemann
2018-07-27
1
-3
/
+4
*
Narrow the CompletionRequest API to being append-only.
Raphael Isemann
2018-07-27
1
-2
/
+4
*
Replaced more boilerplate code with CompletionRequest (NFC)
Raphael Isemann
2018-07-13
1
-6
/
+6
*
Reflow paragraphs in comments.
Adrian Prantl
2018-04-30
1
-14
/
+11
*
Variable: Fix usage of uninitialised value
Pavel Labath
2017-12-07
1
-7
/
+1
*
Change the ABI class to have a weak pointer to its Process;
Jason Molenda
2017-06-29
1
-2
/
+2
*
Rename Error -> Status.
Zachary Turner
2017-05-12
1
-4
/
+4
*
Move classes from Core -> Utility.
Zachary Turner
2017-02-02
1
-2
/
+2
*
Fix some accidental Prints of StringRefs that snuck in.
Zachary Turner
2016-11-19
1
-3
/
+6
*
Re-add the StringRef interface changes for Variable.
Zachary Turner
2016-11-18
1
-101
/
+109
*
Resubmit "Remove an output-parameter from Variable function".
Zachary Turner
2016-11-18
1
-4
/
+2
*
Revert "Remove an out param from ValueObject::GetValueForExpressionPath."
Zachary Turner
2016-11-18
1
-1
/
+9
*
Remove an out param from ValueObject::GetValueForExpressionPath.
Zachary Turner
2016-11-18
1
-9
/
+1
*
Convert AutoComplete related code to StringRef.
Zachary Turner
2016-11-17
1
-29
/
+27
*
Make lldb::Regex use StringRef.
Zachary Turner
2016-09-21
1
-2
/
+4
*
*** This commit represents a complete reformatting of the LLDB source code
Kate Stone
2016-09-06
1
-867
/
+651
*
Added support for thread local variables on all Apple OS variants.
Greg Clayton
2016-07-01
1
-1
/
+7
*
Removed the m_decl_objects map from ClangASTContext.
Sean Callanan
2016-05-23
1
-8
/
+1
*
Fixed Variable::GetDecl() and Variable::GetDeclContext() to check the "Type *...
Greg Clayton
2016-04-12
1
-4
/
+10
*
Fix all of the unannotated switch cases to annotate the fall through or do th...
Greg Clayton
2016-02-26
1
-0
/
+2
*
Handle the case when a variable is only valid in part of the enclosing scope
Tamas Berghammer
2016-02-25
1
-3
/
+15
*
Rename clang_type -> compiler_type for variables.
Bruce Mitchener
2015-09-24
1
-26
/
+26
*
TypeSystem is now a plugin interface and removed any "ClangASTContext &Class:...
Greg Clayton
2015-09-17
1
-14
/
+12
*
Search variables based on clang::DeclContext and clang::Decl tree
Paul Herman
2015-09-15
1
-0
/
+26
*
Final bit of type system cleanup that abstracts declaration contexts into lld...
Greg Clayton
2015-08-24
1
-5
/
+5
*
Fix resolution conflict between global and class static variables in C++
Paul Herman
2015-08-18
1
-2
/
+4
*
ClangASTType is now CompilerType.
Greg Clayton
2015-08-11
1
-10
/
+10
*
First step in getting LLDB ready to support multiple different type systems.
Greg Clayton
2015-08-11
1
-4
/
+4
*
Fix TestStopHookMultipleThreads and TestNamespace after r241751
Pavel Labath
2015-07-09
1
-6
/
+3
*
Make many mangled functions that might demangle a name be allowed to specify ...
Greg Clayton
2015-07-08
1
-5
/
+35
*
Revert "Introduce a TypeSystem interface to support adding non-clang languages."
Pavel Labath
2015-06-08
1
-4
/
+4
*
Introduce a TypeSystem interface to support adding non-clang languages.
Pavel Labath
2015-06-08
1
-4
/
+4
*
[DWARF] If linkages names are missing, use decl context to get qualified names.
Siva Chandra
2015-03-24
1
-4
/
+5
[next]