blob: eec2d250be7fc406c08534ab2f42790f336ccac2 [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- SPUSubtarget.cpp - STI Cell SPU Subtarget Information -------------===//
Scott Michel564427e2007-12-05 01:24:05 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Scott Michel564427e2007-12-05 01:24:05 +00007//
8//===----------------------------------------------------------------------===//
9//
Evan Cheng5b1b44892011-07-01 21:01:15 +000010// This file implements the CellSPU-specific subclass of TargetSubtargetInfo.
Scott Michel564427e2007-12-05 01:24:05 +000011//
12//===----------------------------------------------------------------------===//
13
14#include "SPUSubtarget.h"
15#include "SPU.h"
Kalle Raiskilac2ebfd42010-11-29 10:30:25 +000016#include "SPURegisterInfo.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000017#include "llvm/Support/TargetRegistry.h"
Scott Michel564427e2007-12-05 01:24:05 +000018
Evan Cheng94214702011-07-01 20:45:01 +000019#define GET_SUBTARGETINFO_TARGET_DESC
Evan Chengebdeeab2011-07-08 01:53:10 +000020#define GET_SUBTARGETINFO_CTOR
Evan Cheng385e9302011-07-01 22:36:09 +000021#include "SPUGenSubtargetInfo.inc"
Evan Cheng94214702011-07-01 20:45:01 +000022
Scott Michel564427e2007-12-05 01:24:05 +000023using namespace llvm;
24
Evan Cheng276365d2011-06-30 01:53:36 +000025SPUSubtarget::SPUSubtarget(const std::string &TT, const std::string &CPU,
26 const std::string &FS) :
Evan Cheng0ddff1b2011-07-07 07:07:08 +000027 SPUGenSubtargetInfo(TT, CPU, FS),
Scott Michel564427e2007-12-05 01:24:05 +000028 StackAlignment(16),
29 ProcDirective(SPU::DEFAULT_PROC),
30 UseLargeMem(false)
31{
32 // Should be the target SPU processor type. For now, since there's only
33 // one, simply default to the current "v0" default:
34 std::string default_cpu("v0");
35
36 // Parse features string.
Evan Cheng0ddff1b2011-07-07 07:07:08 +000037 ParseSubtargetFeatures(default_cpu, FS);
Evan Cheng94214702011-07-01 20:45:01 +000038
39 // Initialize scheduling itinerary for the specified CPU.
40 InstrItins = getInstrItineraryForCPU(default_cpu);
Scott Michel564427e2007-12-05 01:24:05 +000041}
42
43/// SetJITMode - This is called to inform the subtarget info that we are
44/// producing code for the JIT.
45void SPUSubtarget::SetJITMode() {
46}
Kalle Raiskilac2ebfd42010-11-29 10:30:25 +000047
48/// Enable PostRA scheduling for optimization levels -O2 and -O3.
49bool SPUSubtarget::enablePostRAScheduler(
50 CodeGenOpt::Level OptLevel,
Evan Cheng5b1b44892011-07-01 21:01:15 +000051 TargetSubtargetInfo::AntiDepBreakMode& Mode,
Kalle Raiskilac2ebfd42010-11-29 10:30:25 +000052 RegClassVector& CriticalPathRCs) const {
Evan Cheng5b1b44892011-07-01 21:01:15 +000053 Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
Kalle Raiskilac2ebfd42010-11-29 10:30:25 +000054 // CriticalPathsRCs seems to be the set of
55 // RegisterClasses that antidep breakings are performed for.
56 // Do it for all register classes
57 CriticalPathRCs.clear();
58 CriticalPathRCs.push_back(&SPU::R8CRegClass);
59 CriticalPathRCs.push_back(&SPU::R16CRegClass);
60 CriticalPathRCs.push_back(&SPU::R32CRegClass);
61 CriticalPathRCs.push_back(&SPU::R32FPRegClass);
62 CriticalPathRCs.push_back(&SPU::R64CRegClass);
63 CriticalPathRCs.push_back(&SPU::VECREGRegClass);
64 return OptLevel >= CodeGenOpt::Default;
65}