summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/cpp11-migrate/Core/SyntaxCheck.cpp
blob: 7315768f3608215adf2737dc8f1d55de4aadb933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//===-- Core/SyntaxCheck.cpp ----------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file
/// \brief This file exposes functionaliy for doing a syntax-only check on
/// files with overridden contents.
///
//===----------------------------------------------------------------------===//

#include "Core/SyntaxCheck.h"
#include "Core/FileOverrides.h"
#include "clang/Frontend/CompilerInstance.h"
#include "clang/Frontend/FrontendActions.h"
#include "clang/Tooling/Tooling.h"

using namespace clang;
using namespace tooling;

class SyntaxCheck : public SyntaxOnlyAction {
public:
  SyntaxCheck(const FileOverrides &Overrides) : Overrides(Overrides) {}

  virtual bool BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) {
    if (!SyntaxOnlyAction::BeginSourceFileAction(CI, Filename))
      return false;

    FileOverrides::const_iterator I = Overrides.find(Filename);
    if (I != Overrides.end())
      I->second->applyOverrides(CI.getSourceManager());

    return true;
  }

private:
  const FileOverrides &Overrides;
};

class SyntaxCheckFactory : public FrontendActionFactory {
public:
  SyntaxCheckFactory(const FileOverrides &Overrides)
      : Overrides(Overrides) {}

  virtual FrontendAction *create() { return new SyntaxCheck(Overrides); }

private:
  const FileOverrides &Overrides;
};

class SyntaxArgumentsAdjuster : public ArgumentsAdjuster {
  CommandLineArguments Adjust(const CommandLineArguments &Args) {
    CommandLineArguments AdjustedArgs = Args;
    AdjustedArgs.push_back("-fsyntax-only");
    AdjustedArgs.push_back("-std=c++11");
    return AdjustedArgs;
  }
};

bool doSyntaxCheck(const CompilationDatabase &Database,
                   const std::vector<std::string> &SourcePaths,
                   const FileOverrides &Overrides) {
  ClangTool SyntaxTool(Database, SourcePaths);

  // Ensure C++11 support is enabled.
  // FIXME: This isn't necessary anymore since the Migrator requires C++11
  // to be enabled in the CompilationDatabase. Remove later.
  SyntaxTool.setArgumentsAdjuster(new SyntaxArgumentsAdjuster);

  return SyntaxTool.run(new SyntaxCheckFactory(Overrides)) == 0;
}
OpenPOWER on IntegriCloud