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
/
clang
/
lib
/
AST
/
DeclBase.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Note when a decl is used in AST files.
Eli Friedman
2013-09-05
1
-0
/
+10
*
Implement [class.friend]p11's special name lookup rules for friend declarations
Richard Smith
2013-08-09
1
-8
/
+1
*
Started implementing variable templates. Top level declarations should be ful...
Larisse Voufo
2013-08-06
1
-0
/
+3
*
C++ modules: Don't call DeclContext::lookup when half-way through deserializing
Richard Smith
2013-07-13
1
-3
/
+45
*
Delete dead code.
Eli Friedman
2013-06-27
1
-26
/
+0
*
Avoid adding entries to the DeclContext lookup table multiple times when lazily
Richard Smith
2013-06-24
1
-1
/
+9
*
When setting the external visible declarations for a decl context, check
Richard Smith
2013-06-24
1
-7
/
+32
*
Make all 'is in extern "C"' tests use the lexical context.
Rafael Espindola
2013-05-05
1
-22
/
+0
*
Added a function to check whether a Decl is in
Sean Callanan
2013-05-04
1
-0
/
+5
*
Micro-optimization: check the overloaded operator kind before
John McCall
2013-05-03
1
-2
/
+2
*
Correctly emit certain implicit references to 'self' even within
John McCall
2013-05-03
1
-12
/
+28
*
Sema for Captured Statements
Tareq A. Siraj
2013-04-16
1
-0
/
+2
*
Basic support for Microsoft property declarations and
John McCall
2013-04-16
1
-0
/
+1
*
Add 178663 back.
Rafael Espindola
2013-04-03
1
-1
/
+1
*
Revert 178663.
Rafael Espindola
2013-04-03
1
-1
/
+1
*
Don't compute a patched/semantic storage class.
Rafael Espindola
2013-04-03
1
-1
/
+1
*
OpenMP threadprivate directive parsing and semantic analysis
Alexey Bataev
2013-03-22
1
-0
/
+2
*
Add streamed versions of getQualifiedNameAsString.
Benjamin Kramer
2013-02-23
1
-2
/
+5
*
[Sema] Semantic analysis for empty-declaration and attribute-declaration.
Michael Han
2013-02-22
1
-0
/
+1
*
Add a getLanguageLinkage method to VarDecls and FunctionDecls. Use it to fix
Rafael Espindola
2013-02-14
1
-0
/
+11
*
Don't bother reconciling external visible decls against our current set of
Richard Smith
2013-02-11
1
-11
/
+5
*
Ensure that type definitions present in just-loaded modules are
Douglas Gregor
2013-02-09
1
-0
/
+4
*
Fix stack overflow and improve performance when a module contains many
Richard Smith
2013-02-08
1
-5
/
+7
*
Fix handling of module imports adding names to a DeclContext after qualified
Richard Smith
2013-02-07
1
-10
/
+37
*
Simplify FindExternalVisibleDeclsByName by making it return a bool indicating
Richard Smith
2013-02-07
1
-1
/
+9
*
Remove useless 'llvm::' qualifier from names like StringRef and others that are
Dmitri Gribenko
2013-01-12
1
-4
/
+4
*
Provide Decl::getOwningModule(), which determines the (sub)module in
Douglas Gregor
2013-01-12
1
-0
/
+5
*
Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe...
David Blaikie
2012-12-19
1
-5
/
+5
*
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-12-04
1
-4
/
+4
*
Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ...
Benjamin Kramer
2012-12-01
1
-3
/
+17
*
Add r168519 back, but with a fix to also merge the used flag in variables.
Rafael Espindola
2012-11-25
1
-7
/
+0
*
Revert r168519, "Merge used flags so that we don't have to iterate on isUsed....
NAKAMURA Takumi
2012-11-24
1
-0
/
+7
*
Merge used flags so that we don't have to iterate on isUsed. With this change
Rafael Espindola
2012-11-23
1
-8
/
+1
*
Remove redundant check.
Rafael Espindola
2012-11-23
1
-2
/
+3
*
Remove redundant semicolons which are null statements.
Dmitri Gribenko
2012-09-10
1
-1
/
+1
*
Teach the ASTImporter how to handle anonymous structs/unions
Douglas Gregor
2012-07-17
1
-9
/
+11
*
Introduce ObjCRuntime::hasWeakClassImport() and use it in the appropriate
John McCall
2012-06-20
1
-1
/
+1
*
Restructure how the driver communicates information about the
John McCall
2012-06-20
1
-6
/
+15
*
Revert Decl's iterators back to pointer value_type rather than reference valu...
David Blaikie
2012-06-06
1
-11
/
+0
*
Split DeclarationName::getFETokenInfoAsVoid() into hot/cold paths and
Douglas Gregor
2012-05-03
1
-5
/
+0
*
Fix Objective-C compilation-time performance regression introduced in r152608.
Richard Smith
2012-03-16
1
-79
/
+169
*
It never makes sense to do a lookup into a LinkageSpecDecl, so assert that we
Nick Lewycky
2012-03-13
1
-0
/
+3
*
Fix PR10447: lazily building name lookup tables for DeclContexts was broken.
Richard Smith
2012-03-13
1
-92
/
+58
*
Unify naming of LangOptions variable/get function across the Clang stack (Lex...
David Blaikie
2012-03-11
1
-1
/
+1
*
Allow serializing an invalid ParmVarDecl and don't set access to public for
Argyrios Kyrtzidis
2012-03-09
1
-1
/
+1
*
AST/stats: Don't effectively use an out-of-line function to return a static
Daniel Dunbar
2012-03-05
1
-5
/
+3
*
More ArrayRef-ification of methods.
Bill Wendling
2012-02-22
1
-1
/
+1
*
Improve our handling of lambda expressions that occur within default
Douglas Gregor
2012-02-21
1
-2
/
+6
*
[PCH] Avoid using Decl::setAttrs() and Decl::setLexicalDeclContext() from the...
Argyrios Kyrtzidis
2012-02-09
1
-6
/
+15
*
More dead code removal (using -Wunreachable-code)
David Blaikie
2012-01-20
1
-1
/
+1
[prev]
[next]