2007-12-05 02:24:05 +01:00
|
|
|
//===-- SPUTargetMachine.cpp - Define TargetMachine for Cell SPU ----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-12-05 02:24:05 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Top-level implementation for the Cell SPU target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SPU.h"
|
|
|
|
#include "SPURegisterNames.h"
|
|
|
|
#include "SPUTargetAsmInfo.h"
|
|
|
|
#include "SPUTargetMachine.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2008-12-10 01:15:19 +01:00
|
|
|
#include "llvm/CodeGen/RegAllocRegistry.h"
|
|
|
|
#include "llvm/CodeGen/SchedulerRegistry.h"
|
2007-12-05 02:24:05 +01:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-15 22:24:03 +02:00
|
|
|
extern Target TheCellSPUTarget;
|
2007-12-05 02:24:05 +01:00
|
|
|
namespace {
|
|
|
|
// Register the targets
|
|
|
|
RegisterTarget<SPUTargetMachine>
|
2009-07-15 22:24:03 +02:00
|
|
|
CELLSPU(TheCellSPUTarget, "cellspu", "STI CBEA Cell SPU [experimental]");
|
2007-12-05 02:24:05 +01:00
|
|
|
}
|
|
|
|
|
2009-06-24 01:59:40 +02:00
|
|
|
// Force static initialization.
|
|
|
|
extern "C" void LLVMInitializeCellSPUTarget() { }
|
2009-06-16 22:12:29 +02:00
|
|
|
|
2007-12-05 02:24:05 +01:00
|
|
|
const std::pair<unsigned, int> *
|
|
|
|
SPUFrameInfo::getCalleeSaveSpillSlots(unsigned &NumEntries) const {
|
|
|
|
NumEntries = 1;
|
|
|
|
return &LR[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
const TargetAsmInfo *
|
|
|
|
SPUTargetMachine::createTargetAsmInfo() const
|
|
|
|
{
|
2008-11-07 05:36:25 +01:00
|
|
|
return new SPULinuxTargetAsmInfo(*this);
|
2007-12-05 02:24:05 +01:00
|
|
|
}
|
|
|
|
|
2009-07-15 22:24:03 +02:00
|
|
|
SPUTargetMachine::SPUTargetMachine(const Target &T, const Module &M,
|
|
|
|
const std::string &FS)
|
|
|
|
: LLVMTargetMachine(T),
|
|
|
|
Subtarget(*this, M, FS),
|
2007-12-05 02:24:05 +01:00
|
|
|
DataLayout(Subtarget.getTargetDataString()),
|
|
|
|
InstrInfo(*this),
|
|
|
|
FrameInfo(*this),
|
|
|
|
TLInfo(*this),
|
|
|
|
InstrItins(Subtarget.getInstrItineraryData())
|
|
|
|
{
|
|
|
|
// For the time being, use static relocations, since there's really no
|
|
|
|
// support for PIC yet.
|
|
|
|
setRelocationModel(Reloc::Static);
|
|
|
|
}
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Pass Pipeline Configuration
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
bool
|
2009-04-30 01:29:43 +02:00
|
|
|
SPUTargetMachine::addInstSelector(PassManagerBase &PM,
|
|
|
|
CodeGenOpt::Level OptLevel)
|
2007-12-05 02:24:05 +01:00
|
|
|
{
|
|
|
|
// Install an instruction selector.
|
|
|
|
PM.add(createSPUISelDag(*this));
|
|
|
|
return false;
|
|
|
|
}
|