2007-12-05 01:24:05 +00:00
|
|
|
//===- SPUSubtarget.cpp - STI Cell SPU Subtarget Information --------------===//
|
|
|
|
//
|
|
|
|
// 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.
|
2007-12-05 01:24:05 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the CellSPU-specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SPUSubtarget.h"
|
|
|
|
#include "SPU.h"
|
2010-11-29 10:30:25 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "SPURegisterInfo.h"
|
2007-12-05 01:24:05 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#define GET_SUBTARGETINFO_MC_DESC
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
|
|
#include "SPUGenSubtarget.inc"
|
|
|
|
|
2007-12-05 01:24:05 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-06-30 01:53:36 +00:00
|
|
|
SPUSubtarget::SPUSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS) :
|
2011-07-01 20:45:01 +00:00
|
|
|
SPUGenSubtargetInfo(),
|
2007-12-05 01:24:05 +00:00
|
|
|
StackAlignment(16),
|
|
|
|
ProcDirective(SPU::DEFAULT_PROC),
|
|
|
|
UseLargeMem(false)
|
|
|
|
{
|
|
|
|
// Should be the target SPU processor type. For now, since there's only
|
|
|
|
// one, simply default to the current "v0" default:
|
|
|
|
std::string default_cpu("v0");
|
|
|
|
|
|
|
|
// Parse features string.
|
|
|
|
ParseSubtargetFeatures(FS, default_cpu);
|
2011-07-01 20:45:01 +00:00
|
|
|
|
|
|
|
// Initialize scheduling itinerary for the specified CPU.
|
|
|
|
InstrItins = getInstrItineraryForCPU(default_cpu);
|
2007-12-05 01:24:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// SetJITMode - This is called to inform the subtarget info that we are
|
|
|
|
/// producing code for the JIT.
|
|
|
|
void SPUSubtarget::SetJITMode() {
|
|
|
|
}
|
2010-11-29 10:30:25 +00:00
|
|
|
|
|
|
|
/// Enable PostRA scheduling for optimization levels -O2 and -O3.
|
|
|
|
bool SPUSubtarget::enablePostRAScheduler(
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
TargetSubtarget::AntiDepBreakMode& Mode,
|
|
|
|
RegClassVector& CriticalPathRCs) const {
|
|
|
|
Mode = TargetSubtarget::ANTIDEP_CRITICAL;
|
|
|
|
// CriticalPathsRCs seems to be the set of
|
|
|
|
// RegisterClasses that antidep breakings are performed for.
|
|
|
|
// Do it for all register classes
|
|
|
|
CriticalPathRCs.clear();
|
|
|
|
CriticalPathRCs.push_back(&SPU::R8CRegClass);
|
|
|
|
CriticalPathRCs.push_back(&SPU::R16CRegClass);
|
|
|
|
CriticalPathRCs.push_back(&SPU::R32CRegClass);
|
|
|
|
CriticalPathRCs.push_back(&SPU::R32FPRegClass);
|
|
|
|
CriticalPathRCs.push_back(&SPU::R64CRegClass);
|
|
|
|
CriticalPathRCs.push_back(&SPU::VECREGRegClass);
|
|
|
|
return OptLevel >= CodeGenOpt::Default;
|
|
|
|
}
|