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
/
ASTContext.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Tweak implementation for allowing ObjC builtin type redefinitions.
Steve Naroff
2008-09-09
1
-7
/
+0
*
Simplify typesAreBlockCompatible().
Steve Naroff
2008-09-09
1
-41
/
+1
*
More type checking for blocks. Still incomplete (will hopefully finish up thi...
Steve Naroff
2008-09-05
1
-1
/
+13
*
Change struct forward declarations and definitions to use unique RecordDecls,...
Ted Kremenek
2008-09-05
1
-9
/
+22
*
Remove "NextDecl" from RecordDecl. This change touches many files that where...
Ted Kremenek
2008-09-05
1
-2
/
+2
*
Fix a handful of typos (closure->block) to avoid confusion.
Steve Naroff
2008-09-04
1
-1
/
+1
*
Add type checking for blocks.
Steve Naroff
2008-09-04
1
-0
/
+46
*
Add code to create the fast enumeration state type
Anders Carlsson
2008-08-30
1
-1
/
+28
*
Add parser/action support for block literal expressions.
Steve Naroff
2008-08-28
1
-3
/
+3
*
NeXT: Emit mostly-correct property type encoding.
Daniel Dunbar
2008-08-28
1
-1
/
+87
*
First wave of changes to support "blocks" (an extension to C).
Steve Naroff
2008-08-27
1
-0
/
+31
*
Fix some issues with array type merging. (No visible difference,
Eli Friedman
2008-08-22
1
-8
/
+12
*
Minor const cleanup.
Eli Friedman
2008-08-22
1
-1
/
+1
*
Rewrite type compatibility testing to do type merging rather than just
Eli Friedman
2008-08-22
1
-151
/
+175
*
Fix ASTContext::getObjCEncodingForType() to limit the type info for structure...
Steve Naroff
2008-08-14
1
-1
/
+6
*
Update some isIntegerConstantExpr uses to use
Daniel Dunbar
2008-08-13
1
-5
/
+2
*
More #include cleaning
Daniel Dunbar
2008-08-11
1
-2
/
+0
*
More #include cleaning
Daniel Dunbar
2008-08-11
1
-0
/
+14
*
Fix PR2400 by more graceful handling of invalid decls. Don't try to layout
Chris Lattner
2008-08-09
1
-2
/
+8
*
Change 'Wchar' to 'WChar' casing, for consistency.
Argyrios Kyrtzidis
2008-08-09
1
-2
/
+2
*
Implement support for the 'wchar_t' C++ type.
Argyrios Kyrtzidis
2008-08-09
1
-1
/
+25
*
Add CXXRecordType class.
Argyrios Kyrtzidis
2008-08-07
1
-7
/
+10
*
Finally fix PR2189. This makes a fairly invasive but important change to
Chris Lattner
2008-08-04
1
-57
/
+114
*
convert more code to use ASTContext to get canonical types instead
Chris Lattner
2008-07-26
1
-6
/
+6
*
fix several problems with the protocol qualified id handling where id was imp...
Chris Lattner
2008-07-26
1
-14
/
+3
*
Move isObjCObjectPointerType() from Sema to ASTContext.
Ted Kremenek
2008-07-24
1
-0
/
+26
*
Make a few related changes:
Chris Lattner
2008-06-30
1
-0
/
+14
*
Fix for PR2501; this patch makes usual arithmetic conversions for
Eli Friedman
2008-06-28
1
-0
/
+35
*
-Changes to TagDecl:
Argyrios Kyrtzidis
2008-06-09
1
-7
/
+7
*
During interface layout, don't forget super class.
Devang Patel
2008-06-06
1
-2
/
+14
*
Undo previous check-in.
Devang Patel
2008-06-06
1
-9
/
+1
*
During interface layout, don't forget super class.
Devang Patel
2008-06-06
1
-1
/
+9
*
Add ObjCInterface layout support.
Devang Patel
2008-06-04
1
-0
/
+43
*
Refactoring.
Devang Patel
2008-06-04
1
-74
/
+80
*
Moved LangOptions from TranslationUnit to ASTContext. This induced a variety...
Ted Kremenek
2008-06-04
1
-1
/
+7
*
ASTContext::typesAreCompatible(): id is compatible with all qualified id types.
Steve Naroff
2008-06-04
1
-1
/
+10
*
Cleanup/refactoring of Sema struct layout. This patch unifies the struct
Eli Friedman
2008-05-30
1
-98
/
+79
*
Stop leaking the TUDecl.
Eli Friedman
2008-05-27
1
-0
/
+2
*
Add Destroy method to Types, making there destruction more harmonious with
Ted Kremenek
2008-05-21
1
-7
/
+1
*
Fixup ASTContext::PrintStats()...it was causing several test failures.
Steve Naroff
2008-05-21
1
-1
/
+10
*
Remove hacks from ASTContext now that alignment gets reported correctly.
Eli Friedman
2008-05-20
1
-11
/
+3
*
OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris.
Nate Begeman
2008-04-18
1
-10
/
+10
*
Addition of TranslationUnitDecl to the AST:
Argyrios Kyrtzidis
2008-04-17
1
-1
/
+5
*
Introduce support for finding class and enum names via ordinary name lookup i...
Douglas Gregor
2008-04-13
1
-9
/
+23
*
random whitespace fixes.
Chris Lattner
2008-04-07
1
-10
/
+11
*
fix a bug I introduced in my previous checkin.
Chris Lattner
2008-04-07
1
-5
/
+2
*
simplify array compatibility testing.
Chris Lattner
2008-04-07
1
-12
/
+12
*
simplify reference handling.
Chris Lattner
2008-04-07
1
-17
/
+0
*
move some code around, no other change.
Chris Lattner
2008-04-07
1
-63
/
+67
*
simplify compatibility testing for tag types.
Chris Lattner
2008-04-07
1
-9
/
+12
[next]