Match raw "psp" triple target, as done by the homebrew toolchain.
[oota-llvm.git] / lib / Target / Mips / MipsSubtarget.cpp
1 //===- MipsSubtarget.cpp - Mips 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 Mips specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MipsSubtarget.h"
15 #include "Mips.h"
16 #include "MipsGenSubtarget.inc"
17 #include "llvm/Module.h"
18 #include "llvm/Support/CommandLine.h"
19 using namespace llvm;
20
21 cl::opt<bool> NotABICall("disable-mips-abicall", cl::Hidden,
22               cl::desc("Disable code for SVR4-style dynamic objects"));
23 cl::opt<bool> AbsoluteCall("enable-mips-absolute-call", cl::Hidden,
24               cl::desc("Enable absolute call within abicall"));
25 cl::opt<unsigned> SSThreshold("mips-ssection-threshold", cl::Hidden,
26               cl::desc("Small data and bss section threshold size (default=8)"),
27               cl::init(8));
28
29 MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M, 
30                              const std::string &FS, bool little) : 
31   MipsArchVersion(Mips1), MipsABI(O32), IsLittle(little), IsSingleFloat(false),
32   IsFP64bit(false), IsGP64bit(false), HasVFPU(false), HasABICall(true), 
33   HasAbsoluteCall(false), IsLinux(true), HasSEInReg(false), HasCondMov(false),
34   HasMulDivAdd(false), HasMinMax(false), HasSwap(false), HasBitCount(false)
35 {
36   std::string CPU = "mips1";
37
38   // Parse features string.
39   ParseSubtargetFeatures(FS, CPU);
40   const std::string& TT = M.getTargetTriple();
41
42   // Small section size threshold
43   SSectionThreshold = SSThreshold;
44
45   // Is the target system Linux ?
46   if (TT.find("linux") == std::string::npos)
47     IsLinux = false;
48
49   // When only the target triple is specified and is 
50   // a allegrex target, set the features. We also match
51   // big and little endian allegrex cores (dont really
52   // know if a big one exists)
53   if (TT.find("mipsallegrex") != std::string::npos ||
54       TT.find("psp") != std::string::npos) {
55     MipsABI = EABI;
56     IsSingleFloat = true;
57     MipsArchVersion = Mips2;
58     HasVFPU = true; // Enables Allegrex Vector FPU (not supported yet)
59     HasSEInReg = true;
60   }
61
62   // Abicall is the default for O32 ABI and is ignored 
63   // for EABI.
64   if (NotABICall || isABI_EABI())
65     HasABICall = false;
66
67   // TODO: disable when handling 64 bit symbols in the future.
68   if (HasABICall && AbsoluteCall)
69     HasAbsoluteCall = true;
70 }