blob: 6d1ffc442069d931a871d05cc87fd3007494f57e [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 Chenga8e29892007-01-19 07:51:42 +000018#include "llvm/Target/TargetSubtarget.h"
19#include <string>
20
21namespace llvm {
Evan Chenga8e29892007-01-19 07:51:42 +000022
23class ARMSubtarget : public TargetSubtarget {
24protected:
25 enum ARMArchEnum {
Anton Korobeynikovfbbf1ee2009-06-08 21:20:36 +000026 V4T, V5T, V5TE, V6, V6T2, V7A
Evan Chenga8e29892007-01-19 07:51:42 +000027 };
28
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000029 enum ARMFPEnum {
30 None, VFPv2, VFPv3, NEON
31 };
32
Anton Korobeynikovd4022c32009-05-29 23:41:08 +000033 enum ThumbTypeEnum {
Anton Korobeynikovd4022c32009-05-29 23:41:08 +000034 Thumb1,
35 Thumb2
36 };
37
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000038 /// ARMArchVersion - ARM architecture version: V4T (base), V5T, V5TE,
Anton Korobeynikovd4022c32009-05-29 23:41:08 +000039 /// V6, V6T2, V7A.
Evan Chenga8e29892007-01-19 07:51:42 +000040 ARMArchEnum ARMArchVersion;
41
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000042 /// ARMFPUType - Floating Point Unit type.
43 ARMFPEnum ARMFPUType;
Evan Chenga8e29892007-01-19 07:51:42 +000044
David Goodwin42a83f22009-08-04 17:53:06 +000045 /// UseNEONForSinglePrecisionFP - if NEON is available use for FP
46 bool UseNEONForSinglePrecisionFP;
47
Anton Korobeynikov70459be2009-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 Korobeynikovd4022c32009-05-29 23:41:08 +000052 ThumbTypeEnum ThumbMode;
Evan Chenga8e29892007-01-19 07:51:42 +000053
Evan Chenga8e29892007-01-19 07:51:42 +000054 /// IsR9Reserved - True if R9 is a not available as general purpose register.
55 bool IsR9Reserved;
Lauro Ramos Venancio3630e782007-02-13 19:52:28 +000056
Evan Chenga8e29892007-01-19 07:51:42 +000057 /// 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 Korobeynikov41a02432009-05-23 19:50:50 +000061 /// CPUString - String name of used CPU.
62 std::string CPUString;
63
Evan Cheng8557c2b2009-06-19 01:51:50 +000064 /// Selected instruction itineraries (one entry per itinerary class.)
65 InstrItineraryData InstrItins;
66
Evan Chenga8e29892007-01-19 07:51:42 +000067 public:
Evan Cheng1a3771e2007-01-19 19:22:40 +000068 enum {
69 isELF, isDarwin
70 } TargetType;
71
Lauro Ramos Venancio3630e782007-02-13 19:52:28 +000072 enum {
73 ARM_ABI_APCS,
74 ARM_ABI_AAPCS // ARM EABI
75 } TargetABI;
76
Evan Chenga8e29892007-01-19 07:51:42 +000077 /// This constructor initializes the data members to match that
Daniel Dunbar3be03402009-08-02 22:11:08 +000078 /// of the specified triple.
Evan Chenga8e29892007-01-19 07:51:42 +000079 ///
Daniel Dunbar3be03402009-08-02 22:11:08 +000080 ARMSubtarget(const std::string &TT, const std::string &FS, bool isThumb);
Evan Chenga8e29892007-01-19 07:51:42 +000081
Dan Gohman707e0182008-04-12 04:36:06 +000082 /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
83 /// that still makes it profitable to inline the call.
Rafael Espindolae0703c82007-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 Korobeynikov6d7d2aa2009-05-23 19:51:43 +000089 /// ParseSubtargetFeatures - Parses features string setting specified
Evan Chenga8e29892007-01-19 07:51:42 +000090 /// subtarget options. Definition of function is auto generated by tblgen.
Anton Korobeynikov41a02432009-05-23 19:50:50 +000091 std::string ParseSubtargetFeatures(const std::string &FS,
92 const std::string &CPU);
Evan Chenga8e29892007-01-19 07:51:42 +000093
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000094 bool hasV4TOps() const { return ARMArchVersion >= V4T; }
95 bool hasV5TOps() const { return ARMArchVersion >= V5T; }
Evan Chenga8e29892007-01-19 07:51:42 +000096 bool hasV5TEOps() const { return ARMArchVersion >= V5TE; }
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000097 bool hasV6Ops() const { return ARMArchVersion >= V6; }
Bob Wilsone481f122009-06-25 16:03:07 +000098 bool hasV6T2Ops() const { return ARMArchVersion >= V6T2; }
Anton Korobeynikov6d7d2aa2009-05-23 19:51:43 +000099 bool hasV7Ops() const { return ARMArchVersion >= V7A; }
Evan Chenga8e29892007-01-19 07:51:42 +0000100
Anton Korobeynikov6d7d2aa2009-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 Goodwin42a83f22009-08-04 17:53:06 +0000104 bool useNEONForSinglePrecisionFP() const {
105 return hasNEON() && UseNEONForSinglePrecisionFP; }
106
Evan Cheng1a3771e2007-01-19 19:22:40 +0000107 bool isTargetDarwin() const { return TargetType == isDarwin; }
108 bool isTargetELF() const { return TargetType == isELF; }
109
Lauro Ramos Venancio3630e782007-02-13 19:52:28 +0000110 bool isAPCS_ABI() const { return TargetABI == ARM_ABI_APCS; }
111 bool isAAPCS_ABI() const { return TargetABI == ARM_ABI_AAPCS; }
112
Anton Korobeynikov70459be2009-06-01 20:00:48 +0000113 bool isThumb() const { return IsThumb; }
Anton Korobeynikovbb629622009-06-15 21:46:20 +0000114 bool isThumb1Only() const { return IsThumb && (ThumbMode == Thumb1); }
Evan Cheng3147fb22009-07-06 22:29:14 +0000115 bool isThumb2() const { return IsThumb && (ThumbMode == Thumb2); }
Evan Chengd770d9e2009-07-02 06:38:40 +0000116 bool hasThumb2() const { return ThumbMode >= Thumb2; }
Evan Chenga8e29892007-01-19 07:51:42 +0000117
Evan Chenga8e29892007-01-19 07:51:42 +0000118 bool isR9Reserved() const { return IsR9Reserved; }
119
Anton Korobeynikov41a02432009-05-23 19:50:50 +0000120 const std::string & getCPUString() const { return CPUString; }
121
Evan Cheng8557c2b2009-06-19 01:51:50 +0000122 /// getInstrItins - Return the instruction itineraies based on subtarget
123 /// selection.
124 const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
125
Evan Chenga8e29892007-01-19 07:51:42 +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