blob: 2b78f9efb7b33c664e01af88d813ab304fbfe4dd [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//
5// This file was developed by Nate Begeman and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the PPC specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
Chris Lattner26689592005-10-14 23:51:18 +000014#include "PPCSubtarget.h"
15#include "PPC.h"
Nate Begeman8c00f8c2005-08-04 07:12:09 +000016#include "llvm/Module.h"
Jim Laskeyf5fc2cb2005-10-21 19:05:19 +000017#include "PPCGenSubtarget.inc"
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000018#include <iostream>
Chris Lattner3c304a32005-08-05 22:05:03 +000019using namespace llvm;
Chris Lattner3c304a32005-08-05 22:05:03 +000020
Nate Begeman8c00f8c2005-08-04 07:12:09 +000021#if defined(__APPLE__)
22#include <mach/mach.h>
23#include <mach/mach_host.h>
24#include <mach/host_info.h>
25#include <mach/machine.h>
26
Jim Laskeyb1e11802005-09-01 21:38:21 +000027/// GetCurrentPowerPCFeatures - Returns the current CPUs features.
28static const char *GetCurrentPowerPCCPU() {
Nate Begeman8c00f8c2005-08-04 07:12:09 +000029 host_basic_info_data_t hostInfo;
30 mach_msg_type_number_t infoCount;
31
32 infoCount = HOST_BASIC_INFO_COUNT;
33 host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
34 &infoCount);
Jim Laskeyb1e11802005-09-01 21:38:21 +000035
36 if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
37
38 switch(hostInfo.cpu_subtype) {
39 case CPU_SUBTYPE_POWERPC_601: return "601";
40 case CPU_SUBTYPE_POWERPC_602: return "602";
41 case CPU_SUBTYPE_POWERPC_603: return "603";
42 case CPU_SUBTYPE_POWERPC_603e: return "603e";
43 case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
44 case CPU_SUBTYPE_POWERPC_604: return "604";
45 case CPU_SUBTYPE_POWERPC_604e: return "604e";
46 case CPU_SUBTYPE_POWERPC_620: return "620";
47 case CPU_SUBTYPE_POWERPC_750: return "750";
48 case CPU_SUBTYPE_POWERPC_7400: return "7400";
49 case CPU_SUBTYPE_POWERPC_7450: return "7450";
50 case CPU_SUBTYPE_POWERPC_970: return "970";
51 default: ;
52 }
Nate Begeman8c00f8c2005-08-04 07:12:09 +000053
Jim Laskeyb1e11802005-09-01 21:38:21 +000054 return "generic";
55}
Nate Begeman8c00f8c2005-08-04 07:12:09 +000056#endif
57
Jim Laskey581a8f72005-10-26 17:30:34 +000058
Chris Lattner94de9a82006-06-16 01:37:27 +000059PPCSubtarget::PPCSubtarget(const Module &M, const std::string &FS, bool is64Bit)
Jim Laskey581a8f72005-10-26 17:30:34 +000060 : StackAlignment(16)
Jim Laskey6cee6302005-11-01 20:06:59 +000061 , InstrItins()
Jim Laskey581a8f72005-10-26 17:30:34 +000062 , IsGigaProcessor(false)
Chris Lattnera7a58542006-06-16 17:34:12 +000063 , Has64BitSupport(false)
64 , Use64BitRegs(false)
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000065 , IsPPC64(is64Bit)
Jim Laskey581a8f72005-10-26 17:30:34 +000066 , HasAltivec(false)
67 , HasFSQRT(false)
Chris Lattner51269842006-03-01 05:50:56 +000068 , HasSTFIWX(false)
Jim Laskey581a8f72005-10-26 17:30:34 +000069 , IsAIX(false)
70 , IsDarwin(false) {
Chris Lattner3c304a32005-08-05 22:05:03 +000071
Jim Laskeyb1e11802005-09-01 21:38:21 +000072 // Determine default and user specified characteristics
Chris Lattnerc98d8232005-09-07 05:45:33 +000073 std::string CPU = "generic";
Jim Laskeyb1e11802005-09-01 21:38:21 +000074#if defined(__APPLE__)
75 CPU = GetCurrentPowerPCCPU();
76#endif
Jim Laskey581a8f72005-10-26 17:30:34 +000077
78 // Parse features string.
79 ParseSubtargetFeatures(FS, CPU);
Jim Laskeyb1e11802005-09-01 21:38:21 +000080
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000081 // If we are generating code for ppc64, verify that options make sense.
82 if (is64Bit) {
83 if (!has64BitSupport()) {
84 std::cerr << "PPC: Generation of 64-bit code for a 32-bit processor "
85 "requested. Ignoring 32-bit processor feature.\n";
86 Has64BitSupport = true;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000087 }
Chris Lattner8fa05da2006-06-16 20:05:06 +000088 // Silently force 64-bit register use on ppc64.
89 Use64BitRegs = true;
Chris Lattner7c1fb5f2006-06-16 17:50:12 +000090 }
91
92 // If the user requested use of 64-bit regs, but the cpu selected doesn't
93 // support it, warn and ignore.
94 if (use64BitRegs() && !has64BitSupport()) {
95 std::cerr << "PPC: 64-bit registers requested on CPU without support. "
96 "Disabling 64-bit register use.\n";
97 Use64BitRegs = false;
98 }
99
Jim Laskeyb1e11802005-09-01 21:38:21 +0000100 // Set the boolean corresponding to the current target triple, or the default
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000101 // if one cannot be determined, to true.
102 const std::string& TT = M.getTargetTriple();
103 if (TT.length() > 5) {
Chris Lattneraf89fa62006-06-16 18:50:48 +0000104 IsDarwin = TT.find("-darwin") != std::string::npos;
105 if (!IsDarwin)
106 IsAIX = TT.find("-aix") != std::string::npos;
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000107 } else if (TT.empty()) {
108#if defined(_POWER)
Chris Lattner3c304a32005-08-05 22:05:03 +0000109 IsAIX = true;
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000110#elif defined(__APPLE__)
Chris Lattner3c304a32005-08-05 22:05:03 +0000111 IsDarwin = true;
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000112#endif
113 }
Nate Begeman8c00f8c2005-08-04 07:12:09 +0000114}