blob: 70747f5da137e858c618ed36d1dd4bba002a8f68 [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===- MipsSubtarget.cpp - Mips Subtarget Information -----------*- C++ -*-===//
2//
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//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the Mips specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "MipsSubtarget.h"
15#include "Mips.h"
16#include "MipsGenSubtarget.inc"
17using namespace llvm;
18
Eli Friedmane2c74082009-08-03 02:22:28 +000019MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &FS,
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000020 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{
Bruno Cardoso Lopes000604a2007-11-06 03:15:20 +000026 std::string CPU = "mips1";
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000027 MipsArchVersion = Mips1;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000028
29 // Parse features string.
30 ParseSubtargetFeatures(FS, CPU);
Bruno Cardoso Lopes43d526d2008-07-14 14:42:54 +000031
32 // Is the target system Linux ?
33 if (TT.find("linux") == std::string::npos)
34 IsLinux = false;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000035
Bruno Cardoso Lopes81092dc2011-03-04 17:51:39 +000036 // When only the target triple is specified and is
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000037 // a allegrex target, set the features. We also match
38 // big and little endian allegrex cores (dont really
39 // know if a big one exists)
Bruno Cardoso Lopesf131fa22008-08-08 04:49:42 +000040 if (TT.find("mipsallegrex") != std::string::npos ||
41 TT.find("psp") != std::string::npos) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000042 MipsABI = EABI;
43 IsSingleFloat = true;
44 MipsArchVersion = Mips2;
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +000045 HasVFPU = true; // Enables Allegrex Vector FPU (not supported yet)
46 HasSEInReg = true;
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +000047 HasBitCount = true;
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000048 HasSwap = true;
49 HasCondMov = true;
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000050 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000051}