|
LLVM
4.0.0
|
#include "RuntimeDyld.h"#include "llvm-c/ExecutionEngine.h"#include "llvm/ADT/SmallVector.h"#include "llvm/ADT/StringRef.h"#include "llvm/IR/Module.h"#include "llvm/IR/ValueHandle.h"#include "llvm/IR/ValueMap.h"#include "llvm/Object/Binary.h"#include "llvm/Support/ErrorHandling.h"#include "llvm/Support/Mutex.h"#include "llvm/Target/TargetMachine.h"#include "llvm/Target/TargetOptions.h"#include <map>#include <string>#include <vector>#include <functional>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 | |
| Compute iterated dominance frontiers using a linear time algorithm. | |
| 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) |
1.8.6