LLVM  8.0.1
Classes | Namespaces | Typedefs | Enumerations | Variables
ExecutionEngine.h File Reference
#include "llvm-c/ExecutionEngine.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/Optional.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 <string>
#include <vector>
Include dependency graph for ExecutionEngine.h:
This graph shows which files directly or indirectly include this file:

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

 llvm
 This class represents lattice values for constants.
 
 llvm::object
 
 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)