- aae76c9 this got moved to top level by Chris Lattner · 16 years ago
- b06b012 move this makefile goop up to the top level llvm makefile. by Chris Lattner · 16 years ago
- 2488261 Enable export maps also on {Free, Net}BSD. by Anton Korobeynikov · 16 years ago
- aa95c3b Add an export map for clang on Linux. by Owen Anderson · 16 years ago
- 48af2a9 Add experimental logic in GRExprEngine::EvalEagerlyAssume() to handle by Ted Kremenek · 16 years ago
- 2224f84 C99 DR #316 implies that the function parameter types that are known by Douglas Gregor · 16 years ago
- f2a223f PTH: Cache *un-cleaned* spellings for literals instead of cleaned spellings. by Ted Kremenek · 16 years ago
- 25cbd9f PTH: When emitting tokens for literals with cached spellings, change the token by Ted Kremenek · 16 years ago
- adcf5b3 Put compiler headers in <prefix>/lib/clang/1.0/include (vs by Daniel Dunbar · 16 years ago
- 9f4ecb3 Make 'RangeConstraintManager' the default ConstraintManager. by Ted Kremenek · 16 years ago
- f259f0f PTH generation: Clear the cleaning bit for literals (whose spellings are cached). by Ted Kremenek · 16 years ago
- 89951a8 remove some more methods from objc decls, using the iterator by Chris Lattner · 16 years ago
- cafeb35 remove some slow O(n) methods. by Chris Lattner · 16 years ago
- 07fa774 Change ObjCForwardProtocolDecl to use an ObjCList. by Chris Lattner · 16 years ago
- 6795605 move the interace list of @class to use ObjCList. by Chris Lattner · 16 years ago
- 6858dd3 fix a bug introduced in my previous patch: moving clang headers to the by Chris Lattner · 16 years ago
- b52ec74 always search for "builtin" headers at the end of the search path, by Chris Lattner · 16 years ago
- 8b76c0d don't print codegen time unless -ftime-report was passed. by Chris Lattner · 16 years ago
- 2085fd6 privatize all of the string literal memory allocation/creation by Chris Lattner · 16 years ago
- 726e168 change the StringLiteral AST node to track all of the SourceLocations of by Chris Lattner · 16 years ago
- d1dd229 Optimize dyld startup time by specifying a trivial export map by Chris Lattner · 16 years ago
- 4709974 add a bunch of timers for -E and other modes. This requires by Chris Lattner · 16 years ago
- 6f114eb teach -ftime-report to time the code generator and -emit-llvm times. by Chris Lattner · 16 years ago
- 4450266 move llvm backend specific #includes into Backend.cpp instead of Clang.cpp by Chris Lattner · 16 years ago
- 8a5c809 indentation and formatting by Chris Lattner · 16 years ago
- dddaa9c clang will hopefully never support ratfor. by Chris Lattner · 16 years ago
- b2509e1 wire up a minimal -ftime-report, which prints the optimizer/codegen by Chris Lattner · 16 years ago
- a034ba8 Backend: Accept -mcpu and -mattr for use by TargetMachine. by Daniel Dunbar · 16 years ago
- be1fe1e Static Analyzer driver/options (partial) cleanup: by Ted Kremenek · 16 years ago
- 5bef8dd add support for -fno-math-errno, and validate that it affects sema properly. by Chris Lattner · 16 years ago
- 5ea9d1b remove extraneous . by Chris Lattner · 16 years ago
- ef2abfe Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. by Daniel Dunbar · 16 years ago
- f06e9c5 RangeConstraintManager is not on by default. by Ted Kremenek · 16 years ago
- 7ad5bf3 castToDeclContext/castFromDeclContext are not meant to be used directly; they are used indirectly by cast/dyn_cast. by Argyrios Kyrtzidis · 16 years ago
- 3ada6ff PR3589: Don't simplify libcalls with -ffreestanding. by Daniel Dunbar · 16 years ago
- 3573c0c Add -ffreestanding to suppress the implicit declaration of library builtins like printf and malloc. Fixes PR3586 by Douglas Gregor · 16 years ago
- 4502195 Patch by Ben Laurie: by Ted Kremenek · 16 years ago
- ea684e6 Fix the build on win32. by Cedric Venet · 16 years ago
- 7ab41f7 Fix typo in printing of __private_extern__. by Daniel Dunbar · 16 years ago
- ad6ce5c PTH: Cache directory and negative 'stat' calls. This gives us a 1% performance improvement on Cocoa.h (fsyntax-only+PTH). by Ted Kremenek · 16 years ago
- a4b44dd Add some boilerplate to the PTH file to prepare for the caching of stats for directories (and negative stats too). by Ted Kremenek · 16 years ago
- 4d53a53 AnalysisConsumer: Explicitly destroy the PathDiagnosticClient at the end of HandleTranslationUnit to ensure that the client's destructor is called even with --disable-free. by Ted Kremenek · 16 years ago
- d7038e1 factor token concatenation avoidance logic out of by Chris Lattner · 16 years ago
- 337edcd PTH: Cache stat information for files in the PTH file. Hook up FileManager by Ted Kremenek · 16 years ago
- 05e7c6d for now, disable all debug info generation at -O1 and above. This mirrors by Chris Lattner · 16 years ago
- a4bd8eb PTH: Have meta data be at the beginning of the PTH file, not the end. by Ted Kremenek · 16 years ago
- 7e3a004 PTH: Replace string identifier to persistent ID lookup with a hashtable. This is by Ted Kremenek · 16 years ago
- e21dd6f Fix <rdar://problem/6243503> [sema] @throw; accepted outside catch block. by Steve Naroff · 16 years ago
- f1de464 PTH: Don't emit the PTH offset of the IdentifierInfo string data as that data is by Ted Kremenek · 16 years ago
- c5840c0 Add private extern to pretty printer(s). by Mike Stump · 16 years ago
- 726080d PTH generation: Discard tokens that appear after and on the same line as '#endif'. by Ted Kremenek · 16 years ago
- 2a2bb18 make -dM emit macros in a deterministic (sorted) order instead of by Chris Lattner · 16 years ago
- e4f6b1e PTH generation: Don't call 'EmitToken' in the loop condition. This is preparing for other changes within the loop. by Ted Kremenek · 16 years ago
- d8c0292 PTH: Replace ad hoc 'file name' -> 'PTH data' lookup table in the PTH file with an on-disk chained hash table. This data structure is implemented using templates, and will be used to replace similar data structures. This change leads to no visibile performance impact on Cocoa.h, but now we only pay a price for the table on order with the number of files accessed and not the number in the PTH file. by Ted Kremenek · 16 years ago
- eb213da use efficient form of getSpelling, this speeds up -dM by 16%. by Chris Lattner · 16 years ago
- 071e4da Fixup -ast-print so that: by Mike Stump · 16 years ago
- f0e1f79 Rearrange code. No functionality change. by Ted Kremenek · 16 years ago
- e0ea5dc Fix potential padding error in PTH file and add stub code for emitting an on-disk chained hash table. by Ted Kremenek · 16 years ago
- 668bf91 CallExpr now uses ASTContext's allocate to allocate/delete its array of subexpressions. by Ted Kremenek · 16 years ago
- 3cb0692 Make one expected-diag directive match exactly one actual diagnostic. by Sebastian Redl · 16 years ago
- 8189cde Overhaul of Stmt allocation: by Ted Kremenek · 16 years ago
- ddc29e1 Semantic checking for class template declarations and by Douglas Gregor · 16 years ago
- 6e94ef5 Move StringLiteral to allocate its internal string data using the allocator in by Ted Kremenek · 16 years ago
- f73903a Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 16 years ago
- c76d807 add support for -x c++-header, update comment. by Chris Lattner · 16 years ago
- 59076ab factor some code out into a helper function. by Chris Lattner · 16 years ago
- db76684 default diag::err_pp_file_not_found to mapping to fatal, by Chris Lattner · 16 years ago
- 76ad2e8 Put the invalid flag of OwningResult into the Action pointer. by Sebastian Redl · 16 years ago
- cf118d4 Overhaul BugReporter interface and implementation. The new interface cleans up by Ted Kremenek · 16 years ago
- d604c40 Add -femit-all-decls codegen option. by Daniel Dunbar · 16 years ago
- aaba5e3 Basic representation of C++ class templates, from Andrew Sutton. by Douglas Gregor · 16 years ago
- 4e69fd5 spelling change. by Chris Lattner · 16 years ago
- 30fc933 lower the interface to getLineNumber like we did for by Chris Lattner · 16 years ago
- 62c2632 Fix <rdar://problem/6521757> clang ObjC rewriter: Mixed Mac and Windows line endings after rewrite. by Steve Naroff · 16 years ago
- ebc07d5 Allow taking the address of data members, resulting in a member pointer. by Sebastian Redl · 16 years ago
- 0d0bf8c switch SourceManager from using an std::map and std::list of by Chris Lattner · 16 years ago
- a0f02aa Use the updated CommandLine api for -fno-blocks. by Mike Stump · 16 years ago
- 81922f0 AnalysisConsumer: by Ted Kremenek · 16 years ago
- df8570d RewriteObjC::RewriteBlockDeclRefExpr(): Add parens to enforce precedence. This fixes <rdar://problem/6529468> clang ObjC rewriter: Need parenthesis around dereferences in rewritten Blocks. by Steve Naroff · 16 years ago
- ad53eff Fix typo noticed by Chris. by Anders Carlsson · 16 years ago
- b0f90cc Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 16 years ago
- 65f5e64 wire up -fno-show-source-location option, patch by Alexei Svitkine! by Chris Lattner · 16 years ago
- 71d8bfb avoid emitting a bogus line marker for the top level #include by Chris Lattner · 16 years ago
- b55cc63 Add -fno-blocks support. This fixes block-no-block-def.c. by Mike Stump · 16 years ago
- d2ea386 Fix name of -x option for C preprocessed input; it should be by Daniel Dunbar · 16 years ago
- 19e8e2c next round of diagnostics cleanups, moving some by Chris Lattner · 16 years ago
- 88eccaf Fix -Wimplicit-function-declaration, which required some refactoring and by Chris Lattner · 16 years ago
- 1a36089 Fix a wart that existed from before we had EXTWARN. by Chris Lattner · 16 years ago
- 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
- 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
- 8a6aec6 Enhance PTHManager::Create() to take an optional Diagnostic* argument that can be used to report issues such as a missing PTH file. by Ted Kremenek · 16 years ago
- e86e4cd0 fix a crash I introduced, thanks to Ted for the awesome reduced testcase :) by Chris Lattner · 16 years ago
- 46157b5 Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pass as an argument a TranslationUnit object whose contents live beyond the call to ParseAST. by Ted Kremenek · 16 years ago
- 007f2a9 Add a preliminary version number. by Mike Stump · 16 years ago
- 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
- b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 16 years ago
- 52c2908 rename getFullFilePos -> getFileOffset. by Chris Lattner · 16 years ago
- 277faca PTH: Use Token::setLiteralData() to directly store a pointer to cached spelling data in the PTH file. This removes a ton of code for looking up spellings using sourcelocations in the PTH file. This simplifies both PTH-generation and reading. by Ted Kremenek · 16 years ago
- 67d1505 Add version number checking to PTH files. by Ted Kremenek · 16 years ago
- e1b6498 Embed the offset of the PTH table inside the prologue of the PTH file. This will help improve gradual versioning of PTH files instead of relying that the PTH table is at a fixed offset. by Ted Kremenek · 16 years ago