blob: 306ea118927a0a4e43330456051388f1b55e418e [file] [log] [blame]
Akira Hatanaka4552c9a2011-04-15 21:51:11 +00001//===- MipsSubtarget.cpp - Mips Subtarget Information -----------*- C++ -*-===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +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.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
Akira Hatanaka4552c9a2011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00009//
10// This file implements the Mips specific subclass of TargetSubtarget.
11//
Akira Hatanaka4552c9a2011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000013
14#include "MipsSubtarget.h"
15#include "Mips.h"
16#include "MipsGenSubtarget.inc"
17using namespace llvm;
18
Evan Cheng276365d2011-06-30 01:53:36 +000019MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
20 const std::string &FS, bool little) :
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000021 MipsArchVersion(Mips1), MipsABI(O32), IsLittle(little), IsSingleFloat(false),
Eli Friedmane2c74082009-08-03 02:22:28 +000022 IsFP64bit(false), IsGP64bit(false), HasVFPU(false), IsLinux(true),
23 HasSEInReg(false), HasCondMov(false), HasMulDivAdd(false), HasMinMax(false),
24 HasSwap(false), HasBitCount(false)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000025{
Evan Cheng276365d2011-06-30 01:53:36 +000026 std::string CPUName = CPU;
27 if (CPUName.empty())
28 CPUName = "mips1";
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000029 MipsArchVersion = Mips1;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000030
31 // Parse features string.
Evan Cheng276365d2011-06-30 01:53:36 +000032 ParseSubtargetFeatures(FS, CPUName);
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000033
34 // Is the target system Linux ?
35 if (TT.find("linux") == std::string::npos)
36 IsLinux = false;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000037
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000038 // When only the target triple is specified and is
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000039 // a allegrex target, set the features. We also match
40 // big and little endian allegrex cores (dont really
41 // know if a big one exists)
Bruno Cardoso Lopesf131fa22008-08-08 04:49:42 +000042 if (TT.find("mipsallegrex") != std::string::npos ||
43 TT.find("psp") != std::string::npos) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000044 MipsABI = EABI;
45 IsSingleFloat = true;
46 MipsArchVersion = Mips2;
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +000047 HasVFPU = true; // Enables Allegrex Vector FPU (not supported yet)
48 HasSEInReg = true;
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +000049 HasBitCount = true;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000050 HasSwap = true;
51 HasCondMov = true;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000052 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000053}