blob: bb193ac3d9efaba2229e0598bc0c801b321169ab [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- PowerPCSubtarget.cpp - PPC Subtarget Information ------------------===//
Nate Begeman8c00f8c2005-08-04 07:12:09 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Begeman8c00f8c2005-08-04 07:12:09 +00007//
8//===----------------------------------------------------------------------===//
9//
Evan Cheng5b1b44892011-07-01 21:01:15 +000010// This file implements the PPC specific subclass of TargetSubtargetInfo.
Nate Begeman8c00f8c2005-08-04 07:12:09 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattner26689592005-10-14 23:51:18 +000014#include "PPCSubtarget.h"
Hal Finkel64c34e22011-12-02 04:58:02 +000015#include "PPCRegisterInfo.h"
Chris Lattner26689592005-10-14 23:51:18 +000016#include "PPC.h"
Daniel Dunbar3be03402009-08-02 22:11:08 +000017#include "llvm/GlobalValue.h"
Chris Lattner57fc62c2006-12-11 23:22:45 +000018#include "llvm/Target/TargetMachine.h"
Hal Finkel4db738a2012-06-12 03:03:13 +000019#include "llvm/Support/Host.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000020#include "llvm/Support/TargetRegistry.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000021#include <cstdlib>
Evan Cheng94214702011-07-01 20:45:01 +000022
Evan Cheng94214702011-07-01 20:45:01 +000023#define GET_SUBTARGETINFO_TARGET_DESC
Evan Chengebdeeab2011-07-08 01:53:10 +000024#define GET_SUBTARGETINFO_CTOR
Evan Cheng385e9302011-07-01 22:36:09 +000025#include "PPCGenSubtargetInfo.inc"
Evan Cheng94214702011-07-01 20:45:01 +000026
Chris Lattner3c304a32005-08-05 22:05:03 +000027using namespace llvm;
Chris Lattner3c304a32005-08-05 22:05:03 +000028
Evan Cheng276365d2011-06-30 01:53:36 +000029PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
30 const std::string &FS, bool is64Bit)
Evan Cheng0ddff1b2011-07-07 07:07:08 +000031 : PPCGenSubtargetInfo(TT, CPU, FS)
Evan Cheng94214702011-07-01 20:45:01 +000032 , StackAlignment(16)
Dale Johannesendb01c8b2008-02-14 23:35:16 +000033 , DarwinDirective(PPC::DIR_NONE)
Hal Finkelbd5cafd2012-06-11 19:57:01 +000034 , HasMFOCRF(false)
Chris Lattnera7a58542006-06-16 17:34:12 +000035 , Has64BitSupport(false)
36 , Use64BitRegs(false)
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000037 , IsPPC64(is64Bit)
Jim Laskey581a8f72005-10-26 17:30:34 +000038 , HasAltivec(false)
39 , HasFSQRT(false)
Chris Lattner51269842006-03-01 05:50:56 +000040 , HasSTFIWX(false)
Hal Finkel009f7af2012-06-22 23:10:08 +000041 , HasISEL(false)
Hal Finkelc6d08f12011-10-17 04:03:49 +000042 , IsBookE(false)
Chris Lattner564da5d2008-01-02 19:35:16 +000043 , HasLazyResolverStubs(false)
Torok Edwin0e3a1a82010-08-04 20:47:44 +000044 , IsJITCodeModel(false)
Daniel Dunbar869eca12011-04-19 20:54:28 +000045 , TargetTriple(TT) {
Chris Lattner3c304a32005-08-05 22:05:03 +000046
Jim Laskeyb1e11802005-09-01 21:38:21 +000047 // Determine default and user specified characteristics
Evan Cheng276365d2011-06-30 01:53:36 +000048 std::string CPUName = CPU;
49 if (CPUName.empty())
50 CPUName = "generic";
Hal Finkel4db738a2012-06-12 03:03:13 +000051#if (defined(__APPLE__) || defined(__linux__)) && \
52 (defined(__ppc__) || defined(__powerpc__))
Evan Cheng276365d2011-06-30 01:53:36 +000053 if (CPUName == "generic")
Hal Finkel4db738a2012-06-12 03:03:13 +000054 CPUName = sys::getHostCPUName();
Jim Laskeyb1e11802005-09-01 21:38:21 +000055#endif
Jim Laskey581a8f72005-10-26 17:30:34 +000056
57 // Parse features string.
Evan Cheng0ddff1b2011-07-07 07:07:08 +000058 ParseSubtargetFeatures(CPUName, FS);
Jim Laskeyb1e11802005-09-01 21:38:21 +000059
Evan Cheng94214702011-07-01 20:45:01 +000060 // Initialize scheduling itinerary for the specified CPU.
61 InstrItins = getInstrItineraryForCPU(CPUName);
62
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000063 // If we are generating code for ppc64, verify that options make sense.
64 if (is64Bit) {
Dale Johannesen3b407442008-02-15 18:40:53 +000065 Has64BitSupport = true;
Chris Lattner8fa05da2006-06-16 20:05:06 +000066 // Silently force 64-bit register use on ppc64.
67 Use64BitRegs = true;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000068 }
69
70 // If the user requested use of 64-bit regs, but the cpu selected doesn't
Dale Johannesen3b407442008-02-15 18:40:53 +000071 // support it, ignore.
72 if (use64BitRegs() && !has64BitSupport())
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000073 Use64BitRegs = false;
Chris Lattner57fc62c2006-12-11 23:22:45 +000074
75 // Set up darwin-specific properties.
Chris Lattner74da6712009-08-11 22:49:34 +000076 if (isDarwin())
Chris Lattner57fc62c2006-12-11 23:22:45 +000077 HasLazyResolverStubs = true;
Chris Lattner57fc62c2006-12-11 23:22:45 +000078}
79
80/// SetJITMode - This is called to inform the subtarget info that we are
81/// producing code for the JIT.
82void PPCSubtarget::SetJITMode() {
83 // JIT mode doesn't want lazy resolver stubs, it knows exactly where
84 // everything is. This matters for PPC64, which codegens in PIC mode without
85 // stubs.
86 HasLazyResolverStubs = false;
Torok Edwin0e3a1a82010-08-04 20:47:44 +000087
88 // Calls to external functions need to use indirect calls
89 IsJITCodeModel = true;
Chris Lattner57fc62c2006-12-11 23:22:45 +000090}
91
92
93/// hasLazyResolverStub - Return true if accesses to the specified global have
94/// to go through a dyld lazy resolution stub. This means that an extra load
95/// is required to get the address of the global.
Daniel Dunbar3be03402009-08-02 22:11:08 +000096bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
97 const TargetMachine &TM) const {
Chris Lattner1e61e692010-11-15 02:46:57 +000098 // We never have stubs if HasLazyResolverStubs=false or if in static mode.
Chris Lattner57fc62c2006-12-11 23:22:45 +000099 if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
100 return false;
Evan Chengae94e592008-12-05 01:06:39 +0000101 // If symbol visibility is hidden, the extra load is not needed if
102 // the symbol is definitely defined in the current translation unit.
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000103 bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
Evan Chengae94e592008-12-05 01:06:39 +0000104 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
105 return false;
Chris Lattner57fc62c2006-12-11 23:22:45 +0000106 return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Evan Chengae94e592008-12-05 01:06:39 +0000107 GV->hasCommonLinkage() || isDecl;
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000108}
Hal Finkel64c34e22011-12-02 04:58:02 +0000109
110bool PPCSubtarget::enablePostRAScheduler(
111 CodeGenOpt::Level OptLevel,
112 TargetSubtargetInfo::AntiDepBreakMode& Mode,
113 RegClassVector& CriticalPathRCs) const {
Hal Finkel01a90f42012-06-10 11:15:36 +0000114 // FIXME: It would be best to use TargetSubtargetInfo::ANTIDEP_ALL here,
115 // but we can't because we can't reassign the cr registers. There is a
116 // dependence between the cr register and the RLWINM instruction used
117 // to extract its value which the anti-dependency breaker can't currently
118 // see. Maybe we should make a late-expanded pseudo to encode this dependency.
119 // (the relevant code is in PPCDAGToDAGISel::SelectSETCC)
120
121 Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
Hal Finkel64c34e22011-12-02 04:58:02 +0000122
Hal Finkel64c34e22011-12-02 04:58:02 +0000123 CriticalPathRCs.clear();
124
125 if (isPPC64())
126 CriticalPathRCs.push_back(&PPC::G8RCRegClass);
127 else
128 CriticalPathRCs.push_back(&PPC::GPRCRegClass);
Hal Finkel01a90f42012-06-10 11:15:36 +0000129
130 CriticalPathRCs.push_back(&PPC::F8RCRegClass);
131 CriticalPathRCs.push_back(&PPC::VRRCRegClass);
Hal Finkel64c34e22011-12-02 04:58:02 +0000132
133 return OptLevel >= CodeGenOpt::Default;
134}
135