blob: e7d92ede9b984137ce8c099aa1ef1a429973a0f7 [file] [log] [blame]
Evan Chenga8e29892007-01-19 07:51:42 +00001//=====---- ARMSubtarget.h - Define Subtarget for the ARM -----*- C++ -*--====//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Evan Chenga8e29892007-01-19 07:51:42 +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 Cheng8557c2b2009-06-19 01:51:50 +000017#include "llvm/Target/TargetInstrItineraries.h"
Evan Cheng63476a82009-09-03 07:04:02 +000018#include "llvm/Target/TargetMachine.h"
Evan Chenga8e29892007-01-19 07:51:42 +000019#include "llvm/Target/TargetSubtarget.h"
David Goodwin0855dee2009-11-10 00:15:47 +000020#include "ARMBaseRegisterInfo.h"
Evan Chenga8e29892007-01-19 07:51:42 +000021#include <string>
22
23namespace llvm {
Evan Chenge4e4ed32009-08-28 23:18:09 +000024class GlobalValue;
Evan Chenga8e29892007-01-19 07:51:42 +000025
26class ARMSubtarget : public TargetSubtarget {
27protected:
28 enum ARMArchEnum {
Jim Grosbachb1dc3932010-05-05 20:44:35 +000029 V4, V4T, V5T, V5TE, V6, V6T2, V7A, V7M
Evan Chenga8e29892007-01-19 07:51:42 +000030 };
31
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000032 enum ARMFPEnum {
33 None, VFPv2, VFPv3, NEON
34 };
35
Anton Korobeynikovd4022c32009-05-29 23:41:08 +000036 enum ThumbTypeEnum {
Anton Korobeynikovd4022c32009-05-29 23:41:08 +000037 Thumb1,
38 Thumb2
39 };
40
Anton Korobeynikovce7bf1c2010-03-06 19:39:36 +000041 /// ARMArchVersion - ARM architecture version: V4, V4T (base), V5T, V5TE,
Jim Grosbachb1dc3932010-05-05 20:44:35 +000042 /// V6, V6T2, V7A, V7M.
Evan Chenga8e29892007-01-19 07:51:42 +000043 ARMArchEnum ARMArchVersion;
44
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000045 /// ARMFPUType - Floating Point Unit type.
46 ARMFPEnum ARMFPUType;
Evan Chenga8e29892007-01-19 07:51:42 +000047
David Goodwin1f0e4042009-08-05 16:01:19 +000048 /// UseNEONForSinglePrecisionFP - if the NEONFP attribute has been
49 /// specified. Use the method useNEONForSinglePrecisionFP() to
50 /// determine if NEON should actually be used.
David Goodwin42a83f22009-08-04 17:53:06 +000051 bool UseNEONForSinglePrecisionFP;
52
Jim Grosbach6b2e8dc2010-03-25 23:11:16 +000053 /// SlowVMLx - If the VFP2 instructions are available, indicates whether
54 /// the VML[AS] instructions are slow (if so, don't use them).
55 bool SlowVMLx;
Jim Grosbach26767372010-03-24 22:31:46 +000056
Evan Cheng7a415992010-07-13 19:21:50 +000057 /// SlowFPBrcc - True if floating point compare + branch is slow.
58 bool SlowFPBrcc;
59
Anton Korobeynikov70459be2009-06-01 20:00:48 +000060 /// IsThumb - True if we are in thumb mode, false if in ARM mode.
61 bool IsThumb;
62
63 /// ThumbMode - Indicates supported Thumb version.
Anton Korobeynikovd4022c32009-05-29 23:41:08 +000064 ThumbTypeEnum ThumbMode;
Evan Chenga8e29892007-01-19 07:51:42 +000065
David Goodwin0dad89f2009-09-30 00:10:16 +000066 /// PostRAScheduler - True if using post-register-allocation scheduler.
67 bool PostRAScheduler;
68
Evan Chenga8e29892007-01-19 07:51:42 +000069 /// IsR9Reserved - True if R9 is a not available as general purpose register.
70 bool IsR9Reserved;
Lauro Ramos Venancio3630e782007-02-13 19:52:28 +000071
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +000072 /// UseMovt - True if MOVT / MOVW pairs are used for materialization of 32-bit
73 /// imms (including global addresses).
74 bool UseMovt;
75
Anton Korobeynikov631379e2010-03-14 18:42:38 +000076 /// HasFP16 - True if subtarget supports half-precision FP (We support VFP+HF
77 /// only so far)
78 bool HasFP16;
79
Jim Grosbach29402132010-05-05 23:44:43 +000080 /// HasHardwareDivide - True if subtarget supports [su]div
81 bool HasHardwareDivide;
82
83 /// HasT2ExtractPack - True if subtarget supports thumb2 extract/pack
84 /// instructions.
85 bool HasT2ExtractPack;
86
Evan Chenga8e29892007-01-19 07:51:42 +000087 /// stackAlignment - The minimum alignment known to hold of the stack frame on
88 /// entry to the function and which must be maintained by every function.
89 unsigned stackAlignment;
90
Anton Korobeynikov41a02432009-05-23 19:50:50 +000091 /// CPUString - String name of used CPU.
92 std::string CPUString;
93
Evan Cheng8557c2b2009-06-19 01:51:50 +000094 /// Selected instruction itineraries (one entry per itinerary class.)
95 InstrItineraryData InstrItins;
Jim Grosbach764ab522009-08-11 15:33:49 +000096
Evan Chenga8e29892007-01-19 07:51:42 +000097 public:
Evan Cheng1a3771e2007-01-19 19:22:40 +000098 enum {
99 isELF, isDarwin
100 } TargetType;
101
Lauro Ramos Venancio3630e782007-02-13 19:52:28 +0000102 enum {
103 ARM_ABI_APCS,
104 ARM_ABI_AAPCS // ARM EABI
105 } TargetABI;
106
Evan Chenga8e29892007-01-19 07:51:42 +0000107 /// This constructor initializes the data members to match that
Daniel Dunbar3be03402009-08-02 22:11:08 +0000108 /// of the specified triple.
Evan Chenga8e29892007-01-19 07:51:42 +0000109 ///
Daniel Dunbar3be03402009-08-02 22:11:08 +0000110 ARMSubtarget(const std::string &TT, const std::string &FS, bool isThumb);
Evan Chenga8e29892007-01-19 07:51:42 +0000111
Dan Gohman707e0182008-04-12 04:36:06 +0000112 /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
113 /// that still makes it profitable to inline the call.
Rafael Espindolae0703c82007-10-31 14:39:58 +0000114 unsigned getMaxInlineSizeThreshold() const {
Bob Wilson4d6113e2010-03-11 00:20:49 +0000115 // FIXME: For now, we don't lower memcpy's to loads / stores for Thumb1.
116 // Change this once Thumb1 ldmia / stmia support is added.
117 return isThumb1Only() ? 0 : 64;
Rafael Espindolae0703c82007-10-31 14:39:58 +0000118 }
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +0000119 /// ParseSubtargetFeatures - Parses features string setting specified
Evan Chenga8e29892007-01-19 07:51:42 +0000120 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov41a02432009-05-23 19:50:50 +0000121 std::string ParseSubtargetFeatures(const std::string &FS,
122 const std::string &CPU);
Evan Chenga8e29892007-01-19 07:51:42 +0000123
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +0000124 bool hasV4TOps() const { return ARMArchVersion >= V4T; }
125 bool hasV5TOps() const { return ARMArchVersion >= V5T; }
Evan Chenga8e29892007-01-19 07:51:42 +0000126 bool hasV5TEOps() const { return ARMArchVersion >= V5TE; }
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +0000127 bool hasV6Ops() const { return ARMArchVersion >= V6; }
Bob Wilsone481f122009-06-25 16:03:07 +0000128 bool hasV6T2Ops() const { return ARMArchVersion >= V6T2; }
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +0000129 bool hasV7Ops() const { return ARMArchVersion >= V7A; }
Evan Chenga8e29892007-01-19 07:51:42 +0000130
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +0000131 bool hasVFP2() const { return ARMFPUType >= VFPv2; }
132 bool hasVFP3() const { return ARMFPUType >= VFPv3; }
133 bool hasNEON() const { return ARMFPUType >= NEON; }
Jim Grosbach764ab522009-08-11 15:33:49 +0000134 bool useNEONForSinglePrecisionFP() const {
David Goodwin42a83f22009-08-04 17:53:06 +0000135 return hasNEON() && UseNEONForSinglePrecisionFP; }
Shantonu Seneae216c2010-05-06 14:57:47 +0000136 bool hasDivide() const { return HasHardwareDivide; }
137 bool hasT2ExtractPack() const { return HasT2ExtractPack; }
Jim Grosbach6b2e8dc2010-03-25 23:11:16 +0000138 bool useVMLx() const {return hasVFP2() && !SlowVMLx; }
Evan Cheng7a415992010-07-13 19:21:50 +0000139 bool isFPBrccSlow() const { return SlowFPBrcc; }
Jim Grosbach764ab522009-08-11 15:33:49 +0000140
Anton Korobeynikov631379e2010-03-14 18:42:38 +0000141 bool hasFP16() const { return HasFP16; }
142
Evan Cheng1a3771e2007-01-19 19:22:40 +0000143 bool isTargetDarwin() const { return TargetType == isDarwin; }
144 bool isTargetELF() const { return TargetType == isELF; }
145
Lauro Ramos Venancio3630e782007-02-13 19:52:28 +0000146 bool isAPCS_ABI() const { return TargetABI == ARM_ABI_APCS; }
147 bool isAAPCS_ABI() const { return TargetABI == ARM_ABI_AAPCS; }
148
Anton Korobeynikov70459be2009-06-01 20:00:48 +0000149 bool isThumb() const { return IsThumb; }
Anton Korobeynikovbb629622009-06-15 21:46:20 +0000150 bool isThumb1Only() const { return IsThumb && (ThumbMode == Thumb1); }
Evan Cheng3147fb22009-07-06 22:29:14 +0000151 bool isThumb2() const { return IsThumb && (ThumbMode == Thumb2); }
Evan Chengd770d9e2009-07-02 06:38:40 +0000152 bool hasThumb2() const { return ThumbMode >= Thumb2; }
Evan Chenga8e29892007-01-19 07:51:42 +0000153
Evan Chenga8e29892007-01-19 07:51:42 +0000154 bool isR9Reserved() const { return IsR9Reserved; }
155
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000156 bool useMovt() const { return UseMovt && hasV6T2Ops(); }
157
Anton Korobeynikov41a02432009-05-23 19:50:50 +0000158 const std::string & getCPUString() const { return CPUString; }
Anton Korobeynikov5cdc3a92009-11-24 00:44:37 +0000159
David Goodwinc2e8a7e2009-11-10 00:48:55 +0000160 /// enablePostRAScheduler - True at 'More' optimization.
David Goodwin4c3715c2009-10-22 23:19:17 +0000161 bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
David Goodwin0855dee2009-11-10 00:15:47 +0000162 TargetSubtarget::AntiDepBreakMode& Mode,
David Goodwin87d21b92009-11-13 19:52:48 +0000163 RegClassVector& CriticalPathRCs) const;
Anton Korobeynikov41a02432009-05-23 19:50:50 +0000164
Jim Grosbach764ab522009-08-11 15:33:49 +0000165 /// getInstrItins - Return the instruction itineraies based on subtarget
Evan Cheng8557c2b2009-06-19 01:51:50 +0000166 /// selection.
167 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
168
Evan Chenga8e29892007-01-19 07:51:42 +0000169 /// getStackAlignment - Returns the minimum alignment known to hold of the
170 /// stack frame on entry to the function and which must be maintained by every
171 /// function for this subtarget.
172 unsigned getStackAlignment() const { return stackAlignment; }
Evan Chenge4e4ed32009-08-28 23:18:09 +0000173
174 /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect
175 /// symbol.
Dan Gohman46510a72010-04-15 01:51:59 +0000176 bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
Evan Chenga8e29892007-01-19 07:51:42 +0000177};
178} // End llvm namespace
179
180#endif // ARMSUBTARGET_H