LLVM 19.0.0git
Classes | Namespaces | Typedefs | Enumerations | Variables
ExecutionEngine.h File Reference
#include "llvm-c/ExecutionEngine.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringMap.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/ExecutionEngine/JITSymbol.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/Module.h"
#include "llvm/Object/Binary.h"
#include "llvm/Support/CBindingWrapping.h"
#include "llvm/Support/CodeGen.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/Mutex.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Target/TargetOptions.h"
#include <algorithm>
#include <cstdint>
#include <functional>
#include <map>
#include <memory>
#include <optional>
#include <string>
#include <vector>

Go to the source code of this file.

Classes

class  llvm::ExecutionEngineState
 Helper class for helping synchronize access to the global address map table. More...
 
class  llvm::ExecutionEngine
 Abstract interface for implementation execution of LLVM modules, designed to support both interpreter and just-in-time (JIT) compiler implementations. More...
 
class  llvm::EngineBuilder
 Builder class for ExecutionEngines. More...
 

Namespaces

namespace  llvm
 This is an optimization pass for GlobalISel generic memory operations.
 
namespace  llvm::object
 
namespace  llvm::EngineKind
 

Typedefs

using llvm::FunctionCreator = std::function< void *(const std::string &)>
 

Enumerations

enum  llvm::EngineKind::Kind { llvm::EngineKind::JIT = 0x1 , llvm::EngineKind::Interpreter = 0x2 }
 

Variables

static const Kind llvm::EngineKind::Either = (Kind)(JIT | Interpreter)