Skip to content
  1. Jan 04, 2014
    • Alp Toker's avatar
      Revert "ToolingTest.cpp: Fix r158592,... · 59226f78
      Alp Toker authored
      Revert "ToolingTest.cpp: Fix r158592, runToolOnCode.FindsNoTopLevelDeclOnEmptyCode on msvc. LangOpts.MicrosoftExt still appends "class type_info;"."
      
      type_info has been made an implicitly predeclared type in r198497 and will no
      longer appear as a user-declared type so we can remove this old hack.
      
      This reverts commit r158595.
      
      llvm-svn: 198502
      59226f78
  2. Nov 13, 2013
  3. Nov 12, 2013
  4. Nov 08, 2013
  5. Nov 07, 2013
  6. Nov 06, 2013
    • Peter Collingbourne's avatar
      Introduce ClangTool::buildASTs, and buildASTFromCode. · c689ee76
      Peter Collingbourne authored
      These allow clients to retrieve persistent AST objects (ASTUnits) which
      can be used in an ad-hoc manner after parsing.
      
      To accommodate this change, the code for processing a CompilerInvocation
      using a FrontendAction has been factored out to FrontendActionFactory, and
      a new base class, ToolAction, has been introduced, allowing the tool to do
      arbitrary things with each CompilerInvocation.  This change was necessary
      because ASTUnit does not use the FrontendAction interface directly.
      
      This change also causes the FileManager in ClangTool to use shared ownership.
      This will become necessary because ASTUnit takes shared ownership of
      FileManager (ClangTool's FileManager is currently unused by ASTUnit; this
      is a FIXME).  As shown in the tests, any client of ToolInvocation will
      need to be modified to use shared ownership for FileManager.
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D2097
      
      llvm-svn: 194164
      c689ee76
  7. Oct 24, 2013
    • Manuel Klimek's avatar
      Use the same SourceManager for ModuleMaps and compilations. · 1f76c4e8
      Manuel Klimek authored
      This allows using virtual file mappings on the original SourceManager to
      map in virtual module.map files. Without this patch, the ModuleMap
      search will find a module.map file (as the FileEntry exists in the
      FileManager), but will be unable to get the content from the
      SourceManager (as ModuleMap previously created its own SourceManager).
      
      Two problems needed to be fixed which this patch exposed:
      
      1. Storing the inferred module map
      When writing out a module, the ASTWriter stores the names of the files
      in the main source manager; when loading the AST again, the ASTReader
      errs out if such a file is found missing, unless it is overridden.
      Previously CompilerInstance's compileModule method would store the
      inferred module map to a temporary file; the problem with this approach
      is that now that the module map is handled by the main source manager,
      the ASTWriter stores the name of the temporary module map as source to
      the compilation; later, when the module is loaded, the temporary file
      has already been deleted, which leads to a compilation error. This patch
      changes the inferred module map to instead inject a virtual file into
      the source manager. This both saves some disk IO, and works with how the
      ASTWriter/ASTReader handle overridden source files.
      
      2. Changing test input in test/Modules/Inputs/*
      Now that the module map file is handled by the main source manager, the
      VerifyDiagnosticConsumer will not ignore diagnostics created while
      parsing the module map file. The module test test/Modules/renamed.m uses
      -I test/Modules/Inputs and triggers recursive loading of all module maps
      in test/Modules/Inputs, some of which had conflicting names, thus
      leading errors while parsing the module maps. Those diagnostics already
      occur on trunk, but before this patch they would not break the test, as
      they were ignored by the VerifyDiagnosticConsumer. This patch thus
      changes the module maps that have been recently introduced which broke
      the invariant of compatible modules maps in test/Modules/Inputs.
      
      llvm-svn: 193314
      1f76c4e8
  8. Jun 04, 2013
  9. May 30, 2013
  10. May 29, 2013
    • Edwin Vane's avatar
      Tooling: Call back for both begin and end of sources · 20c6f54b
      Edwin Vane authored
      newFrontendActionFactory() took a pointer to a callback to call when a source
      file was done being processed by an action. This revision updates the callback
      to include an ante-processing callback as well.
      
      Callback-providing class renamed and callback functions themselves renamed.
      Functions are no longer pure-virtual so users aren't forced to implement both
      callbacks if one isn't needed.
      
      llvm-svn: 182864
      20c6f54b
  11. Jan 28, 2013
  12. Jan 12, 2013
  13. Nov 27, 2012
  14. Oct 25, 2012
  15. Jul 05, 2012
  16. Jun 16, 2012
  17. Jun 02, 2012
  18. Jun 01, 2012
  19. Apr 04, 2012
    • Manuel Klimek's avatar
      Adds a tooling library. · 47c245a5
      Manuel Klimek authored
      Provides an API to run clang tools (FrontendActions) as standalone tools,
      or repeatedly in-memory in a process. This is useful for unit-testing,
      map-reduce style applications, source transformation daemons or command line
      tools.
      
      The ability to run over multiple translation units with different command
      line arguments enables building up refactoring tools that need to apply
      transformations across translation unit boundaries.
      
      See tools/clang-check/ClangCheck.cpp for an example.
      
      llvm-svn: 154008
      47c245a5
  20. Jun 02, 2011
  21. Apr 27, 2011
    • Manuel Klimek's avatar
      This is the next step in building the standalone tools infrastructure: · 6825eebc
      Manuel Klimek authored
      This patch simplifies writing of standalone Clang tools. As an
      example, we add clang-check, a tool that runs a syntax only frontend
      action over a .cc file. When you integrate this into your favorite
      editor, you get much faster feedback on your compilation errors, thus
      reducing your feedback cycle especially when writing new code.
      
      The tool depends on integration of an outstanding patch to CMake to
      work which allows you to always have a current compile command
      database in your cmake output directory when you set
      CMAKE_EXPORT_COMPILE_COMMANDS.
      
      llvm-svn: 130306
      6825eebc
  22. Apr 21, 2011
Loading