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:59:06 +00:00
|
|
|
#include "PPCTargetMachine.h"
|
2012-03-17 18:46:09 +00:00
|
|
|
#include "PPC.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"
|
2012-02-03 05:12:41 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2008-07-31 18:13:12 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2012-06-08 15:38:21 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-07-14 20:18:05 +00:00
|
|
|
#include "llvm/Support/FormattedStream.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2012-06-08 15:38:21 +00:00
|
|
|
static cl::
|
2012-06-08 19:19:53 +00:00
|
|
|
opt<bool> DisableCTRLoops("disable-ppc-ctrloops", cl::Hidden,
|
|
|
|
cl::desc("Disable CTR loops for PPC"));
|
2012-06-08 15:38:21 +00:00
|
|
|
|
2009-07-25 06:49:55 +00:00
|
|
|
extern "C" void LLVMInitializePowerPCTarget() {
|
|
|
|
// Register the targets
|
2012-02-03 05:12:30 +00:00
|
|
|
RegisterTargetMachine<PPC32TargetMachine> A(ThePPC32Target);
|
2009-07-25 06:49:55 +00:00
|
|
|
RegisterTargetMachine<PPC64TargetMachine> B(ThePPC64Target);
|
|
|
|
}
|
2009-06-16 20:12:29 +00:00
|
|
|
|
2011-07-19 06:37:02 +00:00
|
|
|
PPCTargetMachine::PPCTargetMachine(const Target &T, StringRef TT,
|
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-02 22:16:29 +00:00
|
|
|
const TargetOptions &Options,
|
2011-07-20 07:51:56 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
2011-11-16 08:38:26 +00:00
|
|
|
CodeGenOpt::Level OL,
|
2011-07-20 07:51:56 +00:00
|
|
|
bool is64Bit)
|
2011-12-02 22:16:29 +00:00
|
|
|
: LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
|
2011-06-30 01:53:36 +00:00
|
|
|
Subtarget(TT, CPU, FS, is64Bit),
|
2012-10-08 16:38:25 +00:00
|
|
|
DL(Subtarget.getDataLayoutString()), 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),
|
2012-10-18 23:22:48 +00:00
|
|
|
InstrItins(Subtarget.getInstrItineraryData()),
|
2012-10-24 17:22:41 +00:00
|
|
|
STTI(&TLInfo), VTTI(&TLInfo) {
|
2012-04-02 19:09:04 +00:00
|
|
|
|
|
|
|
// The binutils for the BG/P are too old for CFI.
|
|
|
|
if (Subtarget.isBGP())
|
|
|
|
setMCUseCFI(false);
|
2005-10-16 05:39:50 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void PPC32TargetMachine::anchor() { }
|
|
|
|
|
2012-02-03 05:12:30 +00:00
|
|
|
PPC32TargetMachine::PPC32TargetMachine(const Target &T, StringRef TT,
|
2011-07-20 07:51:56 +00:00
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-02 22:16:29 +00:00
|
|
|
const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
2011-12-02 22:16:29 +00:00
|
|
|
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, false) {
|
2006-06-16 01:37:27 +00:00
|
|
|
}
|
|
|
|
|
2011-12-20 02:50:00 +00:00
|
|
|
void PPC64TargetMachine::anchor() { }
|
2006-06-16 01:37:27 +00:00
|
|
|
|
2012-02-03 05:12:30 +00:00
|
|
|
PPC64TargetMachine::PPC64TargetMachine(const Target &T, StringRef TT,
|
2011-07-20 07:51:56 +00:00
|
|
|
StringRef CPU, StringRef FS,
|
2011-12-02 22:16:29 +00:00
|
|
|
const TargetOptions &Options,
|
2011-11-16 08:38:26 +00:00
|
|
|
Reloc::Model RM, CodeModel::Model CM,
|
|
|
|
CodeGenOpt::Level OL)
|
2011-12-02 22:16:29 +00:00
|
|
|
: PPCTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, 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
|
|
|
|
2012-02-03 05:12:41 +00:00
|
|
|
namespace {
|
|
|
|
/// PPC Code Generator Pass Configuration Options.
|
|
|
|
class PPCPassConfig : public TargetPassConfig {
|
|
|
|
public:
|
2012-02-04 02:56:59 +00:00
|
|
|
PPCPassConfig(PPCTargetMachine *TM, PassManagerBase &PM)
|
|
|
|
: TargetPassConfig(TM, PM) {}
|
2012-02-03 05:12:41 +00:00
|
|
|
|
|
|
|
PPCTargetMachine &getPPCTargetMachine() const {
|
|
|
|
return getTM<PPCTargetMachine>();
|
|
|
|
}
|
|
|
|
|
2012-06-08 15:38:21 +00:00
|
|
|
virtual bool addPreRegAlloc();
|
2012-02-03 05:12:41 +00:00
|
|
|
virtual bool addInstSelector();
|
|
|
|
virtual bool addPreEmitPass();
|
|
|
|
};
|
|
|
|
} // namespace
|
|
|
|
|
2012-02-04 02:56:59 +00:00
|
|
|
TargetPassConfig *PPCTargetMachine::createPassConfig(PassManagerBase &PM) {
|
2012-06-09 03:14:50 +00:00
|
|
|
return new PPCPassConfig(this, PM);
|
2012-02-03 05:12:41 +00:00
|
|
|
}
|
|
|
|
|
2012-06-08 15:38:21 +00:00
|
|
|
bool PPCPassConfig::addPreRegAlloc() {
|
2012-06-08 19:19:53 +00:00
|
|
|
if (!DisableCTRLoops && getOptLevel() != CodeGenOpt::None)
|
2012-07-02 19:48:31 +00:00
|
|
|
addPass(createPPCCTRLoops());
|
2012-06-08 15:38:21 +00:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-02-03 05:12:41 +00:00
|
|
|
bool PPCPassConfig::addInstSelector() {
|
2005-08-17 19:33:30 +00:00
|
|
|
// Install an instruction selector.
|
2012-07-02 19:48:31 +00:00
|
|
|
addPass(createPPCISelDag(getPPCTargetMachine()));
|
2006-09-04 04:14:57 +00:00
|
|
|
return false;
|
|
|
|
}
|
2004-08-11 07:40:04 +00:00
|
|
|
|
2012-02-03 05:12:41 +00:00
|
|
|
bool PPCPassConfig::addPreEmitPass() {
|
2006-09-04 04:14:57 +00:00
|
|
|
// Must run branch selection immediately preceding the asm printer.
|
2012-07-02 19:48:31 +00:00
|
|
|
addPass(createPPCBranchSelectionPass());
|
2004-08-11 07:40:04 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2009-05-30 20:51:52 +00:00
|
|
|
bool PPCTargetMachine::addCodeEmitter(PassManagerBase &PM,
|
2009-07-15 22:33:19 +00:00
|
|
|
JITCodeEmitter &JCE) {
|
2009-05-30 20:51:52 +00:00
|
|
|
// Inform the subtarget that we are in JIT mode. FIXME: does this break macho
|
|
|
|
// writing?
|
|
|
|
Subtarget.SetJITMode();
|
2012-02-03 05:12:30 +00:00
|
|
|
|
2009-05-30 20:51:52 +00:00
|
|
|
// Machine code emitter pass for PowerPC.
|
|
|
|
PM.add(createPPCJITCodeEmitterPass(*this, JCE));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|