blob: 6d1ffc442069d931a871d05cc87fd3007494f57e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//=====---- ARMSubtarget.h - Define Subtarget for the ARM -----*- C++ -*--====//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file declares the ARM specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ARMSUBTARGET_H
15#define ARMSUBTARGET_H
16
Evan Cheng88e78d22009-06-19 01:51:50 +000017#include "llvm/Target/TargetInstrItineraries.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/Target/TargetSubtarget.h"
19#include <string>
20
21namespace llvm {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000022
23class ARMSubtarget : public TargetSubtarget {
24protected:
25 enum ARMArchEnum {
Anton Korobeynikov48000e92009-06-08 21:20:36 +000026 V4T, V5T, V5TE, V6, V6T2, V7A
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027 };
28
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +000029 enum ARMFPEnum {
30 None, VFPv2, VFPv3, NEON
31 };
32
Anton Korobeynikovf2e14752009-05-29 23:41:08 +000033 enum ThumbTypeEnum {
Anton Korobeynikovf2e14752009-05-29 23:41:08 +000034 Thumb1,
35 Thumb2
36 };
37
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +000038 /// ARMArchVersion - ARM architecture version: V4T (base), V5T, V5TE,
Anton Korobeynikovf2e14752009-05-29 23:41:08 +000039 /// V6, V6T2, V7A.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040 ARMArchEnum ARMArchVersion;
41
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +000042 /// ARMFPUType - Floating Point Unit type.
43 ARMFPEnum ARMFPUType;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044
David Goodwindd19ce42009-08-04 17:53:06 +000045 /// UseNEONForSinglePrecisionFP - if NEON is available use for FP
46 bool UseNEONForSinglePrecisionFP;
47
Anton Korobeynikove7540d62009-06-01 20:00:48 +000048 /// IsThumb - True if we are in thumb mode, false if in ARM mode.
49 bool IsThumb;
50
51 /// ThumbMode - Indicates supported Thumb version.
Anton Korobeynikovf2e14752009-05-29 23:41:08 +000052 ThumbTypeEnum ThumbMode;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 /// IsR9Reserved - True if R9 is a not available as general purpose register.
55 bool IsR9Reserved;
56
57 /// stackAlignment - The minimum alignment known to hold of the stack frame on
58 /// entry to the function and which must be maintained by every function.
59 unsigned stackAlignment;
60
Anton Korobeynikov7357d8f2009-05-23 19:50:50 +000061 /// CPUString - String name of used CPU.
62 std::string CPUString;
63
Evan Cheng88e78d22009-06-19 01:51:50 +000064 /// Selected instruction itineraries (one entry per itinerary class.)
65 InstrItineraryData InstrItins;
66
Dan Gohmanf17a25c2007-07-18 16:29:46 +000067 public:
68 enum {
69 isELF, isDarwin
70 } TargetType;
71
72 enum {
73 ARM_ABI_APCS,
74 ARM_ABI_AAPCS // ARM EABI
75 } TargetABI;
76
77 /// This constructor initializes the data members to match that
Daniel Dunbarb711cf02009-08-02 22:11:08 +000078 /// of the specified triple.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000079 ///
Daniel Dunbarb711cf02009-08-02 22:11:08 +000080 ARMSubtarget(const std::string &TT, const std::string &FS, bool isThumb);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081
Dan Gohmane8b391e2008-04-12 04:36:06 +000082 /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
83 /// that still makes it profitable to inline the call.
Rafael Espindola948da402007-10-31 14:39:58 +000084 unsigned getMaxInlineSizeThreshold() const {
85 // FIXME: For now, we don't lower memcpy's to loads / stores for Thumb.
86 // Change this once Thumb ldmia / stmia support is added.
87 return isThumb() ? 0 : 64;
88 }
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +000089 /// ParseSubtargetFeatures - Parses features string setting specified
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov7357d8f2009-05-23 19:50:50 +000091 std::string ParseSubtargetFeatures(const std::string &FS,
92 const std::string &CPU);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000093
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +000094 bool hasV4TOps() const { return ARMArchVersion >= V4T; }
95 bool hasV5TOps() const { return ARMArchVersion >= V5T; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000096 bool hasV5TEOps() const { return ARMArchVersion >= V5TE; }
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +000097 bool hasV6Ops() const { return ARMArchVersion >= V6; }
Bob Wilsoneab41ba2009-06-25 16:03:07 +000098 bool hasV6T2Ops() const { return ARMArchVersion >= V6T2; }
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +000099 bool hasV7Ops() const { return ARMArchVersion >= V7A; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000100
Anton Korobeynikov1bf0f082009-05-23 19:51:43 +0000101 bool hasVFP2() const { return ARMFPUType >= VFPv2; }
102 bool hasVFP3() const { return ARMFPUType >= VFPv3; }
103 bool hasNEON() const { return ARMFPUType >= NEON; }
David Goodwindd19ce42009-08-04 17:53:06 +0000104 bool useNEONForSinglePrecisionFP() const {
105 return hasNEON() && UseNEONForSinglePrecisionFP; }
106
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000107 bool isTargetDarwin() const { return TargetType == isDarwin; }
108 bool isTargetELF() const { return TargetType == isELF; }
109
110 bool isAPCS_ABI() const { return TargetABI == ARM_ABI_APCS; }
111 bool isAAPCS_ABI() const { return TargetABI == ARM_ABI_AAPCS; }
112
Anton Korobeynikove7540d62009-06-01 20:00:48 +0000113 bool isThumb() const { return IsThumb; }
Anton Korobeynikovcba02692009-06-15 21:46:20 +0000114 bool isThumb1Only() const { return IsThumb && (ThumbMode == Thumb1); }
Evan Cheng86ae71d2009-07-06 22:29:14 +0000115 bool isThumb2() const { return IsThumb && (ThumbMode == Thumb2); }
Evan Chengb1b2abc2009-07-02 06:38:40 +0000116 bool hasThumb2() const { return ThumbMode >= Thumb2; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000117
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 bool isR9Reserved() const { return IsR9Reserved; }
119
Anton Korobeynikov7357d8f2009-05-23 19:50:50 +0000120 const std::string & getCPUString() const { return CPUString; }
121
Evan Cheng88e78d22009-06-19 01:51:50 +0000122 /// getInstrItins - Return the instruction itineraies based on subtarget
123 /// selection.
124 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
125
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000126 /// getStackAlignment - Returns the minimum alignment known to hold of the
127 /// stack frame on entry to the function and which must be maintained by every
128 /// function for this subtarget.
129 unsigned getStackAlignment() const { return stackAlignment; }
130};
131} // End llvm namespace
132
133#endif // ARMSUBTARGET_H