2007-12-05 09:24:05 +08:00
|
|
|
//===-- SPUTargetMachine.cpp - Define TargetMachine for Cell SPU ----------===//
|
|
|
|
//
|
|
|
|
// 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.
|
2007-12-05 09:24:05 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Top-level implementation for the Cell SPU target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SPU.h"
|
|
|
|
#include "SPUTargetMachine.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2008-12-10 08:15:19 +08:00
|
|
|
#include "llvm/CodeGen/RegAllocRegistry.h"
|
|
|
|
#include "llvm/CodeGen/SchedulerRegistry.h"
|
2009-07-25 14:49:55 +08:00
|
|
|
#include "llvm/Target/TargetRegistry.h"
|
2007-12-05 09:24:05 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-25 14:49:55 +08:00
|
|
|
extern "C" void LLVMInitializeCellSPUTarget() {
|
|
|
|
// Register the target.
|
|
|
|
RegisterTargetMachine<SPUTargetMachine> X(TheCellSPUTarget);
|
2007-12-05 09:24:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
const std::pair<unsigned, int> *
|
2011-01-10 20:39:04 +08:00
|
|
|
SPUFrameLowering::getCalleeSaveSpillSlots(unsigned &NumEntries) const {
|
2007-12-05 09:24:05 +08:00
|
|
|
NumEntries = 1;
|
|
|
|
return &LR[0];
|
|
|
|
}
|
|
|
|
|
2011-07-19 14:37:02 +08:00
|
|
|
SPUTargetMachine::SPUTargetMachine(const Target &T, StringRef TT,
|
2011-07-20 15:51:56 +08:00
|
|
|
StringRef CPU, StringRef FS,
|
|
|
|
Reloc::Model RM, CodeModel::Model CM)
|
|
|
|
: LLVMTargetMachine(T, TT, CPU, FS, RM, CM),
|
2011-06-30 09:53:36 +08:00
|
|
|
Subtarget(TT, CPU, FS),
|
2007-12-05 09:24:05 +08:00
|
|
|
DataLayout(Subtarget.getTargetDataString()),
|
|
|
|
InstrInfo(*this),
|
2011-01-10 20:39:04 +08:00
|
|
|
FrameLowering(Subtarget),
|
2007-12-05 09:24:05 +08:00
|
|
|
TLInfo(*this),
|
2010-05-12 01:31:57 +08:00
|
|
|
TSInfo(*this),
|
2009-08-02 12:44:33 +08:00
|
|
|
InstrItins(Subtarget.getInstrItineraryData()) {
|
2007-12-05 09:24:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Pass Pipeline Configuration
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2009-08-02 12:44:33 +08:00
|
|
|
bool SPUTargetMachine::addInstSelector(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel) {
|
2007-12-05 09:24:05 +08:00
|
|
|
// Install an instruction selector.
|
|
|
|
PM.add(createSPUISelDag(*this));
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-11 17:07:54 +08:00
|
|
|
|
|
|
|
// passes to run just before printing the assembly
|
|
|
|
bool SPUTargetMachine::
|
|
|
|
addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel)
|
|
|
|
{
|
|
|
|
//align instructions with nops/lnops for dual issue
|
|
|
|
PM.add(createSPUNopFillerPass(*this));
|
|
|
|
return true;
|
|
|
|
}
|