initial
This commit is contained in:
630
thirdparty/clang/include/llvm/ExecutionEngine/ExecutionEngine.h
vendored
Normal file
630
thirdparty/clang/include/llvm/ExecutionEngine/ExecutionEngine.h
vendored
Normal file
@@ -0,0 +1,630 @@
|
||||
//===- ExecutionEngine.h - Abstract Execution Engine Interface --*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines the abstract interface that implements execution support
|
||||
// for LLVM.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_EXECUTIONENGINE_H
|
||||
#define LLVM_EXECUTIONENGINE_EXECUTIONENGINE_H
|
||||
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/ADT/ValueMap.h"
|
||||
#include "llvm/MC/MCCodeGenInfo.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Mutex.h"
|
||||
#include "llvm/Support/ValueHandle.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include "llvm/Target/TargetOptions.h"
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
struct GenericValue;
|
||||
class Constant;
|
||||
class ExecutionEngine;
|
||||
class Function;
|
||||
class GlobalVariable;
|
||||
class GlobalValue;
|
||||
class JITEventListener;
|
||||
class JITMemoryManager;
|
||||
class MachineCodeInfo;
|
||||
class Module;
|
||||
class MutexGuard;
|
||||
class DataLayout;
|
||||
class Triple;
|
||||
class Type;
|
||||
|
||||
/// \brief Helper class for helping synchronize access to the global address map
|
||||
/// table.
|
||||
class ExecutionEngineState {
|
||||
public:
|
||||
struct AddressMapConfig : public ValueMapConfig<const GlobalValue*> {
|
||||
typedef ExecutionEngineState *ExtraData;
|
||||
static sys::Mutex *getMutex(ExecutionEngineState *EES);
|
||||
static void onDelete(ExecutionEngineState *EES, const GlobalValue *Old);
|
||||
static void onRAUW(ExecutionEngineState *, const GlobalValue *,
|
||||
const GlobalValue *);
|
||||
};
|
||||
|
||||
typedef ValueMap<const GlobalValue *, void *, AddressMapConfig>
|
||||
GlobalAddressMapTy;
|
||||
|
||||
private:
|
||||
ExecutionEngine &EE;
|
||||
|
||||
/// GlobalAddressMap - A mapping between LLVM global values and their
|
||||
/// actualized version...
|
||||
GlobalAddressMapTy GlobalAddressMap;
|
||||
|
||||
/// GlobalAddressReverseMap - This is the reverse mapping of GlobalAddressMap,
|
||||
/// used to convert raw addresses into the LLVM global value that is emitted
|
||||
/// at the address. This map is not computed unless getGlobalValueAtAddress
|
||||
/// is called at some point.
|
||||
std::map<void *, AssertingVH<const GlobalValue> > GlobalAddressReverseMap;
|
||||
|
||||
public:
|
||||
ExecutionEngineState(ExecutionEngine &EE);
|
||||
|
||||
GlobalAddressMapTy &getGlobalAddressMap(const MutexGuard &) {
|
||||
return GlobalAddressMap;
|
||||
}
|
||||
|
||||
std::map<void*, AssertingVH<const GlobalValue> > &
|
||||
getGlobalAddressReverseMap(const MutexGuard &) {
|
||||
return GlobalAddressReverseMap;
|
||||
}
|
||||
|
||||
/// \brief Erase an entry from the mapping table.
|
||||
///
|
||||
/// \returns The address that \p ToUnmap was happed to.
|
||||
void *RemoveMapping(const MutexGuard &, const GlobalValue *ToUnmap);
|
||||
};
|
||||
|
||||
/// \brief Abstract interface for implementation execution of LLVM modules,
|
||||
/// designed to support both interpreter and just-in-time (JIT) compiler
|
||||
/// implementations.
|
||||
class ExecutionEngine {
|
||||
/// The state object holding the global address mapping, which must be
|
||||
/// accessed synchronously.
|
||||
//
|
||||
// FIXME: There is no particular need the entire map needs to be
|
||||
// synchronized. Wouldn't a reader-writer design be better here?
|
||||
ExecutionEngineState EEState;
|
||||
|
||||
/// The target data for the platform for which execution is being performed.
|
||||
const DataLayout *TD;
|
||||
|
||||
/// Whether lazy JIT compilation is enabled.
|
||||
bool CompilingLazily;
|
||||
|
||||
/// Whether JIT compilation of external global variables is allowed.
|
||||
bool GVCompilationDisabled;
|
||||
|
||||
/// Whether the JIT should perform lookups of external symbols (e.g.,
|
||||
/// using dlsym).
|
||||
bool SymbolSearchingDisabled;
|
||||
|
||||
friend class EngineBuilder; // To allow access to JITCtor and InterpCtor.
|
||||
|
||||
protected:
|
||||
/// The list of Modules that we are JIT'ing from. We use a SmallVector to
|
||||
/// optimize for the case where there is only one module.
|
||||
SmallVector<Module*, 1> Modules;
|
||||
|
||||
void setDataLayout(const DataLayout *td) { TD = td; }
|
||||
|
||||
/// getMemoryforGV - Allocate memory for a global variable.
|
||||
virtual char *getMemoryForGV(const GlobalVariable *GV);
|
||||
|
||||
// To avoid having libexecutionengine depend on the JIT and interpreter
|
||||
// libraries, the execution engine implementations set these functions to ctor
|
||||
// pointers at startup time if they are linked in.
|
||||
static ExecutionEngine *(*JITCtor)(
|
||||
Module *M,
|
||||
std::string *ErrorStr,
|
||||
JITMemoryManager *JMM,
|
||||
bool GVsWithCode,
|
||||
TargetMachine *TM);
|
||||
static ExecutionEngine *(*MCJITCtor)(
|
||||
Module *M,
|
||||
std::string *ErrorStr,
|
||||
JITMemoryManager *JMM,
|
||||
bool GVsWithCode,
|
||||
TargetMachine *TM);
|
||||
static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr);
|
||||
|
||||
/// LazyFunctionCreator - If an unknown function is needed, this function
|
||||
/// pointer is invoked to create it. If this returns null, the JIT will
|
||||
/// abort.
|
||||
void *(*LazyFunctionCreator)(const std::string &);
|
||||
|
||||
/// ExceptionTableRegister - If Exception Handling is set, the JIT will
|
||||
/// register dwarf tables with this function.
|
||||
typedef void (*EERegisterFn)(void*);
|
||||
EERegisterFn ExceptionTableRegister;
|
||||
EERegisterFn ExceptionTableDeregister;
|
||||
/// This maps functions to their exception tables frames.
|
||||
DenseMap<const Function*, void*> AllExceptionTables;
|
||||
|
||||
|
||||
public:
|
||||
/// lock - This lock protects the ExecutionEngine, JIT, JITResolver and
|
||||
/// JITEmitter classes. It must be held while changing the internal state of
|
||||
/// any of those classes.
|
||||
sys::Mutex lock;
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
// ExecutionEngine Startup
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
||||
virtual ~ExecutionEngine();
|
||||
|
||||
/// create - This is the factory method for creating an execution engine which
|
||||
/// is appropriate for the current machine. This takes ownership of the
|
||||
/// module.
|
||||
///
|
||||
/// \param GVsWithCode - Allocating globals with code breaks
|
||||
/// freeMachineCodeForFunction and is probably unsafe and bad for performance.
|
||||
/// However, we have clients who depend on this behavior, so we must support
|
||||
/// it. Eventually, when we're willing to break some backwards compatibility,
|
||||
/// this flag should be flipped to false, so that by default
|
||||
/// freeMachineCodeForFunction works.
|
||||
static ExecutionEngine *create(Module *M,
|
||||
bool ForceInterpreter = false,
|
||||
std::string *ErrorStr = 0,
|
||||
CodeGenOpt::Level OptLevel =
|
||||
CodeGenOpt::Default,
|
||||
bool GVsWithCode = true);
|
||||
|
||||
/// createJIT - This is the factory method for creating a JIT for the current
|
||||
/// machine, it does not fall back to the interpreter. This takes ownership
|
||||
/// of the Module and JITMemoryManager if successful.
|
||||
///
|
||||
/// Clients should make sure to initialize targets prior to calling this
|
||||
/// function.
|
||||
static ExecutionEngine *createJIT(Module *M,
|
||||
std::string *ErrorStr = 0,
|
||||
JITMemoryManager *JMM = 0,
|
||||
CodeGenOpt::Level OptLevel =
|
||||
CodeGenOpt::Default,
|
||||
bool GVsWithCode = true,
|
||||
Reloc::Model RM = Reloc::Default,
|
||||
CodeModel::Model CMM =
|
||||
CodeModel::JITDefault);
|
||||
|
||||
/// addModule - Add a Module to the list of modules that we can JIT from.
|
||||
/// Note that this takes ownership of the Module: when the ExecutionEngine is
|
||||
/// destroyed, it destroys the Module as well.
|
||||
virtual void addModule(Module *M) {
|
||||
Modules.push_back(M);
|
||||
}
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
||||
const DataLayout *getDataLayout() const { return TD; }
|
||||
|
||||
/// removeModule - Remove a Module from the list of modules. Returns true if
|
||||
/// M is found.
|
||||
virtual bool removeModule(Module *M);
|
||||
|
||||
/// FindFunctionNamed - Search all of the active modules to find the one that
|
||||
/// defines FnName. This is very slow operation and shouldn't be used for
|
||||
/// general code.
|
||||
Function *FindFunctionNamed(const char *FnName);
|
||||
|
||||
/// runFunction - Execute the specified function with the specified arguments,
|
||||
/// and return the result.
|
||||
virtual GenericValue runFunction(Function *F,
|
||||
const std::vector<GenericValue> &ArgValues) = 0;
|
||||
|
||||
/// getPointerToNamedFunction - This method returns the address of the
|
||||
/// specified function by using the dlsym function call. As such it is only
|
||||
/// useful for resolving library symbols, not code generated symbols.
|
||||
///
|
||||
/// If AbortOnFailure is false and no function with the given name is
|
||||
/// found, this function silently returns a null pointer. Otherwise,
|
||||
/// it prints a message to stderr and aborts.
|
||||
///
|
||||
virtual void *getPointerToNamedFunction(const std::string &Name,
|
||||
bool AbortOnFailure = true) = 0;
|
||||
|
||||
/// mapSectionAddress - map a section to its target address space value.
|
||||
/// Map the address of a JIT section as returned from the memory manager
|
||||
/// to the address in the target process as the running code will see it.
|
||||
/// This is the address which will be used for relocation resolution.
|
||||
virtual void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress) {
|
||||
llvm_unreachable("Re-mapping of section addresses not supported with this "
|
||||
"EE!");
|
||||
}
|
||||
|
||||
// finalizeObject - This method should be called after sections within an
|
||||
// object have been relocated using mapSectionAddress. When this method is
|
||||
// called the MCJIT execution engine will reapply relocations for a loaded
|
||||
// object. This method has no effect for the legacy JIT engine or the
|
||||
// interpeter.
|
||||
virtual void finalizeObject() {}
|
||||
|
||||
/// runStaticConstructorsDestructors - This method is used to execute all of
|
||||
/// the static constructors or destructors for a program.
|
||||
///
|
||||
/// \param isDtors - Run the destructors instead of constructors.
|
||||
void runStaticConstructorsDestructors(bool isDtors);
|
||||
|
||||
/// runStaticConstructorsDestructors - This method is used to execute all of
|
||||
/// the static constructors or destructors for a particular module.
|
||||
///
|
||||
/// \param isDtors - Run the destructors instead of constructors.
|
||||
void runStaticConstructorsDestructors(Module *module, bool isDtors);
|
||||
|
||||
|
||||
/// runFunctionAsMain - This is a helper function which wraps runFunction to
|
||||
/// handle the common task of starting up main with the specified argc, argv,
|
||||
/// and envp parameters.
|
||||
int runFunctionAsMain(Function *Fn, const std::vector<std::string> &argv,
|
||||
const char * const * envp);
|
||||
|
||||
|
||||
/// addGlobalMapping - Tell the execution engine that the specified global is
|
||||
/// at the specified location. This is used internally as functions are JIT'd
|
||||
/// and as global variables are laid out in memory. It can and should also be
|
||||
/// used by clients of the EE that want to have an LLVM global overlay
|
||||
/// existing data in memory. Mappings are automatically removed when their
|
||||
/// GlobalValue is destroyed.
|
||||
void addGlobalMapping(const GlobalValue *GV, void *Addr);
|
||||
|
||||
/// clearAllGlobalMappings - Clear all global mappings and start over again,
|
||||
/// for use in dynamic compilation scenarios to move globals.
|
||||
void clearAllGlobalMappings();
|
||||
|
||||
/// clearGlobalMappingsFromModule - Clear all global mappings that came from a
|
||||
/// particular module, because it has been removed from the JIT.
|
||||
void clearGlobalMappingsFromModule(Module *M);
|
||||
|
||||
/// updateGlobalMapping - Replace an existing mapping for GV with a new
|
||||
/// address. This updates both maps as required. If "Addr" is null, the
|
||||
/// entry for the global is removed from the mappings. This returns the old
|
||||
/// value of the pointer, or null if it was not in the map.
|
||||
void *updateGlobalMapping(const GlobalValue *GV, void *Addr);
|
||||
|
||||
/// getPointerToGlobalIfAvailable - This returns the address of the specified
|
||||
/// global value if it is has already been codegen'd, otherwise it returns
|
||||
/// null.
|
||||
void *getPointerToGlobalIfAvailable(const GlobalValue *GV);
|
||||
|
||||
/// getPointerToGlobal - This returns the address of the specified global
|
||||
/// value. This may involve code generation if it's a function.
|
||||
void *getPointerToGlobal(const GlobalValue *GV);
|
||||
|
||||
/// getPointerToFunction - The different EE's represent function bodies in
|
||||
/// different ways. They should each implement this to say what a function
|
||||
/// pointer should look like. When F is destroyed, the ExecutionEngine will
|
||||
/// remove its global mapping and free any machine code. Be sure no threads
|
||||
/// are running inside F when that happens.
|
||||
virtual void *getPointerToFunction(Function *F) = 0;
|
||||
|
||||
/// getPointerToBasicBlock - The different EE's represent basic blocks in
|
||||
/// different ways. Return the representation for a blockaddress of the
|
||||
/// specified block.
|
||||
virtual void *getPointerToBasicBlock(BasicBlock *BB) = 0;
|
||||
|
||||
/// getPointerToFunctionOrStub - If the specified function has been
|
||||
/// code-gen'd, return a pointer to the function. If not, compile it, or use
|
||||
/// a stub to implement lazy compilation if available. See
|
||||
/// getPointerToFunction for the requirements on destroying F.
|
||||
virtual void *getPointerToFunctionOrStub(Function *F) {
|
||||
// Default implementation, just codegen the function.
|
||||
return getPointerToFunction(F);
|
||||
}
|
||||
|
||||
// The JIT overrides a version that actually does this.
|
||||
virtual void runJITOnFunction(Function *, MachineCodeInfo * = 0) { }
|
||||
|
||||
/// getGlobalValueAtAddress - Return the LLVM global value object that starts
|
||||
/// at the specified address.
|
||||
///
|
||||
const GlobalValue *getGlobalValueAtAddress(void *Addr);
|
||||
|
||||
/// StoreValueToMemory - Stores the data in Val of type Ty at address Ptr.
|
||||
/// Ptr is the address of the memory at which to store Val, cast to
|
||||
/// GenericValue *. It is not a pointer to a GenericValue containing the
|
||||
/// address at which to store Val.
|
||||
void StoreValueToMemory(const GenericValue &Val, GenericValue *Ptr,
|
||||
Type *Ty);
|
||||
|
||||
void InitializeMemory(const Constant *Init, void *Addr);
|
||||
|
||||
/// recompileAndRelinkFunction - This method is used to force a function which
|
||||
/// has already been compiled to be compiled again, possibly after it has been
|
||||
/// modified. Then the entry to the old copy is overwritten with a branch to
|
||||
/// the new copy. If there was no old copy, this acts just like
|
||||
/// VM::getPointerToFunction().
|
||||
virtual void *recompileAndRelinkFunction(Function *F) = 0;
|
||||
|
||||
/// freeMachineCodeForFunction - Release memory in the ExecutionEngine
|
||||
/// corresponding to the machine code emitted to execute this function, useful
|
||||
/// for garbage-collecting generated code.
|
||||
virtual void freeMachineCodeForFunction(Function *F) = 0;
|
||||
|
||||
/// getOrEmitGlobalVariable - Return the address of the specified global
|
||||
/// variable, possibly emitting it to memory if needed. This is used by the
|
||||
/// Emitter.
|
||||
virtual void *getOrEmitGlobalVariable(const GlobalVariable *GV) {
|
||||
return getPointerToGlobal((const GlobalValue *)GV);
|
||||
}
|
||||
|
||||
/// Registers a listener to be called back on various events within
|
||||
/// the JIT. See JITEventListener.h for more details. Does not
|
||||
/// take ownership of the argument. The argument may be NULL, in
|
||||
/// which case these functions do nothing.
|
||||
virtual void RegisterJITEventListener(JITEventListener *) {}
|
||||
virtual void UnregisterJITEventListener(JITEventListener *) {}
|
||||
|
||||
/// DisableLazyCompilation - When lazy compilation is off (the default), the
|
||||
/// JIT will eagerly compile every function reachable from the argument to
|
||||
/// getPointerToFunction. If lazy compilation is turned on, the JIT will only
|
||||
/// compile the one function and emit stubs to compile the rest when they're
|
||||
/// first called. If lazy compilation is turned off again while some lazy
|
||||
/// stubs are still around, and one of those stubs is called, the program will
|
||||
/// abort.
|
||||
///
|
||||
/// In order to safely compile lazily in a threaded program, the user must
|
||||
/// ensure that 1) only one thread at a time can call any particular lazy
|
||||
/// stub, and 2) any thread modifying LLVM IR must hold the JIT's lock
|
||||
/// (ExecutionEngine::lock) or otherwise ensure that no other thread calls a
|
||||
/// lazy stub. See http://llvm.org/PR5184 for details.
|
||||
void DisableLazyCompilation(bool Disabled = true) {
|
||||
CompilingLazily = !Disabled;
|
||||
}
|
||||
bool isCompilingLazily() const {
|
||||
return CompilingLazily;
|
||||
}
|
||||
// Deprecated in favor of isCompilingLazily (to reduce double-negatives).
|
||||
// Remove this in LLVM 2.8.
|
||||
bool isLazyCompilationDisabled() const {
|
||||
return !CompilingLazily;
|
||||
}
|
||||
|
||||
/// DisableGVCompilation - If called, the JIT will abort if it's asked to
|
||||
/// allocate space and populate a GlobalVariable that is not internal to
|
||||
/// the module.
|
||||
void DisableGVCompilation(bool Disabled = true) {
|
||||
GVCompilationDisabled = Disabled;
|
||||
}
|
||||
bool isGVCompilationDisabled() const {
|
||||
return GVCompilationDisabled;
|
||||
}
|
||||
|
||||
/// DisableSymbolSearching - If called, the JIT will not try to lookup unknown
|
||||
/// symbols with dlsym. A client can still use InstallLazyFunctionCreator to
|
||||
/// resolve symbols in a custom way.
|
||||
void DisableSymbolSearching(bool Disabled = true) {
|
||||
SymbolSearchingDisabled = Disabled;
|
||||
}
|
||||
bool isSymbolSearchingDisabled() const {
|
||||
return SymbolSearchingDisabled;
|
||||
}
|
||||
|
||||
/// InstallLazyFunctionCreator - If an unknown function is needed, the
|
||||
/// specified function pointer is invoked to create it. If it returns null,
|
||||
/// the JIT will abort.
|
||||
void InstallLazyFunctionCreator(void* (*P)(const std::string &)) {
|
||||
LazyFunctionCreator = P;
|
||||
}
|
||||
|
||||
/// InstallExceptionTableRegister - The JIT will use the given function
|
||||
/// to register the exception tables it generates.
|
||||
void InstallExceptionTableRegister(EERegisterFn F) {
|
||||
ExceptionTableRegister = F;
|
||||
}
|
||||
void InstallExceptionTableDeregister(EERegisterFn F) {
|
||||
ExceptionTableDeregister = F;
|
||||
}
|
||||
|
||||
/// RegisterTable - Registers the given pointer as an exception table. It
|
||||
/// uses the ExceptionTableRegister function.
|
||||
void RegisterTable(const Function *fn, void* res) {
|
||||
if (ExceptionTableRegister) {
|
||||
ExceptionTableRegister(res);
|
||||
AllExceptionTables[fn] = res;
|
||||
}
|
||||
}
|
||||
|
||||
/// DeregisterTable - Deregisters the exception frame previously registered
|
||||
/// for the given function.
|
||||
void DeregisterTable(const Function *Fn) {
|
||||
if (ExceptionTableDeregister) {
|
||||
DenseMap<const Function*, void*>::iterator frame =
|
||||
AllExceptionTables.find(Fn);
|
||||
if(frame != AllExceptionTables.end()) {
|
||||
ExceptionTableDeregister(frame->second);
|
||||
AllExceptionTables.erase(frame);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// DeregisterAllTables - Deregisters all previously registered pointers to an
|
||||
/// exception tables. It uses the ExceptionTableoDeregister function.
|
||||
void DeregisterAllTables();
|
||||
|
||||
protected:
|
||||
explicit ExecutionEngine(Module *M);
|
||||
|
||||
void emitGlobals();
|
||||
|
||||
void EmitGlobalVariable(const GlobalVariable *GV);
|
||||
|
||||
GenericValue getConstantValue(const Constant *C);
|
||||
void LoadValueFromMemory(GenericValue &Result, GenericValue *Ptr,
|
||||
Type *Ty);
|
||||
};
|
||||
|
||||
namespace EngineKind {
|
||||
// These are actually bitmasks that get or-ed together.
|
||||
enum Kind {
|
||||
JIT = 0x1,
|
||||
Interpreter = 0x2
|
||||
};
|
||||
const static Kind Either = (Kind)(JIT | Interpreter);
|
||||
}
|
||||
|
||||
/// EngineBuilder - Builder class for ExecutionEngines. Use this by
|
||||
/// stack-allocating a builder, chaining the various set* methods, and
|
||||
/// terminating it with a .create() call.
|
||||
class EngineBuilder {
|
||||
private:
|
||||
Module *M;
|
||||
EngineKind::Kind WhichEngine;
|
||||
std::string *ErrorStr;
|
||||
CodeGenOpt::Level OptLevel;
|
||||
JITMemoryManager *JMM;
|
||||
bool AllocateGVsWithCode;
|
||||
TargetOptions Options;
|
||||
Reloc::Model RelocModel;
|
||||
CodeModel::Model CMModel;
|
||||
std::string MArch;
|
||||
std::string MCPU;
|
||||
SmallVector<std::string, 4> MAttrs;
|
||||
bool UseMCJIT;
|
||||
|
||||
/// InitEngine - Does the common initialization of default options.
|
||||
void InitEngine() {
|
||||
WhichEngine = EngineKind::Either;
|
||||
ErrorStr = NULL;
|
||||
OptLevel = CodeGenOpt::Default;
|
||||
JMM = NULL;
|
||||
Options = TargetOptions();
|
||||
AllocateGVsWithCode = false;
|
||||
RelocModel = Reloc::Default;
|
||||
CMModel = CodeModel::JITDefault;
|
||||
UseMCJIT = false;
|
||||
}
|
||||
|
||||
public:
|
||||
/// EngineBuilder - Constructor for EngineBuilder. If create() is called and
|
||||
/// is successful, the created engine takes ownership of the module.
|
||||
EngineBuilder(Module *m) : M(m) {
|
||||
InitEngine();
|
||||
}
|
||||
|
||||
/// setEngineKind - Controls whether the user wants the interpreter, the JIT,
|
||||
/// or whichever engine works. This option defaults to EngineKind::Either.
|
||||
EngineBuilder &setEngineKind(EngineKind::Kind w) {
|
||||
WhichEngine = w;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setJITMemoryManager - Sets the memory manager to use. This allows
|
||||
/// clients to customize their memory allocation policies. If create() is
|
||||
/// called and is successful, the created engine takes ownership of the
|
||||
/// memory manager. This option defaults to NULL.
|
||||
EngineBuilder &setJITMemoryManager(JITMemoryManager *jmm) {
|
||||
JMM = jmm;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setErrorStr - Set the error string to write to on error. This option
|
||||
/// defaults to NULL.
|
||||
EngineBuilder &setErrorStr(std::string *e) {
|
||||
ErrorStr = e;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setOptLevel - Set the optimization level for the JIT. This option
|
||||
/// defaults to CodeGenOpt::Default.
|
||||
EngineBuilder &setOptLevel(CodeGenOpt::Level l) {
|
||||
OptLevel = l;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setTargetOptions - Set the target options that the ExecutionEngine
|
||||
/// target is using. Defaults to TargetOptions().
|
||||
EngineBuilder &setTargetOptions(const TargetOptions &Opts) {
|
||||
Options = Opts;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setRelocationModel - Set the relocation model that the ExecutionEngine
|
||||
/// target is using. Defaults to target specific default "Reloc::Default".
|
||||
EngineBuilder &setRelocationModel(Reloc::Model RM) {
|
||||
RelocModel = RM;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setCodeModel - Set the CodeModel that the ExecutionEngine target
|
||||
/// data is using. Defaults to target specific default
|
||||
/// "CodeModel::JITDefault".
|
||||
EngineBuilder &setCodeModel(CodeModel::Model M) {
|
||||
CMModel = M;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setAllocateGVsWithCode - Sets whether global values should be allocated
|
||||
/// into the same buffer as code. For most applications this should be set
|
||||
/// to false. Allocating globals with code breaks freeMachineCodeForFunction
|
||||
/// and is probably unsafe and bad for performance. However, we have clients
|
||||
/// who depend on this behavior, so we must support it. This option defaults
|
||||
/// to false so that users of the new API can safely use the new memory
|
||||
/// manager and free machine code.
|
||||
EngineBuilder &setAllocateGVsWithCode(bool a) {
|
||||
AllocateGVsWithCode = a;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setMArch - Override the architecture set by the Module's triple.
|
||||
EngineBuilder &setMArch(StringRef march) {
|
||||
MArch.assign(march.begin(), march.end());
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setMCPU - Target a specific cpu type.
|
||||
EngineBuilder &setMCPU(StringRef mcpu) {
|
||||
MCPU.assign(mcpu.begin(), mcpu.end());
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setUseMCJIT - Set whether the MC-JIT implementation should be used
|
||||
/// (experimental).
|
||||
EngineBuilder &setUseMCJIT(bool Value) {
|
||||
UseMCJIT = Value;
|
||||
return *this;
|
||||
}
|
||||
|
||||
/// setMAttrs - Set cpu-specific attributes.
|
||||
template<typename StringSequence>
|
||||
EngineBuilder &setMAttrs(const StringSequence &mattrs) {
|
||||
MAttrs.clear();
|
||||
MAttrs.append(mattrs.begin(), mattrs.end());
|
||||
return *this;
|
||||
}
|
||||
|
||||
TargetMachine *selectTarget();
|
||||
|
||||
/// selectTarget - Pick a target either via -march or by guessing the native
|
||||
/// arch. Add any CPU features specified via -mcpu or -mattr.
|
||||
TargetMachine *selectTarget(const Triple &TargetTriple,
|
||||
StringRef MArch,
|
||||
StringRef MCPU,
|
||||
const SmallVectorImpl<std::string>& MAttrs);
|
||||
|
||||
ExecutionEngine *create() {
|
||||
return create(selectTarget());
|
||||
}
|
||||
|
||||
ExecutionEngine *create(TargetMachine *TM);
|
||||
};
|
||||
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
||||
53
thirdparty/clang/include/llvm/ExecutionEngine/GenericValue.h
vendored
Normal file
53
thirdparty/clang/include/llvm/ExecutionEngine/GenericValue.h
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
//===-- GenericValue.h - Represent any type of LLVM value -------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// The GenericValue class is used to represent an LLVM value of arbitrary type.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_GENERICVALUE_H
|
||||
#define LLVM_EXECUTIONENGINE_GENERICVALUE_H
|
||||
|
||||
#include "llvm/ADT/APInt.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
typedef void* PointerTy;
|
||||
class APInt;
|
||||
|
||||
struct GenericValue {
|
||||
struct IntPair {
|
||||
unsigned int first;
|
||||
unsigned int second;
|
||||
};
|
||||
union {
|
||||
double DoubleVal;
|
||||
float FloatVal;
|
||||
PointerTy PointerVal;
|
||||
struct IntPair UIntPairVal;
|
||||
unsigned char Untyped[8];
|
||||
};
|
||||
APInt IntVal; // also used for long doubles.
|
||||
// For aggregate data types.
|
||||
std::vector<GenericValue> AggregateVal;
|
||||
|
||||
// to make code faster, set GenericValue to zero could be omitted, but it is
|
||||
// potentially can cause problems, since GenericValue to store garbage
|
||||
// instead of zero.
|
||||
GenericValue() : IntVal(1,0) {UIntPairVal.first = 0; UIntPairVal.second = 0;}
|
||||
explicit GenericValue(void *V) : PointerVal(V), IntVal(1,0) { }
|
||||
};
|
||||
|
||||
inline GenericValue PTOGV(void *P) { return GenericValue(P); }
|
||||
inline void* GVTOP(const GenericValue &GV) { return GV.PointerVal; }
|
||||
|
||||
} // End llvm namespace.
|
||||
#endif
|
||||
38
thirdparty/clang/include/llvm/ExecutionEngine/Interpreter.h
vendored
Normal file
38
thirdparty/clang/include/llvm/ExecutionEngine/Interpreter.h
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
//===-- Interpreter.h - Abstract Execution Engine Interface -----*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file forces the interpreter to link in on certain operating systems.
|
||||
// (Windows).
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_INTERPRETER_H
|
||||
#define LLVM_EXECUTIONENGINE_INTERPRETER_H
|
||||
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include <cstdlib>
|
||||
|
||||
extern "C" void LLVMLinkInInterpreter();
|
||||
|
||||
namespace {
|
||||
struct ForceInterpreterLinking {
|
||||
ForceInterpreterLinking() {
|
||||
// We must reference the interpreter in such a way that compilers will not
|
||||
// delete it all as dead code, even with whole program optimization,
|
||||
// yet is effectively a NO-OP. As the compiler isn't smart enough
|
||||
// to know that getenv() never returns -1, this will do the job.
|
||||
if (std::getenv("bar") != (char*) -1)
|
||||
return;
|
||||
|
||||
LLVMLinkInInterpreter();
|
||||
}
|
||||
} ForceInterpreterLinking;
|
||||
}
|
||||
|
||||
#endif
|
||||
38
thirdparty/clang/include/llvm/ExecutionEngine/JIT.h
vendored
Normal file
38
thirdparty/clang/include/llvm/ExecutionEngine/JIT.h
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
//===-- JIT.h - Abstract Execution Engine Interface -------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file forces the JIT to link in on certain operating systems.
|
||||
// (Windows).
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_JIT_H
|
||||
#define LLVM_EXECUTIONENGINE_JIT_H
|
||||
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include <cstdlib>
|
||||
|
||||
extern "C" void LLVMLinkInJIT();
|
||||
|
||||
namespace {
|
||||
struct ForceJITLinking {
|
||||
ForceJITLinking() {
|
||||
// We must reference JIT in such a way that compilers will not
|
||||
// delete it all as dead code, even with whole program optimization,
|
||||
// yet is effectively a NO-OP. As the compiler isn't smart enough
|
||||
// to know that getenv() never returns -1, this will do the job.
|
||||
if (std::getenv("bar") != (char*) -1)
|
||||
return;
|
||||
|
||||
LLVMLinkInJIT();
|
||||
}
|
||||
} ForceJITLinking;
|
||||
}
|
||||
|
||||
#endif
|
||||
130
thirdparty/clang/include/llvm/ExecutionEngine/JITEventListener.h
vendored
Normal file
130
thirdparty/clang/include/llvm/ExecutionEngine/JITEventListener.h
vendored
Normal file
@@ -0,0 +1,130 @@
|
||||
//===- JITEventListener.h - Exposes events from JIT compilation -*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file defines the JITEventListener interface, which lets users get
|
||||
// callbacks when significant events happen during the JIT compilation process.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_JITEVENTLISTENER_H
|
||||
#define LLVM_EXECUTIONENGINE_JITEVENTLISTENER_H
|
||||
|
||||
#include "llvm/Config/llvm-config.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/DebugLoc.h"
|
||||
#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
class Function;
|
||||
class MachineFunction;
|
||||
class OProfileWrapper;
|
||||
class IntelJITEventsWrapper;
|
||||
class ObjectImage;
|
||||
|
||||
/// JITEvent_EmittedFunctionDetails - Helper struct for containing information
|
||||
/// about a generated machine code function.
|
||||
struct JITEvent_EmittedFunctionDetails {
|
||||
struct LineStart {
|
||||
/// The address at which the current line changes.
|
||||
uintptr_t Address;
|
||||
|
||||
/// The new location information. These can be translated to DebugLocTuples
|
||||
/// using MF->getDebugLocTuple().
|
||||
DebugLoc Loc;
|
||||
};
|
||||
|
||||
/// The machine function the struct contains information for.
|
||||
const MachineFunction *MF;
|
||||
|
||||
/// The list of line boundary information, sorted by address.
|
||||
std::vector<LineStart> LineStarts;
|
||||
};
|
||||
|
||||
/// JITEventListener - Abstract interface for use by the JIT to notify clients
|
||||
/// about significant events during compilation. For example, to notify
|
||||
/// profilers and debuggers that need to know where functions have been emitted.
|
||||
///
|
||||
/// The default implementation of each method does nothing.
|
||||
class JITEventListener {
|
||||
public:
|
||||
typedef JITEvent_EmittedFunctionDetails EmittedFunctionDetails;
|
||||
|
||||
public:
|
||||
JITEventListener() {}
|
||||
virtual ~JITEventListener();
|
||||
|
||||
/// NotifyFunctionEmitted - Called after a function has been successfully
|
||||
/// emitted to memory. The function still has its MachineFunction attached,
|
||||
/// if you should happen to need that.
|
||||
virtual void NotifyFunctionEmitted(const Function &,
|
||||
void *, size_t,
|
||||
const EmittedFunctionDetails &) {}
|
||||
|
||||
/// NotifyFreeingMachineCode - Called from freeMachineCodeForFunction(), after
|
||||
/// the global mapping is removed, but before the machine code is returned to
|
||||
/// the allocator.
|
||||
///
|
||||
/// OldPtr is the address of the machine code and will be the same as the Code
|
||||
/// parameter to a previous NotifyFunctionEmitted call. The Function passed
|
||||
/// to NotifyFunctionEmitted may have been destroyed by the time of the
|
||||
/// matching NotifyFreeingMachineCode call.
|
||||
virtual void NotifyFreeingMachineCode(void *) {}
|
||||
|
||||
/// NotifyObjectEmitted - Called after an object has been successfully
|
||||
/// emitted to memory. NotifyFunctionEmitted will not be called for
|
||||
/// individual functions in the object.
|
||||
///
|
||||
/// ELF-specific information
|
||||
/// The ObjectImage contains the generated object image
|
||||
/// with section headers updated to reflect the address at which sections
|
||||
/// were loaded and with relocations performed in-place on debug sections.
|
||||
virtual void NotifyObjectEmitted(const ObjectImage &Obj) {}
|
||||
|
||||
/// NotifyFreeingObject - Called just before the memory associated with
|
||||
/// a previously emitted object is released.
|
||||
virtual void NotifyFreeingObject(const ObjectImage &Obj) {}
|
||||
|
||||
#if LLVM_USE_INTEL_JITEVENTS
|
||||
// Construct an IntelJITEventListener
|
||||
static JITEventListener *createIntelJITEventListener();
|
||||
|
||||
// Construct an IntelJITEventListener with a test Intel JIT API implementation
|
||||
static JITEventListener *createIntelJITEventListener(
|
||||
IntelJITEventsWrapper* AlternativeImpl);
|
||||
#else
|
||||
static JITEventListener *createIntelJITEventListener() { return 0; }
|
||||
|
||||
static JITEventListener *createIntelJITEventListener(
|
||||
IntelJITEventsWrapper* AlternativeImpl) {
|
||||
return 0;
|
||||
}
|
||||
#endif // USE_INTEL_JITEVENTS
|
||||
|
||||
#if LLVM_USE_OPROFILE
|
||||
// Construct an OProfileJITEventListener
|
||||
static JITEventListener *createOProfileJITEventListener();
|
||||
|
||||
// Construct an OProfileJITEventListener with a test opagent implementation
|
||||
static JITEventListener *createOProfileJITEventListener(
|
||||
OProfileWrapper* AlternativeImpl);
|
||||
#else
|
||||
|
||||
static JITEventListener *createOProfileJITEventListener() { return 0; }
|
||||
|
||||
static JITEventListener *createOProfileJITEventListener(
|
||||
OProfileWrapper* AlternativeImpl) {
|
||||
return 0;
|
||||
}
|
||||
#endif // USE_OPROFILE
|
||||
|
||||
};
|
||||
|
||||
} // end namespace llvm.
|
||||
|
||||
#endif // defined LLVM_EXECUTIONENGINE_JITEVENTLISTENER_H
|
||||
180
thirdparty/clang/include/llvm/ExecutionEngine/JITMemoryManager.h
vendored
Normal file
180
thirdparty/clang/include/llvm/ExecutionEngine/JITMemoryManager.h
vendored
Normal file
@@ -0,0 +1,180 @@
|
||||
//===-- JITMemoryManager.h - Interface JIT uses to Allocate Mem -*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_JITMEMORYMANAGER_H
|
||||
#define LLVM_EXECUTIONENGINE_JITMEMORYMANAGER_H
|
||||
|
||||
#include "llvm/ExecutionEngine/RuntimeDyld.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class Function;
|
||||
class GlobalValue;
|
||||
|
||||
/// JITMemoryManager - This interface is used by the JIT to allocate and manage
|
||||
/// memory for the code generated by the JIT. This can be reimplemented by
|
||||
/// clients that have a strong desire to control how the layout of JIT'd memory
|
||||
/// works.
|
||||
class JITMemoryManager : public RTDyldMemoryManager {
|
||||
protected:
|
||||
bool HasGOT;
|
||||
|
||||
public:
|
||||
JITMemoryManager() : HasGOT(false) {}
|
||||
virtual ~JITMemoryManager();
|
||||
|
||||
/// CreateDefaultMemManager - This is used to create the default
|
||||
/// JIT Memory Manager if the client does not provide one to the JIT.
|
||||
static JITMemoryManager *CreateDefaultMemManager();
|
||||
|
||||
/// setMemoryWritable - When code generation is in progress,
|
||||
/// the code pages may need permissions changed.
|
||||
virtual void setMemoryWritable() = 0;
|
||||
|
||||
/// setMemoryExecutable - When code generation is done and we're ready to
|
||||
/// start execution, the code pages may need permissions changed.
|
||||
virtual void setMemoryExecutable() = 0;
|
||||
|
||||
/// setPoisonMemory - Setting this flag to true makes the memory manager
|
||||
/// garbage values over freed memory. This is useful for testing and
|
||||
/// debugging, and may be turned on by default in debug mode.
|
||||
virtual void setPoisonMemory(bool poison) = 0;
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
// Global Offset Table Management
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
||||
/// AllocateGOT - If the current table requires a Global Offset Table, this
|
||||
/// method is invoked to allocate it. This method is required to set HasGOT
|
||||
/// to true.
|
||||
virtual void AllocateGOT() = 0;
|
||||
|
||||
/// isManagingGOT - Return true if the AllocateGOT method is called.
|
||||
bool isManagingGOT() const {
|
||||
return HasGOT;
|
||||
}
|
||||
|
||||
/// getGOTBase - If this is managing a Global Offset Table, this method should
|
||||
/// return a pointer to its base.
|
||||
virtual uint8_t *getGOTBase() const = 0;
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
// Main Allocation Functions
|
||||
//===--------------------------------------------------------------------===//
|
||||
|
||||
/// startFunctionBody - When we start JITing a function, the JIT calls this
|
||||
/// method to allocate a block of free RWX memory, which returns a pointer to
|
||||
/// it. If the JIT wants to request a block of memory of at least a certain
|
||||
/// size, it passes that value as ActualSize, and this method returns a block
|
||||
/// with at least that much space. If the JIT doesn't know ahead of time how
|
||||
/// much space it will need to emit the function, it passes 0 for the
|
||||
/// ActualSize. In either case, this method is required to pass back the size
|
||||
/// of the allocated block through ActualSize. The JIT will be careful to
|
||||
/// not write more than the returned ActualSize bytes of memory.
|
||||
virtual uint8_t *startFunctionBody(const Function *F,
|
||||
uintptr_t &ActualSize) = 0;
|
||||
|
||||
/// allocateStub - This method is called by the JIT to allocate space for a
|
||||
/// function stub (used to handle limited branch displacements) while it is
|
||||
/// JIT compiling a function. For example, if foo calls bar, and if bar
|
||||
/// either needs to be lazily compiled or is a native function that exists too
|
||||
/// far away from the call site to work, this method will be used to make a
|
||||
/// thunk for it. The stub should be "close" to the current function body,
|
||||
/// but should not be included in the 'actualsize' returned by
|
||||
/// startFunctionBody.
|
||||
virtual uint8_t *allocateStub(const GlobalValue* F, unsigned StubSize,
|
||||
unsigned Alignment) = 0;
|
||||
|
||||
/// endFunctionBody - This method is called when the JIT is done codegen'ing
|
||||
/// the specified function. At this point we know the size of the JIT
|
||||
/// compiled function. This passes in FunctionStart (which was returned by
|
||||
/// the startFunctionBody method) and FunctionEnd which is a pointer to the
|
||||
/// actual end of the function. This method should mark the space allocated
|
||||
/// and remember where it is in case the client wants to deallocate it.
|
||||
virtual void endFunctionBody(const Function *F, uint8_t *FunctionStart,
|
||||
uint8_t *FunctionEnd) = 0;
|
||||
|
||||
/// allocateSpace - Allocate a memory block of the given size. This method
|
||||
/// cannot be called between calls to startFunctionBody and endFunctionBody.
|
||||
virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) = 0;
|
||||
|
||||
/// allocateGlobal - Allocate memory for a global.
|
||||
virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) = 0;
|
||||
|
||||
/// deallocateFunctionBody - Free the specified function body. The argument
|
||||
/// must be the return value from a call to startFunctionBody() that hasn't
|
||||
/// been deallocated yet. This is never called when the JIT is currently
|
||||
/// emitting a function.
|
||||
virtual void deallocateFunctionBody(void *Body) = 0;
|
||||
|
||||
/// startExceptionTable - When we finished JITing the function, if exception
|
||||
/// handling is set, we emit the exception table.
|
||||
virtual uint8_t* startExceptionTable(const Function* F,
|
||||
uintptr_t &ActualSize) = 0;
|
||||
|
||||
/// endExceptionTable - This method is called when the JIT is done emitting
|
||||
/// the exception table.
|
||||
virtual void endExceptionTable(const Function *F, uint8_t *TableStart,
|
||||
uint8_t *TableEnd, uint8_t* FrameRegister) = 0;
|
||||
|
||||
/// deallocateExceptionTable - Free the specified exception table's memory.
|
||||
/// The argument must be the return value from a call to startExceptionTable()
|
||||
/// that hasn't been deallocated yet. This is never called when the JIT is
|
||||
/// currently emitting an exception table.
|
||||
virtual void deallocateExceptionTable(void *ET) = 0;
|
||||
|
||||
/// CheckInvariants - For testing only. Return true if all internal
|
||||
/// invariants are preserved, or return false and set ErrorStr to a helpful
|
||||
/// error message.
|
||||
virtual bool CheckInvariants(std::string &) {
|
||||
return true;
|
||||
}
|
||||
|
||||
/// GetDefaultCodeSlabSize - For testing only. Returns DefaultCodeSlabSize
|
||||
/// from DefaultJITMemoryManager.
|
||||
virtual size_t GetDefaultCodeSlabSize() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// GetDefaultDataSlabSize - For testing only. Returns DefaultCodeSlabSize
|
||||
/// from DefaultJITMemoryManager.
|
||||
virtual size_t GetDefaultDataSlabSize() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// GetDefaultStubSlabSize - For testing only. Returns DefaultCodeSlabSize
|
||||
/// from DefaultJITMemoryManager.
|
||||
virtual size_t GetDefaultStubSlabSize() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// GetNumCodeSlabs - For testing only. Returns the number of MemoryBlocks
|
||||
/// allocated for code.
|
||||
virtual unsigned GetNumCodeSlabs() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// GetNumDataSlabs - For testing only. Returns the number of MemoryBlocks
|
||||
/// allocated for data.
|
||||
virtual unsigned GetNumDataSlabs() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
/// GetNumStubSlabs - For testing only. Returns the number of MemoryBlocks
|
||||
/// allocated for function stubs.
|
||||
virtual unsigned GetNumStubSlabs() {
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
} // end namespace llvm.
|
||||
|
||||
#endif
|
||||
38
thirdparty/clang/include/llvm/ExecutionEngine/MCJIT.h
vendored
Normal file
38
thirdparty/clang/include/llvm/ExecutionEngine/MCJIT.h
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
//===-- MCJIT.h - MC-Based Just-In-Time Execution Engine --------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file forces the MCJIT to link in on certain operating systems.
|
||||
// (Windows).
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_MCJIT_H
|
||||
#define LLVM_EXECUTIONENGINE_MCJIT_H
|
||||
|
||||
#include "llvm/ExecutionEngine/ExecutionEngine.h"
|
||||
#include <cstdlib>
|
||||
|
||||
extern "C" void LLVMLinkInMCJIT();
|
||||
|
||||
namespace {
|
||||
struct ForceMCJITLinking {
|
||||
ForceMCJITLinking() {
|
||||
// We must reference MCJIT in such a way that compilers will not
|
||||
// delete it all as dead code, even with whole program optimization,
|
||||
// yet is effectively a NO-OP. As the compiler isn't smart enough
|
||||
// to know that getenv() never returns -1, this will do the job.
|
||||
if (std::getenv("bar") != (char*) -1)
|
||||
return;
|
||||
|
||||
LLVMLinkInMCJIT();
|
||||
}
|
||||
} ForceMCJITLinking;
|
||||
}
|
||||
|
||||
#endif
|
||||
124
thirdparty/clang/include/llvm/ExecutionEngine/OProfileWrapper.h
vendored
Normal file
124
thirdparty/clang/include/llvm/ExecutionEngine/OProfileWrapper.h
vendored
Normal file
@@ -0,0 +1,124 @@
|
||||
//===-- OProfileWrapper.h - OProfile JIT API Wrapper ------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
// This file defines a OProfileWrapper object that detects if the oprofile
|
||||
// daemon is running, and provides wrappers for opagent functions used to
|
||||
// communicate with the oprofile JIT interface. The dynamic library libopagent
|
||||
// does not need to be linked directly as this object lazily loads the library
|
||||
// when the first op_ function is called.
|
||||
//
|
||||
// See http://oprofile.sourceforge.net/doc/devel/jit-interface.html for the
|
||||
// definition of the interface.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_OPROFILEWRAPPER_H
|
||||
#define LLVM_EXECUTIONENGINE_OPROFILEWRAPPER_H
|
||||
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include <opagent.h>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
||||
class OProfileWrapper {
|
||||
typedef op_agent_t (*op_open_agent_ptr_t)();
|
||||
typedef int (*op_close_agent_ptr_t)(op_agent_t);
|
||||
typedef int (*op_write_native_code_ptr_t)(op_agent_t,
|
||||
const char*,
|
||||
uint64_t,
|
||||
void const*,
|
||||
const unsigned int);
|
||||
typedef int (*op_write_debug_line_info_ptr_t)(op_agent_t,
|
||||
void const*,
|
||||
size_t,
|
||||
struct debug_line_info const*);
|
||||
typedef int (*op_unload_native_code_ptr_t)(op_agent_t, uint64_t);
|
||||
|
||||
// Also used for op_minor_version function which has the same signature
|
||||
typedef int (*op_major_version_ptr_t)();
|
||||
|
||||
// This is not a part of the opagent API, but is useful nonetheless
|
||||
typedef bool (*IsOProfileRunningPtrT)();
|
||||
|
||||
|
||||
op_agent_t Agent;
|
||||
op_open_agent_ptr_t OpenAgentFunc;
|
||||
op_close_agent_ptr_t CloseAgentFunc;
|
||||
op_write_native_code_ptr_t WriteNativeCodeFunc;
|
||||
op_write_debug_line_info_ptr_t WriteDebugLineInfoFunc;
|
||||
op_unload_native_code_ptr_t UnloadNativeCodeFunc;
|
||||
op_major_version_ptr_t MajorVersionFunc;
|
||||
op_major_version_ptr_t MinorVersionFunc;
|
||||
IsOProfileRunningPtrT IsOProfileRunningFunc;
|
||||
|
||||
bool Initialized;
|
||||
|
||||
public:
|
||||
OProfileWrapper();
|
||||
|
||||
// For testing with a mock opagent implementation, skips the dynamic load and
|
||||
// the function resolution.
|
||||
OProfileWrapper(op_open_agent_ptr_t OpenAgentImpl,
|
||||
op_close_agent_ptr_t CloseAgentImpl,
|
||||
op_write_native_code_ptr_t WriteNativeCodeImpl,
|
||||
op_write_debug_line_info_ptr_t WriteDebugLineInfoImpl,
|
||||
op_unload_native_code_ptr_t UnloadNativeCodeImpl,
|
||||
op_major_version_ptr_t MajorVersionImpl,
|
||||
op_major_version_ptr_t MinorVersionImpl,
|
||||
IsOProfileRunningPtrT MockIsOProfileRunningImpl = 0)
|
||||
: OpenAgentFunc(OpenAgentImpl),
|
||||
CloseAgentFunc(CloseAgentImpl),
|
||||
WriteNativeCodeFunc(WriteNativeCodeImpl),
|
||||
WriteDebugLineInfoFunc(WriteDebugLineInfoImpl),
|
||||
UnloadNativeCodeFunc(UnloadNativeCodeImpl),
|
||||
MajorVersionFunc(MajorVersionImpl),
|
||||
MinorVersionFunc(MinorVersionImpl),
|
||||
IsOProfileRunningFunc(MockIsOProfileRunningImpl),
|
||||
Initialized(true)
|
||||
{
|
||||
}
|
||||
|
||||
// Calls op_open_agent in the oprofile JIT library and saves the returned
|
||||
// op_agent_t handle internally so it can be used when calling all the other
|
||||
// op_* functions. Callers of this class do not need to keep track of
|
||||
// op_agent_t objects.
|
||||
bool op_open_agent();
|
||||
|
||||
int op_close_agent();
|
||||
int op_write_native_code(const char* name,
|
||||
uint64_t addr,
|
||||
void const* code,
|
||||
const unsigned int size);
|
||||
int op_write_debug_line_info(void const* code,
|
||||
size_t num_entries,
|
||||
struct debug_line_info const* info);
|
||||
int op_unload_native_code(uint64_t addr);
|
||||
int op_major_version();
|
||||
int op_minor_version();
|
||||
|
||||
// Returns true if the oprofiled process is running, the opagent library is
|
||||
// loaded and a connection to the agent has been established, and false
|
||||
// otherwise.
|
||||
bool isAgentAvailable();
|
||||
|
||||
private:
|
||||
// Loads the libopagent library and initializes this wrapper if the oprofile
|
||||
// daemon is running
|
||||
bool initialize();
|
||||
|
||||
// Searches /proc for the oprofile daemon and returns true if the process if
|
||||
// found, or false otherwise.
|
||||
bool checkForOProfileProcEntry();
|
||||
|
||||
bool isOProfileRunning();
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
||||
#endif // LLVM_EXECUTIONENGINE_OPROFILEWRAPPER_H
|
||||
80
thirdparty/clang/include/llvm/ExecutionEngine/ObjectBuffer.h
vendored
Normal file
80
thirdparty/clang/include/llvm/ExecutionEngine/ObjectBuffer.h
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
//===---- ObjectBuffer.h - Utility class to wrap object image memory -----===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file declares a wrapper class to hold the memory into which an
|
||||
// object will be generated.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_OBJECTBUFFER_H
|
||||
#define LLVM_EXECUTIONENGINE_OBJECTBUFFER_H
|
||||
|
||||
#include "llvm/ADT/OwningPtr.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Support/MemoryBuffer.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
/// ObjectBuffer - This class acts as a container for the memory buffer used during
|
||||
/// generation and loading of executable objects using MCJIT and RuntimeDyld. The
|
||||
/// underlying memory for the object will be owned by the ObjectBuffer instance
|
||||
/// throughout its lifetime. The getMemBuffer() method provides a way to create a
|
||||
/// MemoryBuffer wrapper object instance to be owned by other classes (such as
|
||||
/// ObjectFile) as needed, but the MemoryBuffer instance returned does not own the
|
||||
/// actual memory it points to.
|
||||
class ObjectBuffer {
|
||||
public:
|
||||
ObjectBuffer() {}
|
||||
ObjectBuffer(MemoryBuffer* Buf) : Buffer(Buf) {}
|
||||
virtual ~ObjectBuffer() {}
|
||||
|
||||
/// getMemBuffer - Like MemoryBuffer::getMemBuffer() this function
|
||||
/// returns a pointer to an object that is owned by the caller. However,
|
||||
/// the caller does not take ownership of the underlying memory.
|
||||
MemoryBuffer *getMemBuffer() const {
|
||||
return MemoryBuffer::getMemBuffer(Buffer->getBuffer(), "", false);
|
||||
}
|
||||
|
||||
const char *getBufferStart() const { return Buffer->getBufferStart(); }
|
||||
size_t getBufferSize() const { return Buffer->getBufferSize(); }
|
||||
|
||||
protected:
|
||||
// The memory contained in an ObjectBuffer
|
||||
OwningPtr<MemoryBuffer> Buffer;
|
||||
};
|
||||
|
||||
/// ObjectBufferStream - This class encapsulates the SmallVector and
|
||||
/// raw_svector_ostream needed to generate an object using MC code emission
|
||||
/// while providing a common ObjectBuffer interface for access to the
|
||||
/// memory once the object has been generated.
|
||||
class ObjectBufferStream : public ObjectBuffer {
|
||||
public:
|
||||
ObjectBufferStream() : OS(SV) {}
|
||||
virtual ~ObjectBufferStream() {}
|
||||
|
||||
raw_ostream &getOStream() { return OS; }
|
||||
void flush()
|
||||
{
|
||||
OS.flush();
|
||||
|
||||
// Make the data accessible via the ObjectBuffer::Buffer
|
||||
Buffer.reset(MemoryBuffer::getMemBuffer(StringRef(SV.data(), SV.size()),
|
||||
"",
|
||||
false));
|
||||
}
|
||||
|
||||
protected:
|
||||
SmallVector<char, 4096> SV; // Working buffer into which we JIT.
|
||||
raw_svector_ostream OS; // streaming wrapper
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
||||
#endif
|
||||
63
thirdparty/clang/include/llvm/ExecutionEngine/ObjectImage.h
vendored
Normal file
63
thirdparty/clang/include/llvm/ExecutionEngine/ObjectImage.h
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
//===---- ObjectImage.h - Format independent executuable object image -----===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file declares a file format independent ObjectImage class.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_OBJECTIMAGE_H
|
||||
#define LLVM_EXECUTIONENGINE_OBJECTIMAGE_H
|
||||
|
||||
#include "llvm/ExecutionEngine/ObjectBuffer.h"
|
||||
#include "llvm/Object/ObjectFile.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
|
||||
/// ObjectImage - A container class that represents an ObjectFile that has been
|
||||
/// or is in the process of being loaded into memory for execution.
|
||||
class ObjectImage {
|
||||
ObjectImage() LLVM_DELETED_FUNCTION;
|
||||
ObjectImage(const ObjectImage &other) LLVM_DELETED_FUNCTION;
|
||||
|
||||
protected:
|
||||
OwningPtr<ObjectBuffer> Buffer;
|
||||
|
||||
public:
|
||||
ObjectImage(ObjectBuffer *Input) : Buffer(Input) {}
|
||||
virtual ~ObjectImage() {}
|
||||
|
||||
virtual object::symbol_iterator begin_symbols() const = 0;
|
||||
virtual object::symbol_iterator end_symbols() const = 0;
|
||||
|
||||
virtual object::section_iterator begin_sections() const = 0;
|
||||
virtual object::section_iterator end_sections() const = 0;
|
||||
|
||||
virtual /* Triple::ArchType */ unsigned getArch() const = 0;
|
||||
|
||||
// Subclasses can override these methods to update the image with loaded
|
||||
// addresses for sections and common symbols
|
||||
virtual void updateSectionAddress(const object::SectionRef &Sec,
|
||||
uint64_t Addr) = 0;
|
||||
virtual void updateSymbolAddress(const object::SymbolRef &Sym,
|
||||
uint64_t Addr) = 0;
|
||||
|
||||
virtual StringRef getData() const = 0;
|
||||
|
||||
virtual object::ObjectFile* getObjectFile() const = 0;
|
||||
|
||||
// Subclasses can override these methods to provide JIT debugging support
|
||||
virtual void registerWithDebugger() = 0;
|
||||
virtual void deregisterWithDebugger() = 0;
|
||||
};
|
||||
|
||||
} // end namespace llvm
|
||||
|
||||
#endif // LLVM_EXECUTIONENGINE_OBJECTIMAGE_H
|
||||
|
||||
116
thirdparty/clang/include/llvm/ExecutionEngine/RuntimeDyld.h
vendored
Normal file
116
thirdparty/clang/include/llvm/ExecutionEngine/RuntimeDyld.h
vendored
Normal file
@@ -0,0 +1,116 @@
|
||||
//===-- RuntimeDyld.h - Run-time dynamic linker for MC-JIT ------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Interface for the runtime dynamic linker facilities of the MC-JIT.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_RUNTIMEDYLD_H
|
||||
#define LLVM_EXECUTIONENGINE_RUNTIMEDYLD_H
|
||||
|
||||
#include "llvm/ADT/StringRef.h"
|
||||
#include "llvm/ExecutionEngine/ObjectBuffer.h"
|
||||
#include "llvm/Support/Memory.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class RuntimeDyldImpl;
|
||||
class ObjectImage;
|
||||
|
||||
// RuntimeDyld clients often want to handle the memory management of
|
||||
// what gets placed where. For JIT clients, this is the subset of
|
||||
// JITMemoryManager required for dynamic loading of binaries.
|
||||
//
|
||||
// FIXME: As the RuntimeDyld fills out, additional routines will be needed
|
||||
// for the varying types of objects to be allocated.
|
||||
class RTDyldMemoryManager {
|
||||
RTDyldMemoryManager(const RTDyldMemoryManager&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const RTDyldMemoryManager&) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
RTDyldMemoryManager() {}
|
||||
virtual ~RTDyldMemoryManager();
|
||||
|
||||
/// Allocate a memory block of (at least) the given size suitable for
|
||||
/// executable code. The SectionID is a unique identifier assigned by the JIT
|
||||
/// engine, and optionally recorded by the memory manager to access a loaded
|
||||
/// section.
|
||||
virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
|
||||
unsigned SectionID) = 0;
|
||||
|
||||
/// Allocate a memory block of (at least) the given size suitable for data.
|
||||
/// The SectionID is a unique identifier assigned by the JIT engine, and
|
||||
/// optionally recorded by the memory manager to access a loaded section.
|
||||
virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
|
||||
unsigned SectionID, bool IsReadOnly) = 0;
|
||||
|
||||
/// This method returns the address of the specified function. As such it is
|
||||
/// only useful for resolving library symbols, not code generated symbols.
|
||||
///
|
||||
/// If AbortOnFailure is false and no function with the given name is
|
||||
/// found, this function returns a null pointer. Otherwise, it prints a
|
||||
/// message to stderr and aborts.
|
||||
virtual void *getPointerToNamedFunction(const std::string &Name,
|
||||
bool AbortOnFailure = true) = 0;
|
||||
|
||||
/// This method is called when object loading is complete and section page
|
||||
/// permissions can be applied. It is up to the memory manager implementation
|
||||
/// to decide whether or not to act on this method. The memory manager will
|
||||
/// typically allocate all sections as read-write and then apply specific
|
||||
/// permissions when this method is called.
|
||||
///
|
||||
/// Returns true if an error occurred, false otherwise.
|
||||
virtual bool applyPermissions(std::string *ErrMsg = 0) = 0;
|
||||
};
|
||||
|
||||
class RuntimeDyld {
|
||||
RuntimeDyld(const RuntimeDyld &) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const RuntimeDyld &) LLVM_DELETED_FUNCTION;
|
||||
|
||||
// RuntimeDyldImpl is the actual class. RuntimeDyld is just the public
|
||||
// interface.
|
||||
RuntimeDyldImpl *Dyld;
|
||||
RTDyldMemoryManager *MM;
|
||||
protected:
|
||||
// Change the address associated with a section when resolving relocations.
|
||||
// Any relocations already associated with the symbol will be re-resolved.
|
||||
void reassignSectionAddress(unsigned SectionID, uint64_t Addr);
|
||||
public:
|
||||
RuntimeDyld(RTDyldMemoryManager *);
|
||||
~RuntimeDyld();
|
||||
|
||||
/// Prepare the object contained in the input buffer for execution.
|
||||
/// Ownership of the input buffer is transferred to the ObjectImage
|
||||
/// instance returned from this function if successful. In the case of load
|
||||
/// failure, the input buffer will be deleted.
|
||||
ObjectImage *loadObject(ObjectBuffer *InputBuffer);
|
||||
|
||||
/// Get the address of our local copy of the symbol. This may or may not
|
||||
/// be the address used for relocation (clients can copy the data around
|
||||
/// and resolve relocatons based on where they put it).
|
||||
void *getSymbolAddress(StringRef Name);
|
||||
|
||||
/// Get the address of the target copy of the symbol. This is the address
|
||||
/// used for relocation.
|
||||
uint64_t getSymbolLoadAddress(StringRef Name);
|
||||
|
||||
/// Resolve the relocations for all symbols we currently know about.
|
||||
void resolveRelocations();
|
||||
|
||||
/// Map a section to its target address space value.
|
||||
/// Map the address of a JIT section as returned from the memory manager
|
||||
/// to the address in the target process as the running code will see it.
|
||||
/// This is the address which will be used for relocation resolution.
|
||||
void mapSectionAddress(const void *LocalAddress, uint64_t TargetAddress);
|
||||
|
||||
StringRef getErrorString();
|
||||
};
|
||||
|
||||
} // end namespace llvm
|
||||
|
||||
#endif
|
||||
176
thirdparty/clang/include/llvm/ExecutionEngine/SectionMemoryManager.h
vendored
Normal file
176
thirdparty/clang/include/llvm/ExecutionEngine/SectionMemoryManager.h
vendored
Normal file
@@ -0,0 +1,176 @@
|
||||
//===- SectionMemoryManager.h - Memory manager for MCJIT/RtDyld -*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file contains the declaration of a section-based memory manager used by
|
||||
// the MCJIT execution engine and RuntimeDyld.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_SECTIONMEMORYMANAGER_H
|
||||
#define LLVM_EXECUTIONENGINE_SECTIONMEMORYMANAGER_H
|
||||
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/ExecutionEngine/JITMemoryManager.h"
|
||||
#include "llvm/Support/ErrorHandling.h"
|
||||
#include "llvm/Support/Memory.h"
|
||||
|
||||
namespace llvm {
|
||||
|
||||
/// This is a simple memory manager which implements the methods called by
|
||||
/// the RuntimeDyld class to allocate memory for section-based loading of
|
||||
/// objects, usually those generated by the MCJIT execution engine.
|
||||
///
|
||||
/// This memory manager allocates all section memory as read-write. The
|
||||
/// RuntimeDyld will copy JITed section memory into these allocated blocks
|
||||
/// and perform any necessary linking and relocations.
|
||||
///
|
||||
/// Any client using this memory manager MUST ensure that section-specific
|
||||
/// page permissions have been applied before attempting to execute functions
|
||||
/// in the JITed object. Permissions can be applied either by calling
|
||||
/// MCJIT::finalizeObject or by calling SectionMemoryManager::applyPermissions
|
||||
/// directly. Clients of MCJIT should call MCJIT::finalizeObject.
|
||||
class SectionMemoryManager : public JITMemoryManager {
|
||||
SectionMemoryManager(const SectionMemoryManager&) LLVM_DELETED_FUNCTION;
|
||||
void operator=(const SectionMemoryManager&) LLVM_DELETED_FUNCTION;
|
||||
|
||||
public:
|
||||
SectionMemoryManager() { }
|
||||
virtual ~SectionMemoryManager();
|
||||
|
||||
/// \brief Allocates a memory block of (at least) the given size suitable for
|
||||
/// executable code.
|
||||
///
|
||||
/// The value of \p Alignment must be a power of two. If \p Alignment is zero
|
||||
/// a default alignment of 16 will be used.
|
||||
virtual uint8_t *allocateCodeSection(uintptr_t Size, unsigned Alignment,
|
||||
unsigned SectionID);
|
||||
|
||||
/// \brief Allocates a memory block of (at least) the given size suitable for
|
||||
/// executable code.
|
||||
///
|
||||
/// The value of \p Alignment must be a power of two. If \p Alignment is zero
|
||||
/// a default alignment of 16 will be used.
|
||||
virtual uint8_t *allocateDataSection(uintptr_t Size, unsigned Alignment,
|
||||
unsigned SectionID,
|
||||
bool isReadOnly);
|
||||
|
||||
/// \brief Applies section-specific memory permissions.
|
||||
///
|
||||
/// This method is called when object loading is complete and section page
|
||||
/// permissions can be applied. It is up to the memory manager implementation
|
||||
/// to decide whether or not to act on this method. The memory manager will
|
||||
/// typically allocate all sections as read-write and then apply specific
|
||||
/// permissions when this method is called. Code sections cannot be executed
|
||||
/// until this function has been called.
|
||||
///
|
||||
/// \returns true if an error occurred, false otherwise.
|
||||
virtual bool applyPermissions(std::string *ErrMsg = 0);
|
||||
|
||||
/// This method returns the address of the specified function. As such it is
|
||||
/// only useful for resolving library symbols, not code generated symbols.
|
||||
///
|
||||
/// If \p AbortOnFailure is false and no function with the given name is
|
||||
/// found, this function returns a null pointer. Otherwise, it prints a
|
||||
/// message to stderr and aborts.
|
||||
virtual void *getPointerToNamedFunction(const std::string &Name,
|
||||
bool AbortOnFailure = true);
|
||||
|
||||
/// \brief Invalidate instruction cache for code sections.
|
||||
///
|
||||
/// Some platforms with separate data cache and instruction cache require
|
||||
/// explicit cache flush, otherwise JIT code manipulations (like resolved
|
||||
/// relocations) will get to the data cache but not to the instruction cache.
|
||||
///
|
||||
/// This method is not called by RuntimeDyld or MCJIT during the load
|
||||
/// process. Clients may call this function when needed. See the lli
|
||||
/// tool for example use.
|
||||
virtual void invalidateInstructionCache();
|
||||
|
||||
private:
|
||||
struct MemoryGroup {
|
||||
SmallVector<sys::MemoryBlock, 16> AllocatedMem;
|
||||
SmallVector<sys::MemoryBlock, 16> FreeMem;
|
||||
sys::MemoryBlock Near;
|
||||
};
|
||||
|
||||
uint8_t *allocateSection(MemoryGroup &MemGroup, uintptr_t Size,
|
||||
unsigned Alignment);
|
||||
|
||||
error_code applyMemoryGroupPermissions(MemoryGroup &MemGroup,
|
||||
unsigned Permissions);
|
||||
|
||||
MemoryGroup CodeMem;
|
||||
MemoryGroup RWDataMem;
|
||||
MemoryGroup RODataMem;
|
||||
|
||||
public:
|
||||
///
|
||||
/// Functions below are not used by MCJIT or RuntimeDyld, but must be
|
||||
/// implemented because they are declared as pure virtuals in the base class.
|
||||
///
|
||||
|
||||
virtual void setMemoryWritable() {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
virtual void setMemoryExecutable() {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
virtual void setPoisonMemory(bool poison) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
virtual void AllocateGOT() {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
virtual uint8_t *getGOTBase() const {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
return 0;
|
||||
}
|
||||
virtual uint8_t *startFunctionBody(const Function *F,
|
||||
uintptr_t &ActualSize){
|
||||
llvm_unreachable("Unexpected call!");
|
||||
return 0;
|
||||
}
|
||||
virtual uint8_t *allocateStub(const GlobalValue *F, unsigned StubSize,
|
||||
unsigned Alignment) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
return 0;
|
||||
}
|
||||
virtual void endFunctionBody(const Function *F, uint8_t *FunctionStart,
|
||||
uint8_t *FunctionEnd) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
virtual uint8_t *allocateSpace(intptr_t Size, unsigned Alignment) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
return 0;
|
||||
}
|
||||
virtual uint8_t *allocateGlobal(uintptr_t Size, unsigned Alignment) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
return 0;
|
||||
}
|
||||
virtual void deallocateFunctionBody(void *Body) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
virtual uint8_t *startExceptionTable(const Function *F,
|
||||
uintptr_t &ActualSize) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
return 0;
|
||||
}
|
||||
virtual void endExceptionTable(const Function *F, uint8_t *TableStart,
|
||||
uint8_t *TableEnd, uint8_t *FrameRegister) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
virtual void deallocateExceptionTable(void *ET) {
|
||||
llvm_unreachable("Unexpected call!");
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // LLVM_EXECUTION_ENGINE_SECTION_MEMORY_MANAGER_H
|
||||
|
||||
Reference in New Issue
Block a user