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