blob: 70747f5da137e858c618ed36d1dd4bba002a8f68 [file] [log] [blame]
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +00001//===- MipsSubtarget.cpp - Mips Subtarget Information -----------*- C++ -*-===//
2//
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//
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 Friedman57c11da2009-08-03 02:22:28 +000019MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &FS,
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000020 bool little) :
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000021 MipsArchVersion(Mips1), MipsABI(O32), IsLittle(little), IsSingleFloat(false),
Eli Friedman57c11da2009-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 Lopes35e43c42007-06-06 07:42:06 +000025{
Bruno Cardoso Lopes87bb0322007-11-06 03:15:20 +000026 std::string CPU = "mips1";
Bruno Cardoso Lopesa72a5052009-05-27 17:23:44 +000027 MipsArchVersion = Mips1;
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000028
29 // Parse features string.
30 ParseSubtargetFeatures(FS, CPU);
Bruno Cardoso Lopes80ab8f92008-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 Lopesc9c3f492008-07-05 19:05:21 +000035
Bruno Cardoso Lopesed874ef2011-03-04 17:51:39 +000036 // When only the target triple is specified and is
Bruno Cardoso Lopesc9c3f492008-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 Lopes70e41ca2008-08-08 04:49:42 +000040 if (TT.find("mipsallegrex") != std::string::npos ||
41 TT.find("psp") != std::string::npos) {
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000042 MipsABI = EABI;
43 IsSingleFloat = true;
44 MipsArchVersion = Mips2;
Bruno Cardoso Lopesbcc21392008-07-09 05:32:22 +000045 HasVFPU = true; // Enables Allegrex Vector FPU (not supported yet)
46 HasSEInReg = true;
Bruno Cardoso Lopes93da7e62008-08-08 06:16:31 +000047 HasBitCount = true;
Bruno Cardoso Lopes92c64ae2008-08-13 07:13:40 +000048 HasSwap = true;
49 HasCondMov = true;
Bruno Cardoso Lopesc9c3f492008-07-05 19:05:21 +000050 }
Bruno Cardoso Lopes35e43c42007-06-06 07:42:06 +000051}