blob: d9835070fb046c891e5f5f3849ad3128317850f3 [file] [log] [blame]
Scott Michel564427e2007-12-05 01:24:05 +00001//===- SPUSubtarget.cpp - STI Cell SPU Subtarget Information --------------===//
2//
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 Chengebdeeab2011-07-08 01:53:10 +000017#include "llvm/ADT/SmallVector.h"
Scott Michel564427e2007-12-05 01:24:05 +000018
Evan Chengebdeeab2011-07-08 01:53:10 +000019#define GET_SUBTARGETINFO_ENUM
Evan Cheng94214702011-07-01 20:45:01 +000020#define GET_SUBTARGETINFO_MC_DESC
21#define GET_SUBTARGETINFO_TARGET_DESC
Evan Chengebdeeab2011-07-08 01:53:10 +000022#define GET_SUBTARGETINFO_CTOR
Evan Cheng385e9302011-07-01 22:36:09 +000023#include "SPUGenSubtargetInfo.inc"
Evan Cheng94214702011-07-01 20:45:01 +000024
Scott Michel564427e2007-12-05 01:24:05 +000025using namespace llvm;
26
Evan Cheng276365d2011-06-30 01:53:36 +000027SPUSubtarget::SPUSubtarget(const std::string &TT, const std::string &CPU,
28 const std::string &FS) :
Evan Cheng0ddff1b2011-07-07 07:07:08 +000029 SPUGenSubtargetInfo(TT, CPU, FS),
Scott Michel564427e2007-12-05 01:24:05 +000030 StackAlignment(16),
31 ProcDirective(SPU::DEFAULT_PROC),
32 UseLargeMem(false)
33{
34 // Should be the target SPU processor type. For now, since there's only
35 // one, simply default to the current "v0" default:
36 std::string default_cpu("v0");
37
38 // Parse features string.
Evan Cheng0ddff1b2011-07-07 07:07:08 +000039 ParseSubtargetFeatures(default_cpu, FS);
Evan Cheng94214702011-07-01 20:45:01 +000040
41 // Initialize scheduling itinerary for the specified CPU.
42 InstrItins = getInstrItineraryForCPU(default_cpu);
Scott Michel564427e2007-12-05 01:24:05 +000043}
44
45/// SetJITMode - This is called to inform the subtarget info that we are
46/// producing code for the JIT.
47void SPUSubtarget::SetJITMode() {
48}
Kalle Raiskilac2ebfd42010-11-29 10:30:25 +000049
50/// Enable PostRA scheduling for optimization levels -O2 and -O3.
51bool SPUSubtarget::enablePostRAScheduler(
52 CodeGenOpt::Level OptLevel,
Evan Cheng5b1b44892011-07-01 21:01:15 +000053 TargetSubtargetInfo::AntiDepBreakMode& Mode,
Kalle Raiskilac2ebfd42010-11-29 10:30:25 +000054 RegClassVector& CriticalPathRCs) const {
Evan Cheng5b1b44892011-07-01 21:01:15 +000055 Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
Kalle Raiskilac2ebfd42010-11-29 10:30:25 +000056 // CriticalPathsRCs seems to be the set of
57 // RegisterClasses that antidep breakings are performed for.
58 // Do it for all register classes
59 CriticalPathRCs.clear();
60 CriticalPathRCs.push_back(&SPU::R8CRegClass);
61 CriticalPathRCs.push_back(&SPU::R16CRegClass);
62 CriticalPathRCs.push_back(&SPU::R32CRegClass);
63 CriticalPathRCs.push_back(&SPU::R32FPRegClass);
64 CriticalPathRCs.push_back(&SPU::R64CRegClass);
65 CriticalPathRCs.push_back(&SPU::VECREGRegClass);
66 return OptLevel >= CodeGenOpt::Default;
67}