Chris Lattner | 9690979 | 2006-01-28 05:40:47 +0000 | [diff] [blame] | 1 | //===- PowerPCSubtarget.cpp - PPC Subtarget Information -------------------===// |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 2 | // |
| 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 Lattner | 2668959 | 2005-10-14 23:51:18 +0000 | [diff] [blame] | 14 | #include "PPCSubtarget.h" |
| 15 | #include "PPC.h" |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 16 | #include "llvm/Module.h" |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 17 | #include "llvm/Support/CommandLine.h" |
Jim Laskey | f5fc2cb | 2005-10-21 19:05:19 +0000 | [diff] [blame] | 18 | #include "PPCGenSubtarget.inc" |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame^] | 19 | #include <iostream> |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 20 | |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 21 | using namespace llvm; |
| 22 | PPCTargetEnum llvm::PPCTarget = TargetDefault; |
| 23 | |
| 24 | namespace llvm { |
| 25 | cl::opt<PPCTargetEnum, true> |
| 26 | PPCTargetArg(cl::desc("Force generation of code for a specific PPC target:"), |
| 27 | cl::values( |
| 28 | clEnumValN(TargetAIX, "aix", " Enable AIX codegen"), |
Chris Lattner | 1e9de3e | 2005-09-02 18:33:05 +0000 | [diff] [blame] | 29 | clEnumValN(TargetDarwin,"darwin", |
| 30 | " Enable Darwin codegen"), |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 31 | clEnumValEnd), |
Evan Cheng | 4c1aa86 | 2006-02-22 20:19:42 +0000 | [diff] [blame] | 32 | cl::location(PPCTarget), cl::init(TargetDefault)); |
Jim Laskey | f5fc2cb | 2005-10-21 19:05:19 +0000 | [diff] [blame] | 33 | } |
| 34 | |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 35 | #if defined(__APPLE__) |
| 36 | #include <mach/mach.h> |
| 37 | #include <mach/mach_host.h> |
| 38 | #include <mach/host_info.h> |
| 39 | #include <mach/machine.h> |
| 40 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 41 | /// GetCurrentPowerPCFeatures - Returns the current CPUs features. |
| 42 | static const char *GetCurrentPowerPCCPU() { |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 43 | host_basic_info_data_t hostInfo; |
| 44 | mach_msg_type_number_t infoCount; |
| 45 | |
| 46 | infoCount = HOST_BASIC_INFO_COUNT; |
| 47 | host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo, |
| 48 | &infoCount); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 49 | |
| 50 | if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic"; |
| 51 | |
| 52 | switch(hostInfo.cpu_subtype) { |
| 53 | case CPU_SUBTYPE_POWERPC_601: return "601"; |
| 54 | case CPU_SUBTYPE_POWERPC_602: return "602"; |
| 55 | case CPU_SUBTYPE_POWERPC_603: return "603"; |
| 56 | case CPU_SUBTYPE_POWERPC_603e: return "603e"; |
| 57 | case CPU_SUBTYPE_POWERPC_603ev: return "603ev"; |
| 58 | case CPU_SUBTYPE_POWERPC_604: return "604"; |
| 59 | case CPU_SUBTYPE_POWERPC_604e: return "604e"; |
| 60 | case CPU_SUBTYPE_POWERPC_620: return "620"; |
| 61 | case CPU_SUBTYPE_POWERPC_750: return "750"; |
| 62 | case CPU_SUBTYPE_POWERPC_7400: return "7400"; |
| 63 | case CPU_SUBTYPE_POWERPC_7450: return "7450"; |
| 64 | case CPU_SUBTYPE_POWERPC_970: return "970"; |
| 65 | default: ; |
| 66 | } |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 67 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 68 | return "generic"; |
| 69 | } |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 70 | #endif |
| 71 | |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 72 | |
Chris Lattner | 94de9a8 | 2006-06-16 01:37:27 +0000 | [diff] [blame] | 73 | PPCSubtarget::PPCSubtarget(const Module &M, const std::string &FS, bool is64Bit) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 74 | : StackAlignment(16) |
Jim Laskey | 6cee630 | 2005-11-01 20:06:59 +0000 | [diff] [blame] | 75 | , InstrItins() |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 76 | , IsGigaProcessor(false) |
Chris Lattner | a7a5854 | 2006-06-16 17:34:12 +0000 | [diff] [blame] | 77 | , Has64BitSupport(false) |
| 78 | , Use64BitRegs(false) |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame^] | 79 | , IsPPC64(is64Bit) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 80 | , HasAltivec(false) |
| 81 | , HasFSQRT(false) |
Chris Lattner | 5126984 | 2006-03-01 05:50:56 +0000 | [diff] [blame] | 82 | , HasSTFIWX(false) |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 83 | , IsAIX(false) |
| 84 | , IsDarwin(false) { |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 85 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 86 | // Determine default and user specified characteristics |
Chris Lattner | c98d823 | 2005-09-07 05:45:33 +0000 | [diff] [blame] | 87 | std::string CPU = "generic"; |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 88 | #if defined(__APPLE__) |
| 89 | CPU = GetCurrentPowerPCCPU(); |
| 90 | #endif |
Jim Laskey | 581a8f7 | 2005-10-26 17:30:34 +0000 | [diff] [blame] | 91 | |
| 92 | // Parse features string. |
| 93 | ParseSubtargetFeatures(FS, CPU); |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 94 | |
Chris Lattner | 7c1fb5f | 2006-06-16 17:50:12 +0000 | [diff] [blame^] | 95 | // If we are generating code for ppc64, verify that options make sense. |
| 96 | if (is64Bit) { |
| 97 | if (!has64BitSupport()) { |
| 98 | std::cerr << "PPC: Generation of 64-bit code for a 32-bit processor " |
| 99 | "requested. Ignoring 32-bit processor feature.\n"; |
| 100 | Has64BitSupport = true; |
| 101 | // Silently force 64-bit register use on ppc64. |
| 102 | Use64BitRegs = true; |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | // If the user requested use of 64-bit regs, but the cpu selected doesn't |
| 107 | // support it, warn and ignore. |
| 108 | if (use64BitRegs() && !has64BitSupport()) { |
| 109 | std::cerr << "PPC: 64-bit registers requested on CPU without support. " |
| 110 | "Disabling 64-bit register use.\n"; |
| 111 | Use64BitRegs = false; |
| 112 | } |
| 113 | |
Jim Laskey | b1e1180 | 2005-09-01 21:38:21 +0000 | [diff] [blame] | 114 | // Set the boolean corresponding to the current target triple, or the default |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 115 | // if one cannot be determined, to true. |
| 116 | const std::string& TT = M.getTargetTriple(); |
| 117 | if (TT.length() > 5) { |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 118 | IsDarwin = TT.find("darwin") != std::string::npos; |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 119 | } else if (TT.empty()) { |
| 120 | #if defined(_POWER) |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 121 | IsAIX = true; |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 122 | #elif defined(__APPLE__) |
Chris Lattner | 3c304a3 | 2005-08-05 22:05:03 +0000 | [diff] [blame] | 123 | IsDarwin = true; |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 124 | #endif |
| 125 | } |
Nate Begeman | 8c00f8c | 2005-08-04 07:12:09 +0000 | [diff] [blame] | 126 | } |