clang  19.0.0git
IncrementalExecutor.h
Go to the documentation of this file.
1 //===--- IncrementalExecutor.h - Incremental Execution ----------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file implements the class which performs incremental code execution.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef LLVM_CLANG_LIB_INTERPRETER_INCREMENTALEXECUTOR_H
14 #define LLVM_CLANG_LIB_INTERPRETER_INCREMENTALEXECUTOR_H
15 
16 #include "llvm/ADT/DenseMap.h"
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/ExecutionEngine/Orc/ExecutionUtils.h"
19 #include "llvm/ExecutionEngine/Orc/Shared/ExecutorAddress.h"
20 
21 #include <memory>
22 
23 namespace llvm {
24 class Error;
25 namespace orc {
26 class JITTargetMachineBuilder;
27 class LLJIT;
28 class LLJITBuilder;
29 class ThreadSafeContext;
30 } // namespace orc
31 } // namespace llvm
32 
33 namespace clang {
34 
35 struct PartialTranslationUnit;
36 class TargetInfo;
37 
39  using CtorDtorIterator = llvm::orc::CtorDtorIterator;
40  std::unique_ptr<llvm::orc::LLJIT> Jit;
41  llvm::orc::ThreadSafeContext &TSCtx;
42 
43  llvm::DenseMap<const PartialTranslationUnit *, llvm::orc::ResourceTrackerSP>
44  ResourceTrackers;
45 
46 public:
48 
49  IncrementalExecutor(llvm::orc::ThreadSafeContext &TSC,
50  llvm::orc::LLJITBuilder &JITBuilder, llvm::Error &Err);
52 
53  llvm::Error addModule(PartialTranslationUnit &PTU);
54  llvm::Error removeModule(PartialTranslationUnit &PTU);
55  llvm::Error runCtors() const;
56  llvm::Error cleanUp();
58  getSymbolAddress(llvm::StringRef Name, SymbolNameKind NameKind) const;
59 
60  llvm::orc::LLJIT &GetExecutionEngine() { return *Jit; }
61 
63  createDefaultJITBuilder(llvm::orc::JITTargetMachineBuilder JTMB);
64 };
65 
66 } // end namespace clang
67 
68 #endif // LLVM_CLANG_LIB_INTERPRETER_INCREMENTALEXECUTOR_H
llvm::Error addModule(PartialTranslationUnit &PTU)
IncrementalExecutor(llvm::orc::ThreadSafeContext &TSC, llvm::orc::LLJITBuilder &JITBuilder, llvm::Error &Err)
llvm::Expected< llvm::orc::ExecutorAddr > getSymbolAddress(llvm::StringRef Name, SymbolNameKind NameKind) const
static llvm::Expected< std::unique_ptr< llvm::orc::LLJITBuilder > > createDefaultJITBuilder(llvm::orc::JITTargetMachineBuilder JTMB)
llvm::orc::LLJIT & GetExecutionEngine()
llvm::Error removeModule(PartialTranslationUnit &PTU)
The JSON file list parser is used to communicate input to InstallAPI.
Diagnostic wrappers for TextAPI types for error reporting.
Definition: Dominators.h:30
The class keeps track of various objects created as part of processing incremental inputs.