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