blob: 7eeeaf59eccccd997d76a41a8d5ed8be37f1d84f [file] [log] [blame]
Chris Lattner96909792006-01-28 05:40:47 +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"
15#include "PPC.h"
Daniel Dunbar3be03402009-08-02 22:11:08 +000016#include "llvm/GlobalValue.h"
Chris Lattner57fc62c2006-12-11 23:22:45 +000017#include "llvm/Target/TargetMachine.h"
Dan Gohmand68a0762009-01-05 17:59:02 +000018#include <cstdlib>
Evan Cheng94214702011-07-01 20:45:01 +000019
20#define GET_SUBTARGETINFO_CTOR
21#define GET_SUBTARGETINFO_MC_DESC
22#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng385e9302011-07-01 22:36:09 +000023#include "PPCGenSubtargetInfo.inc"
Evan Cheng94214702011-07-01 20:45:01 +000024
Chris Lattner3c304a32005-08-05 22:05:03 +000025using namespace llvm;
Chris Lattner3c304a32005-08-05 22:05:03 +000026
Nate Begeman8c00f8c2005-08-04 07:12:09 +000027#if defined(__APPLE__)
28#include <mach/mach.h>
29#include <mach/mach_host.h>
30#include <mach/host_info.h>
31#include <mach/machine.h>
32
Jim Laskeyb1e11802005-09-01 21:38:21 +000033/// GetCurrentPowerPCFeatures - Returns the current CPUs features.
34static const char *GetCurrentPowerPCCPU() {
Nate Begeman8c00f8c2005-08-04 07:12:09 +000035 host_basic_info_data_t hostInfo;
36 mach_msg_type_number_t infoCount;
37
38 infoCount = HOST_BASIC_INFO_COUNT;
39 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
40 &infoCount);
Jim Laskeyb1e11802005-09-01 21:38:21 +000041
42 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
43
44 switch(hostInfo.cpu_subtype) {
45 case CPU_SUBTYPE_POWERPC_601: return "601";
46 case CPU_SUBTYPE_POWERPC_602: return "602";
47 case CPU_SUBTYPE_POWERPC_603: return "603";
48 case CPU_SUBTYPE_POWERPC_603e: return "603e";
49 case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
50 case CPU_SUBTYPE_POWERPC_604: return "604";
51 case CPU_SUBTYPE_POWERPC_604e: return "604e";
52 case CPU_SUBTYPE_POWERPC_620: return "620";
53 case CPU_SUBTYPE_POWERPC_750: return "750";
54 case CPU_SUBTYPE_POWERPC_7400: return "7400";
55 case CPU_SUBTYPE_POWERPC_7450: return "7450";
56 case CPU_SUBTYPE_POWERPC_970: return "970";
57 default: ;
58 }
Nate Begeman8c00f8c2005-08-04 07:12:09 +000059
Jim Laskeyb1e11802005-09-01 21:38:21 +000060 return "generic";
61}
Nate Begeman8c00f8c2005-08-04 07:12:09 +000062#endif
63
Jim Laskey581a8f72005-10-26 17:30:34 +000064
Evan Cheng276365d2011-06-30 01:53:36 +000065PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
66 const std::string &FS, bool is64Bit)
Evan Cheng0ddff1b2011-07-07 07:07:08 +000067 : PPCGenSubtargetInfo(TT, CPU, FS)
Evan Cheng94214702011-07-01 20:45:01 +000068 , StackAlignment(16)
Dale Johannesendb01c8b2008-02-14 23:35:16 +000069 , DarwinDirective(PPC::DIR_NONE)
Jim Laskey581a8f72005-10-26 17:30:34 +000070 , IsGigaProcessor(false)
Chris Lattnera7a58542006-06-16 17:34:12 +000071 , Has64BitSupport(false)
72 , Use64BitRegs(false)
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000073 , IsPPC64(is64Bit)
Jim Laskey581a8f72005-10-26 17:30:34 +000074 , HasAltivec(false)
75 , HasFSQRT(false)
Chris Lattner51269842006-03-01 05:50:56 +000076 , HasSTFIWX(false)
Chris Lattner564da5d2008-01-02 19:35:16 +000077 , HasLazyResolverStubs(false)
Torok Edwin0e3a1a82010-08-04 20:47:44 +000078 , IsJITCodeModel(false)
Daniel Dunbar869eca12011-04-19 20:54:28 +000079 , TargetTriple(TT) {
Chris Lattner3c304a32005-08-05 22:05:03 +000080
Jim Laskeyb1e11802005-09-01 21:38:21 +000081 // Determine default and user specified characteristics
Evan Cheng276365d2011-06-30 01:53:36 +000082 std::string CPUName = CPU;
83 if (CPUName.empty())
84 CPUName = "generic";
Jim Laskeyb1e11802005-09-01 21:38:21 +000085#if defined(__APPLE__)
Evan Cheng276365d2011-06-30 01:53:36 +000086 if (CPUName == "generic")
87 CPUName = GetCurrentPowerPCCPU();
Jim Laskeyb1e11802005-09-01 21:38:21 +000088#endif
Jim Laskey581a8f72005-10-26 17:30:34 +000089
90 // Parse features string.
Evan Cheng0ddff1b2011-07-07 07:07:08 +000091 ParseSubtargetFeatures(CPUName, FS);
Jim Laskeyb1e11802005-09-01 21:38:21 +000092
Evan Cheng94214702011-07-01 20:45:01 +000093 // Initialize scheduling itinerary for the specified CPU.
94 InstrItins = getInstrItineraryForCPU(CPUName);
95
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000096 // If we are generating code for ppc64, verify that options make sense.
97 if (is64Bit) {
Dale Johannesen3b407442008-02-15 18:40:53 +000098 Has64BitSupport = true;
Chris Lattner8fa05da2006-06-16 20:05:06 +000099 // Silently force 64-bit register use on ppc64.
100 Use64BitRegs = true;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000101 }
102
103 // If the user requested use of 64-bit regs, but the cpu selected doesn't
Dale Johannesen3b407442008-02-15 18:40:53 +0000104 // support it, ignore.
105 if (use64BitRegs() && !has64BitSupport())
Chris Lattner7c1fb5f2006-06-16 17:50:12 +0000106 Use64BitRegs = false;
Chris Lattner57fc62c2006-12-11 23:22:45 +0000107
108 // Set up darwin-specific properties.
Chris Lattner74da6712009-08-11 22:49:34 +0000109 if (isDarwin())
Chris Lattner57fc62c2006-12-11 23:22:45 +0000110 HasLazyResolverStubs = true;
Chris Lattner57fc62c2006-12-11 23:22:45 +0000111}
112
113/// SetJITMode - This is called to inform the subtarget info that we are
114/// producing code for the JIT.
115void PPCSubtarget::SetJITMode() {
116 // JIT mode doesn't want lazy resolver stubs, it knows exactly where
117 // everything is. This matters for PPC64, which codegens in PIC mode without
118 // stubs.
119 HasLazyResolverStubs = false;
Torok Edwin0e3a1a82010-08-04 20:47:44 +0000120
121 // Calls to external functions need to use indirect calls
122 IsJITCodeModel = true;
Chris Lattner57fc62c2006-12-11 23:22:45 +0000123}
124
125
126/// hasLazyResolverStub - Return true if accesses to the specified global have
127/// to go through a dyld lazy resolution stub. This means that an extra load
128/// is required to get the address of the global.
Daniel Dunbar3be03402009-08-02 22:11:08 +0000129bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
130 const TargetMachine &TM) const {
Chris Lattner1e61e692010-11-15 02:46:57 +0000131 // We never have stubs if HasLazyResolverStubs=false or if in static mode.
Chris Lattner57fc62c2006-12-11 23:22:45 +0000132 if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
133 return false;
Evan Chengae94e592008-12-05 01:06:39 +0000134 // If symbol visibility is hidden, the extra load is not needed if
135 // the symbol is definitely defined in the current translation unit.
Jeffrey Yasskinf0356fe2010-01-27 20:34:15 +0000136 bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
Evan Chengae94e592008-12-05 01:06:39 +0000137 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
138 return false;
Chris Lattner57fc62c2006-12-11 23:22:45 +0000139 return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Evan Chengae94e592008-12-05 01:06:39 +0000140 GV->hasCommonLinkage() || isDecl;
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000141}