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:59:06 +08:00
|
|
|
#include "PPCTargetMachine.h"
|
2012-03-18 02:46:09 +08:00
|
|
|
#include "PPC.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/PassManager.h"
|
2010-11-15 16:49:58 +08:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2012-02-03 13:12:41 +08:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2008-08-01 02:13:12 +08:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2012-06-08 23:38:21 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-07-15 04:18:05 +08:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2012-06-08 23:38:21 +08:00
|
|
|
static cl::
|
2012-06-08 23:38:25 +08:00
|
|
|
opt<bool> EnableCTRLoops("enable-ppc-ctrloops", cl::Hidden,
|
|
|
|
cl::desc("Enable CTR loops for PPC"));
|
2012-06-08 23:38:21 +08:00
|
|
|
|
2009-07-25 14:49:55 +08:00
|
|
|
extern "C" void LLVMInitializePowerPCTarget() {
|
|
|
|
// Register the targets
|
2012-02-03 13:12:30 +08:00
|
|
|
RegisterTargetMachine<PPC32TargetMachine> A(ThePPC32Target);
|
2009-07-25 14:49:55 +08:00
|
|
|
RegisterTargetMachine<PPC64TargetMachine> B(ThePPC64Target);
|
|
|
|
}
|
2009-06-17 04:12:29 +08:00
|
|
|
|
2011-07-19 14:37:02 +08:00
|
|
|
PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-03 06:16:29 +08:00
|
|
|
const TargetOptions &Options,
|
2011-07-20 15:51:56 +08:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
2011-11-16 16:38:26 +08:00
|
|
|
CodeGenOpt::Level OL,
|
2011-07-20 15:51:56 +08:00
|
|
|
bool is64Bit)
|
2011-12-03 06:16:29 +08:00
|
|
|
: LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
|
2011-06-30 09:53:36 +08:00
|
|
|
Subtarget(TT, CPU, FS, is64Bit),
|
2006-06-17 08:01:04 +08:00
|
|
|
DataLayout(Subtarget.getTargetDataString()), InstrInfo(*this),
|
2011-01-10 20:39:04 +08:00
|
|
|
FrameLowering(Subtarget), JITInfo(*this, is64Bit),
|
2010-05-12 01:31:57 +08:00
|
|
|
TLInfo(*this), TSInfo(*this),
|
2010-02-03 03:23:55 +08:00
|
|
|
InstrItins(Subtarget.getInstrItineraryData()) {
|
2012-04-03 03:09:04 +08:00
|
|
|
|
|
|
|
// The binutils for the BG/P are too old for CFI.
|
|
|
|
if (Subtarget.isBGP())
|
|
|
|
setMCUseCFI(false);
|
2005-10-16 13:39:50 +08:00
|
|
|
}
|
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void PPC32TargetMachine::anchor() { }
|
|
|
|
|
2012-02-03 13:12:30 +08:00
|
|
|
PPC32TargetMachine::PPC32TargetMachine(const Target &T, StringRef TT,
|
2011-07-20 15:51:56 +08:00
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-03 06:16:29 +08:00
|
|
|
const TargetOptions &Options,
|
2011-11-16 16:38:26 +08:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
2011-12-03 06:16:29 +08:00
|
|
|
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {
|
2006-06-16 09:37:27 +08:00
|
|
|
}
|
|
|
|
|
2011-12-20 10:50:00 +08:00
|
|
|
void PPC64TargetMachine::anchor() { }
|
2006-06-16 09:37:27 +08:00
|
|
|
|
2012-02-03 13:12:30 +08:00
|
|
|
PPC64TargetMachine::PPC64TargetMachine(const Target &T, StringRef TT,
|
2011-07-20 15:51:56 +08:00
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-03 06:16:29 +08:00
|
|
|
const TargetOptions &Options,
|
2011-11-16 16:38:26 +08:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
2011-12-03 06:16:29 +08:00
|
|
|
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, 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
|
|
|
|
2012-02-03 13:12:41 +08:00
|
|
|
namespace {
|
|
|
|
/// PPC Code Generator Pass Configuration Options.
|
|
|
|
class PPCPassConfig : public TargetPassConfig {
|
|
|
|
public:
|
2012-02-04 10:56:59 +08:00
|
|
|
PPCPassConfig(PPCTargetMachine *TM, PassManagerBase &PM)
|
|
|
|
: TargetPassConfig(TM, PM) {}
|
2012-02-03 13:12:41 +08:00
|
|
|
|
|
|
|
PPCTargetMachine &getPPCTargetMachine() const {
|
|
|
|
return getTM<PPCTargetMachine>();
|
|
|
|
}
|
|
|
|
|
2012-06-08 23:38:21 +08:00
|
|
|
virtual bool addPreRegAlloc();
|
2012-02-03 13:12:41 +08:00
|
|
|
virtual bool addInstSelector();
|
|
|
|
virtual bool addPreEmitPass();
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2012-02-04 10:56:59 +08:00
|
|
|
TargetPassConfig *PPCTargetMachine::createPassConfig(PassManagerBase &PM) {
|
2012-02-09 05:22:48 +08:00
|
|
|
TargetPassConfig *PassConfig = new PPCPassConfig(this, PM);
|
|
|
|
|
|
|
|
// Override this for PowerPC. Tail merging happily breaks up instruction issue
|
|
|
|
// groups, which typically degrades performance.
|
|
|
|
PassConfig->setEnableTailMerge(false);
|
|
|
|
|
|
|
|
return PassConfig;
|
2012-02-03 13:12:41 +08:00
|
|
|
}
|
|
|
|
|
2012-06-08 23:38:21 +08:00
|
|
|
bool PPCPassConfig::addPreRegAlloc() {
|
2012-06-08 23:38:25 +08:00
|
|
|
// FIXME: Once this can be enabled by default, this condition should read:
|
|
|
|
// if (!DisableCTRLoops && getOptLevel() != CodeGenOpt::None)
|
|
|
|
if (EnableCTRLoops)
|
2012-06-08 23:38:21 +08:00
|
|
|
PM->add(createPPCCTRLoops());
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-03 13:12:41 +08:00
|
|
|
bool PPCPassConfig::addInstSelector() {
|
2005-08-18 03:33:30 +08:00
|
|
|
// Install an instruction selector.
|
2012-05-01 16:27:43 +08:00
|
|
|
PM->add(createPPCISelDag(getPPCTargetMachine()));
|
2006-09-04 12:14:57 +08:00
|
|
|
return false;
|
|
|
|
}
|
2004-08-11 15:40:04 +08:00
|
|
|
|
2012-02-03 13:12:41 +08:00
|
|
|
bool PPCPassConfig::addPreEmitPass() {
|
2006-09-04 12:14:57 +08:00
|
|
|
// Must run branch selection immediately preceding the asm printer.
|
2012-05-01 16:27:43 +08:00
|
|
|
PM->add(createPPCBranchSelectionPass());
|
2004-08-11 15:40:04 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-31 04:51:52 +08:00
|
|
|
bool PPCTargetMachine::addCodeEmitter(PassManagerBase &PM,
|
2009-07-16 06:33:19 +08:00
|
|
|
JITCodeEmitter &JCE) {
|
2009-05-31 04:51:52 +08:00
|
|
|
// FIXME: This should be moved to TargetJITInfo!!
|
2011-07-19 14:37:02 +08:00
|
|
|
if (Subtarget.isPPC64())
|
2009-05-31 04:51:52 +08:00
|
|
|
// Temporary workaround for the inability of PPC64 JIT to handle jump
|
|
|
|
// tables.
|
2012-02-03 13:12:30 +08:00
|
|
|
Options.DisableJumpTables = true;
|
|
|
|
|
2009-05-31 04:51:52 +08:00
|
|
|
// Inform the subtarget that we are in JIT mode. FIXME: does this break macho
|
|
|
|
// writing?
|
|
|
|
Subtarget.SetJITMode();
|
2012-02-03 13:12:30 +08:00
|
|
|
|
2009-05-31 04:51:52 +08:00
|
|
|
// Machine code emitter pass for PowerPC.
|
|
|
|
PM.add(createPPCJITCodeEmitterPass(*this, JCE));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|