70c87fa19d1a839cdfb6412a0282edcbe6b43812
[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::HexagonSubtarget(StringRef TT, StringRef CPU, StringRef FS):
52   HexagonGenSubtargetInfo(TT, CPU, FS),
53   CPUString(CPU.str()) {
54
55   // If the programmer has not specified a Hexagon version, default to -mv4.
56   if (CPUString.empty())
57     CPUString = "hexagonv4";
58
59   if (CPUString == "hexagonv2") {
60     HexagonArchVersion = V2;
61   } else if (CPUString == "hexagonv3") {
62     EnableV3 = true;
63     HexagonArchVersion = V3;
64   } else if (CPUString == "hexagonv4") {
65     HexagonArchVersion = V4;
66   } else if (CPUString == "hexagonv5") {
67     HexagonArchVersion = V5;
68   } else {
69     llvm_unreachable("Unrecognized Hexagon processor version");
70   }
71
72   ParseSubtargetFeatures(CPUString, FS);
73
74   // Initialize scheduling itinerary for the specified CPU.
75   InstrItins = getInstrItineraryForCPU(CPUString);
76
77   // UseMemOps on by default unless disabled explicitly
78   if (DisableMemOps)
79     UseMemOps = false;
80   else if (EnableMemOps)
81     UseMemOps = true;
82   else
83     UseMemOps = false;
84
85   if (EnableIEEERndNear)
86     ModeIEEERndNear = true;
87   else
88     ModeIEEERndNear = false;
89 }
90
91 // Pin the vtable to this file.
92 void HexagonSubtarget::anchor() {}