ARMSubtarget.h revision cd828618b8c6ec58df94aec0f5546f009f2fd0d5
1//=====---- ARMSubtarget.h - Define Subtarget for the ARM -----*- C++ -*--====//
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 declares the ARM specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef ARMSUBTARGET_H
15#define ARMSUBTARGET_H
16
17#include "llvm/Target/TargetSubtarget.h"
18#include <string>
19
20namespace llvm {
21class Module;
22
23class ARMSubtarget : public TargetSubtarget {
24protected:
25  enum ARMArchEnum {
26    V4T, V5T, V5TE, V6, V6T2, V7A
27  };
28
29  enum ARMFPEnum {
30    None, VFPv2, VFPv3, NEON
31  };
32
33  enum ThumbTypeEnum {
34    Thumb1,
35    Thumb2
36  };
37
38  /// ARMArchVersion - ARM architecture version: V4T (base), V5T, V5TE,
39  /// V6, V6T2, V7A.
40  ARMArchEnum ARMArchVersion;
41
42  /// ARMFPUType - Floating Point Unit type.
43  ARMFPEnum ARMFPUType;
44
45  /// IsThumb - True if we are in thumb mode, false if in ARM mode.
46  bool IsThumb;
47
48  /// ThumbMode - Indicates supported Thumb version.
49  ThumbTypeEnum ThumbMode;
50
51  /// IsR9Reserved - True if R9 is a not available as general purpose register.
52  bool IsR9Reserved;
53
54  /// stackAlignment - The minimum alignment known to hold of the stack frame on
55  /// entry to the function and which must be maintained by every function.
56  unsigned stackAlignment;
57
58  /// CPUString - String name of used CPU.
59  std::string CPUString;
60
61 public:
62  enum {
63    isELF, isDarwin
64  } TargetType;
65
66  enum {
67    ARM_ABI_APCS,
68    ARM_ABI_AAPCS // ARM EABI
69  } TargetABI;
70
71  /// This constructor initializes the data members to match that
72  /// of the specified module.
73  ///
74  ARMSubtarget(const Module &M, const std::string &FS, bool isThumb);
75
76  /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
77  /// that still makes it profitable to inline the call.
78  unsigned getMaxInlineSizeThreshold() const {
79    // FIXME: For now, we don't lower memcpy's to loads / stores for Thumb.
80    // Change this once Thumb ldmia / stmia support is added.
81    return isThumb() ? 0 : 64;
82  }
83  /// ParseSubtargetFeatures - Parses features string setting specified
84  /// subtarget options.  Definition of function is auto generated by tblgen.
85  std::string ParseSubtargetFeatures(const std::string &FS,
86                                     const std::string &CPU);
87
88  bool hasV4TOps()  const { return ARMArchVersion >= V4T;  }
89  bool hasV5TOps()  const { return ARMArchVersion >= V5T;  }
90  bool hasV5TEOps() const { return ARMArchVersion >= V5TE; }
91  bool hasV6Ops()   const { return ARMArchVersion >= V6;   }
92  bool hasV6T2Ops() const { return ARMArchVersion >= V6T2; }
93  bool hasV7Ops()   const { return ARMArchVersion >= V7A;  }
94
95  bool hasVFP2() const { return ARMFPUType >= VFPv2; }
96  bool hasVFP3() const { return ARMFPUType >= VFPv3; }
97  bool hasNEON() const { return ARMFPUType >= NEON;  }
98
99  bool isTargetDarwin() const { return TargetType == isDarwin; }
100  bool isTargetELF() const { return TargetType == isELF; }
101
102  bool isAPCS_ABI() const { return TargetABI == ARM_ABI_APCS; }
103  bool isAAPCS_ABI() const { return TargetABI == ARM_ABI_AAPCS; }
104
105  bool isThumb() const { return IsThumb; }
106  bool isThumb1Only() const { return IsThumb && (ThumbMode == Thumb1); }
107  bool hasThumb2() const { return IsThumb && (ThumbMode >= Thumb2); }
108
109  bool isR9Reserved() const { return IsR9Reserved; }
110
111  const std::string & getCPUString() const { return CPUString; }
112
113  /// getStackAlignment - Returns the minimum alignment known to hold of the
114  /// stack frame on entry to the function and which must be maintained by every
115  /// function for this subtarget.
116  unsigned getStackAlignment() const { return stackAlignment; }
117};
118} // End llvm namespace
119
120#endif  // ARMSUBTARGET_H
121