2012-02-18 20:03:15 +08:00
|
|
|
//===-- PowerPCSubtarget.cpp - PPC Subtarget Information ------------------===//
|
2005-08-04 15:12:09 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-08-04 15:12:09 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-02 05:01:15 +08:00
|
|
|
// This file implements the PPC specific subclass of TargetSubtargetInfo.
|
2005-08-04 15:12:09 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-15 07:51:18 +08:00
|
|
|
#include "PPCSubtarget.h"
|
|
|
|
#include "PPC.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "PPCRegisterInfo.h"
|
2013-07-16 06:29:40 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/IR/Attributes.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/GlobalValue.h"
|
2013-07-16 06:29:40 +08:00
|
|
|
#include "llvm/IR/Function.h"
|
2012-06-12 11:03:13 +08:00
|
|
|
#include "llvm/Support/Host.h"
|
2011-08-25 02:08:43 +08:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2009-01-06 01:59:02 +08:00
|
|
|
#include <cstdlib>
|
2011-07-02 04:45:01 +08:00
|
|
|
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
2011-07-08 09:53:10 +08:00
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
2011-07-02 06:36:09 +08:00
|
|
|
#include "PPCGenSubtargetInfo.inc"
|
2011-07-02 04:45:01 +08:00
|
|
|
|
2005-08-06 06:05:03 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-06-30 09:53:36 +08:00
|
|
|
PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS, bool is64Bit)
|
2011-07-07 15:07:08 +08:00
|
|
|
: PPCGenSubtargetInfo(TT, CPU, FS)
|
2006-06-17 01:50:12 +08:00
|
|
|
, IsPPC64(is64Bit)
|
2011-04-20 04:54:28 +08:00
|
|
|
, TargetTriple(TT) {
|
2013-07-16 06:29:40 +08:00
|
|
|
initializeEnvironment();
|
|
|
|
resetSubtargetFeatures(CPU, FS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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;
|
|
|
|
|
|
|
|
// Calls to external functions need to use indirect calls
|
|
|
|
IsJITCodeModel = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCSubtarget::resetSubtargetFeatures(const MachineFunction *MF) {
|
|
|
|
AttributeSet FnAttrs = MF->getFunction()->getAttributes();
|
|
|
|
Attribute CPUAttr = FnAttrs.getAttribute(AttributeSet::FunctionIndex,
|
|
|
|
"target-cpu");
|
|
|
|
Attribute FSAttr = FnAttrs.getAttribute(AttributeSet::FunctionIndex,
|
|
|
|
"target-features");
|
|
|
|
std::string CPU =
|
|
|
|
!CPUAttr.hasAttribute(Attribute::None) ? CPUAttr.getValueAsString() : "";
|
|
|
|
std::string FS =
|
|
|
|
!FSAttr.hasAttribute(Attribute::None) ? FSAttr.getValueAsString() : "";
|
|
|
|
if (!FS.empty()) {
|
|
|
|
initializeEnvironment();
|
|
|
|
resetSubtargetFeatures(CPU, FS);
|
|
|
|
}
|
|
|
|
}
|
2005-08-06 06:05:03 +08:00
|
|
|
|
2013-07-16 06:29:40 +08:00
|
|
|
void PPCSubtarget::initializeEnvironment() {
|
|
|
|
StackAlignment = 16;
|
|
|
|
DarwinDirective = PPC::DIR_NONE;
|
|
|
|
HasMFOCRF = false;
|
|
|
|
Has64BitSupport = false;
|
|
|
|
Use64BitRegs = false;
|
|
|
|
HasAltivec = false;
|
|
|
|
HasQPX = false;
|
2013-08-19 13:01:02 +08:00
|
|
|
HasFCPSGN = false;
|
2013-07-16 06:29:40 +08:00
|
|
|
HasFSQRT = false;
|
|
|
|
HasFRE = false;
|
|
|
|
HasFRES = false;
|
|
|
|
HasFRSQRTE = false;
|
|
|
|
HasFRSQRTES = false;
|
|
|
|
HasRecipPrec = false;
|
|
|
|
HasSTFIWX = false;
|
|
|
|
HasLFIWAX = false;
|
|
|
|
HasFPRND = false;
|
|
|
|
HasFPCVT = false;
|
|
|
|
HasISEL = false;
|
|
|
|
HasPOPCNTD = false;
|
|
|
|
HasLDBRX = false;
|
|
|
|
IsBookE = false;
|
|
|
|
HasLazyResolverStubs = false;
|
|
|
|
IsJITCodeModel = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
|
2005-09-02 05:38:21 +08:00
|
|
|
// Determine default and user specified characteristics
|
2011-06-30 09:53:36 +08:00
|
|
|
std::string CPUName = CPU;
|
|
|
|
if (CPUName.empty())
|
|
|
|
CPUName = "generic";
|
2012-06-12 11:03:13 +08:00
|
|
|
#if (defined(__APPLE__) || defined(__linux__)) && \
|
|
|
|
(defined(__ppc__) || defined(__powerpc__))
|
2011-06-30 09:53:36 +08:00
|
|
|
if (CPUName == "generic")
|
2012-06-12 11:03:13 +08:00
|
|
|
CPUName = sys::getHostCPUName();
|
2005-09-02 05:38:21 +08:00
|
|
|
#endif
|
2005-10-27 01:30:34 +08:00
|
|
|
|
2011-07-02 04:45:01 +08:00
|
|
|
// Initialize scheduling itinerary for the specified CPU.
|
|
|
|
InstrItins = getInstrItineraryForCPU(CPUName);
|
|
|
|
|
2012-10-25 20:27:42 +08:00
|
|
|
// Make sure 64-bit features are available when CPUname is generic
|
|
|
|
std::string FullFS = FS;
|
|
|
|
|
2006-06-17 01:50:12 +08:00
|
|
|
// If we are generating code for ppc64, verify that options make sense.
|
2013-07-16 06:29:40 +08:00
|
|
|
if (IsPPC64) {
|
2008-02-16 02:40:53 +08:00
|
|
|
Has64BitSupport = true;
|
2006-06-17 04:05:06 +08:00
|
|
|
// Silently force 64-bit register use on ppc64.
|
|
|
|
Use64BitRegs = true;
|
2012-10-25 20:27:42 +08:00
|
|
|
if (!FullFS.empty())
|
|
|
|
FullFS = "+64bit," + FullFS;
|
|
|
|
else
|
|
|
|
FullFS = "+64bit";
|
2006-06-17 01:50:12 +08:00
|
|
|
}
|
2012-10-05 00:20:24 +08:00
|
|
|
|
2012-10-25 20:27:42 +08:00
|
|
|
// Parse features string.
|
|
|
|
ParseSubtargetFeatures(CPUName, FullFS);
|
|
|
|
|
2006-06-17 01:50:12 +08:00
|
|
|
// If the user requested use of 64-bit regs, but the cpu selected doesn't
|
2008-02-16 02:40:53 +08:00
|
|
|
// support it, ignore.
|
|
|
|
if (use64BitRegs() && !has64BitSupport())
|
2006-06-17 01:50:12 +08:00
|
|
|
Use64BitRegs = false;
|
2006-12-12 07:22:45 +08:00
|
|
|
|
|
|
|
// Set up darwin-specific properties.
|
2009-08-12 06:49:34 +08:00
|
|
|
if (isDarwin())
|
2006-12-12 07:22:45 +08:00
|
|
|
HasLazyResolverStubs = true;
|
2013-01-31 07:43:27 +08:00
|
|
|
|
|
|
|
// QPX requires a 32-byte aligned stack. Note that we need to do this if
|
|
|
|
// we're compiling for a BG/Q system regardless of whether or not QPX
|
|
|
|
// is enabled because external functions will assume this alignment.
|
|
|
|
if (hasQPX() || isBGQ())
|
|
|
|
StackAlignment = 32;
|
2013-07-26 09:35:43 +08:00
|
|
|
|
|
|
|
// Determine endianness.
|
|
|
|
IsLittleEndian = (TargetTriple.getArch() == Triple::ppc64le);
|
2006-12-12 07:22:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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.
|
2009-08-03 06:11:08 +08:00
|
|
|
bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
|
|
|
|
const TargetMachine &TM) const {
|
2010-11-15 10:46:57 +08:00
|
|
|
// We never have stubs if HasLazyResolverStubs=false or if in static mode.
|
2006-12-12 07:22:45 +08:00
|
|
|
if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
|
|
|
|
return false;
|
2008-12-05 09:06:39 +08:00
|
|
|
// If symbol visibility is hidden, the extra load is not needed if
|
|
|
|
// the symbol is definitely defined in the current translation unit.
|
2010-01-28 04:34:15 +08:00
|
|
|
bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
|
2008-12-05 09:06:39 +08:00
|
|
|
if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
|
|
|
|
return false;
|
2006-12-12 07:22:45 +08:00
|
|
|
return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
|
2008-12-05 09:06:39 +08:00
|
|
|
GV->hasCommonLinkage() || isDecl;
|
2005-08-04 15:12:09 +08:00
|
|
|
}
|
2011-12-02 12:58:02 +08:00
|
|
|
|
|
|
|
bool PPCSubtarget::enablePostRAScheduler(
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
TargetSubtargetInfo::AntiDepBreakMode& Mode,
|
|
|
|
RegClassVector& CriticalPathRCs) const {
|
2012-06-10 19:15:36 +08:00
|
|
|
// FIXME: It would be best to use TargetSubtargetInfo::ANTIDEP_ALL here,
|
|
|
|
// but we can't because we can't reassign the cr registers. There is a
|
|
|
|
// dependence between the cr register and the RLWINM instruction used
|
|
|
|
// to extract its value which the anti-dependency breaker can't currently
|
|
|
|
// see. Maybe we should make a late-expanded pseudo to encode this dependency.
|
|
|
|
// (the relevant code is in PPCDAGToDAGISel::SelectSETCC)
|
|
|
|
|
|
|
|
Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
|
2011-12-02 12:58:02 +08:00
|
|
|
|
|
|
|
CriticalPathRCs.clear();
|
|
|
|
|
|
|
|
if (isPPC64())
|
|
|
|
CriticalPathRCs.push_back(&PPC::G8RCRegClass);
|
|
|
|
else
|
|
|
|
CriticalPathRCs.push_back(&PPC::GPRCRegClass);
|
2012-06-10 19:15:36 +08:00
|
|
|
|
|
|
|
CriticalPathRCs.push_back(&PPC::F8RCRegClass);
|
|
|
|
CriticalPathRCs.push_back(&PPC::VRRCRegClass);
|
2011-12-02 12:58:02 +08:00
|
|
|
|
|
|
|
return OptLevel >= CodeGenOpt::Default;
|
|
|
|
}
|
|
|
|
|