Home
last modified time | relevance | path

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

12

/minix3/external/bsd/llvm/dist/clang/include/clang/Frontend/
H A DFrontendAction.h33 class CompilerInstance; variable
39 CompilerInstance *Instance;
44 std::unique_ptr<ASTConsumer> CreateWrappedASTConsumer(CompilerInstance &CI,
64 virtual std::unique_ptr<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()
211 bool BeginSourceFile(CompilerInstance &CI, const FrontendInputFile &Input);
241 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
[all …]
H A DFrontendActions.h29 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
44 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
50 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
56 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
62 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
74 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
88 static bool ComputeASTConsumerArguments(CompilerInstance &CI,
101 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
116 bool BeginSourceFileAction(CompilerInstance &CI, StringRef Filename) override;
[all …]
H A DCompilerInstance.h69 class CompilerInstance : public ModuleLoader {
160 CompilerInstance(const CompilerInstance &) LLVM_DELETED_FUNCTION;
161 void operator=(const CompilerInstance &) LLVM_DELETED_FUNCTION;
163 explicit CompilerInstance(bool BuildingModule = false);
164 ~CompilerInstance();
/minix3/external/bsd/llvm/dist/clang/include/clang/ARCMigrate/
H A DARCMTActions.h22 bool BeginInvocation(CompilerInstance &CI) override;
30 bool BeginInvocation(CompilerInstance &CI) override;
39 bool BeginInvocation(CompilerInstance &CI) override;
40 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
49 bool BeginInvocation(CompilerInstance &CI) override;
62 CompilerInstance *CompInst;
68 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
70 bool BeginInvocation(CompilerInstance &CI) override;
/minix3/external/bsd/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,
57 bool BeginInvocation(CompilerInstance &CI) override;
62 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/
H A DCompilerInstance.cpp54 CompilerInstance::CompilerInstance(bool BuildingModule) in CompilerInstance() function in CompilerInstance
61 CompilerInstance::~CompilerInstance() { in ~CompilerInstance()
65 void CompilerInstance::setInvocation(CompilerInvocation *Value) { in setInvocation()
69 bool CompilerInstance::shouldBuildGlobalModuleIndex() const { in shouldBuildGlobalModuleIndex()
76 void CompilerInstance::setDiagnostics(DiagnosticsEngine *Value) { in setDiagnostics()
80 void CompilerInstance::setTarget(TargetInfo *Value) { in setTarget()
84 void CompilerInstance::setFileManager(FileManager *Value) { in setFileManager()
92 void CompilerInstance::setSourceManager(SourceManager *Value) { in setSourceManager()
96 void CompilerInstance::setPreprocessor(Preprocessor *Value) { PP = Value; } in setPreprocessor()
98 void CompilerInstance::setASTContext(ASTContext *Value) { Context = Value; } in setASTContext()
[all …]
H A DFrontendActions.cpp37 InitOnlyAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
49 ASTPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
56 ASTDumpAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
63 ASTDeclListAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
68 ASTViewAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
73 DeclContextPrintAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
79 GeneratePCHAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
92 bool GeneratePCHAction::ComputeASTConsumerArguments(CompilerInstance &CI, in ComputeASTConsumerArguments()
117 GenerateModuleAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
256 bool GenerateModuleAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
[all …]
H A DASTMerge.cpp20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
35 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
H A DFrontendAction.cpp138 FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI, in CreateWrappedASTConsumer()
171 bool FrontendAction::BeginSourceFile(CompilerInstance &CI, in BeginSourceFile()
422 CompilerInstance &CI = getCompilerInstance(); in Execute()
443 CompilerInstance &CI = getCompilerInstance(); in EndSourceFile()
508 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
533 PreprocessorFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
539 WrapperFrontendAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
543 bool WrapperFrontendAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
546 bool WrapperFrontendAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
H A DChainedIncludesSource.cpp34 std::vector<CompilerInstance *> CIs;
76 createASTReader(CompilerInstance &CI, StringRef pchFile, in createASTReader()
113 CompilerInstance &CI, IntrusiveRefCntPtr<ExternalSemaSource> &Reader) { in createChainedIncludesSource()
147 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance()); in createChainedIncludesSource()
/minix3/external/bsd/llvm/dist/clang/unittests/Frontend/
H A DFrontendActionTest.cpp38 virtual bool BeginSourceFileAction(CompilerInstance &ci, StringRef filename) { in BeginSourceFileAction()
45 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
54 Visitor(CompilerInstance &CI, bool ActOnEndOfTranslationUnit, in Visitor()
72 CompilerInstance &CI;
87 CompilerInstance compiler; in TEST()
107 CompilerInstance compiler; in TEST()
134 CompilerInstance compiler; in TEST()
180 CompilerInstance Compiler; in TEST()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/
H A DFrontendActions.cpp34 HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
44 FixItAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
87 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI, in BeginSourceFileAction()
107 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
152 RewriteObjCAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
174 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
182 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
190 CompilerInstance &CI = getCompilerInstance(); in ExecuteAction()
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.h36 class CompilerInstance; variable
45 ModelInjector(CompilerInstance &CI);
65 CompilerInstance &CI;
H A DFrontendActions.cpp17 AnalysisAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) { in CreateASTConsumer()
25 ParseModelFileAction::CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
H A DModelInjector.cpp28 ModelInjector::ModelInjector(CompilerInstance &CI) : CI(CI) {} in ModelInjector()
79 CompilerInstance Instance; in onBodySynthesis()
/minix3/external/bsd/llvm/dist/clang/lib/ARCMigrate/
H A DARCMTActions.cpp17 bool CheckAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
30 bool ModifyAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
38 bool MigrateAction::BeginInvocation(CompilerInstance &CI) { in BeginInvocation()
/minix3/external/bsd/llvm/dist/clang/include/clang/FrontendTool/
H A DUtils.h20 class CompilerInstance; variable
26 bool ExecuteCompilerInvocation(CompilerInstance *Clang);
/minix3/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Frontend/
H A DAnalysisConsumer.h29 class CompilerInstance; variable
43 CreateAnalysisConsumer(CompilerInstance &CI);
H A DFrontendActions.h29 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
47 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI,
/minix3/external/bsd/llvm/dist/clang/examples/PrintFunctionNames/
H A DPrintFunctionNames.cpp39 std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
44 bool ParseArgs(const CompilerInstance &CI, in ParseArgs()
/minix3/external/bsd/llvm/dist/clang/unittests/AST/
H A DExternalASTSourceTest.cpp38 virtual std::unique_ptr<ASTConsumer> CreateASTConsumer(CompilerInstance &CI, in CreateASTConsumer()
48 CompilerInstance Compiler; in testExternalASTSource()
/minix3/external/bsd/llvm/dist/clang/tools/driver/
H A Dcc1_main.cpp67 std::unique_ptr<CompilerInstance> Clang(new CompilerInstance()); in cc1_main()
/minix3/external/bsd/llvm/dist/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp34 static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { in CreateFrontendBaseAction()
116 static FrontendAction *CreateFrontendAction(CompilerInstance &CI) { in CreateFrontendAction()
164 bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) { in ExecuteCompilerInvocation()
/minix3/external/bsd/llvm/dist/clang/include/clang/Tooling/
H A DTooling.h112 virtual bool handleBeginSource(CompilerInstance &CI, StringRef Filename) { in handleBeginSource()
341 CreateASTConsumer(clang::CompilerInstance &, StringRef) override { in newFrontendActionFactory()
346 bool BeginSourceFileAction(CompilerInstance &CI, in newFrontendActionFactory()
/minix3/external/bsd/llvm/dist/clang/docs/
H A DRAVFrontendAction.rst29 clang::CompilerInstance &Compiler, llvm::StringRef InFile) {
109 The ASTContext is available from the CompilerInstance during the call to
116 clang::CompilerInstance &Compiler, llvm::StringRef InFile) {
149 #include "clang/Frontend/CompilerInstance.h"
191 clang::CompilerInstance &Compiler, llvm::StringRef InFile) {

12