Skip to content
Snippets Groups Projects
  1. Dec 13, 2013
  2. Dec 05, 2013
  3. Nov 17, 2013
  4. Jan 12, 2013
  5. Dec 04, 2012
  6. Oct 15, 2012
  7. Aug 24, 2012
  8. Jul 17, 2012
  9. Jul 13, 2012
  10. Jul 11, 2012
  11. Jul 10, 2012
  12. May 24, 2012
  13. May 15, 2012
  14. Apr 18, 2012
  15. Apr 17, 2012
    • Manuel Klimek's avatar
      Switches the JSONCompilationDatabase to use the YAML parser. · c661f146
      Manuel Klimek authored
      This will allow us to delete the JSON parser from llvm.
      
      The biggest change is a general change of strategy - instead
      of storing StringRef's to the values for the command line and
      directory in the input buffer, we store ScalarNode*'s. The
      reason is that the YAML parser's getRawValue on ScalarNodes
      returns a string that includes the quotes in case of double
      quoted strings.
      
      For the same reason we're removing the JSON parsing part of
      the command line parsing - this means an extra copy for a
      command line when it is requested (and only when it is requested).
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154929 91177308-0d34-0410-b5e6-96231b3b80d8
      c661f146
  16. Apr 04, 2012
    • Manuel Klimek's avatar
      Adds a tooling library. · cb971c67
      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.
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154008 91177308-0d34-0410-b5e6-96231b3b80d8
      cb971c67
Loading