mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-21 12:38:45 +00:00
Targets now configure themselves based on the source module, not on the
ad-hoc "Config" flags git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8134 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
62c720a5bd
commit
39c07264da
@ -51,12 +51,12 @@ public:
|
|||||||
/// createJIT - Create an return a new JIT compiler if there is one available
|
/// createJIT - Create an return a new JIT compiler if there is one available
|
||||||
/// for the current target. Otherwise it returns null.
|
/// for the current target. Otherwise it returns null.
|
||||||
///
|
///
|
||||||
static ExecutionEngine *createJIT(Module *M, unsigned Config);
|
static ExecutionEngine *createJIT(Module *M);
|
||||||
|
|
||||||
/// createInterpreter - Create a new interpreter object. This can never fail.
|
/// createInterpreter - Create a new interpreter object. This can never fail.
|
||||||
///
|
///
|
||||||
static ExecutionEngine *createInterpreter(Module *M, unsigned Config,
|
static ExecutionEngine *createInterpreter(Module *M, bool DebugMode,
|
||||||
bool DebugMode, bool TraceMode);
|
bool TraceMode);
|
||||||
|
|
||||||
void addGlobalMapping(const Function *F, void *Addr) {
|
void addGlobalMapping(const Function *F, void *Addr) {
|
||||||
void *&CurVal = GlobalAddress[(const GlobalValue*)F];
|
void *&CurVal = GlobalAddress[(const GlobalValue*)F];
|
||||||
|
@ -7,27 +7,44 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "Interpreter.h"
|
#include "Interpreter.h"
|
||||||
#include "llvm/Target/TargetMachineImpls.h"
|
#include "llvm/Module.h"
|
||||||
|
|
||||||
/// createInterpreter - Create a new interpreter object. This can never fail.
|
/// createInterpreter - Create a new interpreter object. This can never fail.
|
||||||
///
|
///
|
||||||
ExecutionEngine *ExecutionEngine::createInterpreter(Module *M,
|
ExecutionEngine *ExecutionEngine::createInterpreter(Module *M,
|
||||||
unsigned Config,
|
|
||||||
bool DebugMode,
|
bool DebugMode,
|
||||||
bool TraceMode) {
|
bool TraceMode) {
|
||||||
return new Interpreter(M, Config, DebugMode, TraceMode);
|
bool isLittleEndian;
|
||||||
|
switch (M->getEndianness()) {
|
||||||
|
case Module::LittleEndian: isLittleEndian = true; break;
|
||||||
|
case Module::BigEndian: isLittleEndian = false; break;
|
||||||
|
case Module::AnyPointerSize:
|
||||||
|
int Test = 0;
|
||||||
|
*(char*)&Test = 1; // Return true if the host is little endian
|
||||||
|
isLittleEndian = (Test == 1);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool isLongPointer;
|
||||||
|
switch (M->getPointerSize()) {
|
||||||
|
case Module::Pointer32: isLongPointer = false; break;
|
||||||
|
case Module::Pointer64: isLongPointer = true; break;
|
||||||
|
case Module::AnyPointerSize:
|
||||||
|
isLongPointer = (sizeof(void*) == 8); // Follow host
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Interpreter(M, isLittleEndian, isLongPointer, DebugMode,TraceMode);
|
||||||
}
|
}
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Interpreter ctor - Initialize stuff
|
// Interpreter ctor - Initialize stuff
|
||||||
//
|
//
|
||||||
Interpreter::Interpreter(Module *M, unsigned Config,
|
Interpreter::Interpreter(Module *M, bool isLittleEndian, bool isLongPointer,
|
||||||
bool DebugMode, bool TraceMode)
|
bool DebugMode, bool TraceMode)
|
||||||
: ExecutionEngine(M), ExitCode(0), Debug(DebugMode), Trace(TraceMode),
|
: ExecutionEngine(M), ExitCode(0), Debug(DebugMode), Trace(TraceMode),
|
||||||
CurFrame(-1), TD("lli", (Config & TM::EndianMask) == TM::LittleEndian,
|
CurFrame(-1), TD("lli", isLittleEndian, isLongPointer ? 8 : 4,
|
||||||
(Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4,
|
isLongPointer ? 8 : 4, isLongPointer ? 8 : 4) {
|
||||||
(Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4,
|
|
||||||
(Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4) {
|
|
||||||
|
|
||||||
setTargetData(TD);
|
setTargetData(TD);
|
||||||
// Initialize the "backend"
|
// Initialize the "backend"
|
||||||
|
@ -87,7 +87,8 @@ class Interpreter : public ExecutionEngine, public InstVisitor<Interpreter> {
|
|||||||
// AtExitHandlers - List of functions to call when the program exits.
|
// AtExitHandlers - List of functions to call when the program exits.
|
||||||
std::vector<Function*> AtExitHandlers;
|
std::vector<Function*> AtExitHandlers;
|
||||||
public:
|
public:
|
||||||
Interpreter(Module *M, unsigned Config, bool DebugMode, bool TraceMode);
|
Interpreter(Module *M, bool isLittleEndian, bool isLongPointer,
|
||||||
|
bool DebugMode, bool TraceMode);
|
||||||
inline ~Interpreter() { CW.setModule(0); }
|
inline ~Interpreter() { CW.setModule(0); }
|
||||||
|
|
||||||
// getExitCode - return the code that should be the exit code for the lli
|
// getExitCode - return the code that should be the exit code for the lli
|
||||||
|
@ -44,9 +44,9 @@ namespace {
|
|||||||
/// createJIT - Create an return a new JIT compiler if there is one available
|
/// createJIT - Create an return a new JIT compiler if there is one available
|
||||||
/// for the current target. Otherwise it returns null.
|
/// for the current target. Otherwise it returns null.
|
||||||
///
|
///
|
||||||
ExecutionEngine *ExecutionEngine::createJIT(Module *M, unsigned Config) {
|
ExecutionEngine *ExecutionEngine::createJIT(Module *M) {
|
||||||
|
|
||||||
TargetMachine* (*TargetMachineAllocator)(unsigned) = 0;
|
TargetMachine* (*TargetMachineAllocator)(const Module &) = 0;
|
||||||
|
|
||||||
// Allow a command-line switch to override what *should* be the default target
|
// Allow a command-line switch to override what *should* be the default target
|
||||||
// machine for this platform. This allows for debugging a Sparc JIT on X86 --
|
// machine for this platform. This allows for debugging a Sparc JIT on X86 --
|
||||||
@ -71,7 +71,7 @@ ExecutionEngine *ExecutionEngine::createJIT(Module *M, unsigned Config) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Allocate a target...
|
// Allocate a target...
|
||||||
TargetMachine *Target = (*TargetMachineAllocator)(Config);
|
TargetMachine *Target = TargetMachineAllocator(*M);
|
||||||
assert(Target && "Could not allocate target machine!");
|
assert(Target && "Could not allocate target machine!");
|
||||||
|
|
||||||
// Create the virtual machine object...
|
// Create the virtual machine object...
|
||||||
|
@ -75,19 +75,15 @@ int main(int argc, char** argv, const char ** envp) {
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// FIXME: in adddition to being gross, this is also wrong: This should use the
|
|
||||||
// pointersize/endianness of the host if the pointer size is not specified!!
|
|
||||||
unsigned Config = (M->getEndianness() != Module::BigEndian ? TM::LittleEndian : TM::BigEndian) |
|
|
||||||
(M->getPointerSize() != Module::Pointer64 ? TM::PtrSize32 : TM::PtrSize64);
|
|
||||||
ExecutionEngine *EE = 0;
|
ExecutionEngine *EE = 0;
|
||||||
|
|
||||||
// If there is nothing that is forcing us to use the interpreter, make a JIT.
|
// If there is nothing that is forcing us to use the interpreter, make a JIT.
|
||||||
if (!ForceInterpreter && !DebugMode && !TraceMode)
|
if (!ForceInterpreter && !DebugMode && !TraceMode)
|
||||||
EE = ExecutionEngine::createJIT(M, Config);
|
EE = ExecutionEngine::createJIT(M);
|
||||||
|
|
||||||
// If we can't make a JIT, make an interpreter instead.
|
// If we can't make a JIT, make an interpreter instead.
|
||||||
if (EE == 0)
|
if (EE == 0)
|
||||||
EE = ExecutionEngine::createInterpreter(M, Config, DebugMode, TraceMode);
|
EE = ExecutionEngine::createInterpreter(M, DebugMode, TraceMode);
|
||||||
|
|
||||||
// Add the module name to the start of the argv vector...
|
// Add the module name to the start of the argv vector...
|
||||||
// But delete .bc first, since programs (and users) might not expect to
|
// But delete .bc first, since programs (and users) might not expect to
|
||||||
|
Loading…
x
Reference in New Issue
Block a user