- Apr 08, 2010
-
-
Chris Lattner authored
llvm-svn: 100708
-
- Apr 07, 2010
-
-
Chris Lattner authored
llvm-svn: 100687
-
Chris Lattner authored
of errors and warnings. This allows us to emit something like this: 2 warnings and 1 error generated. instead of: 3 diagnostics generated. This also stops counting 'notes' because they are just follow-on information about the previous diag, not a diagnostic in themselves. llvm-svn: 100675
-
- Apr 06, 2010
-
-
Chris Lattner authored
allowing backend errors to be mapped through clang's diagnostics subsystem, including the backend location info. We now get: $ clang asm.c -c -o t.o -integrated-as <inline asm>:1:2: error: unrecognized instruction abc incl %eax ^ 1 diagnostic generated. With colors, and correct "# diagnostics generated". llvm-svn: 100543
-
Chris Lattner authored
llvm-svn: 100537
-
Douglas Gregor authored
presence of precompiled headers by forcibly loading all of the methods we know about from the PCH file before constructing our code-completion list. llvm-svn: 100535
-
Douglas Gregor authored
maybe-ownership vs. ownership. llvm-svn: 100498
-
Chris Lattner authored
llvm-svn: 100484
-
- Apr 05, 2010
-
-
Douglas Gregor authored
ASTUnit. Previously, we would end up with use-after-free errors because the Diagnostic object would be creating in one place (say, CIndex) and its ownership would not be transferred into the ASTUnit. Fixes <rdar://problem/7818608>. llvm-svn: 100464
-
Douglas Gregor authored
- Rename "Diagnostics" and related to "StoredDiagnostics", to better capture what we're actually storing. - Move SourceManager and FileManager to the heap. llvm-svn: 100441
-
- Apr 01, 2010
-
-
Daniel Dunbar authored
Clang++ support, even in "Production" mode (for testing purposes). llvm-svn: 100119
-
- Mar 31, 2010
-
-
Douglas Gregor authored
the C-only "optimization". llvm-svn: 100022
-
Douglas Gregor authored
refactoring work in this area. llvm-svn: 100019
-
Douglas Gregor authored
llvm-svn: 100018
-
Douglas Gregor authored
term "fix-it" everywhere and even *I* get tired of long names sometimes. No functionality change. llvm-svn: 100008
-
Rafael Espindola authored
Fixes PR3782. llvm-svn: 99940
-
- Mar 30, 2010
-
-
Rafael Espindola authored
This introduces FunctionType::ExtInfo to hold the calling convention and the noreturn attribute. The next patch will extend it to include the regparm attribute and fix the bug. llvm-svn: 99920
-
Douglas Gregor authored
llvm-svn: 99894
-
- Mar 24, 2010
-
-
Douglas Gregor authored
llvm-svn: 99417
-
- Mar 23, 2010
-
-
Daniel Dunbar authored
PPCallbacks: Add hook for reaching the end of the main file, and fix DependencyFile to not do work in its destructor. llvm-svn: 99257
-
- Mar 21, 2010
-
-
Douglas Gregor authored
entry in a precompiled header, so that we can detect modified files even when we miss in the stat cache. llvm-svn: 99149
-
- Mar 20, 2010
-
-
Daniel Dunbar authored
- So much typing, so little gain... Also, rename the __cxx_global_initialization function just to match llvm-gcc. llvm-svn: 99039
-
- Mar 19, 2010
-
-
Douglas Gregor authored
ranges as part of the ASTContext. This code is not and was never used, but contributes ~250k to the size of the Cocoa.h precompiled header. llvm-svn: 99007
-
Douglas Gregor authored
record (which includes all macro instantiations and definitions). As with all lay deserialization, this introduces a new external source (here, an external preprocessing record source) that loads all of the preprocessed entities prior to iterating over the entities. The preprocessing record is an optional part of the precompiled header that is disabled by default (enabled with -detailed-preprocessing-record). When the preprocessor given to the PCH writer has a preprocessing record, that record is written into the PCH file. When the PCH reader is given a PCH file that contains a preprocessing record, it will be lazily loaded (which, effectively, implicitly adds -detailed-preprocessing-record). This is the first case where we have sections of the precompiled header that are added/removed based on a compilation flag, which is unfortunate. However, this data consumes ~550k in the PCH file for Cocoa.h (out of ~9.9MB), and there is a non-trivial cost to gathering this detailed preprocessing information, so it's too expensive to turn on by default. In the future, we should investigate a better encoding of this information. llvm-svn: 99002
-
Daniel Dunbar authored
actual action. - This is easier to use, and more reliable for timing the thing this was actually meant to be useful for. llvm-svn: 98978
-
Douglas Gregor authored
tie its creation to a CC1 flag -detailed-preprocessing-record. llvm-svn: 98963
-
- Mar 18, 2010
-
-
Ted Kremenek authored
llvm-svn: 98873
-
Douglas Gregor authored
the macro definitions and macro instantiations that are found during preprocessing. Preprocessing records are *not* generated by default; rather, we provide a PPCallbacks subclass that hooks into the existing callback mechanism to record this activity. The only client of preprocessing records is CIndex, which keeps track of macro definitions and instantations so that they can be exposed via cursors. At present, only token annotation uses these facilities, and only for macro instantiations; both will change in the near future. However, with this change, token annotation properly annotates macro instantiations that do not produce any tokens and instantiations of macros that are later undef'd, improving our consistency. Preprocessing directives that are not macro definitions are still handled by clang_annotateTokens() via re-lexing, so that we don't have to track every preprocessing directive in the preprocessing record. Performance impact of preprocessing records is still TBD, although it is limited to CIndex and therefore out of the path of the main compiler. llvm-svn: 98836
-
Kovarththanan Rajaratnam authored
llvm-svn: 98817
-
Kovarththanan Rajaratnam authored
llvm-svn: 98816
-
Ted Kremenek authored
the PCHReader more robust to corrupt or invalid PCH files. llvm-svn: 98788
-
- Mar 17, 2010
-
-
Douglas Gregor authored
source file has been changed. Handle that failure more gracefully. llvm-svn: 98727
-
Kovarththanan Rajaratnam authored
llvm-svn: 98722
-
Kovarththanan Rajaratnam authored
llvm-svn: 98721
-
Kovarththanan Rajaratnam authored
llvm-svn: 98719
-
Douglas Gregor authored
ASTUnit::LoadFromCompilerInvocation() fails to create target information. llvm-svn: 98697
-
- Mar 16, 2010
-
-
Douglas Gregor authored
llvm-svn: 98655
-
Douglas Gregor authored
presence or absence of header map arguments when using the precompiled header would cause Clang to get confused about which headers had already been included/imported, along with their controlling macros. The fundamental problem is that the serialization of the header search information was relying on the UIDs of FileEntry objects at PCH generation time and PCH load time to be equivalent, which effectively means that we had to probe the same files in the same order. Differing header map arguments caused an extra FileEntry lookup, but it's easy to imagine other minor command-line arguments triggering this problem. Header-search information is now encoded along with the source-location entry for a file, so that we register information about a file's properties as a header at the same time we create the FileEntry for that file. Fixes <rdar://problem/7743243>. llvm-svn: 98636
-
Benjamin Kramer authored
llvm-svn: 98631
-
Benjamin Kramer authored
llvm-svn: 98630
-