aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Frontend/Utils.h
AgeCommit message (Expand)Author
2013-01-15[driver] Warnings for warning options are handled by the frontend. The drive...Chad Rosier
2012-02-20Basic: import IntrusiveRefCntPtr<> into clang namespaceDylan Noblesmith
2012-02-04Some compilers do require Diagnostic.h to be present here.Benjamin Kramer
2012-02-04Don't include Diagnostics.h twice when it's required zero times.Benjamin Kramer
2012-02-02Introduce a -cc1 option "-dependency-graphviz" that determines headerDouglas Gregor
2011-12-09Move a free function from the Frontend library into the Lex library asChandler Carruth
2011-11-09Fixing 80 col violations (& removing any trailing whitespace on files I was t...David Blaikie
2011-09-25Rename Diagnostic to DiagnosticsEngine as per issue 5397David Blaikie
2011-07-23Move ArrayRef to LLVM.h and eliminate now-redundant qualifiers, patch by Jon ...Chris Lattner
2011-07-20add raw_ostream and Twine to LLVM.h, eliminating a ton of llvm:: qualifications.Chris Lattner
2011-07-20now that we have a centralized place to do so, add some using declarations forChris Lattner
2011-06-15Automatic Reference Counting.John McCall
2011-06-04Remove the old implementation of -verify, which has been dead code since r88750.Richard Smith
2011-04-05Fix building with gcc.Argyrios Kyrtzidis
2011-04-04Move Driver::createInvocationFromArgs function to Frontend library to avoid d...Argyrios Kyrtzidis
2011-03-21Frontend: Change CC_PRINT_HEADERS to not print header depth markers, these don'tDaniel Dunbar
2011-02-23Preserve what the user passed to -include when emitting .d files. Fixes PR8974!Nick Lewycky
2011-02-02Frontend: Add support (unused) for showing all "interesting" headers, not justDaniel Dunbar
2011-02-02Frontend: Factor out header include dumping (-H) into its own preprocessorDaniel Dunbar
2010-11-23now the FileManager has a FileSystemOpts ivar, stop threadingChris Lattner
2010-11-03Implement -working-directory.Argyrios Kyrtzidis
2010-08-24Move ExecuteCompilerInvocation to a new library FrontendToolPeter Collingbourne
2010-08-12Frontend: Move the bulk of the cc1_main() processing intoDaniel Dunbar
2010-07-26Eliminate the "minimal" and printing parser actions, which only everDouglas Gregor
2010-06-15Break Frontend's dependency on Rewrite, Checker and CodeGen in shared library...Daniel Dunbar
2010-03-17Simplify ProcessWarningOptions since it can't failKovarththanan Rajaratnam
2010-01-20Fix a layering issue between Basic and FE by moving a utility class into Basic.Chandler Carruth
2010-01-13Predefine __weak attribute when doing objective-cFariborz Jahanian
2010-01-09Move MacroBuilder into Frontend/Utils.h and clean it up a bit.Benjamin Kramer
2009-11-12Move warning options into DiagnosticOptions.Daniel Dunbar
2009-11-11Tweak PCH -include handling to make sure it matches the name as would be presentDaniel Dunbar
2009-11-11Always initialize the header search object as part of InitializePreprocessor;Daniel Dunbar
2009-11-11Allow Preprocessor to take ownership of the HeaderSearch object. I think it s...Daniel Dunbar
2009-11-11Sink AttachDependencyFileGen into CreatePreprocessor.Daniel Dunbar
2009-11-11Add DependencyOutputOptions to wrap -M... options, and propogate toDaniel Dunbar
2009-11-11Add PreprocessorOutputOptions to CompilerInvocation, and move initialization toDaniel Dunbar
2009-11-11Add PreprocessorOutputOptions, for things like -dM, -C, -CC which control -EDaniel Dunbar
2009-11-09Privatize InitHeaderSearch, this functionality is only exposed viaDaniel Dunbar
2009-11-07Rename PreprocessorInitOptions to PreprocessorOptions for consistency, and fixDaniel Dunbar
2009-11-04Kill PreprocessorFactory, which was both morally repugnant and totally unused.Daniel Dunbar
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-07-06Move the 'ResolveLocationInAST' function from the Frontend library to the Ind...Argyrios Kyrtzidis
2009-07-06Move ASTLocation and DeclReferenceMap from the AST library to the Index library.Argyrios Kyrtzidis
2009-07-06Rename 'ASTNode' -> 'ASTLocation'.Argyrios Kyrtzidis
2009-07-05Make use of ASTNode for return value of clang::ResolveLocationInAST() and in ...Argyrios Kyrtzidis
2009-06-25Introduce the ResolveLocationInAST function which takes an ASTContext and a S...Argyrios Kyrtzidis
2009-05-19Move clang-cc.h to lib/Frontend/Utils.h, and move the associated .cpp Eli Friedman