Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 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" |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 16 | #include "MBlazeRegisterInfo.h" |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 17 | #include "MBlazeGenSubtarget.inc" |
| 18 | #include "llvm/Support/CommandLine.h" |
| 19 | using namespace llvm; |
| 20 | |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame^] | 21 | MBlazeSubtarget::MBlazeSubtarget(const std::string &TT, |
| 22 | const std::string &CPU, |
| 23 | const std::string &FS): |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 24 | HasBarrel(false), HasDiv(false), HasMul(false), HasPatCmp(false), |
| 25 | HasFPU(false), HasMul64(false), HasSqrt(false) |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 26 | { |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 27 | // Parse features string. |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame^] | 28 | std::string CPUName = CPU; |
| 29 | if (CPUName.empty()) |
| 30 | CPUName = "mblaze"; |
| 31 | ParseSubtargetFeatures(FS, CPUName); |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 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). |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame^] | 35 | HasItin = CPUName != "mblaze"; |
| 36 | DEBUG(dbgs() << "CPU " << CPUName << "(" << HasItin << ")\n"); |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 37 | |
| 38 | // Compute the issue width of the MBlaze itineraries |
| 39 | computeIssueWidth(); |
Wesley Peck | a70f28c | 2010-02-23 19:15:24 +0000 | [diff] [blame] | 40 | } |
Wesley Peck | 3d820ba | 2011-04-11 22:31:52 +0000 | [diff] [blame] | 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 | |