Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 1 | //===-- ARMSubtarget.cpp - ARM Subtarget Information ------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the ARM specific subclass of TargetSubtarget. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "ARMSubtarget.h" |
| 15 | #include "ARMGenSubtarget.inc" |
Evan Cheng | e4e4ed3 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 16 | #include "llvm/GlobalValue.h" |
Anton Korobeynikov | 0eebf65 | 2009-06-08 22:53:56 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetOptions.h" |
Bob Wilson | 54fc124 | 2009-06-22 21:01:46 +0000 | [diff] [blame] | 18 | #include "llvm/Support/CommandLine.h" |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 19 | using namespace llvm; |
| 20 | |
Bob Wilson | 54fc124 | 2009-06-22 21:01:46 +0000 | [diff] [blame] | 21 | static cl::opt<bool> |
| 22 | ReserveR9("arm-reserve-r9", cl::Hidden, |
| 23 | cl::desc("Reserve R9, making it unavailable as GPR")); |
David Goodwin | 9843a93 | 2009-10-01 22:19:57 +0000 | [diff] [blame] | 24 | static cl::opt<bool> |
| 25 | UseNEONFP("arm-use-neon-fp", |
| 26 | cl::desc("Use NEON for single-precision FP"), |
| 27 | cl::init(false), cl::Hidden); |
Bob Wilson | 54fc124 | 2009-06-22 21:01:46 +0000 | [diff] [blame] | 28 | |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 29 | ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &FS, |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 30 | bool isThumb) |
Evan Cheng | 1a3771e | 2007-01-19 19:22:40 +0000 | [diff] [blame] | 31 | : ARMArchVersion(V4T) |
Anton Korobeynikov | 6d7d2aa | 2009-05-23 19:51:43 +0000 | [diff] [blame] | 32 | , ARMFPUType(None) |
David Goodwin | 9843a93 | 2009-10-01 22:19:57 +0000 | [diff] [blame] | 33 | , UseNEONForSinglePrecisionFP(UseNEONFP) |
Anton Korobeynikov | 70459be | 2009-06-01 20:00:48 +0000 | [diff] [blame] | 34 | , IsThumb(isThumb) |
| 35 | , ThumbMode(Thumb1) |
David Goodwin | 0dad89f | 2009-09-30 00:10:16 +0000 | [diff] [blame] | 36 | , PostRAScheduler(false) |
Bob Wilson | 54fc124 | 2009-06-22 21:01:46 +0000 | [diff] [blame] | 37 | , IsR9Reserved(ReserveR9) |
Lauro Ramos Venancio | 3630e78 | 2007-02-13 19:52:28 +0000 | [diff] [blame] | 38 | , stackAlignment(4) |
Anton Korobeynikov | 41a0243 | 2009-05-23 19:50:50 +0000 | [diff] [blame] | 39 | , CPUString("generic") |
Lauro Ramos Venancio | 3630e78 | 2007-02-13 19:52:28 +0000 | [diff] [blame] | 40 | , TargetType(isELF) // Default to ELF unless otherwise specified. |
| 41 | , TargetABI(ARM_ABI_APCS) { |
Anton Korobeynikov | 0eebf65 | 2009-06-08 22:53:56 +0000 | [diff] [blame] | 42 | // default to soft float ABI |
| 43 | if (FloatABIType == FloatABI::Default) |
| 44 | FloatABIType = FloatABI::Soft; |
| 45 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 46 | // Determine default and user specified characteristics |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 47 | |
| 48 | // Parse features string. |
Anton Korobeynikov | 41a0243 | 2009-05-23 19:50:50 +0000 | [diff] [blame] | 49 | CPUString = ParseSubtargetFeatures(FS, CPUString); |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 50 | |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 51 | // Set the boolean corresponding to the current target triple, or the default |
| 52 | // if one cannot be determined, to true. |
Evan Cheng | 4b17474 | 2009-03-08 04:02:49 +0000 | [diff] [blame] | 53 | unsigned Len = TT.length(); |
Evan Cheng | 8c6b991 | 2009-03-09 20:25:39 +0000 | [diff] [blame] | 54 | unsigned Idx = 0; |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 55 | |
Evan Cheng | 8c6b991 | 2009-03-09 20:25:39 +0000 | [diff] [blame] | 56 | if (Len >= 5 && TT.substr(0, 4) == "armv") |
| 57 | Idx = 4; |
Bob Wilson | 9170ab6 | 2009-06-22 21:28:22 +0000 | [diff] [blame] | 58 | else if (Len >= 6 && TT.substr(0, 5) == "thumb") { |
Anton Korobeynikov | 70459be | 2009-06-01 20:00:48 +0000 | [diff] [blame] | 59 | IsThumb = true; |
Evan Cheng | 8c6b991 | 2009-03-09 20:25:39 +0000 | [diff] [blame] | 60 | if (Len >= 7 && TT[5] == 'v') |
| 61 | Idx = 6; |
| 62 | } |
| 63 | if (Idx) { |
| 64 | unsigned SubVer = TT[Idx]; |
| 65 | if (SubVer > '4' && SubVer <= '9') { |
Bob Wilson | 9170ab6 | 2009-06-22 21:28:22 +0000 | [diff] [blame] | 66 | if (SubVer >= '7') { |
Anton Korobeynikov | d4022c3 | 2009-05-29 23:41:08 +0000 | [diff] [blame] | 67 | ARMArchVersion = V7A; |
Bob Wilson | 9170ab6 | 2009-06-22 21:28:22 +0000 | [diff] [blame] | 68 | } else if (SubVer == '6') { |
Evan Cheng | 8c6b991 | 2009-03-09 20:25:39 +0000 | [diff] [blame] | 69 | ARMArchVersion = V6; |
Bob Wilson | 9170ab6 | 2009-06-22 21:28:22 +0000 | [diff] [blame] | 70 | if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == '2') |
| 71 | ARMArchVersion = V6T2; |
| 72 | } else if (SubVer == '5') { |
Evan Cheng | 8c6b991 | 2009-03-09 20:25:39 +0000 | [diff] [blame] | 73 | ARMArchVersion = V5T; |
| 74 | if (Len >= Idx+3 && TT[Idx+1] == 't' && TT[Idx+2] == 'e') |
| 75 | ARMArchVersion = V5TE; |
Evan Cheng | 4b17474 | 2009-03-08 04:02:49 +0000 | [diff] [blame] | 76 | } |
Bob Wilson | 9170ab6 | 2009-06-22 21:28:22 +0000 | [diff] [blame] | 77 | if (ARMArchVersion >= V6T2) |
| 78 | ThumbMode = Thumb2; |
Evan Cheng | 4b17474 | 2009-03-08 04:02:49 +0000 | [diff] [blame] | 79 | } |
| 80 | } |
| 81 | |
Evan Cheng | b620724 | 2009-08-01 00:16:10 +0000 | [diff] [blame] | 82 | // Thumb2 implies at least V6T2. |
| 83 | if (ARMArchVersion < V6T2 && ThumbMode >= Thumb2) |
| 84 | ARMArchVersion = V6T2; |
| 85 | |
Evan Cheng | 8c6b991 | 2009-03-09 20:25:39 +0000 | [diff] [blame] | 86 | if (Len >= 10) { |
Evan Cheng | 1a3771e | 2007-01-19 19:22:40 +0000 | [diff] [blame] | 87 | if (TT.find("-darwin") != std::string::npos) |
Evan Cheng | 8c6b991 | 2009-03-09 20:25:39 +0000 | [diff] [blame] | 88 | // arm-darwin |
Evan Cheng | 1a3771e | 2007-01-19 19:22:40 +0000 | [diff] [blame] | 89 | TargetType = isDarwin; |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Lauro Ramos Venancio | 3630e78 | 2007-02-13 19:52:28 +0000 | [diff] [blame] | 92 | if (TT.find("eabi") != std::string::npos) |
| 93 | TargetABI = ARM_ABI_AAPCS; |
| 94 | |
| 95 | if (isAAPCS_ABI()) |
| 96 | stackAlignment = 8; |
| 97 | |
Evan Cheng | cd82861 | 2009-06-18 23:14:30 +0000 | [diff] [blame] | 98 | if (isTargetDarwin()) |
Bob Wilson | 54fc124 | 2009-06-22 21:01:46 +0000 | [diff] [blame] | 99 | IsR9Reserved = ReserveR9 | (ARMArchVersion < V6); |
David Goodwin | 471850a | 2009-10-01 21:46:35 +0000 | [diff] [blame] | 100 | |
| 101 | // Set CPU specific features. |
| 102 | if (CPUString == "cortex-a8") { |
| 103 | PostRAScheduler = true; |
Evan Cheng | fee0c10 | 2009-10-16 05:33:58 +0000 | [diff] [blame] | 104 | // On Cortext-a8, it's faster to perform some single-precision FP |
| 105 | // operations with NEON instructions. |
David Goodwin | 9843a93 | 2009-10-01 22:19:57 +0000 | [diff] [blame] | 106 | if (UseNEONFP.getPosition() == 0) |
| 107 | UseNEONForSinglePrecisionFP = true; |
David Goodwin | 471850a | 2009-10-01 21:46:35 +0000 | [diff] [blame] | 108 | } |
Evan Cheng | a8e2989 | 2007-01-19 07:51:42 +0000 | [diff] [blame] | 109 | } |
Evan Cheng | e4e4ed3 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 110 | |
| 111 | /// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol. |
Evan Cheng | 63476a8 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 112 | bool |
| 113 | ARMSubtarget::GVIsIndirectSymbol(GlobalValue *GV, Reloc::Model RelocM) const { |
| 114 | if (RelocM == Reloc::Static) |
Evan Cheng | e4e4ed3 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 115 | return false; |
Evan Cheng | 63476a8 | 2009-09-03 07:04:02 +0000 | [diff] [blame] | 116 | |
| 117 | // GV with ghost linkage (in JIT lazy compilation mode) do not require an |
| 118 | // extra load from stub. |
| 119 | bool isDecl = GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode(); |
| 120 | |
| 121 | if (!isTargetDarwin()) { |
| 122 | // Extra load is needed for all externally visible. |
| 123 | if (GV->hasLocalLinkage() || GV->hasHiddenVisibility()) |
| 124 | return false; |
| 125 | return true; |
| 126 | } else { |
| 127 | if (RelocM == Reloc::PIC_) { |
| 128 | // If this is a strong reference to a definition, it is definitely not |
| 129 | // through a stub. |
| 130 | if (!isDecl && !GV->isWeakForLinker()) |
| 131 | return false; |
| 132 | |
| 133 | // Unless we have a symbol with hidden visibility, we have to go through a |
| 134 | // normal $non_lazy_ptr stub because this symbol might be resolved late. |
| 135 | if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference. |
| 136 | return true; |
| 137 | |
| 138 | // If symbol visibility is hidden, we have a stub for common symbol |
| 139 | // references and external declarations. |
| 140 | if (isDecl || GV->hasCommonLinkage()) |
| 141 | // Hidden $non_lazy_ptr reference. |
| 142 | return true; |
| 143 | |
| 144 | return false; |
| 145 | } else { |
| 146 | // If this is a strong reference to a definition, it is definitely not |
| 147 | // through a stub. |
| 148 | if (!isDecl && !GV->isWeakForLinker()) |
| 149 | return false; |
| 150 | |
| 151 | // Unless we have a symbol with hidden visibility, we have to go through a |
| 152 | // normal $non_lazy_ptr stub because this symbol might be resolved late. |
| 153 | if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference. |
| 154 | return true; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | return false; |
Evan Cheng | e4e4ed3 | 2009-08-28 23:18:09 +0000 | [diff] [blame] | 159 | } |