Skip to content
Snippets Groups Projects
  1. Jun 12, 2015
  2. Jun 01, 2015
  3. May 29, 2015
    • Benjamin Kramer's avatar
      Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types · b7b56528
      Benjamin Kramer authored
      If the type isn't trivially moveable emplace can skip a potentially
      expensive move. It also saves a couple of characters.
      
      
      Call sites were found with the ASTMatcher + some semi-automated cleanup.
      
      memberCallExpr(
          argumentCountIs(1), callee(methodDecl(hasName("push_back"))),
          on(hasType(recordDecl(has(namedDecl(hasName("emplace_back")))))),
          hasArgument(0, bindTemporaryExpr(
                             hasType(recordDecl(hasNonTrivialDestructor())),
                             has(constructExpr()))),
          unless(isInTemplateInstantiation()))
      
      No functional change intended.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@238601 91177308-0d34-0410-b5e6-96231b3b80d8
      b7b56528
  4. May 21, 2015
  5. May 15, 2015
  6. May 04, 2015
  7. May 02, 2015
  8. May 01, 2015
  9. Apr 30, 2015
  10. Apr 28, 2015
  11. Apr 24, 2015
  12. Apr 23, 2015
  13. Apr 22, 2015
  14. Dec 18, 2014
    • Serge Pavlov's avatar
      Fixed warnings on redefine keywords and reserved ids. · d7d40b7a
      Serge Pavlov authored
      Repared support for warnings -Wkeyword-macro and -Wreserved-id-macro.
      The warning -Wkeyword-macro now is not issued in patterns that are used
      in configuration scripts:
      
          #define inline
      
      also for 'const', 'extern' and 'static'. If macro repalcement is identical
      to macro name, the warning also is not issued:
      
          #define volatile volatile
      
      And finally if macro replacement is also a keyword identical to the replaced
      one but decorated with leading/trailing underscores:
      
          #define inline __inline
          #define inline __inline__
          #define inline _inline // in MSVC compatibility mode
      
      Warning -Wreserved-id-macro is off by default, it could help catching
      things like:
      
          #undef __cplusplus
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@224512 91177308-0d34-0410-b5e6-96231b3b80d8
      d7d40b7a
  15. Dec 05, 2014
  16. Dec 02, 2014
  17. Nov 14, 2014
  18. Oct 24, 2014
  19. Oct 20, 2014
    • Richard Smith's avatar
      [modules] Add support for #include_next. · ccaf6244
      Richard Smith authored
      #include_next interacts poorly with modules: it depends on where in the list of
      include paths the current file was found. Files covered by module maps are not
      found in include search paths when building the module (and are not found in
      include search paths when @importing the module either), so this isn't really
      meaningful. Instead, we fake up the result that #include_next *should* have
      given: find the first path that would have resulted in the given file being
      picked, and search from there onwards.
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220177 91177308-0d34-0410-b5e6-96231b3b80d8
      ccaf6244
  20. Oct 19, 2014
  21. Sep 23, 2014
  22. Sep 15, 2014
  23. Sep 12, 2014
  24. Sep 10, 2014
  25. Aug 29, 2014
  26. Aug 27, 2014
    • Ted Kremenek's avatar
      Add support for the static analyzer to synthesize function implementations... · fdf0d351
      Ted Kremenek authored
      Add support for the static analyzer to synthesize function implementations from external model files.
      
      Currently the analyzer lazily models some functions using 'BodyFarm',
      which constructs a fake function implementation that the analyzer
      can simulate that approximates the semantics of the function when
      it is called.  BodyFarm does this by constructing the AST for
      such definitions on-the-fly.  One strength of BodyFarm
      is that all symbols and types referenced by synthesized function
      bodies are contextual adapted to the containing translation unit.
      The downside is that these ASTs are hardcoded in Clang's own
      source code.
      
      A more scalable model is to allow these models to be defined as source
      code in separate "model" files and have the analyzer use those
      definitions lazily when a function body is needed.  Among other things,
      it will allow more customization of the analyzer for specific APIs
      and platforms.
      
      This patch provides the initial infrastructure for this feature.
      It extends BodyFarm to use an abstract API 'CodeInjector' that can be
      used to synthesize function bodies.  That 'CodeInjector' is
      implemented using a new 'ModelInjector' in libFrontend, which lazily
      parses a model file and injects the ASTs into the current translation
      unit.  
      
      Models are currently found by specifying a 'model-path' as an
      analyzer option; if no path is specified the CodeInjector is not
      used, thus defaulting to the current behavior in the analyzer.
      
      Models currently contain a single function definition, and can
      be found by finding the file <function name>.model.  This is an
      initial starting point for something more rich, but it bootstraps
      this feature for future evolution.
      
      This patch was contributed by Gábor Horváth as part of his
      Google Summer of Code project.
      
      Some notes:
      
      - This introduces the notion of a "model file" into
        FrontendAction and the Preprocessor.  This nomenclature
        is specific to the static analyzer, but possibly could be
        generalized.  Essentially these are sources pulled in
        exogenously from the principal translation.
      
        Preprocessor gets a 'InitializeForModelFile' and
        'FinalizeForModelFile' which could possibly be hoisted out
        of Preprocessor if Preprocessor exposed a new API to
        change the PragmaHandlers and some other internal pieces.  This
        can be revisited.
      
        FrontendAction gets a 'isModelParsingAction()' predicate function
        used to allow a new FrontendAction to recycle the Preprocessor
        and ASTContext.  This name could probably be made something
        more general (i.e., not tied to 'model files') at the expense
        of losing the intent of why it exists.  This can be revisited.
      
      - This is a moderate sized patch; it has gone through some amount of
        offline code review.  Most of the changes to the non-analyzer
        parts are fairly small, and would make little sense without
        the analyzer changes.
      
      - Most of the analyzer changes are plumbing, with the interesting
        behavior being introduced by ModelInjector.cpp and
        ModelConsumer.cpp.
      
      - The new functionality introduced by this change is off-by-default.
        It requires an analyzer config option to enable.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@216550 91177308-0d34-0410-b5e6-96231b3b80d8
      fdf0d351
  27. Aug 04, 2014
Loading