2005-10-16 05:39:50 +00:00
|
|
|
//===-- PPCTargetMachine.cpp - Define TargetMachine for PowerPC -----------===//
|
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
|
|
|
//
|
2005-08-15 23:47:04 +00:00
|
|
|
// Top-level implementation for the PowerPC target.
|
2004-06-21 16:55:25 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-14 23:51:18 +00:00
|
|
|
#include "PPC.h"
|
2009-08-22 20:48:53 +00:00
|
|
|
#include "PPCMCAsmInfo.h"
|
2005-10-14 23:59:06 +00:00
|
|
|
#include "PPCTargetMachine.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2010-11-15 08:49:58 +00:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2008-07-31 18:13:12 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2009-07-25 06:49:55 +00:00
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2009-07-14 20:18:05 +00:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-03-20 22:36:22 +00:00
|
|
|
static MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT) {
|
2009-08-12 07:22:17 +00:00
|
|
|
Triple TheTriple(TT);
|
2009-08-13 17:03:38 +00:00
|
|
|
bool isPPC64 = TheTriple.getArch() == Triple::ppc64;
|
2011-04-19 21:14:45 +00:00
|
|
|
if (TheTriple.isOSDarwin())
|
2009-08-22 21:03:30 +00:00
|
|
|
return new PPCMCAsmInfoDarwin(isPPC64);
|
2009-08-22 20:48:53 +00:00
|
|
|
return new PPCLinuxMCAsmInfo(isPPC64);
|
2009-08-12 07:22:17 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-15 08:49:58 +00:00
|
|
|
// This is duplicated code. Refactor this.
|
|
|
|
static MCStreamer *createMCStreamer(const Target &T, const std::string &TT,
|
|
|
|
MCContext &Ctx, TargetAsmBackend &TAB,
|
|
|
|
raw_ostream &OS,
|
|
|
|
MCCodeEmitter *Emitter,
|
2011-01-23 17:55:27 +00:00
|
|
|
bool RelaxAll,
|
|
|
|
bool NoExecStack) {
|
2011-04-19 21:14:45 +00:00
|
|
|
if (Triple(TT).isOSDarwin())
|
2010-11-15 08:49:58 +00:00
|
|
|
return createMachOStreamer(Ctx, TAB, OS, Emitter, RelaxAll);
|
2011-04-19 21:14:45 +00:00
|
|
|
|
|
|
|
return NULL;
|
2010-11-15 08:49:58 +00:00
|
|
|
}
|
|
|
|
|
2009-07-25 06:49:55 +00:00
|
|
|
extern "C" void LLVMInitializePowerPCTarget() {
|
|
|
|
// Register the targets
|
|
|
|
RegisterTargetMachine<PPC32TargetMachine> A(ThePPC32Target);
|
|
|
|
RegisterTargetMachine<PPC64TargetMachine> B(ThePPC64Target);
|
2009-08-12 07:22:17 +00:00
|
|
|
|
2009-08-22 20:48:53 +00:00
|
|
|
RegisterAsmInfoFn C(ThePPC32Target, createMCAsmInfo);
|
|
|
|
RegisterAsmInfoFn D(ThePPC64Target, createMCAsmInfo);
|
Implement a basic MCCodeEmitter for PPC. This doesn't handle
fixups yet, and doesn't handle actually encoding operand values,
but this is enough for llc -show-mc-encoding to show the base
instruction encoding information, e.g.:
mflr r0 ; encoding: [0x7c,0x08,0x02,0xa6]
stw r0, 8(r1) ; encoding: [0x90,0x00,0x00,0x00]
stwu r1, -64(r1) ; encoding: [0x94,0x00,0x00,0x00]
Ltmp0:
lhz r4, 4(r3) ; encoding: [0xa0,0x00,0x00,0x00]
cmplwi cr0, r4, 8 ; encoding: [0x28,0x00,0x00,0x00]
beq cr0, LBB0_2 ; encoding: [0x40,0x00,0x00,0x00]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119116 91177308-0d34-0410-b5e6-96231b3b80d8
2010-11-15 04:16:32 +00:00
|
|
|
|
|
|
|
// Register the MC Code Emitter
|
|
|
|
TargetRegistry::RegisterCodeEmitter(ThePPC32Target, createPPCMCCodeEmitter);
|
|
|
|
TargetRegistry::RegisterCodeEmitter(ThePPC64Target, createPPCMCCodeEmitter);
|
2010-11-15 08:49:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
// Register the asm backend.
|
|
|
|
TargetRegistry::RegisterAsmBackend(ThePPC32Target, createPPCAsmBackend);
|
|
|
|
TargetRegistry::RegisterAsmBackend(ThePPC64Target, createPPCAsmBackend);
|
|
|
|
|
|
|
|
// Register the object streamer.
|
|
|
|
TargetRegistry::RegisterObjectStreamer(ThePPC32Target, createMCStreamer);
|
|
|
|
TargetRegistry::RegisterObjectStreamer(ThePPC64Target, createMCStreamer);
|
2009-07-25 06:49:55 +00:00
|
|
|
}
|
2009-06-16 20:12:29 +00:00
|
|
|
|
2006-09-07 23:39:26 +00:00
|
|
|
|
2009-08-11 20:42:37 +00:00
|
|
|
PPCTargetMachine::PPCTargetMachine(const Target &T, const std::string &TT,
|
2009-07-15 20:24:03 +00:00
|
|
|
const std::string &FS, bool is64Bit)
|
2009-08-11 20:42:37 +00:00
|
|
|
: LLVMTargetMachine(T, TT),
|
2009-08-02 23:37:13 +00:00
|
|
|
Subtarget(TT, FS, is64Bit),
|
2006-06-17 00:01:04 +00:00
|
|
|
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
|
2011-01-10 12:39:04 +00:00
|
|
|
FrameLowering(Subtarget), JITInfo(*this, is64Bit),
|
2010-05-11 17:31:57 +00:00
|
|
|
TLInfo(*this), TSInfo(*this),
|
2010-02-02 19:23:55 +00:00
|
|
|
InstrItins(Subtarget.getInstrItineraryData()) {
|
2006-06-16 01:37:27 +00:00
|
|
|
|
2008-02-20 11:22:39 +00:00
|
|
|
if (getRelocationModel() == Reloc::Default) {
|
2006-02-22 20:19:42 +00:00
|
|
|
if (Subtarget.isDarwin())
|
|
|
|
setRelocationModel(Reloc::DynamicNoPIC);
|
|
|
|
else
|
2006-12-21 20:26:09 +00:00
|
|
|
setRelocationModel(Reloc::Static);
|
2008-02-20 11:22:39 +00:00
|
|
|
}
|
2005-10-16 05:39:50 +00:00
|
|
|
}
|
|
|
|
|
2007-05-22 17:14:46 +00:00
|
|
|
/// Override this for PowerPC. Tail merging happily breaks up instruction issue
|
|
|
|
/// groups, which typically degrades performance.
|
2007-11-19 20:46:23 +00:00
|
|
|
bool PPCTargetMachine::getEnableTailMergeDefault() const { return false; }
|
2007-05-22 17:14:46 +00:00
|
|
|
|
2009-08-02 23:37:13 +00:00
|
|
|
PPC32TargetMachine::PPC32TargetMachine(const Target &T, const std::string &TT,
|
2009-07-15 20:24:03 +00:00
|
|
|
const std::string &FS)
|
2009-08-02 23:37:13 +00:00
|
|
|
: PPCTargetMachine(T, TT, FS, false) {
|
2006-06-16 01:37:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-08-02 23:37:13 +00:00
|
|
|
PPC64TargetMachine::PPC64TargetMachine(const Target &T, const std::string &TT,
|
2009-07-15 20:24:03 +00:00
|
|
|
const std::string &FS)
|
2009-08-02 23:37:13 +00:00
|
|
|
: PPCTargetMachine(T, TT, FS, true) {
|
2006-06-16 01:37:27 +00:00
|
|
|
}
|
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
|
2006-09-04 04:14:57 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Pass Pipeline Configuration
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-08-11 07:40:04 +00:00
|
|
|
|
2009-04-29 23:29:43 +00:00
|
|
|
bool PPCTargetMachine::addInstSelector(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
2005-08-17 19:33:30 +00:00
|
|
|
// Install an instruction selector.
|
2006-01-12 01:46:07 +00:00
|
|
|
PM.add(createPPCISelDag(*this));
|
2006-09-04 04:14:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-08-11 07:40:04 +00:00
|
|
|
|
2009-04-29 23:29:43 +00:00
|
|
|
bool PPCTargetMachine::addPreEmitPass(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
2006-09-04 04:14:57 +00:00
|
|
|
// Must run branch selection immediately preceding the asm printer.
|
2004-08-11 07:40:04 +00:00
|
|
|
PM.add(createPPCBranchSelectionPass());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-30 20:51:52 +00:00
|
|
|
bool PPCTargetMachine::addCodeEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
2009-07-15 22:33:19 +00:00
|
|
|
JITCodeEmitter &JCE) {
|
2009-05-30 20:51:52 +00:00
|
|
|
// The JIT should use the static relocation model in ppc32 mode, PIC in ppc64.
|
|
|
|
// FIXME: This should be moved to TargetJITInfo!!
|
|
|
|
if (Subtarget.isPPC64()) {
|
|
|
|
// We use PIC codegen in ppc64 mode, because otherwise we'd have to use many
|
|
|
|
// instructions to materialize arbitrary global variable + function +
|
|
|
|
// constant pool addresses.
|
|
|
|
setRelocationModel(Reloc::PIC_);
|
|
|
|
// Temporary workaround for the inability of PPC64 JIT to handle jump
|
|
|
|
// tables.
|
|
|
|
DisableJumpTables = true;
|
|
|
|
} else {
|
|
|
|
setRelocationModel(Reloc::Static);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Inform the subtarget that we are in JIT mode. FIXME: does this break macho
|
|
|
|
// writing?
|
|
|
|
Subtarget.SetJITMode();
|
|
|
|
|
|
|
|
// Machine code emitter pass for PowerPC.
|
|
|
|
PM.add(createPPCJITCodeEmitterPass(*this, JCE));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|