Jia Liu | 31d157a | 2012-02-18 12:03:15 +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" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "PPCRegisterInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 17 | #include "llvm/IR/GlobalValue.h" |
Hal Finkel | 4db738a | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 18 | #include "llvm/Support/Host.h" |
Evan Cheng | 3e74d6f | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 19 | #include "llvm/Support/TargetRegistry.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "llvm/Target/TargetMachine.h" |
Dan Gohman | d68a076 | 2009-01-05 17:59:02 +0000 | [diff] [blame] | 21 | #include <cstdlib> |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 22 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 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 | |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 29 | PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU, |
| 30 | const std::string &FS, bool is64Bit) |
Evan Cheng | 0ddff1b | 2011-07-07 07:07:08 +0000 | [diff] [blame] | 31 | : PPCGenSubtargetInfo(TT, CPU, FS) |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 32 | , StackAlignment(16) |
Dale Johannesen | db01c8b | 2008-02-14 23:35:16 +0000 | [diff] [blame] | 33 | , DarwinDirective(PPC::DIR_NONE) |
Hal Finkel | bd5cafd | 2012-06-11 19:57:01 +0000 | [diff] [blame] | 34 | , HasMFOCRF(false) |
Chris Lattner | a7a5854 | 2006-06-16 17:34:12 +0000 | [diff] [blame] | 35 | , Has64BitSupport(false) |
| 36 | , Use64BitRegs(false) |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 37 | , IsPPC64(is64Bit) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 38 | , HasAltivec(false) |
Hal Finkel | f9cd773 | 2013-01-30 22:43:44 +0000 | [diff] [blame] | 39 | , HasQPX(false) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 40 | , HasFSQRT(false) |
Chris Lattner | 5126984 | 2006-03-01 05:50:56 +0000 | [diff] [blame] | 41 | , HasSTFIWX(false) |
Hal Finkel | 8049ab1 | 2013-03-31 10:12:51 +0000 | [diff] [blame] | 42 | , HasLFIWAX(false) |
Hal Finkel | f5d5c43 | 2013-03-29 08:57:48 +0000 | [diff] [blame] | 43 | , HasFPRND(false) |
Hal Finkel | 4647919 | 2013-04-01 17:52:07 +0000 | [diff] [blame] | 44 | , HasFPCVT(false) |
Hal Finkel | 009f7af | 2012-06-22 23:10:08 +0000 | [diff] [blame] | 45 | , HasISEL(false) |
Hal Finkel | c53ab4d | 2013-03-28 13:29:47 +0000 | [diff] [blame] | 46 | , HasPOPCNTD(false) |
Hal Finkel | efdd467 | 2013-03-28 19:25:55 +0000 | [diff] [blame] | 47 | , HasLDBRX(false) |
Hal Finkel | c6d08f1 | 2011-10-17 04:03:49 +0000 | [diff] [blame] | 48 | , IsBookE(false) |
Chris Lattner | 564da5d | 2008-01-02 19:35:16 +0000 | [diff] [blame] | 49 | , HasLazyResolverStubs(false) |
Torok Edwin | 0e3a1a8 | 2010-08-04 20:47:44 +0000 | [diff] [blame] | 50 | , IsJITCodeModel(false) |
Daniel Dunbar | 869eca1 | 2011-04-19 20:54:28 +0000 | [diff] [blame] | 51 | , TargetTriple(TT) { |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 52 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 53 | // Determine default and user specified characteristics |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 54 | std::string CPUName = CPU; |
| 55 | if (CPUName.empty()) |
| 56 | CPUName = "generic"; |
Hal Finkel | 4db738a | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 57 | #if (defined(__APPLE__) || defined(__linux__)) && \ |
| 58 | (defined(__ppc__) || defined(__powerpc__)) |
Evan Cheng | 276365d | 2011-06-30 01:53:36 +0000 | [diff] [blame] | 59 | if (CPUName == "generic") |
Hal Finkel | 4db738a | 2012-06-12 03:03:13 +0000 | [diff] [blame] | 60 | CPUName = sys::getHostCPUName(); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 61 | #endif |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 62 | |
Evan Cheng | 9421470 | 2011-07-01 20:45:01 +0000 | [diff] [blame] | 63 | // Initialize scheduling itinerary for the specified CPU. |
| 64 | InstrItins = getInstrItineraryForCPU(CPUName); |
| 65 | |
Adhemerval Zanella | aa71428 | 2012-10-25 12:27:42 +0000 | [diff] [blame] | 66 | // Make sure 64-bit features are available when CPUname is generic |
| 67 | std::string FullFS = FS; |
| 68 | |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 69 | // If we are generating code for ppc64, verify that options make sense. |
| 70 | if (is64Bit) { |
Dale Johannesen | 3b40744 | 2008-02-15 18:40:53 +0000 | [diff] [blame] | 71 | Has64BitSupport = true; |
Chris Lattner | 8fa05da | 2006-06-16 20:05:06 +0000 | [diff] [blame] | 72 | // Silently force 64-bit register use on ppc64. |
| 73 | Use64BitRegs = true; |
Adhemerval Zanella | aa71428 | 2012-10-25 12:27:42 +0000 | [diff] [blame] | 74 | if (!FullFS.empty()) |
| 75 | FullFS = "+64bit," + FullFS; |
| 76 | else |
| 77 | FullFS = "+64bit"; |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 78 | } |
Will Schmidt | e370919 | 2012-10-04 16:20:24 +0000 | [diff] [blame] | 79 | |
Adhemerval Zanella | aa71428 | 2012-10-25 12:27:42 +0000 | [diff] [blame] | 80 | // Parse features string. |
| 81 | ParseSubtargetFeatures(CPUName, FullFS); |
| 82 | |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 83 | // 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] | 84 | // support it, ignore. |
| 85 | if (use64BitRegs() && !has64BitSupport()) |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame] | 86 | Use64BitRegs = false; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 87 | |
| 88 | // Set up darwin-specific properties. |
Chris Lattner | 74da671 | 2009-08-11 22:49:34 +0000 | [diff] [blame] | 89 | if (isDarwin()) |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 90 | HasLazyResolverStubs = true; |
Hal Finkel | 9a79b32 | 2013-01-30 23:43:27 +0000 | [diff] [blame] | 91 | |
| 92 | // QPX requires a 32-byte aligned stack. Note that we need to do this if |
| 93 | // we're compiling for a BG/Q system regardless of whether or not QPX |
| 94 | // is enabled because external functions will assume this alignment. |
| 95 | if (hasQPX() || isBGQ()) |
| 96 | StackAlignment = 32; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | /// SetJITMode - This is called to inform the subtarget info that we are |
| 100 | /// producing code for the JIT. |
| 101 | void PPCSubtarget::SetJITMode() { |
| 102 | // JIT mode doesn't want lazy resolver stubs, it knows exactly where |
| 103 | // everything is. This matters for PPC64, which codegens in PIC mode without |
| 104 | // stubs. |
| 105 | HasLazyResolverStubs = false; |
Torok Edwin | 0e3a1a8 | 2010-08-04 20:47:44 +0000 | [diff] [blame] | 106 | |
| 107 | // Calls to external functions need to use indirect calls |
| 108 | IsJITCodeModel = true; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | |
| 112 | /// hasLazyResolverStub - Return true if accesses to the specified global have |
| 113 | /// to go through a dyld lazy resolution stub. This means that an extra load |
| 114 | /// is required to get the address of the global. |
Daniel Dunbar | 3be0340 | 2009-08-02 22:11:08 +0000 | [diff] [blame] | 115 | bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV, |
| 116 | const TargetMachine &TM) const { |
Chris Lattner | 1e61e69 | 2010-11-15 02:46:57 +0000 | [diff] [blame] | 117 | // We never have stubs if HasLazyResolverStubs=false or if in static mode. |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 118 | if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static) |
| 119 | return false; |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 120 | // If symbol visibility is hidden, the extra load is not needed if |
| 121 | // the symbol is definitely defined in the current translation unit. |
Jeffrey Yasskin | f0356fe | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 122 | bool isDecl = GV->isDeclaration() && !GV->isMaterializable(); |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 123 | if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage()) |
| 124 | return false; |
Chris Lattner | 57fc62c | 2006-12-11 23:22:45 +0000 | [diff] [blame] | 125 | return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() || |
Evan Cheng | ae94e59 | 2008-12-05 01:06:39 +0000 | [diff] [blame] | 126 | GV->hasCommonLinkage() || isDecl; |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 127 | } |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 128 | |
| 129 | bool PPCSubtarget::enablePostRAScheduler( |
| 130 | CodeGenOpt::Level OptLevel, |
| 131 | TargetSubtargetInfo::AntiDepBreakMode& Mode, |
| 132 | RegClassVector& CriticalPathRCs) const { |
Hal Finkel | 01a90f4 | 2012-06-10 11:15:36 +0000 | [diff] [blame] | 133 | // FIXME: It would be best to use TargetSubtargetInfo::ANTIDEP_ALL here, |
| 134 | // but we can't because we can't reassign the cr registers. There is a |
| 135 | // dependence between the cr register and the RLWINM instruction used |
| 136 | // to extract its value which the anti-dependency breaker can't currently |
| 137 | // see. Maybe we should make a late-expanded pseudo to encode this dependency. |
| 138 | // (the relevant code is in PPCDAGToDAGISel::SelectSETCC) |
| 139 | |
| 140 | Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL; |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 141 | |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 142 | CriticalPathRCs.clear(); |
| 143 | |
| 144 | if (isPPC64()) |
| 145 | CriticalPathRCs.push_back(&PPC::G8RCRegClass); |
| 146 | else |
| 147 | CriticalPathRCs.push_back(&PPC::GPRCRegClass); |
Hal Finkel | 01a90f4 | 2012-06-10 11:15:36 +0000 | [diff] [blame] | 148 | |
| 149 | CriticalPathRCs.push_back(&PPC::F8RCRegClass); |
| 150 | CriticalPathRCs.push_back(&PPC::VRRCRegClass); |
Hal Finkel | 64c34e2 | 2011-12-02 04:58:02 +0000 | [diff] [blame] | 151 | |
| 152 | return OptLevel >= CodeGenOpt::Default; |
| 153 | } |
| 154 | |