blob: b91f5472c8ba9ee324c2d52d5ab0c804b0b3bc6e [file] [log] [blame]
Jia Liu9f610112012-02-17 08:55:11 +00001//===-- MipsSubtarget.cpp - Mips Subtarget Information --------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00007//
Akira Hatanakae2489122011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00009//
Evan Cheng0d639a22011-07-01 21:01:15 +000010// This file implements the Mips specific subclass of TargetSubtargetInfo.
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000011//
Akira Hatanakae2489122011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000013
Reed Kotler1595f362013-04-09 19:46:01 +000014#define DEBUG_TYPE "mips-subtarget"
15
16#include "MipsMachineFunction.h"
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000017#include "MipsSubtarget.h"
Reed Kotler1595f362013-04-09 19:46:01 +000018#include "MipsTargetMachine.h"
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000019#include "Mips.h"
Akira Hatanaka047473e2012-03-28 00:24:17 +000020#include "MipsRegisterInfo.h"
Reed Kotler1595f362013-04-09 19:46:01 +000021#include "llvm/IR/Attributes.h"
22#include "llvm/IR/Function.h"
23#include "llvm/Support/CommandLine.h"
24#include "llvm/Support/Debug.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000025#include "llvm/Support/TargetRegistry.h"
Reed Kotler1595f362013-04-09 19:46:01 +000026#include "llvm/Support/raw_ostream.h"
Evan Cheng54b68e32011-07-01 20:45:01 +000027
Evan Cheng54b68e32011-07-01 20:45:01 +000028#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000029#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000030#include "MipsGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000031
Reed Kotler1595f362013-04-09 19:46:01 +000032
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000033using namespace llvm;
34
Reed Kotler1595f362013-04-09 19:46:01 +000035// FIXME: Maybe this should be on by default when Mips16 is specified
36//
37static cl::opt<bool> Mixed16_32(
38 "mips-mixed-16-32",
39 cl::init(false),
40 cl::desc("Allow for a mixture of Mips16 "
41 "and Mips32 code in a single source file"),
42 cl::Hidden);
43
David Blaikiea379b1812011-12-20 02:50:00 +000044void MipsSubtarget::anchor() { }
45
Evan Chengfe6e4052011-06-30 01:53:36 +000046MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
Akira Hatanakaad495022012-08-22 03:18:13 +000047 const std::string &FS, bool little,
Reed Kotler1595f362013-04-09 19:46:01 +000048 Reloc::Model _RM, MipsTargetMachine *_TM) :
Evan Cheng1a72add62011-07-07 07:07:08 +000049 MipsGenSubtargetInfo(TT, CPU, FS),
Jia Liuf54f60f2012-02-28 07:46:26 +000050 MipsArchVersion(Mips32), MipsABI(UnknownABI), IsLittle(little),
Akira Hatanaka1b185f42011-09-21 17:31:45 +000051 IsSingleFloat(false), IsFP64bit(false), IsGP64bit(false), HasVFPU(false),
Akira Hatanakac5dc0552012-12-07 03:04:05 +000052 IsLinux(true), HasSEInReg(false), HasCondMov(false), HasSwap(false),
53 HasBitCount(false), HasFPIdx(false),
Jack Carter428a06c2013-02-05 09:30:03 +000054 InMips16Mode(false), InMicroMipsMode(false), HasDSP(false), HasDSPR2(false),
Reed Kotler1595f362013-04-09 19:46:01 +000055 AllowMixed16_32(Mixed16_32),
56 RM(_RM), OverrideMode(NoOverride), TM(_TM)
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000057{
Evan Chengfe6e4052011-06-30 01:53:36 +000058 std::string CPUName = CPU;
59 if (CPUName.empty())
Akira Hatanakadc25f9f2011-11-29 23:08:41 +000060 CPUName = "mips32";
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000061
62 // Parse features string.
Evan Cheng1a72add62011-07-07 07:07:08 +000063 ParseSubtargetFeatures(CPUName, FS);
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +000064
Reed Kotler1595f362013-04-09 19:46:01 +000065 PreviousInMips16Mode = InMips16Mode;
66
Evan Cheng54b68e32011-07-01 20:45:01 +000067 // Initialize scheduling itinerary for the specified CPU.
68 InstrItins = getInstrItineraryForCPU(CPUName);
69
Akira Hatanaka6de4d122011-09-21 02:45:29 +000070 // Set MipsABI if it hasn't been set yet.
71 if (MipsABI == UnknownABI)
Jia Liuf54f60f2012-02-28 07:46:26 +000072 MipsABI = hasMips64() ? N64 : O32;
Akira Hatanaka6de4d122011-09-21 02:45:29 +000073
74 // Check if Architecture and ABI are compatible.
75 assert(((!hasMips64() && (isABI_O32() || isABI_EABI())) ||
76 (hasMips64() && (isABI_N32() || isABI_N64()))) &&
77 "Invalid Arch & ABI pair.");
78
Bruno Cardoso Lopes80ab8f92008-07-14 14:42:54 +000079 // Is the target system Linux ?
80 if (TT.find("linux") == std::string::npos)
81 IsLinux = false;
Akira Hatanakaad495022012-08-22 03:18:13 +000082
83 // Set UseSmallSection.
84 UseSmallSection = !IsLinux && (RM == Reloc::Static);
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000085}
Akira Hatanaka047473e2012-03-28 00:24:17 +000086
87bool
88MipsSubtarget::enablePostRAScheduler(CodeGenOpt::Level OptLevel,
Akira Hatanaka5fd22482012-06-14 21:10:56 +000089 TargetSubtargetInfo::AntiDepBreakMode &Mode,
90 RegClassVector &CriticalPathRCs) const {
Akira Hatanakacf434ee2012-05-15 03:14:52 +000091 Mode = TargetSubtargetInfo::ANTIDEP_NONE;
Akira Hatanaka047473e2012-03-28 00:24:17 +000092 CriticalPathRCs.clear();
93 CriticalPathRCs.push_back(hasMips64() ?
94 &Mips::CPU64RegsRegClass : &Mips::CPURegsRegClass);
Akira Hatanaka2c670062012-03-28 00:52:23 +000095 return OptLevel >= CodeGenOpt::Aggressive;
Akira Hatanaka047473e2012-03-28 00:24:17 +000096}
Reed Kotler1595f362013-04-09 19:46:01 +000097
98//FIXME: This logic for reseting the subtarget along with
99// the helper classes can probably be simplified but there are a lot of
100// cases so we will defer rewriting this to later.
101//
102void MipsSubtarget::resetSubtarget(MachineFunction *MF) {
103 bool ChangeToMips16 = false, ChangeToNoMips16 = false;
104 DEBUG(dbgs() << "resetSubtargetFeatures" << "\n");
105 AttributeSet FnAttrs = MF->getFunction()->getAttributes();
106 ChangeToMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex,
107 "mips16");
108 ChangeToNoMips16 = FnAttrs.hasAttribute(AttributeSet::FunctionIndex,
109 "nomips16");
110 assert (!(ChangeToMips16 & ChangeToNoMips16) &&
111 "mips16 and nomips16 specified on the same function");
112 if (ChangeToMips16) {
113 if (PreviousInMips16Mode)
114 return;
115 OverrideMode = Mips16Override;
116 PreviousInMips16Mode = true;
117 TM->setHelperClassesMips16();
118 return;
119 } else if (ChangeToNoMips16) {
120 if (!PreviousInMips16Mode)
121 return;
122 OverrideMode = NoMips16Override;
123 PreviousInMips16Mode = false;
124 TM->setHelperClassesMipsSE();
125 return;
126 } else {
127 if (OverrideMode == NoOverride)
128 return;
129 OverrideMode = NoOverride;
130 DEBUG(dbgs() << "back to default" << "\n");
131 if (inMips16Mode() && !PreviousInMips16Mode) {
132 TM->setHelperClassesMips16();
133 PreviousInMips16Mode = true;
134 } else if (!inMips16Mode() && PreviousInMips16Mode) {
135 TM->setHelperClassesMipsSE();
136 PreviousInMips16Mode = false;
137 }
138 return;
139 }
140}
141