2005-10-16 13:39:50 +08:00
|
|
|
//===-- PPCTargetMachine.cpp - Define TargetMachine for PowerPC -----------===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2005-08-16 07:47:04 +08:00
|
|
|
// Top-level implementation for the PowerPC target.
|
2004-06-22 00:55:25 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-15 07:51:18 +08:00
|
|
|
#include "PPC.h"
|
2006-09-08 07:39:26 +08:00
|
|
|
#include "PPCTargetAsmInfo.h"
|
2005-10-15 07:59:06 +08:00
|
|
|
#include "PPCTargetMachine.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2004-07-11 10:48:49 +08:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2008-08-01 02:13:12 +08:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2009-07-15 04:18:05 +08:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2008-11-16 05:36:30 +08:00
|
|
|
/// PowerPCTargetMachineModule - Note that this is used on hosts that
|
|
|
|
/// cannot link in a library unless there are references into the
|
|
|
|
/// library. In particular, it seems that it is not possible to get
|
|
|
|
/// things to work on Win32 without this. Though it is unused, do not
|
|
|
|
/// remove it.
|
|
|
|
extern "C" int PowerPCTargetMachineModule;
|
|
|
|
int PowerPCTargetMachineModule = 0;
|
|
|
|
|
2008-05-13 08:00:25 +08:00
|
|
|
// Register the targets
|
|
|
|
static RegisterTarget<PPC32TargetMachine>
|
2009-07-16 01:27:11 +08:00
|
|
|
X("ppc32", "PowerPC 32");
|
2008-05-13 08:00:25 +08:00
|
|
|
static RegisterTarget<PPC64TargetMachine>
|
2009-07-16 01:27:11 +08:00
|
|
|
Y("ppc64", "PowerPC 64");
|
2004-08-11 15:40:04 +08:00
|
|
|
|
2009-06-24 07:59:40 +08:00
|
|
|
// Force static initialization.
|
|
|
|
extern "C" void LLVMInitializePowerPCTarget() { }
|
2009-06-17 04:12:29 +08:00
|
|
|
|
2008-08-17 21:54:28 +08:00
|
|
|
// No assembler printer by default
|
|
|
|
PPCTargetMachine::AsmPrinterCtorFn PPCTargetMachine::AsmPrinterCtor = 0;
|
|
|
|
|
2006-09-08 07:39:26 +08:00
|
|
|
const TargetAsmInfo *PPCTargetMachine::createTargetAsmInfo() const {
|
2006-12-22 04:26:09 +08:00
|
|
|
if (Subtarget.isDarwin())
|
2008-07-20 05:44:57 +08:00
|
|
|
return new PPCDarwinTargetAsmInfo(*this);
|
2006-12-22 04:26:09 +08:00
|
|
|
else
|
2008-07-20 05:44:57 +08:00
|
|
|
return new PPCLinuxTargetAsmInfo(*this);
|
2006-09-08 07:39:26 +08:00
|
|
|
}
|
|
|
|
|
2009-07-16 01:27:11 +08:00
|
|
|
unsigned PPC32TargetMachine::getJITMatchQuality() {
|
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER) || defined(__PPC__)
|
|
|
|
if (sizeof(void*) == 4)
|
|
|
|
return 10;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
unsigned PPC64TargetMachine::getJITMatchQuality() {
|
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER) || defined(__PPC__)
|
|
|
|
if (sizeof(void*) == 8)
|
|
|
|
return 10;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned PPC32TargetMachine::getModuleMatchQuality(const Module &M) {
|
|
|
|
// We strongly match "powerpc-*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 8 && std::string(TT.begin(), TT.begin()+8) == "powerpc-")
|
|
|
|
return 20;
|
|
|
|
|
|
|
|
// If the target triple is something non-powerpc, we don't match.
|
|
|
|
if (!TT.empty()) return 0;
|
|
|
|
|
|
|
|
if (M.getEndianness() == Module::BigEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer32)
|
|
|
|
return 10; // Weak match
|
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned PPC64TargetMachine::getModuleMatchQuality(const Module &M) {
|
|
|
|
// We strongly match "powerpc64-*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 10 && std::string(TT.begin(), TT.begin()+10) == "powerpc64-")
|
|
|
|
return 20;
|
|
|
|
|
|
|
|
if (M.getEndianness() == Module::BigEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer64)
|
|
|
|
return 10; // Weak match
|
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS,
|
|
|
|
bool is64Bit)
|
|
|
|
: Subtarget(*this, M, FS, is64Bit),
|
2006-06-17 08:01:04 +08:00
|
|
|
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
|
2006-11-18 09:34:43 +08:00
|
|
|
FrameInfo(*this, is64Bit), JITInfo(*this, is64Bit), TLInfo(*this),
|
2007-01-24 11:41:36 +08:00
|
|
|
InstrItins(Subtarget.getInstrItineraryData()), MachOWriterInfo(*this) {
|
2006-06-16 09:37:27 +08:00
|
|
|
|
2008-02-20 19:22:39 +08:00
|
|
|
if (getRelocationModel() == Reloc::Default) {
|
2006-02-23 04:19:42 +08:00
|
|
|
if (Subtarget.isDarwin())
|
|
|
|
setRelocationModel(Reloc::DynamicNoPIC);
|
|
|
|
else
|
2006-12-22 04:26:09 +08:00
|
|
|
setRelocationModel(Reloc::Static);
|
2008-02-20 19:22:39 +08:00
|
|
|
}
|
2005-10-16 13:39:50 +08:00
|
|
|
}
|
|
|
|
|
2007-05-23 01:14:46 +08:00
|
|
|
/// Override this for PowerPC. Tail merging happily breaks up instruction issue
|
|
|
|
/// groups, which typically degrades performance.
|
2007-11-20 04:46:23 +08:00
|
|
|
bool PPCTargetMachine::getEnableTailMergeDefault() const { return false; }
|
2007-05-23 01:14:46 +08:00
|
|
|
|
2009-07-16 01:27:11 +08:00
|
|
|
PPC32TargetMachine::PPC32TargetMachine(const Module &M, const std::string &FS)
|
|
|
|
: PPCTargetMachine(M, FS, false) {
|
2006-06-16 09:37:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-16 01:27:11 +08:00
|
|
|
PPC64TargetMachine::PPC64TargetMachine(const Module &M, const std::string &FS)
|
|
|
|
: PPCTargetMachine(M, FS, true) {
|
2006-06-16 09:37:27 +08:00
|
|
|
}
|
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Pass Pipeline Configuration
|
|
|
|
//===----------------------------------------------------------------------===//
|
2004-08-11 15:40:04 +08:00
|
|
|
|
2009-04-30 07:29:43 +08:00
|
|
|
bool PPCTargetMachine::addInstSelector(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
2005-08-18 03:33:30 +08:00
|
|
|
// Install an instruction selector.
|
2006-01-12 09:46:07 +08:00
|
|
|
PM.add(createPPCISelDag(*this));
|
2006-09-04 12:14:57 +08:00
|
|
|
return false;
|
|
|
|
}
|
2004-08-11 15:40:04 +08:00
|
|
|
|
2009-04-30 07:29:43 +08:00
|
|
|
bool PPCTargetMachine::addPreEmitPass(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
2006-09-04 12:14:57 +08:00
|
|
|
// Must run branch selection immediately preceding the asm printer.
|
2004-08-11 15:40:04 +08:00
|
|
|
PM.add(createPPCBranchSelectionPass());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-04-29 08:15:41 +08:00
|
|
|
bool PPCTargetMachine::addAssemblyEmitter(PassManagerBase &PM,
|
2009-04-30 07:29:43 +08:00
|
|
|
CodeGenOpt::Level OptLevel,
|
2009-04-29 08:15:41 +08:00
|
|
|
bool Verbose,
|
2009-07-15 04:18:05 +08:00
|
|
|
formatted_raw_ostream &Out) {
|
2008-08-17 21:54:28 +08:00
|
|
|
assert(AsmPrinterCtor && "AsmPrinter was not linked in");
|
|
|
|
if (AsmPrinterCtor)
|
2009-07-01 09:48:54 +08:00
|
|
|
PM.add(AsmPrinterCtor(Out, *this, Verbose));
|
2008-08-17 21:54:28 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
return false;
|
|
|
|
}
|
2004-11-23 13:56:40 +08:00
|
|
|
|
2009-04-30 07:29:43 +08:00
|
|
|
bool PPCTargetMachine::addCodeEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
2007-07-21 05:56:13 +08:00
|
|
|
bool DumpAsm, MachineCodeEmitter &MCE) {
|
2006-12-08 12:54:03 +08:00
|
|
|
// The JIT should use the static relocation model in ppc32 mode, PIC in ppc64.
|
2006-09-04 12:14:57 +08:00
|
|
|
// FIXME: This should be moved to TargetJITInfo!!
|
2006-12-08 12:54:03 +08:00
|
|
|
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_);
|
2008-08-01 02:13:12 +08:00
|
|
|
// Temporary workaround for the inability of PPC64 JIT to handle jump
|
|
|
|
// tables.
|
|
|
|
DisableJumpTables = true;
|
2006-12-08 12:54:03 +08:00
|
|
|
} else {
|
|
|
|
setRelocationModel(Reloc::Static);
|
|
|
|
}
|
|
|
|
|
2006-12-12 07:22:45 +08:00
|
|
|
// Inform the subtarget that we are in JIT mode. FIXME: does this break macho
|
|
|
|
// writing?
|
|
|
|
Subtarget.SetJITMode();
|
2006-09-04 12:14:57 +08:00
|
|
|
|
|
|
|
// Machine code emitter pass for PowerPC.
|
2006-08-24 05:08:52 +08:00
|
|
|
PM.add(createPPCCodeEmitterPass(*this, MCE));
|
2009-07-15 20:49:15 +08:00
|
|
|
if (DumpAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2008-08-17 21:54:28 +08:00
|
|
|
|
2006-08-24 05:08:52 +08:00
|
|
|
return false;
|
|
|
|
}
|
2006-09-04 12:14:57 +08:00
|
|
|
|
2009-05-31 04:51:52 +08:00
|
|
|
bool PPCTargetMachine::addCodeEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
bool DumpAsm, JITCodeEmitter &JCE) {
|
|
|
|
// 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));
|
2009-07-15 20:49:15 +08:00
|
|
|
if (DumpAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2009-05-31 04:51:52 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-06 13:09:34 +08:00
|
|
|
bool PPCTargetMachine::addCodeEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
bool DumpAsm, ObjectCodeEmitter &OCE) {
|
|
|
|
// 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(createPPCObjectCodeEmitterPass(*this, OCE));
|
2009-07-15 20:49:15 +08:00
|
|
|
if (DumpAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2009-07-06 13:09:34 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-04-30 07:29:43 +08:00
|
|
|
bool PPCTargetMachine::addSimpleCodeEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
2009-06-02 03:57:37 +08:00
|
|
|
bool DumpAsm,
|
|
|
|
MachineCodeEmitter &MCE) {
|
2007-02-08 09:39:44 +08:00
|
|
|
// Machine code emitter pass for PowerPC.
|
|
|
|
PM.add(createPPCCodeEmitterPass(*this, MCE));
|
2009-07-15 20:49:15 +08:00
|
|
|
if (DumpAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2008-08-17 21:54:28 +08:00
|
|
|
|
2007-02-08 09:39:44 +08:00
|
|
|
return false;
|
|
|
|
}
|
2009-05-31 04:51:52 +08:00
|
|
|
|
|
|
|
bool PPCTargetMachine::addSimpleCodeEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
2009-06-02 03:57:37 +08:00
|
|
|
bool DumpAsm,
|
|
|
|
JITCodeEmitter &JCE) {
|
2009-05-31 04:51:52 +08:00
|
|
|
// Machine code emitter pass for PowerPC.
|
|
|
|
PM.add(createPPCJITCodeEmitterPass(*this, JCE));
|
2009-07-15 20:49:15 +08:00
|
|
|
if (DumpAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2009-05-31 04:51:52 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-07-06 13:09:34 +08:00
|
|
|
bool PPCTargetMachine::addSimpleCodeEmitter(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
bool DumpAsm,
|
|
|
|
ObjectCodeEmitter &OCE) {
|
|
|
|
// Machine code emitter pass for PowerPC.
|
|
|
|
PM.add(createPPCObjectCodeEmitterPass(*this, OCE));
|
2009-07-15 20:49:15 +08:00
|
|
|
if (DumpAsm)
|
|
|
|
addAssemblyEmitter(PM, OptLevel, true, ferrs());
|
2009-07-06 13:09:34 +08:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|