| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename attributes 'objc_ownership...' to 'ns_ownership...'. | Ted Kremenek | 2009-05-04 | 2 | -8/+8 |
* | Rename attributes: | Ted Kremenek | 2009-05-04 | 2 | -4/+4 |
* | Simplify the interesting-region code by assimmilating blocks of non-whitespac... | Douglas Gregor | 2009-05-04 | 1 | -57/+18 |
* | Tweak the extraction of the "interesting" part of a source range in two ways: | Douglas Gregor | 2009-05-04 | 1 | -4/+19 |
* | Fix an infinite loop in diagnostic printing. | Daniel Dunbar | 2009-05-03 | 1 | -7/+5 |
* | Fix crash in source-line truncation code for diagnostic | Douglas Gregor | 2009-05-03 | 1 | -2/+3 |
* | temporary hack to work around PR4128 | Chris Lattner | 2009-05-03 | 1 | -1/+1 |
* | When a fix-it hint would span multiple lines, don't print it; half a | Douglas Gregor | 2009-05-03 | 1 | -0/+21 |
* | When we truncate a source line to fit it within the terminal width, | Douglas Gregor | 2009-05-03 | 1 | -5/+6 |
* | Respect the COLUMNS environment variable for word-wrapping (so we get | Douglas Gregor | 2009-05-03 | 1 | -1/+2 |
* | When printing a source line as part of a diagnostic, the source line | Douglas Gregor | 2009-05-01 | 1 | -35/+180 |
* | Implement -fmessage-length=N, which word-wraps diagnostics to N columns. | Douglas Gregor | 2009-05-01 | 1 | -7/+211 |
* | Make a home for exception specs in the AST. Now Sema can hook them up. | Sebastian Redl | 2009-04-30 | 2 | -1/+14 |
* | initial support for __[u]int128_t, which should be basically | Chris Lattner | 2009-04-30 | 2 | -0/+4 |
* | BugReporter/PathDiagnostics: | Ted Kremenek | 2009-04-29 | 1 | -0/+1 |
* | In -fdiagnostics-print-source-range-info mode, print a space before the | Chris Lattner | 2009-04-28 | 1 | -1/+14 |
* | Implement ownership attribute 'objc_ownership_make_collectable'. This allows one | Ted Kremenek | 2009-04-28 | 2 | -2/+4 |
* | Make all PCH-incompatibility warnings into errors, and abort | Douglas Gregor | 2009-04-28 | 1 | -10/+1 |
* | Make the PCH reader use the diagnostics system for its complaints. | Douglas Gregor | 2009-04-28 | 2 | -52/+46 |
* | Optimize IdentifierInfo storage within the precompiled header. We've | Douglas Gregor | 2009-04-28 | 2 | -15/+10 |
* | Implement a minor space optimization for the PCH identifier table, | Douglas Gregor | 2009-04-28 | 2 | -12/+45 |
* | Replace a lame fprintf with a slightly-less lame diagnostic | Douglas Gregor | 2009-04-28 | 1 | -4/+4 |
* | Implement checking for macro definitions that occur on the command | Douglas Gregor | 2009-04-28 | 2 | -8/+33 |
* | Revert r70075 and r70078, which reorganized the PCH on-disk hash table | Douglas Gregor | 2009-04-28 | 2 | -76/+12 |
* | Allow some differences between the predefines buffer used to build a | Douglas Gregor | 2009-04-28 | 1 | -42/+182 |
* | Remove unused LangOptions NoExtensions and Boolean. | Eli Friedman | 2009-04-28 | 2 | -4/+0 |
* | Add a header containing the Clang version; make the driver use this | Douglas Gregor | 2009-04-27 | 2 | -10/+25 |
* | fix test/PCH/method_pool.m | Chris Lattner | 2009-04-27 | 1 | -1/+1 |
* | -E, -Eonly and -parse-noop now work with PCH! | Chris Lattner | 2009-04-27 | 1 | -0/+2 |
* | Teach PCH that ASTContext is optional. Move -parse-noop and -Eonly (so far) | Chris Lattner | 2009-04-27 | 3 | -125/+128 |
* | Be more careful in our teardown of the PCHReader after deciding to | Douglas Gregor | 2009-04-27 | 1 | -0/+8 |
* | Add Sema::ExtVectorDecls and Sema::ObjCCategoryImpls to the PCH file. Since t... | Douglas Gregor | 2009-04-27 | 2 | -0/+50 |
* | Add two new checker-specific attributes: 'objc_ownership_release' and | Ted Kremenek | 2009-04-27 | 2 | -0/+4 |
* | 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 | 2 | -3/+3 |
* | Implement caching of stat() calls for precompiled headers, which is | Douglas Gregor | 2009-04-27 | 2 | -3/+248 |
* | Add new checker-specific attribute 'objc_ownership_cfretain'. This is the same | Ted Kremenek | 2009-04-27 | 2 | -0/+2 |
* | encode the type and decl offsets with 32-bits for entry instead | Chris Lattner | 2009-04-27 | 2 | -4/+4 |
* | add an abbreviation for common PARM_VAR_DECL. All but 9 of the | Chris Lattner | 2009-04-27 | 2 | -7/+69 |
* | fix a couple more places that should be using the DeclCursor instead | Chris Lattner | 2009-04-27 | 1 | -11/+10 |
* | Load most of the source manager's information lazily from the PCH | Douglas Gregor | 2009-04-27 | 2 | -124/+234 |
* | split expr/stmt writing out to PCHWriterStmt.cpp | Chris Lattner | 2009-04-27 | 3 | -799/+822 |
* | split decl writing out to its own PCHWriterDecl.cpp file. | Chris Lattner | 2009-04-27 | 3 | -445/+470 |
* | unclone SavedStreamPosition | Chris Lattner | 2009-04-27 | 2 | -35/+0 |
* | move attribute reading to PCHReaderDecl.cpp, remove some | Chris Lattner | 2009-04-27 | 2 | -212/+165 |
* | read all decls (and attributes and stmts/exprs referenced by the decl) | Chris Lattner | 2009-04-27 | 3 | -24/+25 |
* | rename GetStmt -> GetDeclStmt to make it clear that the stmt read | Chris Lattner | 2009-04-27 | 1 | -1/+6 |
* | change the interface to ReadStmt to force clients to pass a cursor in to read... | Chris Lattner | 2009-04-27 | 3 | -18/+18 |
* | split decl reading out to its own PCHReaderDecl.cpp file. | Chris Lattner | 2009-04-27 | 3 | -585/+629 |
* | split stmt/expr deserialization out to PCHReaderStmt.cpp | Chris Lattner | 2009-04-27 | 3 | -1114/+1150 |