2006-01-28 05:40:47 +00:00
|
|
|
//===- PowerPCSubtarget.cpp - PPC Subtarget Information -------------------===//
|
2005-08-04 07:12:09 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-08-04 07:12:09 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the PPC specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-14 23:51:18 +00:00
|
|
|
#include "PPCSubtarget.h"
|
|
|
|
#include "PPC.h"
|
2005-08-04 07:12:09 +00:00
|
|
|
#include "llvm/Module.h"
|
2006-12-11 23:22:45 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2005-10-21 19:05:19 +00:00
|
|
|
#include "PPCGenSubtarget.inc"
|
2005-08-05 22:05:03 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2005-08-04 07:12:09 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
#include <mach/mach.h>
|
|
|
|
#include <mach/mach_host.h>
|
|
|
|
#include <mach/host_info.h>
|
|
|
|
#include <mach/machine.h>
|
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
/// GetCurrentPowerPCFeatures - Returns the current CPUs features.
|
|
|
|
static const char *GetCurrentPowerPCCPU() {
|
2005-08-04 07:12:09 +00:00
|
|
|
host_basic_info_data_t hostInfo;
|
|
|
|
mach_msg_type_number_t infoCount;
|
|
|
|
|
|
|
|
infoCount = HOST_BASIC_INFO_COUNT;
|
|
|
|
host_info(mach_host_self(), HOST_BASIC_INFO, (host_info_t)&hostInfo,
|
|
|
|
&infoCount);
|
2005-09-01 21:38:21 +00:00
|
|
|
|
|
|
|
if (hostInfo.cpu_type != CPU_TYPE_POWERPC) return "generic";
|
|
|
|
|
|
|
|
switch(hostInfo.cpu_subtype) {
|
|
|
|
case CPU_SUBTYPE_POWERPC_601: return "601";
|
|
|
|
case CPU_SUBTYPE_POWERPC_602: return "602";
|
|
|
|
case CPU_SUBTYPE_POWERPC_603: return "603";
|
|
|
|
case CPU_SUBTYPE_POWERPC_603e: return "603e";
|
|
|
|
case CPU_SUBTYPE_POWERPC_603ev: return "603ev";
|
|
|
|
case CPU_SUBTYPE_POWERPC_604: return "604";
|
|
|
|
case CPU_SUBTYPE_POWERPC_604e: return "604e";
|
|
|
|
case CPU_SUBTYPE_POWERPC_620: return "620";
|
|
|
|
case CPU_SUBTYPE_POWERPC_750: return "750";
|
|
|
|
case CPU_SUBTYPE_POWERPC_7400: return "7400";
|
|
|
|
case CPU_SUBTYPE_POWERPC_7450: return "7450";
|
|
|
|
case CPU_SUBTYPE_POWERPC_970: return "970";
|
|
|
|
default: ;
|
|
|
|
}
|
2005-08-04 07:12:09 +00:00
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
return "generic";
|
|
|
|
}
|
2005-08-04 07:12:09 +00:00
|
|
|
#endif
|
|
|
|
|
2005-10-26 17:30:34 +00:00
|
|
|
|
2006-12-11 23:22:45 +00:00
|
|
|
PPCSubtarget::PPCSubtarget(const TargetMachine &tm, const Module &M,
|
|
|
|
const std::string &FS, bool is64Bit)
|
|
|
|
: TM(tm)
|
|
|
|
, StackAlignment(16)
|
2008-02-14 23:35:16 +00:00
|
|
|
, DarwinDirective(PPC::DIR_NONE)
|
2005-10-26 17:30:34 +00:00
|
|
|
, IsGigaProcessor(false)
|
2006-06-16 17:34:12 +00:00
|
|
|
, Has64BitSupport(false)
|
|
|
|
, Use64BitRegs(false)
|
2006-06-16 17:50:12 +00:00
|
|
|
, IsPPC64(is64Bit)
|
2005-10-26 17:30:34 +00:00
|
|
|
, HasAltivec(false)
|
|
|
|
, HasFSQRT(false)
|
2006-03-01 05:50:56 +00:00
|
|
|
, HasSTFIWX(false)
|
2008-01-02 19:35:16 +00:00
|
|
|
, HasLazyResolverStubs(false)
|
|
|
|
, DarwinVers(0) {
|
2005-08-05 22:05:03 +00:00
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
// Determine default and user specified characteristics
|
2005-09-07 05:45:33 +00:00
|
|
|
std::string CPU = "generic";
|
2005-09-01 21:38:21 +00:00
|
|
|
#if defined(__APPLE__)
|
|
|
|
CPU = GetCurrentPowerPCCPU();
|
|
|
|
#endif
|
2005-10-26 17:30:34 +00:00
|
|
|
|
|
|
|
// Parse features string.
|
|
|
|
ParseSubtargetFeatures(FS, CPU);
|
2005-09-01 21:38:21 +00:00
|
|
|
|
2006-06-16 17:50:12 +00:00
|
|
|
// If we are generating code for ppc64, verify that options make sense.
|
|
|
|
if (is64Bit) {
|
2008-02-15 18:40:53 +00:00
|
|
|
Has64BitSupport = true;
|
2006-06-16 20:05:06 +00:00
|
|
|
// Silently force 64-bit register use on ppc64.
|
|
|
|
Use64BitRegs = true;
|
2006-06-16 17:50:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If the user requested use of 64-bit regs, but the cpu selected doesn't
|
2008-02-15 18:40:53 +00:00
|
|
|
// support it, ignore.
|
|
|
|
if (use64BitRegs() && !has64BitSupport())
|
2006-06-16 17:50:12 +00:00
|
|
|
Use64BitRegs = false;
|
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
// Set the boolean corresponding to the current target triple, or the default
|
2005-08-04 07:12:09 +00:00
|
|
|
// if one cannot be determined, to true.
|
2008-01-02 19:35:16 +00:00
|
|
|
const std::string &TT = M.getTargetTriple();
|
|
|
|
if (TT.length() > 7) {
|
|
|
|
// Determine which version of darwin this is.
|
2008-01-08 10:06:15 +00:00
|
|
|
size_t DarwinPos = TT.find("-darwin");
|
2008-01-02 19:35:16 +00:00
|
|
|
if (DarwinPos != std::string::npos) {
|
|
|
|
if (isdigit(TT[DarwinPos+7]))
|
|
|
|
DarwinVers = atoi(&TT[DarwinPos+7]);
|
|
|
|
else
|
|
|
|
DarwinVers = 8; // Minimum supported darwin is Tiger.
|
|
|
|
}
|
2005-08-04 07:12:09 +00:00
|
|
|
} else if (TT.empty()) {
|
2008-01-02 19:35:16 +00:00
|
|
|
// Try to autosense the subtarget from the host compiler.
|
2006-07-15 01:24:23 +00:00
|
|
|
#if defined(__APPLE__)
|
2008-01-02 19:35:16 +00:00
|
|
|
#if __APPLE_CC__ > 5400
|
|
|
|
DarwinVers = 9; // GCC 5400+ is Leopard.
|
|
|
|
#else
|
|
|
|
DarwinVers = 8; // Minimum supported darwin is Tiger.
|
|
|
|
#endif
|
2005-08-04 07:12:09 +00:00
|
|
|
#endif
|
|
|
|
}
|
2006-12-11 23:22:45 +00:00
|
|
|
|
|
|
|
// Set up darwin-specific properties.
|
2008-01-02 19:35:16 +00:00
|
|
|
if (isDarwin()) {
|
2006-12-11 23:22:45 +00:00
|
|
|
HasLazyResolverStubs = true;
|
2007-01-16 09:29:17 +00:00
|
|
|
AsmFlavor = NewMnemonic;
|
|
|
|
} else {
|
|
|
|
AsmFlavor = OldMnemonic;
|
2006-12-11 23:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// SetJITMode - This is called to inform the subtarget info that we are
|
|
|
|
/// producing code for the JIT.
|
|
|
|
void PPCSubtarget::SetJITMode() {
|
|
|
|
// JIT mode doesn't want lazy resolver stubs, it knows exactly where
|
|
|
|
// everything is. This matters for PPC64, which codegens in PIC mode without
|
|
|
|
// stubs.
|
|
|
|
HasLazyResolverStubs = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// hasLazyResolverStub - Return true if accesses to the specified global have
|
|
|
|
/// to go through a dyld lazy resolution stub. This means that an extra load
|
|
|
|
/// is required to get the address of the global.
|
|
|
|
bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV) const {
|
|
|
|
// We never hae stubs if HasLazyResolverStubs=false or if in static mode.
|
|
|
|
if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
|
2007-07-05 17:07:56 +00:00
|
|
|
(GV->isDeclaration() && !GV->hasNotBeenReadFromBitcode());
|
2005-08-04 07:12:09 +00:00
|
|
|
}
|