blob: d4861256a8c626c123f63d5fb849a100e87242bb [file] [log] [blame]
Chris Lattner0c7b4662006-01-28 05:40:47 +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"
Daniel Dunbar31b44e82009-08-02 22:11:08 +000016#include "llvm/GlobalValue.h"
Chris Lattnerf4646a72006-12-11 23:22:45 +000017#include "llvm/Target/TargetMachine.h"
Dan Gohman906152a2009-01-05 17:59:02 +000018#include <cstdlib>
Evan Cheng54b68e32011-07-01 20:45:01 +000019
Evan Cheng4d1ca962011-07-08 01:53:10 +000020#define GET_SUBTARGETINFO_ENUM
Evan Cheng54b68e32011-07-01 20:45:01 +000021#define GET_SUBTARGETINFO_MC_DESC
22#define GET_SUBTARGETINFO_TARGET_DESC
Evan Cheng4d1ca962011-07-08 01:53:10 +000023#define GET_SUBTARGETINFO_CTOR
Evan Chengc9c090d2011-07-01 22:36:09 +000024#include "PPCGenSubtargetInfo.inc"
Evan Cheng54b68e32011-07-01 20:45:01 +000025
Chris Lattner983a4152005-08-05 22:05:03 +000026using namespace llvm;
Chris Lattner983a4152005-08-05 22:05:03 +000027
Nate Begeman3bcfcd92005-08-04 07:12:09 +000028#if defined(__APPLE__)
29#include <mach/mach.h>
30#include <mach/mach_host.h>
31#include <mach/host_info.h>
32#include <mach/machine.h>
33
Jim Laskey19058c32005-09-01 21:38:21 +000034/// GetCurrentPowerPCFeatures - Returns the current CPUs features.
35static const char *GetCurrentPowerPCCPU() {
Nate Begeman3bcfcd92005-08-04 07:12:09 +000036 host_basic_info_data_t hostInfo;
37 mach_msg_type_number_t infoCount;
38
39 infoCount = HOST_BASIC_INFO_COUNT;
40 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
41 &infoCount);
Jim Laskey19058c32005-09-01 21:38:21 +000042
43 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
44
45 switch(hostInfo.cpu_subtype) {
46 case CPU_SUBTYPE_POWERPC_601: return "601";
47 case CPU_SUBTYPE_POWERPC_602: return "602";
48 case CPU_SUBTYPE_POWERPC_603: return "603";
49 case CPU_SUBTYPE_POWERPC_603e: return "603e";
50 case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
51 case CPU_SUBTYPE_POWERPC_604: return "604";
52 case CPU_SUBTYPE_POWERPC_604e: return "604e";
53 case CPU_SUBTYPE_POWERPC_620: return "620";
54 case CPU_SUBTYPE_POWERPC_750: return "750";
55 case CPU_SUBTYPE_POWERPC_7400: return "7400";
56 case CPU_SUBTYPE_POWERPC_7450: return "7450";
57 case CPU_SUBTYPE_POWERPC_970: return "970";
58 default: ;
59 }
Nate Begeman3bcfcd92005-08-04 07:12:09 +000060
Jim Laskey19058c32005-09-01 21:38:21 +000061 return "generic";
62}
Nate Begeman3bcfcd92005-08-04 07:12:09 +000063#endif
64
Jim Laskeya2b52352005-10-26 17:30:34 +000065
Evan Chengfe6e4052011-06-30 01:53:36 +000066PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
67 const std::string &FS, bool is64Bit)
Evan Cheng1a72add62011-07-07 07:07:08 +000068 : PPCGenSubtargetInfo(TT, CPU, FS)
Evan Cheng54b68e32011-07-01 20:45:01 +000069 , StackAlignment(16)
Dale Johannesen6ca3ccf2008-02-14 23:35:16 +000070 , DarwinDirective(PPC::DIR_NONE)
Jim Laskeya2b52352005-10-26 17:30:34 +000071 , IsGigaProcessor(false)
Chris Lattnera35f3062006-06-16 17:34:12 +000072 , Has64BitSupport(false)
73 , Use64BitRegs(false)
Chris Lattner16682ff2006-06-16 17:50:12 +000074 , IsPPC64(is64Bit)
Jim Laskeya2b52352005-10-26 17:30:34 +000075 , HasAltivec(false)
76 , HasFSQRT(false)
Chris Lattner27f53452006-03-01 05:50:56 +000077 , HasSTFIWX(false)
Chris Lattnerdcbc0f32008-01-02 19:35:16 +000078 , HasLazyResolverStubs(false)
Torok Edwin31e90d22010-08-04 20:47:44 +000079 , IsJITCodeModel(false)
Daniel Dunbara37aab22011-04-19 20:54:28 +000080 , TargetTriple(TT) {
Chris Lattner983a4152005-08-05 22:05:03 +000081
Jim Laskey19058c32005-09-01 21:38:21 +000082 // Determine default and user specified characteristics
Evan Chengfe6e4052011-06-30 01:53:36 +000083 std::string CPUName = CPU;
84 if (CPUName.empty())
85 CPUName = "generic";
Jim Laskey19058c32005-09-01 21:38:21 +000086#if defined(__APPLE__)
Evan Chengfe6e4052011-06-30 01:53:36 +000087 if (CPUName == "generic")
88 CPUName = GetCurrentPowerPCCPU();
Jim Laskey19058c32005-09-01 21:38:21 +000089#endif
Jim Laskeya2b52352005-10-26 17:30:34 +000090
91 // Parse features string.
Evan Cheng1a72add62011-07-07 07:07:08 +000092 ParseSubtargetFeatures(CPUName, FS);
Jim Laskey19058c32005-09-01 21:38:21 +000093
Evan Cheng54b68e32011-07-01 20:45:01 +000094 // Initialize scheduling itinerary for the specified CPU.
95 InstrItins = getInstrItineraryForCPU(CPUName);
96
Chris Lattner16682ff2006-06-16 17:50:12 +000097 // If we are generating code for ppc64, verify that options make sense.
98 if (is64Bit) {
Dale Johannesen2e019122008-02-15 18:40:53 +000099 Has64BitSupport = true;
Chris Lattner61d70312006-06-16 20:05:06 +0000100 // Silently force 64-bit register use on ppc64.
101 Use64BitRegs = true;
Chris Lattner16682ff2006-06-16 17:50:12 +0000102 }
103
104 // If the user requested use of 64-bit regs, but the cpu selected doesn't
Dale Johannesen2e019122008-02-15 18:40:53 +0000105 // support it, ignore.
106 if (use64BitRegs() && !has64BitSupport())
Chris Lattner16682ff2006-06-16 17:50:12 +0000107 Use64BitRegs = false;
Chris Lattnerf4646a72006-12-11 23:22:45 +0000108
109 // Set up darwin-specific properties.
Chris Lattnere6555212009-08-11 22:49:34 +0000110 if (isDarwin())
Chris Lattnerf4646a72006-12-11 23:22:45 +0000111 HasLazyResolverStubs = true;
Chris Lattnerf4646a72006-12-11 23:22:45 +0000112}
113
114/// SetJITMode - This is called to inform the subtarget info that we are
115/// producing code for the JIT.
116void PPCSubtarget::SetJITMode() {
117 // JIT mode doesn't want lazy resolver stubs, it knows exactly where
118 // everything is. This matters for PPC64, which codegens in PIC mode without
119 // stubs.
120 HasLazyResolverStubs = false;
Torok Edwin31e90d22010-08-04 20:47:44 +0000121
122 // Calls to external functions need to use indirect calls
123 IsJITCodeModel = true;
Chris Lattnerf4646a72006-12-11 23:22:45 +0000124}
125
126
127/// hasLazyResolverStub - Return true if accesses to the specified global have
128/// to go through a dyld lazy resolution stub. This means that an extra load
129/// is required to get the address of the global.
Daniel Dunbar31b44e82009-08-02 22:11:08 +0000130bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
131 const TargetMachine &TM) const {
Chris Lattneredb9d842010-11-15 02:46:57 +0000132 // We never have stubs if HasLazyResolverStubs=false or if in static mode.
Chris Lattnerf4646a72006-12-11 23:22:45 +0000133 if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
134 return false;
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000135 // If symbol visibility is hidden, the extra load is not needed if
136 // the symbol is definitely defined in the current translation unit.
Jeffrey Yasskin091217b2010-01-27 20:34:15 +0000137 bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000138 if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
139 return false;
Chris Lattnerf4646a72006-12-11 23:22:45 +0000140 return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
Evan Cheng2a03c7e2008-12-05 01:06:39 +0000141 GV->hasCommonLinkage() || isDecl;
Nate Begeman3bcfcd92005-08-04 07:12:09 +0000142}