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
/
Frontend
/
PCHWriter.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Implement C++0x nullptr.
Sebastian Redl
2009-05-10
1
-0
/
+1
*
Add back Parse/Sema support for attributes cf_returns_retained and
Ted Kremenek
2009-05-09
1
-0
/
+2
*
Remove experimental ownership attributes from Clang.
Ted Kremenek
2009-05-08
1
-7
/
+0
*
Back out r70506 (exception spec in AST) again. We won't have exception specs ...
Sebastian Redl
2009-05-06
1
-5
/
+0
*
Implement attribute 'ns_autorelease'.
Ted Kremenek
2009-05-05
1
-0
/
+1
*
Implement attribute 'cf_returns_owned' (mirrors 'ns_returns_owned').
Ted Kremenek
2009-05-05
1
-0
/
+1
*
Remove experimental attribute 'ns_ownership_make_collectable.'
Ted Kremenek
2009-05-04
1
-1
/
+0
*
Rename attributes 'objc_ownership...' to 'ns_ownership...'.
Ted Kremenek
2009-05-04
1
-4
/
+4
*
Rename attributes:
Ted Kremenek
2009-05-04
1
-2
/
+2
*
Make a home for exception specs in the AST. Now Sema can hook them up.
Sebastian Redl
2009-04-30
1
-0
/
+5
*
initial support for __[u]int128_t, which should be basically
Chris Lattner
2009-04-30
1
-0
/
+2
*
Implement ownership attribute 'objc_ownership_make_collectable'. This allows one
Ted Kremenek
2009-04-28
1
-1
/
+2
*
Optimize IdentifierInfo storage within the precompiled header. We've
Douglas Gregor
2009-04-28
1
-6
/
+6
*
Implement a minor space optimization for the PCH identifier table,
Douglas Gregor
2009-04-28
1
-10
/
+27
*
Implement checking for macro definitions that occur on the command
Douglas Gregor
2009-04-28
1
-1
/
+11
*
Revert r70075 and r70078, which reorganized the PCH on-disk hash table
Douglas Gregor
2009-04-28
1
-35
/
+4
*
Remove unused LangOptions NoExtensions and Boolean.
Eli Friedman
2009-04-28
1
-2
/
+0
*
Add a header containing the Clang version; make the driver use this
Douglas Gregor
2009-04-27
1
-9
/
+18
*
Add Sema::ExtVectorDecls and Sema::ObjCCategoryImpls to the PCH file. Since t...
Douglas Gregor
2009-04-27
1
-0
/
+21
*
Add two new checker-specific attributes: 'objc_ownership_release' and
Ted Kremenek
2009-04-27
1
-0
/
+2
*
make these be unsigned now that they are eagerly created.
Chris Lattner
2009-04-27
1
-4
/
+4
*
shrink SOURCE_LOCATION_OFFSETS to use 4-byte entries instead of 8-byte
Chris Lattner
2009-04-27
1
-2
/
+2
*
Implement caching of stat() calls for precompiled headers, which is
Douglas Gregor
2009-04-27
1
-2
/
+123
*
Add new checker-specific attribute 'objc_ownership_cfretain'. This is the same
Ted Kremenek
2009-04-27
1
-0
/
+1
*
encode the type and decl offsets with 32-bits for entry instead
Chris Lattner
2009-04-27
1
-2
/
+2
*
add an abbreviation for common PARM_VAR_DECL. All but 9 of the
Chris Lattner
2009-04-27
1
-3
/
+3
*
Load most of the source manager's information lazily from the PCH
Douglas Gregor
2009-04-27
1
-68
/
+98
*
split expr/stmt writing out to PCHWriterStmt.cpp
Chris Lattner
2009-04-27
1
-799
/
+0
*
split decl writing out to its own PCHWriterDecl.cpp file.
Chris Lattner
2009-04-27
1
-445
/
+1
*
add stmt/expr names to BlockInfo block.
Chris Lattner
2009-04-27
1
-3
/
+77
*
drop the _ID suffixes from block names.
Chris Lattner
2009-04-27
1
-6
/
+6
*
add the decl names.
Chris Lattner
2009-04-26
1
-2
/
+26
*
make llvm-bcanalyzer dump out PCH files symbolically. We should probably
Chris Lattner
2009-04-26
1
-0
/
+107
*
Some fixes for PCH (de-)serialization of Objective-C AST nodes:
Douglas Gregor
2009-04-26
1
-9
/
+17
*
Add PCH read/write support for ObjC statements.
Steve Naroff
2009-04-26
1
-1
/
+54
*
Make sure we have a code in the node:-)
Steve Naroff
2009-04-26
1
-0
/
+4
*
When writing a PCH file, write multiple type and declaration blocks as
Douglas Gregor
2009-04-26
1
-12
/
+21
*
split ObjC and C++ Statements out into their own headers.
Chris Lattner
2009-04-26
1
-1
/
+0
*
implement PCH support for the rest of ExprObjC.h, including
Chris Lattner
2009-04-26
1
-3
/
+45
*
Don't read all of the records in the PCH file's preprocessor block,
Douglas Gregor
2009-04-26
1
-27
/
+28
*
PCH optimization for the identifier table, where we separate
Douglas Gregor
2009-04-25
1
-2
/
+36
*
Revert my changes that try to avoid creating StringMap entries for
Douglas Gregor
2009-04-25
1
-7
/
+1
*
Tweak the data layout for the on-disk hash table of identifiers in the PCH fi...
Douglas Gregor
2009-04-25
1
-1
/
+7
*
Write the identifier offsets array into the PCH file as a blob, so
Douglas Gregor
2009-04-25
1
-2
/
+13
*
Write the declaration and type offset arrays into the bitstream as
Douglas Gregor
2009-04-25
1
-3
/
+29
*
Load the selector table lazily from the PCH file.
Douglas Gregor
2009-04-25
1
-31
/
+44
*
Add PCH support for ObjCMessageExpr (needed to build Mail).
Steve Naroff
2009-04-25
1
-0
/
+16
*
Fix a major bug in PCHReader::ReadSelectorBlock().
Steve Naroff
2009-04-25
1
-5
/
+5
*
Add new checker-specific attribute 'objc_ownership_retain'. This isn't hooked up
Ted Kremenek
2009-04-25
1
-0
/
+1
*
Add new checker-specific attribute 'objc_ownership_returns'. This isn't hooked
Ted Kremenek
2009-04-24
1
-0
/
+1
[next]