[Hexagon] Factoring classes out of some load patterns and deleting some unused ones.
[oota-llvm.git] / lib / Target / Hexagon / HexagonSubtarget.cpp
1 //===-- HexagonSubtarget.cpp - Hexagon Subtarget Information --------------===//
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 Hexagon specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "HexagonSubtarget.h"
15 #include "Hexagon.h"
16 #include "HexagonRegisterInfo.h"
17 #include "llvm/Support/CommandLine.h"
18 #include "llvm/Support/ErrorHandling.h"
19 using namespace llvm;
20
21 #define DEBUG_TYPE "hexagon-subtarget"
22
23 #define GET_SUBTARGETINFO_CTOR
24 #define GET_SUBTARGETINFO_TARGET_DESC
25 #include "HexagonGenSubtargetInfo.inc"
26
27 static cl::opt<bool>
28 EnableV3("enable-hexagon-v3", cl::Hidden,
29          cl::desc("Enable Hexagon V3 instructions."));
30
31 static cl::opt<bool>
32 EnableMemOps(
33     "enable-hexagon-memops",
34     cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(true),
35     cl::desc(
36       "Generate V4 MEMOP in code generation for Hexagon target"));
37
38 static cl::opt<bool>
39 DisableMemOps(
40     "disable-hexagon-memops",
41     cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(false),
42     cl::desc(
43       "Do not generate V4 MEMOP in code generation for Hexagon target"));
44
45 static cl::opt<bool>
46 EnableIEEERndNear(
47     "enable-hexagon-ieee-rnd-near",
48     cl::Hidden, cl::ZeroOrMore, cl::init(false),
49     cl::desc("Generate non-chopped conversion from fp to int."));
50
51 HexagonSubtarget &
52 HexagonSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) {
53   // If the programmer has not specified a Hexagon version, default to -mv4.
54   if (CPUString.empty())
55     CPUString = "hexagonv4";
56
57   if (CPUString == "hexagonv4") {
58     HexagonArchVersion = V4;
59   } else if (CPUString == "hexagonv5") {
60     HexagonArchVersion = V5;
61   } else {
62     llvm_unreachable("Unrecognized Hexagon processor version");
63   }
64
65   ParseSubtargetFeatures(CPUString, FS);
66   return *this;
67 }
68
69 HexagonSubtarget::HexagonSubtarget(StringRef TT, StringRef CPU, StringRef FS,
70                                    const TargetMachine &TM)
71     : HexagonGenSubtargetInfo(TT, CPU, FS), CPUString(CPU.str()),
72       InstrInfo(initializeSubtargetDependencies(CPU, FS)), TLInfo(TM, *this),
73       TSInfo(*TM.getDataLayout()), FrameLowering() {
74
75   // Initialize scheduling itinerary for the specified CPU.
76   InstrItins = getInstrItineraryForCPU(CPUString);
77
78   // UseMemOps on by default unless disabled explicitly
79   if (DisableMemOps)
80     UseMemOps = false;
81   else if (EnableMemOps)
82     UseMemOps = true;
83   else
84     UseMemOps = false;
85
86   if (EnableIEEERndNear)
87     ModeIEEERndNear = true;
88   else
89     ModeIEEERndNear = false;
90 }
91
92 // Pin the vtable to this file.
93 void HexagonSubtarget::anchor() {}