Home
last modified time | relevance | path

Searched refs:CompilerInstance (Results 1 – 25 of 32) sorted by relevance

12

/trueos/contrib/llvm/tools/clang/include/clang/Frontend/
HDFrontendAction.h33 class CompilerInstance; variable
39 CompilerInstance *Instance;
44 ASTConsumer* CreateWrappedASTConsumer(CompilerInstance &CI,
64 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
73 virtual bool BeginInvocation(CompilerInstance &CI) { return true; } in BeginInvocation()
79 virtual bool BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
114 CompilerInstance &getCompilerInstance() const { in getCompilerInstance()
119 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; } in setCompilerInstance()
203 bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input);
232 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
[all …]
HDFrontendActions.h28 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
43 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
49 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
55 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
61 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
67 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
73 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
87 static bool ComputeASTConsumerArguments(CompilerInstance &CI,
99 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
112 virtual bool BeginSourceFileAction(CompilerInstance &CI, StringRef Filename);
[all …]
HDChainedIncludesSource.h21 class CompilerInstance; variable
27 static ChainedIncludesSource *create(CompilerInstance &CI);
32 std::vector<CompilerInstance *> CIs;
HDCompilerInstance.h67 class CompilerInstance : public ModuleLoader {
141 CompilerInstance(const CompilerInstance &) LLVM_DELETED_FUNCTION;
142 void operator=(const CompilerInstance &) LLVM_DELETED_FUNCTION;
144 CompilerInstance();
145 ~CompilerInstance();
/trueos/contrib/llvm/tools/clang/include/clang/ARCMigrate/
HDARCMTActions.h22 virtual bool BeginInvocation(CompilerInstance &CI);
30 virtual bool BeginInvocation(CompilerInstance &CI);
39 virtual bool BeginInvocation(CompilerInstance &CI);
40 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
49 virtual bool BeginInvocation(CompilerInstance &CI);
62 CompilerInstance *CompInst;
68 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,StringRef InFile);
69 virtual bool BeginInvocation(CompilerInstance &CI);
/trueos/contrib/llvm/tools/clang/lib/Frontend/
HDCompilerInstance.cpp52 CompilerInstance::CompilerInstance() in CompilerInstance() function in CompilerInstance
57 CompilerInstance::~CompilerInstance() { in ~CompilerInstance()
61 void CompilerInstance::setInvocation(CompilerInvocation *Value) { in setInvocation()
65 bool CompilerInstance::shouldBuildGlobalModuleIndex() const { in shouldBuildGlobalModuleIndex()
72 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) { in setDiagnostics()
76 void CompilerInstance::setTarget(TargetInfo *Value) { in setTarget()
80 void CompilerInstance::setFileManager(FileManager *Value) { in setFileManager()
84 void CompilerInstance::setSourceManager(SourceManager *Value) { in setSourceManager()
88 void CompilerInstance::setPreprocessor(Preprocessor *Value) { PP = Value; } in setPreprocessor()
90 void CompilerInstance::setASTContext(ASTContext *Value) { Context = Value; } in setASTContext()
[all …]
HDFrontendActions.cpp36 ASTConsumer *InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
48 ASTConsumer *ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
55 ASTConsumer *ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
61 ASTConsumer *ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
66 ASTConsumer *ASTViewAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
71 ASTConsumer *DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
76 ASTConsumer *GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
89 bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI, in ComputeASTConsumerArguments()
113 ASTConsumer *GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
213 bool GenerateModuleAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
[all …]
HDFrontendAction.cpp128 ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer()
162 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile()
365 CompilerInstance &CI = getCompilerInstance(); in Execute()
393 CompilerInstance &CI = getCompilerInstance(); in EndSourceFile()
457 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
482 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
487 ASTConsumer *WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
491 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
494 bool WrapperFrontendAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
HDASTMerge.cpp19 ASTConsumer *ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
35 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
HDChainedIncludesSource.cpp28 static ASTReader *createASTReader(CompilerInstance &CI, in createASTReader()
65 ChainedIncludesSource *ChainedIncludesSource::create(CompilerInstance &CI) { in create()
99 OwningPtr<CompilerInstance> Clang(new CompilerInstance()); in create()
HDASTUnit.cpp671 Diags = CompilerInstance::createDiagnostics(new DiagnosticOptions(), in ConfigureDiags()
973 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
998 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
1061 ASTConsumer *PrecompilePreambleAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
1123 OwningPtr<CompilerInstance> Clang(new CompilerInstance()); in Parse()
1126 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance> in Parse()
1581 OwningPtr<CompilerInstance> Clang(new CompilerInstance()); in getMainBufferWithPrecompiledPreamble()
1584 llvm::CrashRecoveryContextCleanupRegistrar<CompilerInstance> in getMainBufferWithPrecompiledPreamble()
1720 void ASTUnit::transferASTDataFromCompilerInstance(CompilerInstance &CI) { in transferASTDataFromCompilerInstance()
1827 OwningPtr<CompilerInstance> Clang(new CompilerInstance()); in LoadFromCompilerInvocationAction()
[all …]
HDCreateInvocationFromCommandLine.cpp38 Diags = CompilerInstance::createDiagnostics(new DiagnosticOptions); in createInvocationFromCommandLine()
/trueos/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/
HDFrontendActions.h25 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
34 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
37 virtual bool BeginSourceFileAction(CompilerInstance &CI,
57 virtual bool BeginInvocation(CompilerInstance &CI);
62 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
/trueos/contrib/llvm/tools/clang/lib/Rewrite/Frontend/
HDFrontendActions.cpp33 ASTConsumer *HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
43 ASTConsumer *FixItAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
87 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
107 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
153 ASTConsumer *RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
170 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
178 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
186 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
/trueos/contrib/llvm/tools/clang/lib/ARCMigrate/
HDARCMTActions.cpp17 bool CheckAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
30 bool ModifyAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
38 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
/trueos/contrib/llvm/tools/clang/include/clang/FrontendTool/
HDUtils.h20 class CompilerInstance; variable
26 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
/trueos/contrib/llvm/tools/clang/tools/driver/
HDcc1_main.cpp61 OwningPtr<CompilerInstance> Clang(new CompilerInstance()); in cc1_main()
/trueos/contrib/llvm/tools/clang/lib/FrontendTool/
HDExecuteCompilerInvocation.cpp33 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction()
129 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction()
178 bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) { in ExecuteCompilerInvocation()
/trueos/contrib/llvm/tools/clang/include/clang/Tooling/
HDTooling.h110 virtual bool handleBeginSource(CompilerInstance &CI, StringRef Filename) { in handleBeginSource()
335 clang::ASTConsumer *CreateASTConsumer(clang::CompilerInstance &, in newFrontendActionFactory()
341 virtual bool BeginSourceFileAction(CompilerInstance &CI, in newFrontendActionFactory()
/trueos/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/
HDFrontendActions.cpp16 ASTConsumer *AnalysisAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
/trueos/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/
HDFrontendActions.h25 virtual ASTConsumer *CreateASTConsumer(CompilerInstance &CI,
/trueos/contrib/llvm/tools/clang/lib/CodeGen/
HDCodeGenAction.cpp322 static raw_ostream *GetOutputStream(CompilerInstance &CI, in GetOutputStream()
342 ASTConsumer *CodeGenAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
386 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
/trueos/lib/clang/libclangfrontend/
HDMakefile14 CompilerInstance.cpp \
/trueos/contrib/llvm/tools/lldb/include/lldb/Expression/
HDClangExpressionParser.h141 …std::unique_ptr<clang::CompilerInstance> m_compiler; ///< The Clang compiler used to p…
/trueos/contrib/llvm/tools/lldb/source/Expression/
HDClangExpressionParser.cpp109 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction()
162 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction()
197 m_compiler.reset(new CompilerInstance()); in ClangExpressionParser()

12