blob: be64700d8c3c6ad0ba4133efa28eff8452030895 [file] [log] [blame]
Jia Liub22310f2012-02-18 12:03:15 +00001//===-- PowerPCSubtarget.cpp - PPC Subtarget Information ------------------===//
Nate Begeman3bcfcd92005-08-04 07:12:09 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nate Begeman3bcfcd92005-08-04 07:12:09 +00007//
8//===----------------------------------------------------------------------===//
9//
Evan Cheng0d639a22011-07-01 21:01:15 +000010// This file implements the PPC specific subclass of TargetSubtargetInfo.
Nate Begeman3bcfcd92005-08-04 07:12:09 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerbfca1ab2005-10-14 23:51:18 +000014#include "PPCSubtarget.h"
15#include "PPC.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "PPCRegisterInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/GlobalValue.h"
Hal Finkel59b0ee82012-06-12 03:03:13 +000018#include "llvm/Support/Host.h"
Evan Cheng2bb40352011-08-24 18:08:43 +000019#include "llvm/Support/TargetRegistry.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/Target/TargetMachine.h"
Dan Gohman906152a2009-01-05 17:59:02 +000021#include <cstdlib>
Evan Cheng54b68e32011-07-01 20:45:01 +000022
Evan Cheng54b68e32011-07-01 20:45:01 +000023#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000024#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000025#include "PPCGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000026
Chris Lattner983a4152005-08-05 22:05:03 +000027using namespace llvm;
Chris Lattner983a4152005-08-05 22:05:03 +000028
Evan Chengfe6e4052011-06-30 01:53:36 +000029PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
30 const std::string &FS, bool is64Bit)
Evan Cheng1a72add62011-07-07 07:07:08 +000031 : PPCGenSubtargetInfo(TT, CPU, FS)
Evan Cheng54b68e32011-07-01 20:45:01 +000032 , StackAlignment(16)
Dale Johannesen6ca3ccf2008-02-14 23:35:16 +000033 , DarwinDirective(PPC::DIR_NONE)
Hal Finkelbfd3d082012-06-11 19:57:01 +000034 , HasMFOCRF(false)
Chris Lattnera35f3062006-06-16 17:34:12 +000035 , Has64BitSupport(false)
36 , Use64BitRegs(false)
Chris Lattner16682ff2006-06-16 17:50:12 +000037 , IsPPC64(is64Bit)
Jim Laskeya2b52352005-10-26 17:30:34 +000038 , HasAltivec(false)
Hal Finkelb3fc5092013-01-30 22:43:44 +000039 , HasQPX(false)
Jim Laskeya2b52352005-10-26 17:30:34 +000040 , HasFSQRT(false)
Chris Lattner27f53452006-03-01 05:50:56 +000041 , HasSTFIWX(false)
Hal Finkel460e94d2012-06-22 23:10:08 +000042 , HasISEL(false)
Hal Finkela4d07482013-03-28 13:29:47 +000043 , HasPOPCNTD(false)
Hal Finkel31d29562013-03-28 19:25:55 +000044 , HasLDBRX(false)
Hal Finkel6fa56972011-10-17 04:03:49 +000045 , IsBookE(false)
Chris Lattnerdcbc0f32008-01-02 19:35:16 +000046 , HasLazyResolverStubs(false)
Torok Edwin31e90d22010-08-04 20:47:44 +000047 , IsJITCodeModel(false)
Daniel Dunbara37aab22011-04-19 20:54:28 +000048 , TargetTriple(TT) {
Chris Lattner983a4152005-08-05 22:05:03 +000049
Jim Laskey19058c32005-09-01 21:38:21 +000050 // Determine default and user specified characteristics
Evan Chengfe6e4052011-06-30 01:53:36 +000051 std::string CPUName = CPU;
52 if (CPUName.empty())
53 CPUName = "generic";
Hal Finkel59b0ee82012-06-12 03:03:13 +000054#if (defined(__APPLE__) || defined(__linux__)) && \
55 (defined(__ppc__) || defined(__powerpc__))
Evan Chengfe6e4052011-06-30 01:53:36 +000056 if (CPUName == "generic")
Hal Finkel59b0ee82012-06-12 03:03:13 +000057 CPUName = sys::getHostCPUName();
Jim Laskey19058c32005-09-01 21:38:21 +000058#endif
Jim Laskeya2b52352005-10-26 17:30:34 +000059
Evan Cheng54b68e32011-07-01 20:45:01 +000060 // Initialize scheduling itinerary for the specified CPU.
61 InstrItins = getInstrItineraryForCPU(CPUName);
62
Adhemerval Zanellaf2aceda2012-10-25 12:27:42 +000063 // Make sure 64-bit features are available when CPUname is generic
64 std::string FullFS = FS;
65
Chris Lattner16682ff2006-06-16 17:50:12 +000066 // If we are generating code for ppc64, verify that options make sense.
67 if (is64Bit) {
Dale Johannesen2e019122008-02-15 18:40:53 +000068 Has64BitSupport = true;
Chris Lattner61d70312006-06-16 20:05:06 +000069 // Silently force 64-bit register use on ppc64.
70 Use64BitRegs = true;
Adhemerval Zanellaf2aceda2012-10-25 12:27:42 +000071 if (!FullFS.empty())
72 FullFS = "+64bit," + FullFS;
73 else
74 FullFS = "+64bit";
Chris Lattner16682ff2006-06-16 17:50:12 +000075 }
Will Schmidt2247f8a2012-10-04 16:20:24 +000076
Adhemerval Zanellaf2aceda2012-10-25 12:27:42 +000077 // Parse features string.
78 ParseSubtargetFeatures(CPUName, FullFS);
79
Chris Lattner16682ff2006-06-16 17:50:12 +000080 // If the user requested use of 64-bit regs, but the cpu selected doesn't
Dale Johannesen2e019122008-02-15 18:40:53 +000081 // support it, ignore.
82 if (use64BitRegs() && !has64BitSupport())
Chris Lattner16682ff2006-06-16 17:50:12 +000083 Use64BitRegs = false;
Chris Lattnerf4646a72006-12-11 23:22:45 +000084
85 // Set up darwin-specific properties.
Chris Lattnere6555212009-08-11 22:49:34 +000086 if (isDarwin())
Chris Lattnerf4646a72006-12-11 23:22:45 +000087 HasLazyResolverStubs = true;
Hal Finkele1df9092013-01-30 23:43:27 +000088
89 // QPX requires a 32-byte aligned stack. Note that we need to do this if
90 // we're compiling for a BG/Q system regardless of whether or not QPX
91 // is enabled because external functions will assume this alignment.
92 if (hasQPX() || isBGQ())
93 StackAlignment = 32;
Chris Lattnerf4646a72006-12-11 23:22:45 +000094}
95
96/// SetJITMode - This is called to inform the subtarget info that we are
97/// producing code for the JIT.
98void PPCSubtarget::SetJITMode() {
99 // JIT mode doesn't want lazy resolver stubs, it knows exactly where
100 // everything is. This matters for PPC64, which codegens in PIC mode without
101 // stubs.
102 HasLazyResolverStubs = false;
Torok Edwin31e90d22010-08-04 20:47:44 +0000103
104 // Calls to external functions need to use indirect calls
105 IsJITCodeModel = true;
Chris Lattnerf4646a72006-12-11 23:22:45 +0000106}
107
108
109/// hasLazyResolverStub - Return true if accesses to the specified global have
110/// to go through a dyld lazy resolution stub. This means that an extra load
111/// is required to get the address of the global.
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000112bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
113 const TargetMachine &TM) const {
Chris Lattneredb9d842010-11-15 02:46:57 +0000114 // We never have stubs if HasLazyResolverStubs=false or if in static mode.
Chris Lattnerf4646a72006-12-11 23:22:45 +0000115 if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
116 return false;
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000117 // If symbol visibility is hidden, the extra load is not needed if
118 // the symbol is definitely defined in the current translation unit.
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000119 bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000120 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
121 return false;
Chris Lattnerf4646a72006-12-11 23:22:45 +0000122 return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000123 GV->hasCommonLinkage() || isDecl;
Nate Begeman3bcfcd92005-08-04 07:12:09 +0000124}
Hal Finkel58ca3602011-12-02 04:58:02 +0000125
126bool PPCSubtarget::enablePostRAScheduler(
127 CodeGenOpt::Level OptLevel,
128 TargetSubtargetInfo::AntiDepBreakMode& Mode,
129 RegClassVector& CriticalPathRCs) const {
Hal Finkela8100282012-06-10 11:15:36 +0000130 // FIXME: It would be best to use TargetSubtargetInfo::ANTIDEP_ALL here,
131 // but we can't because we can't reassign the cr registers. There is a
132 // dependence between the cr register and the RLWINM instruction used
133 // to extract its value which the anti-dependency breaker can't currently
134 // see. Maybe we should make a late-expanded pseudo to encode this dependency.
135 // (the relevant code is in PPCDAGToDAGISel::SelectSETCC)
136
137 Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
Hal Finkel58ca3602011-12-02 04:58:02 +0000138
Hal Finkel58ca3602011-12-02 04:58:02 +0000139 CriticalPathRCs.clear();
140
141 if (isPPC64())
142 CriticalPathRCs.push_back(&PPC::G8RCRegClass);
143 else
144 CriticalPathRCs.push_back(&PPC::GPRCRegClass);
Hal Finkela8100282012-06-10 11:15:36 +0000145
146 CriticalPathRCs.push_back(&PPC::F8RCRegClass);
147 CriticalPathRCs.push_back(&PPC::VRRCRegClass);
Hal Finkel58ca3602011-12-02 04:58:02 +0000148
149 return OptLevel >= CodeGenOpt::Default;
150}
151