034b5ce49c1f502a68569e33006bc21a6db8889f
[oota-llvm.git] / lib / Target / MBlaze / MBlazeSubtarget.cpp
1 //===- MBlazeSubtarget.cpp - MBlaze Subtarget Information -------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the MBlaze specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MBlazeSubtarget.h"
15 #include "MBlaze.h"
16 #include "MBlazeRegisterInfo.h"
17 #include "MBlazeGenSubtarget.inc"
18 #include "llvm/Support/CommandLine.h"
19 using namespace llvm;
20
21 MBlazeSubtarget::MBlazeSubtarget(const std::string &TT,
22                                  const std::string &CPU,
23                                  const std::string &FS):
24   HasBarrel(false), HasDiv(false), HasMul(false), HasPatCmp(false),
25   HasFPU(false), HasMul64(false), HasSqrt(false)
26 {
27   // Parse features string.
28   std::string CPUName = CPU;
29   if (CPUName.empty())
30     CPUName = "mblaze";
31   ParseSubtargetFeatures(FS, CPUName);
32
33   // Only use instruction scheduling if the selected CPU has an instruction
34   // itinerary (the default CPU is the only one that doesn't).
35   HasItin = CPUName != "mblaze";
36   DEBUG(dbgs() << "CPU " << CPUName << "(" << HasItin << ")\n");
37
38   // Compute the issue width of the MBlaze itineraries
39   computeIssueWidth();
40 }
41
42 void MBlazeSubtarget::computeIssueWidth() {
43   InstrItins.IssueWidth = 1;
44 }
45
46 bool MBlazeSubtarget::
47 enablePostRAScheduler(CodeGenOpt::Level OptLevel,
48                       TargetSubtarget::AntiDepBreakMode& Mode,
49                       RegClassVector& CriticalPathRCs) const {
50   Mode = TargetSubtarget::ANTIDEP_CRITICAL;
51   CriticalPathRCs.clear();
52   CriticalPathRCs.push_back(&MBlaze::GPRRegClass);
53   return HasItin && OptLevel >= CodeGenOpt::Default;
54 }
55