2003-08-01 22:19:03 +00:00
|
|
|
//===-- SparcV9CodeEmitter.cpp --------------------------------------------===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-05-30 20:17:33 +00:00
|
|
|
//
|
2003-10-13 19:51:20 +00:00
|
|
|
// SPARC-specific backend for emitting machine code to memory.
|
|
|
|
//
|
|
|
|
// This module also contains the code for lazily resolving the targets
|
|
|
|
// of call instructions, including the callback used to redirect calls
|
|
|
|
// to functions for which the code has not yet been generated into the
|
|
|
|
// JIT compiler.
|
|
|
|
//
|
|
|
|
// This file #includes SparcV9CodeEmitter.inc, which contains the code
|
|
|
|
// for getBinaryCodeForInstr(), a method that converts a MachineInstr
|
|
|
|
// into the corresponding binary machine code word.
|
2003-05-30 20:17:33 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2003-06-02 04:12:39 +00:00
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include "llvm/GlobalVariable.h"
|
2003-05-27 20:07:58 +00:00
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include "llvm/CodeGen/MachineCodeEmitter.h"
|
2003-06-04 20:01:13 +00:00
|
|
|
#include "llvm/CodeGen/MachineConstantPool.h"
|
2003-06-02 04:12:39 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionInfo.h"
|
2003-05-27 20:07:58 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
2003-05-30 20:17:33 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2003-06-02 04:12:39 +00:00
|
|
|
#include "llvm/Target/TargetData.h"
|
2003-08-01 22:19:03 +00:00
|
|
|
#include "Support/Debug.h"
|
2003-06-02 04:12:39 +00:00
|
|
|
#include "Support/hash_set"
|
2003-09-05 22:59:31 +00:00
|
|
|
#include "Support/Statistic.h"
|
2003-05-27 20:07:58 +00:00
|
|
|
#include "SparcInternals.h"
|
2003-12-17 22:04:00 +00:00
|
|
|
#include "SparcTargetMachine.h"
|
|
|
|
#include "SparcRegInfo.h"
|
2003-05-27 21:45:05 +00:00
|
|
|
#include "SparcV9CodeEmitter.h"
|
2003-08-29 04:22:54 +00:00
|
|
|
#include "Config/alloca.h"
|
2003-05-27 20:07:58 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2003-09-05 22:59:31 +00:00
|
|
|
namespace {
|
|
|
|
Statistic<> OverwrittenCalls("call-ovwr", "Number of over-written calls");
|
|
|
|
Statistic<> UnmodifiedCalls("call-skip", "Number of unmodified calls");
|
|
|
|
Statistic<> CallbackCalls("callback", "Number CompilationCallback() calls");
|
|
|
|
}
|
|
|
|
|
2003-12-17 22:04:00 +00:00
|
|
|
bool SparcTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
|
|
|
|
MachineCodeEmitter &MCE) {
|
2003-06-06 00:26:11 +00:00
|
|
|
MachineCodeEmitter *M = &MCE;
|
2003-06-06 04:41:22 +00:00
|
|
|
DEBUG(M = MachineCodeEmitter::createFilePrinterEmitter(MCE));
|
2003-06-04 20:01:13 +00:00
|
|
|
PM.add(new SparcV9CodeEmitter(*this, *M));
|
2003-12-20 09:17:40 +00:00
|
|
|
PM.add(createSparcMachineCodeDestructionPass()); //Free stuff no longer needed
|
2003-05-27 20:07:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2003-06-02 04:12:39 +00:00
|
|
|
namespace {
|
|
|
|
class JITResolver {
|
2003-06-04 20:01:13 +00:00
|
|
|
SparcV9CodeEmitter &SparcV9;
|
2003-06-02 04:12:39 +00:00
|
|
|
MachineCodeEmitter &MCE;
|
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
/// LazyCodeGenMap - Keep track of call sites for functions that are to be
|
|
|
|
/// lazily resolved.
|
|
|
|
///
|
2003-06-04 20:01:13 +00:00
|
|
|
std::map<uint64_t, Function*> LazyCodeGenMap;
|
2003-06-02 04:12:39 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
/// LazyResolverMap - Keep track of the lazy resolver created for a
|
|
|
|
/// particular function so that we can reuse them if necessary.
|
|
|
|
///
|
2003-06-04 20:01:13 +00:00
|
|
|
std::map<Function*, uint64_t> LazyResolverMap;
|
2003-08-06 16:20:22 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
enum CallType { ShortCall, FarCall };
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// We need to keep track of whether we used a simple call or a far call
|
|
|
|
/// (many instructions) in sequence. This means we need to keep track of
|
|
|
|
/// what type of stub we generate.
|
|
|
|
static std::map<uint64_t, CallType> LazyCallFlavor;
|
|
|
|
|
2003-06-02 04:12:39 +00:00
|
|
|
public:
|
2003-06-04 20:01:13 +00:00
|
|
|
JITResolver(SparcV9CodeEmitter &V9,
|
|
|
|
MachineCodeEmitter &mce) : SparcV9(V9), MCE(mce) {}
|
|
|
|
uint64_t getLazyResolver(Function *F);
|
|
|
|
uint64_t addFunctionReference(uint64_t Address, Function *F);
|
2003-08-06 16:20:22 +00:00
|
|
|
void deleteFunctionReference(uint64_t Address);
|
|
|
|
void addCallFlavor(uint64_t Address, CallType Flavor) {
|
|
|
|
LazyCallFlavor[Address] = Flavor;
|
|
|
|
}
|
2003-06-04 20:01:13 +00:00
|
|
|
|
|
|
|
// Utility functions for accessing data from static callback
|
|
|
|
uint64_t getCurrentPCValue() {
|
|
|
|
return MCE.getCurrentPCValue();
|
|
|
|
}
|
|
|
|
unsigned getBinaryCodeForInstr(MachineInstr &MI) {
|
|
|
|
return SparcV9.getBinaryCodeForInstr(MI);
|
|
|
|
}
|
|
|
|
|
2003-10-17 18:27:37 +00:00
|
|
|
inline void insertFarJumpAtAddr(int64_t Value, uint64_t Addr);
|
|
|
|
void insertJumpAtAddr(int64_t Value, uint64_t &Addr);
|
2003-06-05 20:52:06 +00:00
|
|
|
|
2003-06-02 04:12:39 +00:00
|
|
|
private:
|
2003-06-04 20:01:13 +00:00
|
|
|
uint64_t emitStubForFunction(Function *F);
|
2003-12-17 22:04:00 +00:00
|
|
|
static void SaveRegisters(uint64_t DoubleFP[], uint64_t CC[],
|
|
|
|
uint64_t Globals[]);
|
|
|
|
static void RestoreRegisters(uint64_t DoubleFP[], uint64_t CC[],
|
|
|
|
uint64_t Globals[]);
|
2003-08-29 04:22:54 +00:00
|
|
|
static void CompilationCallback();
|
2003-06-04 20:01:13 +00:00
|
|
|
uint64_t resolveFunctionReference(uint64_t RetAddr);
|
2003-06-05 20:52:06 +00:00
|
|
|
|
2003-06-02 04:12:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
JITResolver *TheJITResolver;
|
2003-08-06 16:20:22 +00:00
|
|
|
std::map<uint64_t, JITResolver::CallType> JITResolver::LazyCallFlavor;
|
2003-06-02 04:12:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// addFunctionReference - This method is called when we need to emit the
|
|
|
|
/// address of a function that has not yet been emitted, so we don't know the
|
|
|
|
/// address. Instead, we emit a call to the CompilationCallback method, and
|
|
|
|
/// keep track of where we are.
|
|
|
|
///
|
2003-06-04 20:01:13 +00:00
|
|
|
uint64_t JITResolver::addFunctionReference(uint64_t Address, Function *F) {
|
2003-08-06 16:20:22 +00:00
|
|
|
LazyCodeGenMap[Address] = F;
|
2003-08-29 04:22:54 +00:00
|
|
|
return (intptr_t)&JITResolver::CompilationCallback;
|
2003-06-02 04:12:39 +00:00
|
|
|
}
|
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
/// deleteFunctionReference - If we are emitting a far call, we already added a
|
|
|
|
/// reference to the function, but it is now incorrect, since the address to the
|
|
|
|
/// JIT resolver is too far away to be a simple call instruction. This is used
|
|
|
|
/// to remove the address from the map.
|
|
|
|
///
|
|
|
|
void JITResolver::deleteFunctionReference(uint64_t Address) {
|
|
|
|
std::map<uint64_t, Function*>::iterator I = LazyCodeGenMap.find(Address);
|
|
|
|
assert(I != LazyCodeGenMap.end() && "Not in map!");
|
|
|
|
LazyCodeGenMap.erase(I);
|
|
|
|
}
|
|
|
|
|
2003-06-04 20:01:13 +00:00
|
|
|
uint64_t JITResolver::resolveFunctionReference(uint64_t RetAddr) {
|
|
|
|
std::map<uint64_t, Function*>::iterator I = LazyCodeGenMap.find(RetAddr);
|
2003-06-02 04:12:39 +00:00
|
|
|
assert(I != LazyCodeGenMap.end() && "Not in map!");
|
|
|
|
Function *F = I->second;
|
|
|
|
LazyCodeGenMap.erase(I);
|
|
|
|
return MCE.forceCompilationOf(F);
|
|
|
|
}
|
|
|
|
|
2003-06-04 20:01:13 +00:00
|
|
|
uint64_t JITResolver::getLazyResolver(Function *F) {
|
|
|
|
std::map<Function*, uint64_t>::iterator I = LazyResolverMap.lower_bound(F);
|
2003-06-02 04:12:39 +00:00
|
|
|
if (I != LazyResolverMap.end() && I->first == F) return I->second;
|
|
|
|
|
2003-06-04 20:01:13 +00:00
|
|
|
uint64_t Stub = emitStubForFunction(F);
|
2003-06-02 04:12:39 +00:00
|
|
|
LazyResolverMap.insert(I, std::make_pair(F, Stub));
|
|
|
|
return Stub;
|
|
|
|
}
|
|
|
|
|
2003-10-17 18:27:37 +00:00
|
|
|
void JITResolver::insertJumpAtAddr(int64_t JumpTarget, uint64_t &Addr) {
|
|
|
|
DEBUG(std::cerr << "Emitting a jump to 0x" << std::hex << JumpTarget << "\n");
|
|
|
|
|
|
|
|
// If the target function is close enough to fit into the 19bit disp of
|
|
|
|
// BA, we should use this version, as it's much cheaper to generate.
|
|
|
|
int64_t BranchTarget = (JumpTarget-Addr) >> 2;
|
|
|
|
if (BranchTarget >= (1 << 19) || BranchTarget <= -(1 << 19)) {
|
|
|
|
TheJITResolver->insertFarJumpAtAddr(JumpTarget, Addr);
|
|
|
|
} else {
|
|
|
|
// ba <target>
|
|
|
|
MachineInstr *I = BuildMI(V9::BA, 1).addSImm(BranchTarget);
|
|
|
|
*((unsigned*)(intptr_t)Addr) = getBinaryCodeForInstr(*I);
|
|
|
|
Addr += 4;
|
|
|
|
delete I;
|
|
|
|
|
|
|
|
// nop
|
|
|
|
I = BuildMI(V9::NOP, 0);
|
|
|
|
*((unsigned*)(intptr_t)Addr) = getBinaryCodeForInstr(*I);
|
|
|
|
delete I;
|
|
|
|
}
|
|
|
|
}
|
2003-06-05 20:52:06 +00:00
|
|
|
|
2003-10-17 18:27:37 +00:00
|
|
|
void JITResolver::insertFarJumpAtAddr(int64_t Target, uint64_t Addr) {
|
2003-08-15 00:26:50 +00:00
|
|
|
static const unsigned
|
2003-08-06 22:19:18 +00:00
|
|
|
o6 = SparcIntRegClass::o6, g0 = SparcIntRegClass::g0,
|
|
|
|
g1 = SparcIntRegClass::g1, g5 = SparcIntRegClass::g5;
|
2003-06-05 20:52:06 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
MachineInstr* BinaryCode[] = {
|
|
|
|
//
|
2003-08-06 22:19:18 +00:00
|
|
|
// Get address to branch into %g1, using %g5 as a temporary
|
2003-08-06 16:20:22 +00:00
|
|
|
//
|
2003-08-06 22:19:18 +00:00
|
|
|
// sethi %uhi(Target), %g5 ;; get upper 22 bits of Target into %g5
|
|
|
|
BuildMI(V9::SETHI, 2).addSImm(Target >> 42).addReg(g5),
|
|
|
|
// or %g5, %ulo(Target), %g5 ;; get 10 lower bits of upper word into %g5
|
|
|
|
BuildMI(V9::ORi, 3).addReg(g5).addSImm((Target >> 32) & 0x03ff).addReg(g5),
|
|
|
|
// sllx %g5, 32, %g5 ;; shift those 10 bits to the upper word
|
|
|
|
BuildMI(V9::SLLXi6, 3).addReg(g5).addSImm(32).addReg(g5),
|
|
|
|
// sethi %hi(Target), %g1 ;; extract bits 10-31 into the dest reg
|
|
|
|
BuildMI(V9::SETHI, 2).addSImm((Target >> 10) & 0x03fffff).addReg(g1),
|
2003-08-15 00:26:50 +00:00
|
|
|
// or %g5, %g1, %g1 ;; get upper word (in %g5) into %g1
|
2003-08-06 22:19:18 +00:00
|
|
|
BuildMI(V9::ORr, 3).addReg(g5).addReg(g1).addReg(g1),
|
|
|
|
// or %g1, %lo(Target), %g1 ;; get lowest 10 bits of Target into %g1
|
|
|
|
BuildMI(V9::ORi, 3).addReg(g1).addSImm(Target & 0x03ff).addReg(g1),
|
|
|
|
// jmpl %g1, %g0, %g0 ;; indirect branch on %g1
|
|
|
|
BuildMI(V9::JMPLRETr, 3).addReg(g1).addReg(g0).addReg(g0),
|
|
|
|
// nop ;; delay slot
|
|
|
|
BuildMI(V9::NOP, 0)
|
2003-08-06 16:20:22 +00:00
|
|
|
};
|
2003-06-05 20:52:06 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
for (unsigned i=0, e=sizeof(BinaryCode)/sizeof(BinaryCode[0]); i!=e; ++i) {
|
|
|
|
*((unsigned*)(intptr_t)Addr) = getBinaryCodeForInstr(*BinaryCode[i]);
|
|
|
|
delete BinaryCode[i];
|
|
|
|
Addr += 4;
|
|
|
|
}
|
2003-06-05 20:52:06 +00:00
|
|
|
}
|
|
|
|
|
2003-12-17 22:04:00 +00:00
|
|
|
void JITResolver::SaveRegisters(uint64_t DoubleFP[], uint64_t CC[],
|
|
|
|
uint64_t Globals[]) {
|
2003-08-15 00:26:50 +00:00
|
|
|
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
|
|
|
|
|
|
|
|
__asm__ __volatile__ (// Save condition-code registers
|
|
|
|
"stx %%fsr, %0;\n\t"
|
|
|
|
"rd %%fprs, %1;\n\t"
|
|
|
|
"rd %%ccr, %2;\n\t"
|
2003-12-17 22:04:00 +00:00
|
|
|
: "=m"(CC[0]), "=r"(CC[1]), "=r"(CC[2]));
|
|
|
|
|
|
|
|
__asm__ __volatile__ (// Save globals g1 and g5
|
|
|
|
"stx %%g1, %0;\n\t"
|
|
|
|
"stx %%g5, %0;\n\t"
|
|
|
|
: "=m"(Globals[0]), "=m"(Globals[1]));
|
2003-08-15 00:26:50 +00:00
|
|
|
|
|
|
|
// GCC says: `asm' only allows up to thirty parameters!
|
2003-08-29 04:22:54 +00:00
|
|
|
__asm__ __volatile__ (// Save Single/Double FP registers, part 1
|
|
|
|
"std %%f0, %0;\n\t" "std %%f2, %1;\n\t"
|
|
|
|
"std %%f4, %2;\n\t" "std %%f6, %3;\n\t"
|
|
|
|
"std %%f8, %4;\n\t" "std %%f10, %5;\n\t"
|
|
|
|
"std %%f12, %6;\n\t" "std %%f14, %7;\n\t"
|
|
|
|
"std %%f16, %8;\n\t" "std %%f18, %9;\n\t"
|
|
|
|
"std %%f20, %10;\n\t" "std %%f22, %11;\n\t"
|
|
|
|
"std %%f24, %12;\n\t" "std %%f26, %13;\n\t"
|
|
|
|
"std %%f28, %14;\n\t" "std %%f30, %15;\n\t"
|
|
|
|
: "=m"(DoubleFP[ 0]), "=m"(DoubleFP[ 1]),
|
|
|
|
"=m"(DoubleFP[ 2]), "=m"(DoubleFP[ 3]),
|
|
|
|
"=m"(DoubleFP[ 4]), "=m"(DoubleFP[ 5]),
|
|
|
|
"=m"(DoubleFP[ 6]), "=m"(DoubleFP[ 7]),
|
|
|
|
"=m"(DoubleFP[ 8]), "=m"(DoubleFP[ 9]),
|
|
|
|
"=m"(DoubleFP[10]), "=m"(DoubleFP[11]),
|
|
|
|
"=m"(DoubleFP[12]), "=m"(DoubleFP[13]),
|
|
|
|
"=m"(DoubleFP[14]), "=m"(DoubleFP[15]));
|
2003-08-15 00:26:50 +00:00
|
|
|
|
2003-08-29 04:22:54 +00:00
|
|
|
__asm__ __volatile__ (// Save Double FP registers, part 2
|
2003-08-15 00:26:50 +00:00
|
|
|
"std %%f32, %0;\n\t" "std %%f34, %1;\n\t"
|
2003-08-15 16:15:28 +00:00
|
|
|
"std %%f36, %2;\n\t" "std %%f38, %3;\n\t"
|
2003-08-15 00:26:50 +00:00
|
|
|
"std %%f40, %4;\n\t" "std %%f42, %5;\n\t"
|
|
|
|
"std %%f44, %6;\n\t" "std %%f46, %7;\n\t"
|
|
|
|
"std %%f48, %8;\n\t" "std %%f50, %9;\n\t"
|
|
|
|
"std %%f52, %10;\n\t" "std %%f54, %11;\n\t"
|
|
|
|
"std %%f56, %12;\n\t" "std %%f58, %13;\n\t"
|
|
|
|
"std %%f60, %14;\n\t" "std %%f62, %15;\n\t"
|
2003-08-29 04:22:54 +00:00
|
|
|
: "=m"(DoubleFP[16]), "=m"(DoubleFP[17]),
|
|
|
|
"=m"(DoubleFP[18]), "=m"(DoubleFP[19]),
|
|
|
|
"=m"(DoubleFP[20]), "=m"(DoubleFP[21]),
|
|
|
|
"=m"(DoubleFP[22]), "=m"(DoubleFP[23]),
|
|
|
|
"=m"(DoubleFP[24]), "=m"(DoubleFP[25]),
|
|
|
|
"=m"(DoubleFP[26]), "=m"(DoubleFP[27]),
|
|
|
|
"=m"(DoubleFP[28]), "=m"(DoubleFP[29]),
|
|
|
|
"=m"(DoubleFP[30]), "=m"(DoubleFP[31]));
|
2003-08-15 00:26:50 +00:00
|
|
|
#endif
|
2003-08-29 04:22:54 +00:00
|
|
|
}
|
2003-08-15 00:26:50 +00:00
|
|
|
|
|
|
|
|
2003-12-17 22:04:00 +00:00
|
|
|
void JITResolver::RestoreRegisters(uint64_t DoubleFP[], uint64_t CC[],
|
|
|
|
uint64_t Globals[])
|
2003-09-05 22:59:31 +00:00
|
|
|
{
|
2003-08-15 00:26:50 +00:00
|
|
|
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
|
|
|
|
|
|
|
|
__asm__ __volatile__ (// Restore condition-code registers
|
|
|
|
"ldx %0, %%fsr;\n\t"
|
|
|
|
"wr %1, 0, %%fprs;\n\t"
|
|
|
|
"wr %2, 0, %%ccr;\n\t"
|
2003-12-17 22:04:00 +00:00
|
|
|
:: "m"(CC[0]), "r"(CC[1]), "r"(CC[2]));
|
|
|
|
|
|
|
|
__asm__ __volatile__ (// Restore globals g1 and g5
|
|
|
|
"ldx %0, %%g1;\n\t"
|
|
|
|
"ldx %0, %%g5;\n\t"
|
|
|
|
:: "m"(Globals[0]), "m"(Globals[1]));
|
2003-08-15 00:26:50 +00:00
|
|
|
|
|
|
|
// GCC says: `asm' only allows up to thirty parameters!
|
2003-08-29 04:22:54 +00:00
|
|
|
__asm__ __volatile__ (// Restore Single/Double FP registers, part 1
|
|
|
|
"ldd %0, %%f0;\n\t" "ldd %1, %%f2;\n\t"
|
|
|
|
"ldd %2, %%f4;\n\t" "ldd %3, %%f6;\n\t"
|
|
|
|
"ldd %4, %%f8;\n\t" "ldd %5, %%f10;\n\t"
|
|
|
|
"ldd %6, %%f12;\n\t" "ldd %7, %%f14;\n\t"
|
|
|
|
"ldd %8, %%f16;\n\t" "ldd %9, %%f18;\n\t"
|
|
|
|
"ldd %10, %%f20;\n\t" "ldd %11, %%f22;\n\t"
|
|
|
|
"ldd %12, %%f24;\n\t" "ldd %13, %%f26;\n\t"
|
|
|
|
"ldd %14, %%f28;\n\t" "ldd %15, %%f30;\n\t"
|
|
|
|
:: "m"(DoubleFP[0]), "m"(DoubleFP[1]),
|
|
|
|
"m"(DoubleFP[2]), "m"(DoubleFP[3]),
|
|
|
|
"m"(DoubleFP[4]), "m"(DoubleFP[5]),
|
|
|
|
"m"(DoubleFP[6]), "m"(DoubleFP[7]),
|
|
|
|
"m"(DoubleFP[8]), "m"(DoubleFP[9]),
|
|
|
|
"m"(DoubleFP[10]), "m"(DoubleFP[11]),
|
|
|
|
"m"(DoubleFP[12]), "m"(DoubleFP[13]),
|
|
|
|
"m"(DoubleFP[14]), "m"(DoubleFP[15]));
|
|
|
|
|
|
|
|
__asm__ __volatile__ (// Restore Double FP registers, part 2
|
2003-08-15 00:26:50 +00:00
|
|
|
"ldd %0, %%f32;\n\t" "ldd %1, %%f34;\n\t"
|
|
|
|
"ldd %2, %%f36;\n\t" "ldd %3, %%f38;\n\t"
|
|
|
|
"ldd %4, %%f40;\n\t" "ldd %5, %%f42;\n\t"
|
|
|
|
"ldd %6, %%f44;\n\t" "ldd %7, %%f46;\n\t"
|
|
|
|
"ldd %8, %%f48;\n\t" "ldd %9, %%f50;\n\t"
|
|
|
|
"ldd %10, %%f52;\n\t" "ldd %11, %%f54;\n\t"
|
|
|
|
"ldd %12, %%f56;\n\t" "ldd %13, %%f58;\n\t"
|
|
|
|
"ldd %14, %%f60;\n\t" "ldd %15, %%f62;\n\t"
|
2003-08-29 04:22:54 +00:00
|
|
|
:: "m"(DoubleFP[16]), "m"(DoubleFP[17]),
|
|
|
|
"m"(DoubleFP[18]), "m"(DoubleFP[19]),
|
|
|
|
"m"(DoubleFP[20]), "m"(DoubleFP[21]),
|
|
|
|
"m"(DoubleFP[22]), "m"(DoubleFP[23]),
|
|
|
|
"m"(DoubleFP[24]), "m"(DoubleFP[25]),
|
|
|
|
"m"(DoubleFP[26]), "m"(DoubleFP[27]),
|
|
|
|
"m"(DoubleFP[28]), "m"(DoubleFP[29]),
|
|
|
|
"m"(DoubleFP[30]), "m"(DoubleFP[31]));
|
2003-08-15 00:26:50 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2003-08-29 04:22:54 +00:00
|
|
|
void JITResolver::CompilationCallback() {
|
2003-12-17 22:04:00 +00:00
|
|
|
// Local space to save the registers
|
2003-08-29 04:22:54 +00:00
|
|
|
uint64_t DoubleFP[32];
|
2003-12-17 22:04:00 +00:00
|
|
|
uint64_t CC[3];
|
|
|
|
uint64_t Globals[2];
|
2003-08-29 04:22:54 +00:00
|
|
|
|
2003-12-17 22:04:00 +00:00
|
|
|
SaveRegisters(DoubleFP, CC, Globals);
|
2003-09-05 22:59:31 +00:00
|
|
|
++CallbackCalls;
|
2003-08-29 04:22:54 +00:00
|
|
|
|
|
|
|
uint64_t CameFrom = (uint64_t)(intptr_t)__builtin_return_address(0);
|
2003-09-05 22:59:31 +00:00
|
|
|
uint64_t CameFrom1 = (uint64_t)(intptr_t)__builtin_return_address(1);
|
2003-06-05 20:52:06 +00:00
|
|
|
int64_t Target = (int64_t)TheJITResolver->resolveFunctionReference(CameFrom);
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "In callback! Addr=0x" << std::hex << CameFrom << "\n");
|
2003-08-15 00:26:50 +00:00
|
|
|
register int64_t returnAddr = 0;
|
2003-08-06 16:20:22 +00:00
|
|
|
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
|
|
|
|
__asm__ __volatile__ ("add %%i7, %%g0, %0" : "=r" (returnAddr) : );
|
|
|
|
DEBUG(std::cerr << "Read i7 (return addr) = "
|
|
|
|
<< std::hex << returnAddr << ", value: "
|
|
|
|
<< std::hex << *(unsigned*)returnAddr << "\n");
|
2003-06-05 20:52:06 +00:00
|
|
|
#endif
|
|
|
|
|
2003-09-05 22:59:31 +00:00
|
|
|
// If we can rewrite the ORIGINAL caller, we eliminate the whole need for a
|
|
|
|
// trampoline function stub!!
|
|
|
|
unsigned OrigCallInst = *((unsigned*)(intptr_t)CameFrom1);
|
|
|
|
int64_t OrigTarget = (Target-CameFrom1) >> 2;
|
|
|
|
if ((OrigCallInst & (1 << 30)) &&
|
|
|
|
(OrigTarget <= (1 << 30) && OrigTarget >= -(1 << 30)))
|
|
|
|
{
|
|
|
|
// The original call instruction was CALL <immed>, which means we can
|
|
|
|
// overwrite it directly, since the offset will fit into 30 bits
|
|
|
|
MachineInstr *C = BuildMI(V9::CALL, 1).addSImm(OrigTarget);
|
|
|
|
*((unsigned*)(intptr_t)CameFrom1)=TheJITResolver->getBinaryCodeForInstr(*C);
|
|
|
|
delete C;
|
|
|
|
++OverwrittenCalls;
|
|
|
|
} else {
|
|
|
|
++UnmodifiedCalls;
|
|
|
|
}
|
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
// Rewrite the call target so that we don't fault every time we execute it.
|
2003-06-05 20:52:06 +00:00
|
|
|
//
|
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
static const unsigned o6 = SparcIntRegClass::o6;
|
2003-06-05 20:52:06 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
// Subtract enough to overwrite up to the 'save' instruction
|
2003-08-06 22:19:18 +00:00
|
|
|
// This depends on whether we made a short call (1 instruction) or the
|
2003-08-15 00:26:50 +00:00
|
|
|
// farCall (7 instructions)
|
2003-08-06 22:19:18 +00:00
|
|
|
uint64_t Offset = (LazyCallFlavor[CameFrom] == ShortCall) ? 4 : 28;
|
2003-08-06 16:20:22 +00:00
|
|
|
uint64_t CodeBegin = CameFrom - Offset;
|
2003-08-29 04:22:54 +00:00
|
|
|
|
|
|
|
// FIXME FIXME FIXME FIXME: __builtin_frame_address doesn't work if frame
|
|
|
|
// pointer elimination has been performed. Having a variable sized alloca
|
2003-09-05 22:59:31 +00:00
|
|
|
// disables frame pointer elimination currently, even if it's dead. This is
|
|
|
|
// a gross hack.
|
2003-08-29 04:22:54 +00:00
|
|
|
alloca(42+Offset);
|
|
|
|
// FIXME FIXME FIXME FIXME
|
2003-08-06 16:20:22 +00:00
|
|
|
|
|
|
|
// Make sure that what we're about to overwrite is indeed "save"
|
2003-09-05 22:59:31 +00:00
|
|
|
MachineInstr *SV =BuildMI(V9::SAVEi, 3).addReg(o6).addSImm(-192).addReg(o6);
|
2003-08-06 16:20:22 +00:00
|
|
|
unsigned SaveInst = TheJITResolver->getBinaryCodeForInstr(*SV);
|
|
|
|
delete SV;
|
|
|
|
unsigned CodeInMem = *(unsigned*)(intptr_t)CodeBegin;
|
2003-08-29 04:22:54 +00:00
|
|
|
if (CodeInMem != SaveInst) {
|
|
|
|
std::cerr << "About to overwrite smthg not a save instr!";
|
|
|
|
abort();
|
|
|
|
}
|
2003-10-17 18:27:37 +00:00
|
|
|
// Overwrite it
|
|
|
|
TheJITResolver->insertJumpAtAddr(Target, CodeBegin);
|
2003-06-05 20:52:06 +00:00
|
|
|
|
2003-11-21 23:48:54 +00:00
|
|
|
// Flush the I-Cache: FLUSH clears out a doubleword at a given address
|
|
|
|
// Self-modifying code MUST clear out the I-Cache to be portable
|
|
|
|
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
|
|
|
|
for (int i = -Offset, e = 32-((int64_t)Offset); i < e; i += 8)
|
|
|
|
__asm__ __volatile__ ("flush %%i7 + %0" : : "r" (i));
|
|
|
|
#endif
|
2003-08-29 04:22:54 +00:00
|
|
|
|
2003-10-10 17:57:28 +00:00
|
|
|
// Change the return address to re-execute the restore, then the jump.
|
2003-09-05 22:59:31 +00:00
|
|
|
DEBUG(std::cerr << "Callback returning to: 0x"
|
2003-08-06 16:20:22 +00:00
|
|
|
<< std::hex << (CameFrom-Offset-12) << "\n");
|
2003-08-29 04:22:54 +00:00
|
|
|
#if defined(sparc) || defined(__sparc__) || defined(__sparcv9)
|
|
|
|
__asm__ __volatile__ ("sub %%i7, %0, %%i7" : : "r" (Offset+12));
|
|
|
|
#endif
|
2003-11-21 23:48:54 +00:00
|
|
|
|
2003-12-17 22:04:00 +00:00
|
|
|
RestoreRegisters(DoubleFP, CC, Globals);
|
2003-06-02 04:12:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// emitStubForFunction - This method is used by the JIT when it needs to emit
|
|
|
|
/// the address of a function for a function whose code has not yet been
|
|
|
|
/// generated. In order to do this, it generates a stub which jumps to the lazy
|
|
|
|
/// function compiler, which will eventually get fixed to call the function
|
|
|
|
/// directly.
|
|
|
|
///
|
2003-06-04 20:01:13 +00:00
|
|
|
uint64_t JITResolver::emitStubForFunction(Function *F) {
|
2003-08-29 04:22:54 +00:00
|
|
|
MCE.startFunctionStub(*F, 44);
|
2003-06-02 04:12:39 +00:00
|
|
|
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "Emitting stub at addr: 0x"
|
|
|
|
<< std::hex << MCE.getCurrentPCValue() << "\n");
|
2003-06-02 04:12:39 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
unsigned o6 = SparcIntRegClass::o6, g0 = SparcIntRegClass::g0;
|
|
|
|
|
|
|
|
// restore %g0, 0, %g0
|
|
|
|
MachineInstr *R = BuildMI(V9::RESTOREi, 3).addMReg(g0).addSImm(0)
|
|
|
|
.addMReg(g0, MOTy::Def);
|
|
|
|
SparcV9.emitWord(SparcV9.getBinaryCodeForInstr(*R));
|
|
|
|
delete R;
|
|
|
|
|
2003-06-05 20:52:06 +00:00
|
|
|
// save %sp, -192, %sp
|
|
|
|
MachineInstr *SV = BuildMI(V9::SAVEi, 3).addReg(o6).addSImm(-192).addReg(o6);
|
|
|
|
SparcV9.emitWord(SparcV9.getBinaryCodeForInstr(*SV));
|
|
|
|
delete SV;
|
2003-06-04 20:01:13 +00:00
|
|
|
|
|
|
|
int64_t CurrPC = MCE.getCurrentPCValue();
|
|
|
|
int64_t Addr = (int64_t)addFunctionReference(CurrPC, F);
|
|
|
|
int64_t CallTarget = (Addr-CurrPC) >> 2;
|
2003-09-05 22:59:31 +00:00
|
|
|
if (CallTarget >= (1 << 29) || CallTarget <= -(1 << 29)) {
|
|
|
|
// Since this is a far call, the actual address of the call is shifted
|
|
|
|
// by the number of instructions it takes to calculate the exact address
|
2003-08-06 16:20:22 +00:00
|
|
|
deleteFunctionReference(CurrPC);
|
|
|
|
SparcV9.emitFarCall(Addr, F);
|
2003-09-05 22:59:31 +00:00
|
|
|
} else {
|
2003-07-29 19:00:58 +00:00
|
|
|
// call CallTarget ;; invoke the callback
|
|
|
|
MachineInstr *Call = BuildMI(V9::CALL, 1).addSImm(CallTarget);
|
|
|
|
SparcV9.emitWord(SparcV9.getBinaryCodeForInstr(*Call));
|
|
|
|
delete Call;
|
2003-06-04 20:01:13 +00:00
|
|
|
|
2003-07-29 19:00:58 +00:00
|
|
|
// nop ;; call delay slot
|
|
|
|
MachineInstr *Nop = BuildMI(V9::NOP, 0);
|
|
|
|
SparcV9.emitWord(SparcV9.getBinaryCodeForInstr(*Nop));
|
|
|
|
delete Nop;
|
2003-08-06 16:20:22 +00:00
|
|
|
|
|
|
|
addCallFlavor(CurrPC, ShortCall);
|
2003-07-29 19:00:58 +00:00
|
|
|
}
|
2003-06-04 20:01:13 +00:00
|
|
|
|
|
|
|
SparcV9.emitWord(0xDEADBEEF); // marker so that we know it's really a stub
|
2003-08-06 16:20:22 +00:00
|
|
|
return (intptr_t)MCE.finishFunctionStub(*F)+4; /* 1 instr past the restore */
|
2003-06-04 20:01:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SparcV9CodeEmitter::SparcV9CodeEmitter(TargetMachine &tm,
|
|
|
|
MachineCodeEmitter &M): TM(tm), MCE(M)
|
|
|
|
{
|
|
|
|
TheJITResolver = new JITResolver(*this, M);
|
2003-06-02 04:12:39 +00:00
|
|
|
}
|
|
|
|
|
2003-06-04 20:01:13 +00:00
|
|
|
SparcV9CodeEmitter::~SparcV9CodeEmitter() {
|
|
|
|
delete TheJITResolver;
|
|
|
|
}
|
2003-06-02 04:12:39 +00:00
|
|
|
|
2003-06-04 20:01:13 +00:00
|
|
|
void SparcV9CodeEmitter::emitWord(unsigned Val) {
|
2003-05-27 20:07:58 +00:00
|
|
|
// Output the constant in big endian byte order...
|
|
|
|
unsigned byteVal;
|
2003-06-04 20:01:13 +00:00
|
|
|
for (int i = 3; i >= 0; --i) {
|
2003-05-27 20:07:58 +00:00
|
|
|
byteVal = Val >> 8*i;
|
2003-06-04 20:01:13 +00:00
|
|
|
MCE.emitByte(byteVal & 255);
|
2003-05-30 20:17:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-06-05 20:52:06 +00:00
|
|
|
unsigned
|
2003-07-14 23:26:03 +00:00
|
|
|
SparcV9CodeEmitter::getRealRegNum(unsigned fakeReg,
|
2003-08-15 00:26:50 +00:00
|
|
|
MachineInstr &MI) {
|
2003-07-14 23:26:03 +00:00
|
|
|
const TargetRegInfo &RI = TM.getRegInfo();
|
|
|
|
unsigned regClass, regType = RI.getRegType(fakeReg);
|
|
|
|
// At least map fakeReg into its class
|
|
|
|
fakeReg = RI.getClassRegNum(fakeReg, regClass);
|
|
|
|
|
2003-07-03 18:36:47 +00:00
|
|
|
switch (regClass) {
|
2003-12-17 22:04:00 +00:00
|
|
|
case SparcRegInfo::IntRegClassID: {
|
2003-07-03 18:36:47 +00:00
|
|
|
// Sparc manual, p31
|
|
|
|
static const unsigned IntRegMap[] = {
|
|
|
|
// "o0", "o1", "o2", "o3", "o4", "o5", "o7",
|
|
|
|
8, 9, 10, 11, 12, 13, 15,
|
|
|
|
// "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
|
|
|
|
16, 17, 18, 19, 20, 21, 22, 23,
|
|
|
|
// "i0", "i1", "i2", "i3", "i4", "i5", "i6", "i7",
|
|
|
|
24, 25, 26, 27, 28, 29, 30, 31,
|
|
|
|
// "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
|
|
|
|
0, 1, 2, 3, 4, 5, 6, 7,
|
|
|
|
// "o6"
|
|
|
|
14
|
|
|
|
};
|
|
|
|
|
|
|
|
return IntRegMap[fakeReg];
|
|
|
|
break;
|
|
|
|
}
|
2003-12-17 22:04:00 +00:00
|
|
|
case SparcRegInfo::FloatRegClassID: {
|
2003-07-03 18:36:47 +00:00
|
|
|
DEBUG(std::cerr << "FP reg: " << fakeReg << "\n");
|
2003-12-17 22:04:00 +00:00
|
|
|
if (regType == SparcRegInfo::FPSingleRegType) {
|
2003-07-14 23:26:03 +00:00
|
|
|
// only numbered 0-31, hence can already fit into 5 bits (and 6)
|
|
|
|
DEBUG(std::cerr << "FP single reg, returning: " << fakeReg << "\n");
|
2003-12-17 22:04:00 +00:00
|
|
|
} else if (regType == SparcRegInfo::FPDoubleRegType) {
|
2003-10-10 17:57:28 +00:00
|
|
|
// FIXME: This assumes that we only have 5-bit register fields!
|
2003-07-14 23:26:03 +00:00
|
|
|
// From Sparc Manual, page 40.
|
|
|
|
// The bit layout becomes: b[4], b[3], b[2], b[1], b[5]
|
|
|
|
fakeReg |= (fakeReg >> 5) & 1;
|
|
|
|
fakeReg &= 0x1f;
|
|
|
|
DEBUG(std::cerr << "FP double reg, returning: " << fakeReg << "\n");
|
|
|
|
}
|
2003-07-03 18:36:47 +00:00
|
|
|
return fakeReg;
|
|
|
|
}
|
2003-12-17 22:04:00 +00:00
|
|
|
case SparcRegInfo::IntCCRegClassID: {
|
2003-07-16 20:30:40 +00:00
|
|
|
/* xcc, icc, ccr */
|
|
|
|
static const unsigned IntCCReg[] = { 6, 4, 2 };
|
2003-07-03 18:36:47 +00:00
|
|
|
|
2003-07-16 20:30:40 +00:00
|
|
|
assert(fakeReg < sizeof(IntCCReg)/sizeof(IntCCReg[0])
|
|
|
|
&& "CC register out of bounds for IntCCReg map");
|
|
|
|
DEBUG(std::cerr << "IntCC reg: " << IntCCReg[fakeReg] << "\n");
|
|
|
|
return IntCCReg[fakeReg];
|
2003-07-03 18:36:47 +00:00
|
|
|
}
|
2003-12-17 22:04:00 +00:00
|
|
|
case SparcRegInfo::FloatCCRegClassID: {
|
2003-07-03 18:36:47 +00:00
|
|
|
/* These are laid out %fcc0 - %fcc3 => 0 - 3, so are correct */
|
|
|
|
DEBUG(std::cerr << "FP CC reg: " << fakeReg << "\n");
|
|
|
|
return fakeReg;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
assert(0 && "Invalid unified register number in getRegType");
|
|
|
|
return fakeReg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-15 19:09:43 +00:00
|
|
|
// WARNING: if the call used the delay slot to do meaningful work, that's not
|
|
|
|
// being accounted for, and the behavior will be incorrect!!
|
2003-08-06 16:20:22 +00:00
|
|
|
inline void SparcV9CodeEmitter::emitFarCall(uint64_t Target, Function *F) {
|
2003-08-15 00:26:50 +00:00
|
|
|
static const unsigned o6 = SparcIntRegClass::o6,
|
2003-08-06 22:19:18 +00:00
|
|
|
o7 = SparcIntRegClass::o7, g0 = SparcIntRegClass::g0,
|
|
|
|
g1 = SparcIntRegClass::g1, g5 = SparcIntRegClass::g5;
|
2003-07-15 19:09:43 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
MachineInstr* BinaryCode[] = {
|
|
|
|
//
|
2003-08-06 22:19:18 +00:00
|
|
|
// Get address to branch into %g1, using %g5 as a temporary
|
2003-08-06 16:20:22 +00:00
|
|
|
//
|
2003-08-06 22:19:18 +00:00
|
|
|
// sethi %uhi(Target), %g5 ;; get upper 22 bits of Target into %g5
|
|
|
|
BuildMI(V9::SETHI, 2).addSImm(Target >> 42).addReg(g5),
|
|
|
|
// or %g5, %ulo(Target), %g5 ;; get 10 lower bits of upper word into %1
|
|
|
|
BuildMI(V9::ORi, 3).addReg(g5).addSImm((Target >> 32) & 0x03ff).addReg(g5),
|
2003-08-15 00:26:50 +00:00
|
|
|
// sllx %g5, 32, %g5 ;; shift those 10 bits to the upper word
|
2003-08-06 22:19:18 +00:00
|
|
|
BuildMI(V9::SLLXi6, 3).addReg(g5).addSImm(32).addReg(g5),
|
|
|
|
// sethi %hi(Target), %g1 ;; extract bits 10-31 into the dest reg
|
|
|
|
BuildMI(V9::SETHI, 2).addSImm((Target >> 10) & 0x03fffff).addReg(g1),
|
2003-08-15 00:26:50 +00:00
|
|
|
// or %g5, %g1, %g1 ;; get upper word (in %g5) into %g1
|
2003-08-06 22:19:18 +00:00
|
|
|
BuildMI(V9::ORr, 3).addReg(g5).addReg(g1).addReg(g1),
|
|
|
|
// or %g1, %lo(Target), %g1 ;; get lowest 10 bits of Target into %g1
|
|
|
|
BuildMI(V9::ORi, 3).addReg(g1).addSImm(Target & 0x03ff).addReg(g1),
|
2003-08-15 00:26:50 +00:00
|
|
|
// jmpl %g1, %g0, %o7 ;; indirect call on %g1
|
2003-08-06 22:19:18 +00:00
|
|
|
BuildMI(V9::JMPLRETr, 3).addReg(g1).addReg(g0).addReg(o7),
|
2003-08-15 00:26:50 +00:00
|
|
|
// nop ;; delay slot
|
2003-08-06 22:19:18 +00:00
|
|
|
BuildMI(V9::NOP, 0)
|
2003-08-06 16:20:22 +00:00
|
|
|
};
|
2003-07-15 19:09:43 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
for (unsigned i=0, e=sizeof(BinaryCode)/sizeof(BinaryCode[0]); i!=e; ++i) {
|
|
|
|
// This is where we save the return address in the LazyResolverMap!!
|
2003-08-06 22:19:18 +00:00
|
|
|
if (i == 6 && F != 0) { // Do this right before the JMPL
|
2003-08-06 16:20:22 +00:00
|
|
|
uint64_t CurrPC = MCE.getCurrentPCValue();
|
|
|
|
TheJITResolver->addFunctionReference(CurrPC, F);
|
|
|
|
// Remember that this is a far call, to subtract appropriate offset later
|
|
|
|
TheJITResolver->addCallFlavor(CurrPC, JITResolver::FarCall);
|
|
|
|
}
|
2003-07-15 19:09:43 +00:00
|
|
|
|
2003-08-06 16:20:22 +00:00
|
|
|
emitWord(getBinaryCodeForInstr(*BinaryCode[i]));
|
|
|
|
delete BinaryCode[i];
|
|
|
|
}
|
2003-07-15 19:09:43 +00:00
|
|
|
}
|
|
|
|
|
2003-12-20 01:22:19 +00:00
|
|
|
void SparcJITInfo::replaceMachineCodeForFunction (void *Old, void *New) {
|
2003-10-20 17:59:09 +00:00
|
|
|
assert (TheJITResolver &&
|
|
|
|
"Can only call replaceMachineCodeForFunction from within JIT");
|
2003-10-17 18:27:37 +00:00
|
|
|
uint64_t Target = (uint64_t)(intptr_t)New;
|
|
|
|
uint64_t CodeBegin = (uint64_t)(intptr_t)Old;
|
|
|
|
TheJITResolver->insertJumpAtAddr(Target, CodeBegin);
|
|
|
|
}
|
2003-07-15 19:09:43 +00:00
|
|
|
|
2003-05-30 20:17:33 +00:00
|
|
|
int64_t SparcV9CodeEmitter::getMachineOpValue(MachineInstr &MI,
|
|
|
|
MachineOperand &MO) {
|
2003-06-02 02:13:26 +00:00
|
|
|
int64_t rv = 0; // Return value; defaults to 0 for unhandled cases
|
|
|
|
// or things that get fixed up later by the JIT.
|
|
|
|
|
2003-06-02 05:24:46 +00:00
|
|
|
if (MO.isVirtualRegister()) {
|
2003-06-06 03:35:37 +00:00
|
|
|
std::cerr << "ERROR: virtual register found in machine code.\n";
|
2003-06-02 05:24:46 +00:00
|
|
|
abort();
|
|
|
|
} else if (MO.isPCRelativeDisp()) {
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "PCRelativeDisp: ");
|
2003-06-02 05:24:46 +00:00
|
|
|
Value *V = MO.getVRegValue();
|
|
|
|
if (BasicBlock *BB = dyn_cast<BasicBlock>(V)) {
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "Saving reference to BB (VReg)\n");
|
2003-06-04 20:01:13 +00:00
|
|
|
unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
|
2003-06-02 05:24:46 +00:00
|
|
|
BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
|
2003-06-04 20:01:13 +00:00
|
|
|
} else if (const Constant *C = dyn_cast<Constant>(V)) {
|
2003-11-07 21:07:30 +00:00
|
|
|
if (const ConstantInt *CI = dyn_cast<ConstantInt>(C)) {
|
|
|
|
rv = CI->getRawValue() - MCE.getCurrentPCValue();
|
|
|
|
} else {
|
|
|
|
std::cerr << "Cannot have non-integral const in instruction: "
|
|
|
|
<< *C;
|
|
|
|
abort();
|
|
|
|
}
|
2003-06-04 20:01:13 +00:00
|
|
|
} else if (GlobalValue *GV = dyn_cast<GlobalValue>(V)) {
|
|
|
|
// same as MO.isGlobalAddress()
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "GlobalValue: ");
|
2003-06-04 20:01:13 +00:00
|
|
|
// external function calls, etc.?
|
|
|
|
if (Function *F = dyn_cast<Function>(GV)) {
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "Function: ");
|
2003-11-09 07:08:34 +00:00
|
|
|
// NOTE: This results in stubs being generated even for
|
|
|
|
// external, native functions, which is not optimal. See PR103.
|
|
|
|
rv = (int64_t)MCE.getGlobalValueAddress(F);
|
2003-06-04 20:01:13 +00:00
|
|
|
if (rv == 0) {
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "not yet generated\n");
|
2003-06-04 20:01:13 +00:00
|
|
|
// Function has not yet been code generated!
|
|
|
|
TheJITResolver->addFunctionReference(MCE.getCurrentPCValue(), F);
|
|
|
|
// Delayed resolution...
|
|
|
|
rv = TheJITResolver->getLazyResolver(F);
|
|
|
|
} else {
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "already generated: 0x" << std::hex << rv << "\n");
|
2003-06-04 20:01:13 +00:00
|
|
|
}
|
|
|
|
} else {
|
2003-06-06 03:35:37 +00:00
|
|
|
rv = (int64_t)MCE.getGlobalValueAddress(GV);
|
2003-08-06 22:19:18 +00:00
|
|
|
DEBUG(std::cerr << "Global addr: 0x" << std::hex << rv << "\n");
|
2003-06-04 20:01:13 +00:00
|
|
|
}
|
|
|
|
// The real target of the call is Addr = PC + (rv * 4)
|
|
|
|
// So undo that: give the instruction (Addr - PC) / 4
|
|
|
|
if (MI.getOpcode() == V9::CALL) {
|
|
|
|
int64_t CurrPC = MCE.getCurrentPCValue();
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "rv addr: 0x" << std::hex << rv << "\n"
|
2003-08-06 22:19:18 +00:00
|
|
|
<< "curr PC: 0x" << std::hex << CurrPC << "\n");
|
2003-07-15 19:09:43 +00:00
|
|
|
int64_t CallInstTarget = (rv - CurrPC) >> 2;
|
|
|
|
if (CallInstTarget >= (1<<29) || CallInstTarget <= -(1<<29)) {
|
|
|
|
DEBUG(std::cerr << "Making far call!\n");
|
2003-10-10 17:57:28 +00:00
|
|
|
// address is out of bounds for the 30-bit call,
|
2003-07-15 19:09:43 +00:00
|
|
|
// make an indirect jump-and-link
|
|
|
|
emitFarCall(rv);
|
|
|
|
// this invalidates the instruction so that the call with an incorrect
|
|
|
|
// address will not be emitted
|
|
|
|
rv = 0;
|
|
|
|
} else {
|
|
|
|
// The call fits into 30 bits, so just return the corrected address
|
|
|
|
rv = CallInstTarget;
|
2003-06-04 20:01:13 +00:00
|
|
|
}
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "returning addr: 0x" << rv << "\n");
|
2003-06-04 20:01:13 +00:00
|
|
|
}
|
2003-06-02 05:24:46 +00:00
|
|
|
} else {
|
|
|
|
std::cerr << "ERROR: PC relative disp unhandled:" << MO << "\n";
|
|
|
|
abort();
|
|
|
|
}
|
2003-06-05 20:52:06 +00:00
|
|
|
} else if (MO.isPhysicalRegister() ||
|
|
|
|
MO.getType() == MachineOperand::MO_CCRegister)
|
|
|
|
{
|
2003-07-03 18:36:47 +00:00
|
|
|
// This is necessary because the Sparc backend doesn't actually lay out
|
|
|
|
// registers in the real fashion -- it skips those that it chooses not to
|
|
|
|
// allocate, i.e. those that are the FP, SP, etc.
|
2003-07-14 23:26:03 +00:00
|
|
|
unsigned fakeReg = MO.getAllocatedRegNum();
|
|
|
|
unsigned realRegByClass = getRealRegNum(fakeReg, MI);
|
|
|
|
DEBUG(std::cerr << MO << ": Reg[" << std::dec << fakeReg << "] => "
|
2003-07-16 20:30:40 +00:00
|
|
|
<< realRegByClass << " (LLC: "
|
|
|
|
<< TM.getRegInfo().getUnifiedRegName(fakeReg) << ")\n");
|
2003-07-03 18:36:47 +00:00
|
|
|
rv = realRegByClass;
|
2003-05-27 20:07:58 +00:00
|
|
|
} else if (MO.isImmediate()) {
|
2003-06-02 02:13:26 +00:00
|
|
|
rv = MO.getImmedValue();
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "immed: " << rv << "\n");
|
2003-06-02 05:24:46 +00:00
|
|
|
} else if (MO.isGlobalAddress()) {
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "GlobalAddress: not PC-relative\n");
|
2003-06-02 04:12:39 +00:00
|
|
|
rv = (int64_t)
|
|
|
|
(intptr_t)getGlobalAddress(cast<GlobalValue>(MO.getVRegValue()),
|
2003-06-02 05:24:46 +00:00
|
|
|
MI, MO.isPCRelative());
|
2003-05-30 20:17:33 +00:00
|
|
|
} else if (MO.isMachineBasicBlock()) {
|
2003-06-02 05:24:46 +00:00
|
|
|
// Duplicate code of the above case for VirtualRegister, BasicBlock...
|
|
|
|
// It should really hit this case, but Sparc backend uses VRegs instead
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "Saving reference to MBB\n");
|
2003-07-26 23:04:00 +00:00
|
|
|
const BasicBlock *BB = MO.getMachineBasicBlock()->getBasicBlock();
|
2003-06-04 20:01:13 +00:00
|
|
|
unsigned* CurrPC = (unsigned*)(intptr_t)MCE.getCurrentPCValue();
|
2003-06-02 05:24:46 +00:00
|
|
|
BBRefs.push_back(std::make_pair(BB, std::make_pair(CurrPC, &MI)));
|
|
|
|
} else if (MO.isExternalSymbol()) {
|
|
|
|
// Sparc backend doesn't generate this (yet...)
|
|
|
|
std::cerr << "ERROR: External symbol unhandled: " << MO << "\n";
|
|
|
|
abort();
|
2003-05-30 20:17:33 +00:00
|
|
|
} else if (MO.isFrameIndex()) {
|
2003-06-02 05:24:46 +00:00
|
|
|
// Sparc backend doesn't generate this (yet...)
|
|
|
|
int FrameIndex = MO.getFrameIndex();
|
2003-05-30 20:17:33 +00:00
|
|
|
std::cerr << "ERROR: Frame index unhandled.\n";
|
2003-06-02 05:24:46 +00:00
|
|
|
abort();
|
2003-05-30 20:17:33 +00:00
|
|
|
} else if (MO.isConstantPoolIndex()) {
|
2003-11-07 18:06:26 +00:00
|
|
|
unsigned Index = MO.getConstantPoolIndex();
|
|
|
|
rv = MCE.getConstantPoolEntryAddress(Index);
|
2003-05-27 20:07:58 +00:00
|
|
|
} else {
|
2003-05-30 20:17:33 +00:00
|
|
|
std::cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
|
2003-06-02 05:24:46 +00:00
|
|
|
abort();
|
2003-06-02 02:13:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, deal with the various bitfield-extracting functions that
|
|
|
|
// are used in SPARC assembly. (Some of these make no sense in combination
|
|
|
|
// with some of the above; we'll trust that the instruction selector
|
|
|
|
// will not produce nonsense, and not check for valid combinations here.)
|
2003-12-14 13:24:17 +00:00
|
|
|
if (MO.isLoBits32()) { // %lo(val) == %lo() in Sparc ABI doc
|
2003-06-02 02:13:26 +00:00
|
|
|
return rv & 0x03ff;
|
2003-12-14 13:24:17 +00:00
|
|
|
} else if (MO.isHiBits32()) { // %lm(val) == %hi() in Sparc ABI doc
|
2003-06-02 02:13:26 +00:00
|
|
|
return (rv >> 10) & 0x03fffff;
|
2003-12-14 13:24:17 +00:00
|
|
|
} else if (MO.isLoBits64()) { // %hm(val) == %ulo() in Sparc ABI doc
|
2003-06-02 02:13:26 +00:00
|
|
|
return (rv >> 32) & 0x03ff;
|
2003-12-14 13:24:17 +00:00
|
|
|
} else if (MO.isHiBits64()) { // %hh(val) == %uhi() in Sparc ABI doc
|
2003-06-02 02:13:26 +00:00
|
|
|
return rv >> 42;
|
|
|
|
} else { // (unadorned) val
|
|
|
|
return rv;
|
2003-05-27 20:07:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned SparcV9CodeEmitter::getValueBit(int64_t Val, unsigned bit) {
|
|
|
|
Val >>= bit;
|
|
|
|
return (Val & 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SparcV9CodeEmitter::runOnMachineFunction(MachineFunction &MF) {
|
2003-06-04 20:01:13 +00:00
|
|
|
MCE.startFunction(MF);
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "Starting function " << MF.getFunction()->getName()
|
2003-06-02 04:12:39 +00:00
|
|
|
<< ", address: " << "0x" << std::hex
|
2003-06-06 00:26:11 +00:00
|
|
|
<< (long)MCE.getCurrentPCValue() << "\n");
|
2003-06-02 04:12:39 +00:00
|
|
|
|
2003-11-07 18:06:26 +00:00
|
|
|
MCE.emitConstantPool(MF.getConstantPool());
|
2003-05-27 20:07:58 +00:00
|
|
|
for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
|
|
|
|
emitBasicBlock(*I);
|
2003-06-04 20:01:13 +00:00
|
|
|
MCE.finishFunction(MF);
|
2003-06-02 04:12:39 +00:00
|
|
|
|
2003-07-03 18:36:47 +00:00
|
|
|
DEBUG(std::cerr << "Finishing fn " << MF.getFunction()->getName() << "\n");
|
2003-06-02 04:12:39 +00:00
|
|
|
|
|
|
|
// Resolve branches to BasicBlocks for the entire function
|
|
|
|
for (unsigned i = 0, e = BBRefs.size(); i != e; ++i) {
|
|
|
|
long Location = BBLocations[BBRefs[i].first];
|
|
|
|
unsigned *Ref = BBRefs[i].second.first;
|
|
|
|
MachineInstr *MI = BBRefs[i].second.second;
|
2003-07-03 18:36:47 +00:00
|
|
|
DEBUG(std::cerr << "Fixup @ " << std::hex << Ref << " to 0x" << Location
|
|
|
|
<< " in instr: " << std::dec << *MI);
|
2003-06-02 04:12:39 +00:00
|
|
|
for (unsigned ii = 0, ee = MI->getNumOperands(); ii != ee; ++ii) {
|
|
|
|
MachineOperand &op = MI->getOperand(ii);
|
|
|
|
if (op.isPCRelativeDisp()) {
|
|
|
|
// the instruction's branch target is made such that it branches to
|
2003-07-03 18:36:47 +00:00
|
|
|
// PC + (branchTarget * 4), so undo that arithmetic here:
|
2003-06-02 04:12:39 +00:00
|
|
|
// Location is the target of the branch
|
|
|
|
// Ref is the location of the instruction, and hence the PC
|
2003-07-03 18:36:47 +00:00
|
|
|
int64_t branchTarget = (Location - (long)Ref) >> 2;
|
2003-06-02 04:12:39 +00:00
|
|
|
// Save the flags.
|
|
|
|
bool loBits32=false, hiBits32=false, loBits64=false, hiBits64=false;
|
2003-12-14 13:24:17 +00:00
|
|
|
if (op.isLoBits32()) { loBits32=true; }
|
|
|
|
if (op.isHiBits32()) { hiBits32=true; }
|
|
|
|
if (op.isLoBits64()) { loBits64=true; }
|
|
|
|
if (op.isHiBits64()) { hiBits64=true; }
|
2003-06-02 04:12:39 +00:00
|
|
|
MI->SetMachineOperandConst(ii, MachineOperand::MO_SignExtendedImmed,
|
|
|
|
branchTarget);
|
|
|
|
if (loBits32) { MI->setOperandLo32(ii); }
|
|
|
|
else if (hiBits32) { MI->setOperandHi32(ii); }
|
|
|
|
else if (loBits64) { MI->setOperandLo64(ii); }
|
|
|
|
else if (hiBits64) { MI->setOperandHi64(ii); }
|
2003-06-06 00:26:11 +00:00
|
|
|
DEBUG(std::cerr << "Rewrote BB ref: ");
|
2003-06-02 04:12:39 +00:00
|
|
|
unsigned fixedInstr = SparcV9CodeEmitter::getBinaryCodeForInstr(*MI);
|
|
|
|
*Ref = fixedInstr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
BBRefs.clear();
|
|
|
|
BBLocations.clear();
|
|
|
|
|
2003-05-27 20:07:58 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SparcV9CodeEmitter::emitBasicBlock(MachineBasicBlock &MBB) {
|
2003-05-27 22:41:44 +00:00
|
|
|
currBB = MBB.getBasicBlock();
|
2003-06-04 20:01:13 +00:00
|
|
|
BBLocations[currBB] = MCE.getCurrentPCValue();
|
2003-07-15 19:09:43 +00:00
|
|
|
for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I){
|
|
|
|
unsigned binCode = getBinaryCodeForInstr(**I);
|
|
|
|
if (binCode == (1 << 30)) {
|
|
|
|
// this is an invalid call: the addr is out of bounds. that means a code
|
|
|
|
// sequence has already been emitted, and this is a no-op
|
|
|
|
DEBUG(std::cerr << "Call supressed: already emitted far call.\n");
|
|
|
|
} else {
|
|
|
|
emitWord(binCode);
|
|
|
|
}
|
|
|
|
}
|
2003-05-27 20:07:58 +00:00
|
|
|
}
|
|
|
|
|
2003-06-02 04:12:39 +00:00
|
|
|
void* SparcV9CodeEmitter::getGlobalAddress(GlobalValue *V, MachineInstr &MI,
|
|
|
|
bool isPCRelative)
|
|
|
|
{
|
|
|
|
if (isPCRelative) { // must be a call, this is a major hack!
|
|
|
|
// Try looking up the function to see if it is already compiled!
|
2003-06-04 20:01:13 +00:00
|
|
|
if (void *Addr = (void*)(intptr_t)MCE.getGlobalValueAddress(V)) {
|
|
|
|
intptr_t CurByte = MCE.getCurrentPCValue();
|
2003-06-02 04:12:39 +00:00
|
|
|
// The real target of the call is Addr = PC + (target * 4)
|
|
|
|
// CurByte is the PC, Addr we just received
|
|
|
|
return (void*) (((long)Addr - (long)CurByte) >> 2);
|
|
|
|
} else {
|
|
|
|
if (Function *F = dyn_cast<Function>(V)) {
|
|
|
|
// Function has not yet been code generated!
|
2003-06-04 20:01:13 +00:00
|
|
|
TheJITResolver->addFunctionReference(MCE.getCurrentPCValue(),
|
2003-06-02 04:12:39 +00:00
|
|
|
cast<Function>(V));
|
|
|
|
// Delayed resolution...
|
2003-06-02 05:24:46 +00:00
|
|
|
return
|
|
|
|
(void*)(intptr_t)TheJITResolver->getLazyResolver(cast<Function>(V));
|
2003-06-02 04:12:39 +00:00
|
|
|
} else {
|
|
|
|
std::cerr << "Unhandled global: " << *V << "\n";
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2003-06-04 20:01:13 +00:00
|
|
|
return (void*)(intptr_t)MCE.getGlobalValueAddress(V);
|
2003-06-02 04:12:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-13 00:23:05 +00:00
|
|
|
#include "SparcV9CodeEmitter.inc"
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|