2005-10-16 05:39:50 +00:00
|
|
|
//===-- PPCCodeEmitter.cpp - JIT Code Emitter for PowerPC32 -------*- C++ -*-=//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-10-14 06:07:25 +00:00
|
|
|
// This file defines the PowerPC 32-bit CodeEmitter and associated machinery to
|
2007-07-05 17:07:56 +00:00
|
|
|
// JIT-compile bitcode to native PowerPC.
|
2004-06-21 16:55:25 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-14 23:59:06 +00:00
|
|
|
#include "PPCTargetMachine.h"
|
|
|
|
#include "PPCRelocations.h"
|
2005-10-14 23:51:18 +00:00
|
|
|
#include "PPC.h"
|
2004-10-21 01:42:02 +00:00
|
|
|
#include "llvm/Module.h"
|
2005-10-15 21:58:54 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2004-08-09 23:03:59 +00:00
|
|
|
#include "llvm/CodeGen/MachineCodeEmitter.h"
|
2009-05-30 20:51:52 +00:00
|
|
|
#include "llvm/CodeGen/JITCodeEmitter.h"
|
2004-08-09 23:03:59 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionPass.h"
|
2004-10-23 23:47:34 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
2008-02-13 18:39:37 +00:00
|
|
|
#include "llvm/CodeGen/MachineModuleInfo.h"
|
2004-08-09 23:03:59 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2009-06-01 19:57:37 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2006-08-27 12:54:02 +00:00
|
|
|
#include "llvm/Support/Compiler.h"
|
2006-02-18 00:08:58 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-11-16 04:47:33 +00:00
|
|
|
using namespace llvm;
|
2004-06-21 16:55:25 +00:00
|
|
|
|
2004-08-09 23:03:59 +00:00
|
|
|
namespace {
|
2009-05-30 20:51:52 +00:00
|
|
|
class PPCCodeEmitter {
|
2004-08-09 23:03:59 +00:00
|
|
|
TargetMachine &TM;
|
|
|
|
MachineCodeEmitter &MCE;
|
2009-05-30 20:51:52 +00:00
|
|
|
public:
|
2009-06-01 19:57:37 +00:00
|
|
|
PPCCodeEmitter(TargetMachine &tm, MachineCodeEmitter &mce):
|
|
|
|
TM(tm), MCE(mce) {}
|
2009-05-30 20:51:52 +00:00
|
|
|
|
|
|
|
/// getBinaryCodeForInstr - This function, generated by the
|
|
|
|
/// CodeEmitterGenerator using TableGen, produces the binary encoding for
|
|
|
|
/// machine instructions.
|
|
|
|
|
|
|
|
unsigned getBinaryCodeForInstr(const MachineInstr &MI);
|
|
|
|
|
|
|
|
/// getMachineOpValue - evaluates the MachineOperand of a given MachineInstr
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
unsigned getMachineOpValue(const MachineInstr &MI,
|
|
|
|
const MachineOperand &MO);
|
2004-08-09 23:03:59 +00:00
|
|
|
|
2006-12-08 04:54:03 +00:00
|
|
|
/// MovePCtoLROffset - When/if we see a MovePCtoLR instruction, we record
|
|
|
|
/// its address in the function into this pointer.
|
2009-05-30 20:51:52 +00:00
|
|
|
|
2006-12-08 04:54:03 +00:00
|
|
|
void *MovePCtoLROffset;
|
2009-05-30 20:51:52 +00:00
|
|
|
};
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template <class CodeEmitter>
|
2009-05-30 20:51:52 +00:00
|
|
|
class VISIBILITY_HIDDEN Emitter : public MachineFunctionPass,
|
|
|
|
public PPCCodeEmitter
|
|
|
|
{
|
|
|
|
TargetMachine &TM;
|
2009-06-01 19:57:37 +00:00
|
|
|
CodeEmitter &MCE;
|
2009-05-30 20:51:52 +00:00
|
|
|
|
2008-02-13 18:39:37 +00:00
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequired<MachineModuleInfo>();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
2004-10-21 01:42:02 +00:00
|
|
|
|
2004-08-09 23:03:59 +00:00
|
|
|
public:
|
2007-05-03 01:11:54 +00:00
|
|
|
static char ID;
|
2009-06-01 19:57:37 +00:00
|
|
|
Emitter(TargetMachine &tm, CodeEmitter &mce)
|
|
|
|
: MachineFunctionPass(&ID), PPCCodeEmitter(tm, mce), TM(tm), MCE(mce) {}
|
2004-08-09 23:03:59 +00:00
|
|
|
|
|
|
|
const char *getPassName() const { return "PowerPC Machine Code Emitter"; }
|
|
|
|
|
|
|
|
/// runOnMachineFunction - emits the given MachineFunction to memory
|
|
|
|
///
|
|
|
|
bool runOnMachineFunction(MachineFunction &MF);
|
|
|
|
|
|
|
|
/// emitBasicBlock - emits the given MachineBasicBlock to memory
|
|
|
|
///
|
|
|
|
void emitBasicBlock(MachineBasicBlock &MBB);
|
|
|
|
|
2004-10-14 06:07:25 +00:00
|
|
|
/// getValueBit - return the particular bit of Val
|
|
|
|
///
|
|
|
|
unsigned getValueBit(int64_t Val, unsigned bit) { return (Val >> bit) & 1; }
|
2004-08-09 23:03:59 +00:00
|
|
|
};
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template <class CodeEmitter>
|
|
|
|
char Emitter<CodeEmitter>::ID = 0;
|
2009-05-30 20:51:52 +00:00
|
|
|
}
|
|
|
|
|
2006-08-23 21:08:52 +00:00
|
|
|
/// createPPCCodeEmitterPass - Return a pass that emits the collected PPC code
|
|
|
|
/// to the specified MCE object.
|
|
|
|
FunctionPass *llvm::createPPCCodeEmitterPass(PPCTargetMachine &TM,
|
2009-06-01 19:57:37 +00:00
|
|
|
MachineCodeEmitter &MCE) {
|
2009-05-30 20:51:52 +00:00
|
|
|
return new Emitter<MachineCodeEmitter>(TM, MCE);
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionPass *llvm::createPPCJITCodeEmitterPass(PPCTargetMachine &TM,
|
2009-06-01 19:57:37 +00:00
|
|
|
JITCodeEmitter &JCE) {
|
2009-05-30 20:51:52 +00:00
|
|
|
return new Emitter<JITCodeEmitter>(TM, JCE);
|
2004-08-09 23:03:59 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template <class CodeEmitter>
|
|
|
|
bool Emitter<CodeEmitter>::runOnMachineFunction(MachineFunction &MF) {
|
2006-02-22 20:19:42 +00:00
|
|
|
assert((MF.getTarget().getRelocationModel() != Reloc::Default ||
|
|
|
|
MF.getTarget().getRelocationModel() != Reloc::Static) &&
|
|
|
|
"JIT relocation model must be set to static or default!");
|
2008-02-13 18:39:37 +00:00
|
|
|
|
|
|
|
MCE.setModuleInfo(&getAnalysis<MachineModuleInfo>());
|
2006-05-02 18:27:26 +00:00
|
|
|
do {
|
2006-12-08 04:54:03 +00:00
|
|
|
MovePCtoLROffset = 0;
|
2006-05-02 18:27:26 +00:00
|
|
|
MCE.startFunction(MF);
|
|
|
|
for (MachineFunction::iterator BB = MF.begin(), E = MF.end(); BB != E; ++BB)
|
|
|
|
emitBasicBlock(*BB);
|
|
|
|
} while (MCE.finishFunction(MF));
|
2004-10-21 01:42:02 +00:00
|
|
|
|
2004-08-09 23:03:59 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-06-01 19:57:37 +00:00
|
|
|
template <class CodeEmitter>
|
|
|
|
void Emitter<CodeEmitter>::emitBasicBlock(MachineBasicBlock &MBB) {
|
2006-05-03 17:10:41 +00:00
|
|
|
MCE.StartMachineBasicBlock(&MBB);
|
|
|
|
|
2004-10-23 18:28:01 +00:00
|
|
|
for (MachineBasicBlock::iterator I = MBB.begin(), E = MBB.end(); I != E; ++I){
|
2008-09-02 06:51:36 +00:00
|
|
|
const MachineInstr &MI = *I;
|
2004-11-23 05:59:53 +00:00
|
|
|
switch (MI.getOpcode()) {
|
|
|
|
default:
|
2008-09-02 06:51:36 +00:00
|
|
|
MCE.emitWordBE(getBinaryCodeForInstr(MI));
|
2004-11-23 05:59:53 +00:00
|
|
|
break;
|
2008-07-01 00:05:16 +00:00
|
|
|
case TargetInstrInfo::DBG_LABEL:
|
|
|
|
case TargetInstrInfo::EH_LABEL:
|
2008-02-13 18:39:37 +00:00
|
|
|
MCE.emitLabel(MI.getOperand(0).getImm());
|
|
|
|
break;
|
2008-03-17 06:56:52 +00:00
|
|
|
case TargetInstrInfo::IMPLICIT_DEF:
|
|
|
|
break; // pseudo opcode, no side effects
|
2004-11-23 05:59:53 +00:00
|
|
|
case PPC::MovePCtoLR:
|
2006-11-14 18:44:47 +00:00
|
|
|
case PPC::MovePCtoLR8:
|
2006-12-08 04:54:03 +00:00
|
|
|
assert(TM.getRelocationModel() == Reloc::PIC_);
|
|
|
|
MovePCtoLROffset = (void*)MCE.getCurrentPCValue();
|
|
|
|
MCE.emitWordBE(0x48000005); // bl 1
|
2004-11-23 05:59:53 +00:00
|
|
|
break;
|
|
|
|
}
|
2004-10-23 18:28:01 +00:00
|
|
|
}
|
2004-08-09 23:03:59 +00:00
|
|
|
}
|
|
|
|
|
2008-09-02 06:51:36 +00:00
|
|
|
unsigned PPCCodeEmitter::getMachineOpValue(const MachineInstr &MI,
|
|
|
|
const MachineOperand &MO) {
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2008-09-02 06:51:36 +00:00
|
|
|
unsigned rv = 0; // Return value; defaults to 0 for unhandled cases
|
2006-05-03 17:10:41 +00:00
|
|
|
// or things that get fixed up later by the JIT.
|
2008-10-03 15:45:36 +00:00
|
|
|
if (MO.isReg()) {
|
2006-04-17 21:07:20 +00:00
|
|
|
rv = PPCRegisterInfo::getRegisterNumbering(MO.getReg());
|
2005-04-19 05:41:52 +00:00
|
|
|
|
2005-07-20 22:42:00 +00:00
|
|
|
// Special encoding for MTCRF and MFOCRF, which uses a bit mask for the
|
2005-04-19 05:41:52 +00:00
|
|
|
// register, not the register number directly.
|
2005-07-20 22:42:00 +00:00
|
|
|
if ((MI.getOpcode() == PPC::MTCRF || MI.getOpcode() == PPC::MFOCRF) &&
|
2005-04-19 05:41:52 +00:00
|
|
|
(MO.getReg() >= PPC::CR0 && MO.getReg() <= PPC::CR7)) {
|
|
|
|
rv = 0x80 >> rv;
|
|
|
|
}
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (MO.isImm()) {
|
2007-12-30 20:49:49 +00:00
|
|
|
rv = MO.getImm();
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (MO.isGlobal() || MO.isSymbol() ||
|
|
|
|
MO.isCPI() || MO.isJTI()) {
|
2004-11-23 15:56:38 +00:00
|
|
|
unsigned Reloc = 0;
|
2007-02-25 05:34:32 +00:00
|
|
|
if (MI.getOpcode() == PPC::BL_Macho || MI.getOpcode() == PPC::BL8_Macho ||
|
2008-04-30 09:16:33 +00:00
|
|
|
MI.getOpcode() == PPC::BL_ELF || MI.getOpcode() == PPC::BL8_ELF ||
|
|
|
|
MI.getOpcode() == PPC::TAILB || MI.getOpcode() == PPC::TAILB8)
|
2004-11-23 05:59:53 +00:00
|
|
|
Reloc = PPC::reloc_pcrel_bx;
|
2004-11-24 22:30:08 +00:00
|
|
|
else {
|
2006-12-08 04:54:03 +00:00
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_) {
|
|
|
|
assert(MovePCtoLROffset && "MovePCtoLR not seen yet?");
|
|
|
|
}
|
2005-07-21 20:44:43 +00:00
|
|
|
switch (MI.getOpcode()) {
|
2006-12-06 19:40:04 +00:00
|
|
|
default: MI.dump(); assert(0 && "Unknown instruction for relocation!");
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::LIS:
|
2006-07-12 21:23:20 +00:00
|
|
|
case PPC::LIS8:
|
2006-08-23 21:08:52 +00:00
|
|
|
case PPC::ADDIS:
|
2006-07-12 21:23:20 +00:00
|
|
|
case PPC::ADDIS8:
|
2006-04-21 22:04:15 +00:00
|
|
|
Reloc = PPC::reloc_absolute_high; // Pointer to symbol
|
2005-07-21 20:44:43 +00:00
|
|
|
break;
|
2006-04-22 06:17:56 +00:00
|
|
|
case PPC::LI:
|
2006-07-12 21:23:20 +00:00
|
|
|
case PPC::LI8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::LA:
|
2006-07-12 21:23:20 +00:00
|
|
|
// Loads.
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::LBZ:
|
2006-12-15 16:44:10 +00:00
|
|
|
case PPC::LBZ8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::LHA:
|
2006-12-15 16:44:10 +00:00
|
|
|
case PPC::LHA8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::LHZ:
|
2006-12-15 16:44:10 +00:00
|
|
|
case PPC::LHZ8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::LWZ:
|
2006-12-15 16:44:10 +00:00
|
|
|
case PPC::LWZ8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::LFS:
|
|
|
|
case PPC::LFD:
|
2006-07-12 21:23:20 +00:00
|
|
|
|
|
|
|
// Stores.
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::STB:
|
2006-12-15 16:44:10 +00:00
|
|
|
case PPC::STB8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::STH:
|
2006-12-15 16:44:10 +00:00
|
|
|
case PPC::STH8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::STW:
|
2006-12-15 16:44:10 +00:00
|
|
|
case PPC::STW8:
|
2005-07-21 20:44:43 +00:00
|
|
|
case PPC::STFS:
|
|
|
|
case PPC::STFD:
|
2006-04-21 22:04:15 +00:00
|
|
|
Reloc = PPC::reloc_absolute_low;
|
2005-07-21 20:44:43 +00:00
|
|
|
break;
|
2006-07-12 21:23:20 +00:00
|
|
|
|
|
|
|
case PPC::LWA:
|
|
|
|
case PPC::LD:
|
|
|
|
case PPC::STD:
|
|
|
|
case PPC::STD_32:
|
|
|
|
Reloc = PPC::reloc_absolute_low_ix;
|
|
|
|
break;
|
2004-11-24 22:30:08 +00:00
|
|
|
}
|
2004-11-23 05:59:53 +00:00
|
|
|
}
|
2006-12-11 23:22:45 +00:00
|
|
|
|
|
|
|
MachineRelocation R;
|
2008-10-03 15:45:36 +00:00
|
|
|
if (MO.isGlobal()) {
|
2006-12-11 23:22:45 +00:00
|
|
|
R = MachineRelocation::getGV(MCE.getCurrentPCOffset(), Reloc,
|
2008-01-04 02:22:21 +00:00
|
|
|
MO.getGlobal(), 0,
|
|
|
|
isa<Function>(MO.getGlobal()));
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (MO.isSymbol()) {
|
2006-12-11 23:22:45 +00:00
|
|
|
R = MachineRelocation::getExtSym(MCE.getCurrentPCOffset(),
|
|
|
|
Reloc, MO.getSymbolName(), 0);
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (MO.isCPI()) {
|
2006-12-11 23:22:45 +00:00
|
|
|
R = MachineRelocation::getConstPool(MCE.getCurrentPCOffset(),
|
2007-12-30 23:10:15 +00:00
|
|
|
Reloc, MO.getIndex(), 0);
|
2006-12-11 23:22:45 +00:00
|
|
|
} else {
|
2008-10-03 15:45:36 +00:00
|
|
|
assert(MO.isJTI());
|
2006-12-11 23:22:45 +00:00
|
|
|
R = MachineRelocation::getJumpTable(MCE.getCurrentPCOffset(),
|
2007-12-30 23:10:15 +00:00
|
|
|
Reloc, MO.getIndex(), 0);
|
2006-12-11 23:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If in PIC mode, we need to encode the negated address of the
|
|
|
|
// 'movepctolr' into the unrelocated field. After relocation, we'll have
|
|
|
|
// &gv-&movepctolr-4 in the imm field. Once &movepctolr is added to the imm
|
|
|
|
// field, we get &gv. This doesn't happen for branch relocations, which are
|
|
|
|
// always implicitly pc relative.
|
|
|
|
if (TM.getRelocationModel() == Reloc::PIC_ && Reloc != PPC::reloc_pcrel_bx){
|
|
|
|
assert(MovePCtoLROffset && "MovePCtoLR not seen yet?");
|
|
|
|
R.setConstantVal(-(intptr_t)MovePCtoLROffset - 4);
|
|
|
|
}
|
|
|
|
MCE.addRelocation(R);
|
|
|
|
|
2008-10-03 15:45:36 +00:00
|
|
|
} else if (MO.isMBB()) {
|
2006-07-27 18:21:10 +00:00
|
|
|
unsigned Reloc = 0;
|
|
|
|
unsigned Opcode = MI.getOpcode();
|
2007-02-25 05:34:32 +00:00
|
|
|
if (Opcode == PPC::B || Opcode == PPC::BL_Macho ||
|
|
|
|
Opcode == PPC::BLA_Macho || Opcode == PPC::BL_ELF ||
|
|
|
|
Opcode == PPC::BLA_ELF)
|
2006-07-27 18:21:10 +00:00
|
|
|
Reloc = PPC::reloc_pcrel_bx;
|
2006-12-08 04:54:03 +00:00
|
|
|
else // BCC instruction
|
2006-07-27 18:21:10 +00:00
|
|
|
Reloc = PPC::reloc_pcrel_bcx;
|
|
|
|
MCE.addRelocation(MachineRelocation::getBB(MCE.getCurrentPCOffset(),
|
2007-12-30 23:10:15 +00:00
|
|
|
Reloc, MO.getMBB()));
|
2004-11-24 01:56:12 +00:00
|
|
|
} else {
|
2006-12-07 22:21:48 +00:00
|
|
|
cerr << "ERROR: Unknown type of MachineOperand: " << MO << "\n";
|
2004-11-24 01:56:12 +00:00
|
|
|
abort();
|
2004-10-23 18:28:01 +00:00
|
|
|
}
|
2004-11-24 01:56:12 +00:00
|
|
|
|
2004-10-14 06:39:56 +00:00
|
|
|
return rv;
|
2004-06-21 16:55:25 +00:00
|
|
|
}
|
|
|
|
|
2005-10-14 23:37:35 +00:00
|
|
|
#include "PPCGenCodeEmitter.inc"
|
2004-08-09 23:03:59 +00:00
|
|
|
|