Chris Lattner | 9690979 | 2006-01-28 05:40:47 +0000 | [diff] [blame] | 1 | //===- PowerPCSubtarget.cpp - PPC Subtarget Information -------------------===// |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 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. |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Evan Cheng | 5b1b4489 | 2011-07-01 21:01:15 +0000 | [diff] [blame] | 10 | // This file implements the PPC specific subclass of TargetSubtargetInfo. |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Chris Lattner | 2668959 | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 14 | #include "PPCSubtarget.h" |
| 15 | #include "PPC.h" |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 16 | #include "llvm/GlobalValue.h" |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 17 | #include "llvm/Target/TargetMachine.h" |
Evan Cheng | ffc0e73 | 2011-07-09 05:47:46 +0000 | [diff] [blame^] | 18 | #include "llvm/Target/TargetRegistry.h" |
Dan Gohman | d68a076 | 2009-01-05 17:59:02 +0000 | [diff] [blame] | 19 | #include <cstdlib> |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 20 | |
Evan Cheng | ebdeeab | 2011-07-08 01:53:10 +0000 | [diff] [blame] | 21 | #define GET_SUBTARGETINFO_ENUM |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 22 | #define GET_SUBTARGETINFO_MC_DESC |
| 23 | #define GET_SUBTARGETINFO_TARGET_DESC |
Evan Cheng | ebdeeab | 2011-07-08 01:53:10 +0000 | [diff] [blame] | 24 | #define GET_SUBTARGETINFO_CTOR |
Evan Cheng | 385e930 | 2011-07-01 22:36:09 +0000 | [diff] [blame] | 25 | #include "PPCGenSubtargetInfo.inc" |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 26 | |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 27 | using namespace llvm; |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 28 | |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 29 | #if defined(__APPLE__) |
| 30 | #include <mach/mach.h> |
| 31 | #include <mach/mach_host.h> |
| 32 | #include <mach/host_info.h> |
| 33 | #include <mach/machine.h> |
| 34 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 35 | /// GetCurrentPowerPCFeatures - Returns the current CPUs features. |
| 36 | static const char *GetCurrentPowerPCCPU() { |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 37 | host_basic_info_data_t hostInfo; |
| 38 | mach_msg_type_number_t infoCount; |
| 39 | |
| 40 | infoCount = HOST_BASIC_INFO_COUNT; |
| 41 | host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, |
| 42 | &infoCount); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 43 | |
| 44 | if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic"; |
| 45 | |
| 46 | switch(hostInfo.cpu_subtype) { |
| 47 | case CPU_SUBTYPE_POWERPC_601: return "601"; |
| 48 | case CPU_SUBTYPE_POWERPC_602: return "602"; |
| 49 | case CPU_SUBTYPE_POWERPC_603: return "603"; |
| 50 | case CPU_SUBTYPE_POWERPC_603e: return "603e"; |
| 51 | case CPU_SUBTYPE_POWERPC_603ev: return "603ev"; |
| 52 | case CPU_SUBTYPE_POWERPC_604: return "604"; |
| 53 | case CPU_SUBTYPE_POWERPC_604e: return "604e"; |
| 54 | case CPU_SUBTYPE_POWERPC_620: return "620"; |
| 55 | case CPU_SUBTYPE_POWERPC_750: return "750"; |
| 56 | case CPU_SUBTYPE_POWERPC_7400: return "7400"; |
| 57 | case CPU_SUBTYPE_POWERPC_7450: return "7450"; |
| 58 | case CPU_SUBTYPE_POWERPC_970: return "970"; |
| 59 | default: ; |
| 60 | } |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 61 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 62 | return "generic"; |
| 63 | } |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 64 | #endif |
| 65 | |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 66 | |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 67 | PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU, |
| 68 | const std::string &FS, bool is64Bit) |
Evan Cheng | 0ddff1b | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 69 | : PPCGenSubtargetInfo(TT, CPU, FS) |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 70 | , StackAlignment(16) |
Dale Johannesen | db01c8b | 2008-02-14 23:35:16 +0000 | [diff] [blame] | 71 | , DarwinDirective(PPC::DIR_NONE) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 72 | , IsGigaProcessor(false) |
Chris Lattner | a7a5854 | 2006-06-16 17:34:12 +0000 | [diff] [blame] | 73 | , Has64BitSupport(false) |
| 74 | , Use64BitRegs(false) |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 75 | , IsPPC64(is64Bit) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 76 | , HasAltivec(false) |
| 77 | , HasFSQRT(false) |
Chris Lattner | 5126984 | 2006-03-01 05:50:56 +0000 | [diff] [blame] | 78 | , HasSTFIWX(false) |
Chris Lattner | 564da5d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 79 | , HasLazyResolverStubs(false) |
Torok Edwin | 0e3a1a8 | 2010-08-04 20:47:44 +0000 | [diff] [blame] | 80 | , IsJITCodeModel(false) |
Daniel Dunbar | 869eca1 | 2011-04-19 20:54:28 +0000 | [diff] [blame] | 81 | , TargetTriple(TT) { |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 82 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 83 | // Determine default and user specified characteristics |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 84 | std::string CPUName = CPU; |
| 85 | if (CPUName.empty()) |
| 86 | CPUName = "generic"; |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 87 | #if defined(__APPLE__) |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 88 | if (CPUName == "generic") |
| 89 | CPUName = GetCurrentPowerPCCPU(); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 90 | #endif |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 91 | |
| 92 | // Parse features string. |
Evan Cheng | 0ddff1b | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 93 | ParseSubtargetFeatures(CPUName, FS); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 94 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 95 | // Initialize scheduling itinerary for the specified CPU. |
| 96 | InstrItins = getInstrItineraryForCPU(CPUName); |
| 97 | |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 98 | // If we are generating code for ppc64, verify that options make sense. |
| 99 | if (is64Bit) { |
Dale Johannesen | 3b40744 | 2008-02-15 18:40:53 +0000 | [diff] [blame] | 100 | Has64BitSupport = true; |
Chris Lattner | 8fa05da | 2006-06-16 20:05:06 +0000 | [diff] [blame] | 101 | // Silently force 64-bit register use on ppc64. |
| 102 | Use64BitRegs = true; |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | // If the user requested use of 64-bit regs, but the cpu selected doesn't |
Dale Johannesen | 3b40744 | 2008-02-15 18:40:53 +0000 | [diff] [blame] | 106 | // support it, ignore. |
| 107 | if (use64BitRegs() && !has64BitSupport()) |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 108 | Use64BitRegs = false; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 109 | |
| 110 | // Set up darwin-specific properties. |
Chris Lattner | 74da671 | 2009-08-11 22:49:34 +0000 | [diff] [blame] | 111 | if (isDarwin()) |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 112 | HasLazyResolverStubs = true; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /// SetJITMode - This is called to inform the subtarget info that we are |
| 116 | /// producing code for the JIT. |
| 117 | void PPCSubtarget::SetJITMode() { |
| 118 | // JIT mode doesn't want lazy resolver stubs, it knows exactly where |
| 119 | // everything is. This matters for PPC64, which codegens in PIC mode without |
| 120 | // stubs. |
| 121 | HasLazyResolverStubs = false; |
Torok Edwin | 0e3a1a8 | 2010-08-04 20:47:44 +0000 | [diff] [blame] | 122 | |
| 123 | // Calls to external functions need to use indirect calls |
| 124 | IsJITCodeModel = true; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | |
| 128 | /// hasLazyResolverStub - Return true if accesses to the specified global have |
| 129 | /// to go through a dyld lazy resolution stub. This means that an extra load |
| 130 | /// is required to get the address of the global. |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 131 | bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV, |
| 132 | const TargetMachine &TM) const { |
Chris Lattner | 1e61e69 | 2010-11-15 02:46:57 +0000 | [diff] [blame] | 133 | // We never have stubs if HasLazyResolverStubs=false or if in static mode. |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 134 | if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static) |
| 135 | return false; |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 136 | // If symbol visibility is hidden, the extra load is not needed if |
| 137 | // the symbol is definitely defined in the current translation unit. |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 138 | bool isDecl = GV->isDeclaration() && !GV->isMaterializable(); |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 139 | if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) |
| 140 | return false; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 141 | return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() || |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 142 | GV->hasCommonLinkage() || isDecl; |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 143 | } |
Evan Cheng | ffc0e73 | 2011-07-09 05:47:46 +0000 | [diff] [blame^] | 144 | |
| 145 | MCSubtargetInfo *createPPCMCSubtargetInfo(StringRef TT, StringRef CPU, |
| 146 | StringRef FS) { |
| 147 | MCSubtargetInfo *X = new MCSubtargetInfo(); |
| 148 | InitPPCMCSubtargetInfo(X, CPU, FS); |
| 149 | return X; |
| 150 | } |
| 151 | |
| 152 | extern "C" void LLVMInitializePowerPCMCSubtargetInfo() { |
| 153 | TargetRegistry::RegisterMCSubtargetInfo(ThePPC32Target, |
| 154 | createPPCMCSubtargetInfo); |
| 155 | TargetRegistry::RegisterMCSubtargetInfo(ThePPC64Target, |
| 156 | createPPCMCSubtargetInfo); |
| 157 | } |