Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- PowerPCSubtarget.cpp - PPC Subtarget Information -------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 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. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the PPC specific subclass of TargetSubtarget. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "PPCSubtarget.h" |
| 15 | #include "PPC.h" |
| 16 | #include "llvm/Module.h" |
| 17 | #include "llvm/Target/TargetMachine.h" |
| 18 | #include "PPCGenSubtarget.inc" |
Dan Gohman | c24a3f8 | 2009-01-05 17:59:02 +0000 | [diff] [blame] | 19 | #include <cstdlib> |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 20 | using namespace llvm; |
| 21 | |
| 22 | #if defined(__APPLE__) |
| 23 | #include <mach/mach.h> |
| 24 | #include <mach/mach_host.h> |
| 25 | #include <mach/host_info.h> |
| 26 | #include <mach/machine.h> |
| 27 | |
| 28 | /// GetCurrentPowerPCFeatures - Returns the current CPUs features. |
| 29 | static const char *GetCurrentPowerPCCPU() { |
| 30 | host_basic_info_data_t hostInfo; |
| 31 | mach_msg_type_number_t infoCount; |
| 32 | |
| 33 | infoCount = HOST_BASIC_INFO_COUNT; |
| 34 | host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, |
| 35 | &infoCount); |
| 36 | |
| 37 | if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic"; |
| 38 | |
| 39 | switch(hostInfo.cpu_subtype) { |
| 40 | case CPU_SUBTYPE_POWERPC_601: return "601"; |
| 41 | case CPU_SUBTYPE_POWERPC_602: return "602"; |
| 42 | case CPU_SUBTYPE_POWERPC_603: return "603"; |
| 43 | case CPU_SUBTYPE_POWERPC_603e: return "603e"; |
| 44 | case CPU_SUBTYPE_POWERPC_603ev: return "603ev"; |
| 45 | case CPU_SUBTYPE_POWERPC_604: return "604"; |
| 46 | case CPU_SUBTYPE_POWERPC_604e: return "604e"; |
| 47 | case CPU_SUBTYPE_POWERPC_620: return "620"; |
| 48 | case CPU_SUBTYPE_POWERPC_750: return "750"; |
| 49 | case CPU_SUBTYPE_POWERPC_7400: return "7400"; |
| 50 | case CPU_SUBTYPE_POWERPC_7450: return "7450"; |
| 51 | case CPU_SUBTYPE_POWERPC_970: return "970"; |
| 52 | default: ; |
| 53 | } |
| 54 | |
| 55 | return "generic"; |
| 56 | } |
| 57 | #endif |
| 58 | |
| 59 | |
| 60 | PPCSubtarget::PPCSubtarget(const TargetMachine &tm, const Module &M, |
| 61 | const std::string &FS, bool is64Bit) |
| 62 | : TM(tm) |
| 63 | , StackAlignment(16) |
Dale Johannesen | 161badc | 2008-02-14 23:35:16 +0000 | [diff] [blame] | 64 | , DarwinDirective(PPC::DIR_NONE) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 65 | , IsGigaProcessor(false) |
| 66 | , Has64BitSupport(false) |
| 67 | , Use64BitRegs(false) |
| 68 | , IsPPC64(is64Bit) |
| 69 | , HasAltivec(false) |
| 70 | , HasFSQRT(false) |
| 71 | , HasSTFIWX(false) |
Chris Lattner | 9b7677d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 72 | , HasLazyResolverStubs(false) |
| 73 | , DarwinVers(0) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 74 | |
| 75 | // Determine default and user specified characteristics |
| 76 | std::string CPU = "generic"; |
| 77 | #if defined(__APPLE__) |
| 78 | CPU = GetCurrentPowerPCCPU(); |
| 79 | #endif |
| 80 | |
| 81 | // Parse features string. |
| 82 | ParseSubtargetFeatures(FS, CPU); |
| 83 | |
| 84 | // If we are generating code for ppc64, verify that options make sense. |
| 85 | if (is64Bit) { |
Dale Johannesen | 7038361 | 2008-02-15 18:40:53 +0000 | [diff] [blame] | 86 | Has64BitSupport = true; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 87 | // Silently force 64-bit register use on ppc64. |
| 88 | Use64BitRegs = true; |
| 89 | } |
| 90 | |
| 91 | // If the user requested use of 64-bit regs, but the cpu selected doesn't |
Dale Johannesen | 7038361 | 2008-02-15 18:40:53 +0000 | [diff] [blame] | 92 | // support it, ignore. |
| 93 | if (use64BitRegs() && !has64BitSupport()) |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 94 | Use64BitRegs = false; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 95 | |
| 96 | // Set the boolean corresponding to the current target triple, or the default |
| 97 | // if one cannot be determined, to true. |
Chris Lattner | 9b7677d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 98 | const std::string &TT = M.getTargetTriple(); |
| 99 | if (TT.length() > 7) { |
| 100 | // Determine which version of darwin this is. |
Duncan Sands | dfd9458 | 2008-01-08 10:06:15 +0000 | [diff] [blame] | 101 | size_t DarwinPos = TT.find("-darwin"); |
Chris Lattner | 9b7677d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 102 | if (DarwinPos != std::string::npos) { |
| 103 | if (isdigit(TT[DarwinPos+7])) |
| 104 | DarwinVers = atoi(&TT[DarwinPos+7]); |
| 105 | else |
| 106 | DarwinVers = 8; // Minimum supported darwin is Tiger. |
| 107 | } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 108 | } else if (TT.empty()) { |
Chris Lattner | 9b7677d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 109 | // Try to autosense the subtarget from the host compiler. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 110 | #if defined(__APPLE__) |
Chris Lattner | 9b7677d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 111 | #if __APPLE_CC__ > 5400 |
| 112 | DarwinVers = 9; // GCC 5400+ is Leopard. |
| 113 | #else |
| 114 | DarwinVers = 8; // Minimum supported darwin is Tiger. |
| 115 | #endif |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 116 | #endif |
| 117 | } |
| 118 | |
| 119 | // Set up darwin-specific properties. |
Chris Lattner | 9b7677d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 120 | if (isDarwin()) { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 121 | HasLazyResolverStubs = true; |
| 122 | AsmFlavor = NewMnemonic; |
| 123 | } else { |
| 124 | AsmFlavor = OldMnemonic; |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | /// SetJITMode - This is called to inform the subtarget info that we are |
| 129 | /// producing code for the JIT. |
| 130 | void PPCSubtarget::SetJITMode() { |
| 131 | // JIT mode doesn't want lazy resolver stubs, it knows exactly where |
| 132 | // everything is. This matters for PPC64, which codegens in PIC mode without |
| 133 | // stubs. |
| 134 | HasLazyResolverStubs = false; |
| 135 | } |
| 136 | |
| 137 | |
| 138 | /// hasLazyResolverStub - Return true if accesses to the specified global have |
| 139 | /// to go through a dyld lazy resolution stub. This means that an extra load |
| 140 | /// is required to get the address of the global. |
| 141 | bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV) const { |
| 142 | // We never hae stubs if HasLazyResolverStubs=false or if in static mode. |
| 143 | if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static) |
| 144 | return false; |
Evan Cheng | a65854f | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 145 | // If symbol visibility is hidden, the extra load is not needed if |
| 146 | // the symbol is definitely defined in the current translation unit. |
| 147 | bool isDecl = GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode(); |
| 148 | if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) |
| 149 | return false; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 150 | return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() || |
Evan Cheng | a65854f | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 151 | GV->hasCommonLinkage() || isDecl; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 152 | } |