Searched refs:CompilerInstance (Results 1 - 25 of 70) sorted by relevance

123

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/FrontendTool/
H A DUtils.h21 class CompilerInstance;
28 std::unique_ptr<FrontendAction> CreateFrontendAction(CompilerInstance &CI);
34 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/
H A DAnalyzerHelpFlags.h18 class CompilerInstance;
22 void printCheckerHelp(llvm::raw_ostream &OS, CompilerInstance &CI);
23 void printEnabledCheckerList(llvm::raw_ostream &OS, CompilerInstance &CI);
25 void printCheckerConfigList(llvm::raw_ostream &OS, CompilerInstance &CI);
H A DFrontendActions.h31 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
49 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
H A DAnalysisConsumer.h27 class CompilerInstance;
56 CreateAnalysisConsumer(CompilerInstance &CI);
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/ARCMigrate/
H A DARCMTActions.h21 bool BeginInvocation(CompilerInstance &CI) override;
29 bool BeginInvocation(CompilerInstance &CI) override;
38 bool BeginInvocation(CompilerInstance &CI) override;
39 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
48 bool BeginInvocation(CompilerInstance &CI) override;
62 CompilerInstance *CompInst;
68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
70 bool BeginInvocation(CompilerInstance &CI) override;
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DFrontendActions.h28 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
38 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
55 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
61 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
67 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
73 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
79 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
95 static bool ComputeASTConsumerArguments(CompilerInstance &CI,
101 CreateOutputFile(CompilerInstance &CI, StringRef InFile,
104 bool BeginSourceFileAction(CompilerInstance
[all...]
H A DFrontendAction.h33 class CompilerInstance;
39 CompilerInstance *Instance;
44 std::unique_ptr<ASTConsumer> CreateWrappedASTConsumer(CompilerInstance &CI,
51 /// Prepare to execute the action on the given CompilerInstance.
55 virtual bool PrepareToExecuteAction(CompilerInstance &CI) { return true; }
70 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
79 virtual bool BeginInvocation(CompilerInstance &CI) { return true; }
85 virtual bool BeginSourceFileAction(CompilerInstance &CI) {
119 CompilerInstance &getCompilerInstance() const {
124 void setCompilerInstance(CompilerInstance *Valu
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.h31 class CompilerInstance;
40 ModelInjector(CompilerInstance &CI);
60 CompilerInstance &CI;
H A DFrontendActions.cpp16 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
24 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI,
H A DAnalyzerHelpFlags.cpp15 #include "clang/Frontend/CompilerInstance.h"
28 void ento::printCheckerHelp(raw_ostream &out, CompilerInstance &CI) {
40 void ento::printEnabledCheckerList(raw_ostream &out, CompilerInstance &CI) {
50 void ento::printCheckerConfigList(raw_ostream &out, CompilerInstance &CI) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Interpreter/
H A DIncrementalParser.h30 class CompilerInstance;
45 std::unique_ptr<CompilerInstance> CI;
61 IncrementalParser(std::unique_ptr<CompilerInstance> Instance,
65 const CompilerInstance *getCI() const { return CI.get(); }
H A DInterpreter.cpp28 #include "clang/Frontend/CompilerInstance.h"
63 static llvm::Expected<std::unique_ptr<CompilerInstance>>
65 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance());
102 // FIXME: Merge with CompilerInstance::ExecuteAction.
120 llvm::Expected<std::unique_ptr<CompilerInstance>>
176 Interpreter::Interpreter(std::unique_ptr<CompilerInstance> CI,
188 Interpreter::create(std::unique_ptr<CompilerInstance> CI) {
197 const CompilerInstance *Interpreter::getCompilerInstance() const {
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Rewrite/Frontend/
H A DFrontendActions.h25 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
34 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
37 bool BeginSourceFileAction(CompilerInstance &CI) override;
56 bool BeginInvocation(CompilerInstance &CI) override;
61 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
79 bool BeginSourceFileAction(CompilerInstance &CI) override;
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/Interpreter/
H A DInterpreter.h33 class CompilerInstance;
38 /// Create a pre-configured \c CompilerInstance for incremental processing.
41 static llvm::Expected<std::unique_ptr<CompilerInstance>>
51 Interpreter(std::unique_ptr<CompilerInstance> CI, llvm::Error &Err);
56 create(std::unique_ptr<CompilerInstance> CI);
57 const CompilerInstance *getCompilerInstance() const;
/netbsd-current/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
H A DASTSrcLocProcessor.h21 class CompilerInstance;
29 std::unique_ptr<ASTConsumer> createASTConsumer(CompilerInstance &Compiler,
/netbsd-current/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DARCMTActions.cpp11 #include "clang/Frontend/CompilerInstance.h"
16 bool CheckAction::BeginInvocation(CompilerInstance &CI) {
30 bool ModifyAction::BeginInvocation(CompilerInstance &CI) {
39 bool MigrateAction::BeginInvocation(CompilerInstance &CI) {
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp14 #include "clang/Frontend/CompilerInstance.h"
41 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
52 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
96 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI) {
115 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) {
164 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
186 CompilerInstance &CI = getCompilerInstance();
195 CompilerInstance &CI = getCompilerInstance();
204 CompilerInstance &CI;
210 RewriteImportsListener(CompilerInstance
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/examples/PrintFunctionNames/
H A DPrintFunctionNames.cpp18 #include "clang/Frontend/CompilerInstance.h"
26 CompilerInstance &Instance;
30 PrintFunctionsConsumer(CompilerInstance &Instance,
82 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
87 bool ParseArgs(const CompilerInstance &CI,
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/CodeGen/
H A DObjectFilePCHContainerOperations.h25 CreatePCHContainerGenerator(CompilerInstance &CI,
/netbsd-current/external/apache2/llvm/dist/clang/lib/Frontend/
H A DChainedIncludesSource.cpp17 #include "clang/Frontend/CompilerInstance.h"
32 ChainedIncludesSourceImpl(std::vector<std::unique_ptr<CompilerInstance>> CIs)
52 std::vector<std::unique_ptr<CompilerInstance>> CIs;
59 std::vector<std::unique_ptr<CompilerInstance>> CIs,
72 ChainedIncludesSource(std::vector<std::unique_ptr<CompilerInstance>> CIs,
80 createASTReader(CompilerInstance &CI, StringRef pchFile,
114 CompilerInstance &CI, IntrusiveRefCntPtr<ExternalSemaSource> &Reader) {
119 std::vector<std::unique_ptr<CompilerInstance>> CIs;
148 std::unique_ptr<CompilerInstance> Clang(
149 new CompilerInstance(C
[all...]
H A DFrontendActions.cpp15 #include "clang/Frontend/CompilerInstance.h"
37 CodeCompleteConsumer *GetCodeCompletionConsumer(CompilerInstance &CI) {
42 void EnsureSemaIsCreated(CompilerInstance &CI, FrontendAction &Action) {
58 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
70 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
78 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
87 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
92 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
97 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
125 bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance
[all...]
H A DCompilerInstance.cpp1 //===--- CompilerInstance.cpp ---------------------------------------------===//
9 #include "clang/Frontend/CompilerInstance.h"
58 CompilerInstance::CompilerInstance( function in class:CompilerInstance
67 CompilerInstance::~CompilerInstance() {
71 void CompilerInstance::setInvocation(
76 bool CompilerInstance::shouldBuildGlobalModuleIndex() const {
83 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) {
87 void CompilerInstance
[all...]
H A DASTMerge.cpp14 #include "clang/Frontend/CompilerInstance.h"
20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI) {
34 CompilerInstance &CI = getCompilerInstance();
/netbsd-current/external/mit/isl/dist/interface/
H A Dextract_interface.cc67 #include <clang/Frontend/CompilerInstance.h>
323 static TargetInfo *create_target_info(CompilerInstance *Clang,
333 static TargetInfo *create_target_info(CompilerInstance *Clang,
343 static TargetInfo *create_target_info(CompilerInstance *Clang,
355 static void create_diagnostics(CompilerInstance *Clang)
362 static void create_diagnostics(CompilerInstance *Clang)
371 static void create_preprocessor(CompilerInstance *Clang)
378 static void create_preprocessor(CompilerInstance *Clang)
430 static void set_lang_defaults(CompilerInstance *Clang)
442 static void set_lang_defaults(CompilerInstance *Clan
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/examples/AnnotateFunctions/
H A DAnnotateFunctions.cpp43 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
48 bool ParseArgs(const CompilerInstance &CI,

Completed in 372 milliseconds

123