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"
|
2006-09-07 23:39:26 +00:00
|
|
|
#include "PPCTargetAsmInfo.h"
|
2005-10-14 23:59:06 +00:00
|
|
|
#include "PPCTargetMachine.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2004-07-11 02:48:49 +00:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2008-05-13 00:00:25 +00:00
|
|
|
// Register the targets
|
|
|
|
static RegisterTarget<PPC32TargetMachine>
|
|
|
|
X("ppc32", " PowerPC 32");
|
|
|
|
static RegisterTarget<PPC64TargetMachine>
|
|
|
|
Y("ppc64", " PowerPC 64");
|
2004-08-11 07:40:04 +00:00
|
|
|
|
2006-09-07 23:39:26 +00:00
|
|
|
const TargetAsmInfo *PPCTargetMachine::createTargetAsmInfo() const {
|
2006-12-21 20:26:09 +00:00
|
|
|
if (Subtarget.isDarwin())
|
|
|
|
return new DarwinTargetAsmInfo(*this);
|
|
|
|
else
|
|
|
|
return new LinuxTargetAsmInfo(*this);
|
2006-09-07 23:39:26 +00:00
|
|
|
}
|
|
|
|
|
2006-06-16 01:37:27 +00:00
|
|
|
unsigned PPC32TargetMachine::getJITMatchQuality() {
|
2007-02-25 05:04:13 +00:00
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER) || defined(__PPC__)
|
2006-06-16 01:37:27 +00:00
|
|
|
if (sizeof(void*) == 4)
|
|
|
|
return 10;
|
2004-07-12 23:36:12 +00:00
|
|
|
#endif
|
2006-07-12 20:42:10 +00:00
|
|
|
return 0;
|
2004-07-12 23:36:12 +00:00
|
|
|
}
|
2006-06-16 01:37:27 +00:00
|
|
|
unsigned PPC64TargetMachine::getJITMatchQuality() {
|
2007-02-25 05:04:13 +00:00
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER) || defined(__PPC__)
|
2006-06-16 01:37:27 +00:00
|
|
|
if (sizeof(void*) == 8)
|
2006-07-06 17:10:42 +00:00
|
|
|
return 10;
|
2006-06-16 01:37:27 +00:00
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
2004-07-12 23:36:12 +00:00
|
|
|
|
2006-06-16 01:37:27 +00:00
|
|
|
unsigned PPC32TargetMachine::getModuleMatchQuality(const Module &M) {
|
2005-10-16 05:39:50 +00:00
|
|
|
// We strongly match "powerpc-*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 8 && std::string(TT.begin(), TT.begin()+8) == "powerpc-")
|
|
|
|
return 20;
|
|
|
|
|
2007-07-09 17:25:29 +00:00
|
|
|
// If the target triple is something non-powerpc, we don't match.
|
|
|
|
if (!TT.empty()) return 0;
|
|
|
|
|
2005-10-16 05:39:50 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-06-16 01:37:27 +00:00
|
|
|
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)
|
2006-12-11 23:22:45 +00:00
|
|
|
: Subtarget(*this, M, FS, is64Bit),
|
2006-06-17 00:01:04 +00:00
|
|
|
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
|
2006-11-18 01:34:43 +00:00
|
|
|
FrameInfo(*this, is64Bit), JITInfo(*this, is64Bit), TLInfo(*this),
|
2007-01-24 03:41:36 +00:00
|
|
|
InstrItins(Subtarget.getInstrItineraryData()), MachOWriterInfo(*this) {
|
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
|
|
|
|
2006-06-16 01:37:27 +00:00
|
|
|
PPC32TargetMachine::PPC32TargetMachine(const Module &M, const std::string &FS)
|
|
|
|
: PPCTargetMachine(M, FS, false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PPC64TargetMachine::PPC64TargetMachine(const Module &M, const std::string &FS)
|
|
|
|
: PPCTargetMachine(M, FS, true) {
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2008-03-11 22:29:46 +00:00
|
|
|
bool PPCTargetMachine::addInstSelector(PassManagerBase &PM, bool Fast) {
|
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
|
|
|
|
2008-03-11 22:29:46 +00:00
|
|
|
bool PPCTargetMachine::addPreEmitPass(PassManagerBase &PM, bool Fast) {
|
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;
|
|
|
|
}
|
|
|
|
|
2008-03-11 22:29:46 +00:00
|
|
|
bool PPCTargetMachine::addAssemblyEmitter(PassManagerBase &PM, bool Fast,
|
2006-09-04 04:14:57 +00:00
|
|
|
std::ostream &Out) {
|
2006-09-20 17:12:19 +00:00
|
|
|
PM.add(createPPCAsmPrinterPass(Out, *this));
|
2006-09-04 04:14:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-11-23 05:56:40 +00:00
|
|
|
|
2008-03-11 22:29:46 +00:00
|
|
|
bool PPCTargetMachine::addCodeEmitter(PassManagerBase &PM, bool Fast,
|
2007-07-20 21:56:13 +00:00
|
|
|
bool DumpAsm, MachineCodeEmitter &MCE) {
|
2006-12-08 04:54:03 +00:00
|
|
|
// The JIT should use the static relocation model in ppc32 mode, PIC in ppc64.
|
2006-09-04 04:14:57 +00:00
|
|
|
// FIXME: This should be moved to TargetJITInfo!!
|
2006-12-08 04:54:03 +00: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_);
|
|
|
|
} else {
|
|
|
|
setRelocationModel(Reloc::Static);
|
|
|
|
}
|
|
|
|
|
2006-12-11 23:22:45 +00:00
|
|
|
// Inform the subtarget that we are in JIT mode. FIXME: does this break macho
|
|
|
|
// writing?
|
|
|
|
Subtarget.SetJITMode();
|
2006-09-04 04:14:57 +00:00
|
|
|
|
|
|
|
// Machine code emitter pass for PowerPC.
|
2006-08-23 21:08:52 +00:00
|
|
|
PM.add(createPPCCodeEmitterPass(*this, MCE));
|
2007-07-20 21:56:13 +00:00
|
|
|
if (DumpAsm)
|
|
|
|
PM.add(createPPCAsmPrinterPass(*cerr.stream(), *this));
|
2006-08-23 21:08:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
2006-09-04 04:14:57 +00:00
|
|
|
|
2008-03-11 22:29:46 +00:00
|
|
|
bool PPCTargetMachine::addSimpleCodeEmitter(PassManagerBase &PM, bool Fast,
|
2007-07-20 21:56:13 +00:00
|
|
|
bool DumpAsm, MachineCodeEmitter &MCE) {
|
2007-02-08 01:39:44 +00:00
|
|
|
// Machine code emitter pass for PowerPC.
|
|
|
|
PM.add(createPPCCodeEmitterPass(*this, MCE));
|
2007-07-20 21:56:13 +00:00
|
|
|
if (DumpAsm)
|
|
|
|
PM.add(createPPCAsmPrinterPass(*cerr.stream(), *this));
|
2007-02-08 01:39:44 +00:00
|
|
|
return false;
|
|
|
|
}
|