2012-02-18 12:03:15 +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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 21:01:15 +00:00
|
|
|
// This file implements the PPC specific subclass of TargetSubtargetInfo.
|
2005-08-04 07:12:09 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-14 23:51:18 +00:00
|
|
|
#include "PPCSubtarget.h"
|
|
|
|
#include "PPC.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "PPCRegisterInfo.h"
|
2013-07-15 22:29:40 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2013-09-11 23:05:25 +00:00
|
|
|
#include "llvm/CodeGen/MachineScheduler.h"
|
2013-07-15 22:29:40 +00:00
|
|
|
#include "llvm/IR/Attributes.h"
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/GlobalValue.h"
|
2013-07-15 22:29:40 +00:00
|
|
|
#include "llvm/IR/Function.h"
|
2012-06-12 03:03:13 +00:00
|
|
|
#include "llvm/Support/Host.h"
|
2011-08-24 18:08:43 +00:00
|
|
|
#include "llvm/Support/TargetRegistry.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2009-01-05 17:59:02 +00:00
|
|
|
#include <cstdlib>
|
2011-07-01 20:45:01 +00:00
|
|
|
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
2011-07-08 01:53:10 +00:00
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
2011-07-01 22:36:09 +00:00
|
|
|
#include "PPCGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2005-08-05 22:05:03 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2011-06-30 01:53:36 +00:00
|
|
|
PPCSubtarget::PPCSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS, bool is64Bit)
|
2011-07-07 07:07:08 +00:00
|
|
|
: PPCGenSubtargetInfo(TT, CPU, FS)
|
2006-06-16 17:50:12 +00:00
|
|
|
, IsPPC64(is64Bit)
|
2011-04-19 20:54:28 +00:00
|
|
|
, TargetTriple(TT) {
|
2013-07-15 22:29:40 +00: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-05 22:05:03 +00:00
|
|
|
|
2013-07-15 22:29:40 +00:00
|
|
|
void PPCSubtarget::initializeEnvironment() {
|
|
|
|
StackAlignment = 16;
|
|
|
|
DarwinDirective = PPC::DIR_NONE;
|
|
|
|
HasMFOCRF = false;
|
|
|
|
Has64BitSupport = false;
|
|
|
|
Use64BitRegs = false;
|
|
|
|
HasAltivec = false;
|
|
|
|
HasQPX = false;
|
2013-08-19 05:01:02 +00:00
|
|
|
HasFCPSGN = false;
|
2013-07-15 22:29:40 +00: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;
|
2013-09-12 14:40:06 +00:00
|
|
|
DeprecatedMFTB = false;
|
|
|
|
DeprecatedDST = false;
|
2013-07-15 22:29:40 +00:00
|
|
|
HasLazyResolverStubs = false;
|
|
|
|
IsJITCodeModel = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCSubtarget::resetSubtargetFeatures(StringRef CPU, StringRef FS) {
|
2005-09-01 21:38:21 +00:00
|
|
|
// Determine default and user specified characteristics
|
2011-06-30 01:53:36 +00:00
|
|
|
std::string CPUName = CPU;
|
|
|
|
if (CPUName.empty())
|
|
|
|
CPUName = "generic";
|
2012-06-12 03:03:13 +00:00
|
|
|
#if (defined(__APPLE__) || defined(__linux__)) && \
|
|
|
|
(defined(__ppc__) || defined(__powerpc__))
|
2011-06-30 01:53:36 +00:00
|
|
|
if (CPUName == "generic")
|
2012-06-12 03:03:13 +00:00
|
|
|
CPUName = sys::getHostCPUName();
|
2005-09-01 21:38:21 +00:00
|
|
|
#endif
|
2005-10-26 17:30:34 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
// Initialize scheduling itinerary for the specified CPU.
|
|
|
|
InstrItins = getInstrItineraryForCPU(CPUName);
|
|
|
|
|
2012-10-25 12:27:42 +00:00
|
|
|
// Make sure 64-bit features are available when CPUname is generic
|
|
|
|
std::string FullFS = FS;
|
|
|
|
|
2006-06-16 17:50:12 +00:00
|
|
|
// If we are generating code for ppc64, verify that options make sense.
|
2013-07-15 22:29:40 +00:00
|
|
|
if (IsPPC64) {
|
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;
|
2012-10-25 12:27:42 +00:00
|
|
|
if (!FullFS.empty())
|
|
|
|
FullFS = "+64bit," + FullFS;
|
|
|
|
else
|
|
|
|
FullFS = "+64bit";
|
2006-06-16 17:50:12 +00:00
|
|
|
}
|
2012-10-04 16:20:24 +00:00
|
|
|
|
2012-10-25 12:27:42 +00:00
|
|
|
// Parse features string.
|
|
|
|
ParseSubtargetFeatures(CPUName, FullFS);
|
|
|
|
|
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;
|
2006-12-11 23:22:45 +00:00
|
|
|
|
|
|
|
// Set up darwin-specific properties.
|
2009-08-11 22:49:34 +00:00
|
|
|
if (isDarwin())
|
2006-12-11 23:22:45 +00:00
|
|
|
HasLazyResolverStubs = true;
|
2013-01-30 23:43:27 +00: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 01:35:43 +00:00
|
|
|
|
|
|
|
// Determine endianness.
|
|
|
|
IsLittleEndian = (TargetTriple.getArch() == Triple::ppc64le);
|
2006-12-11 23:22:45 +00: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-02 22:11:08 +00:00
|
|
|
bool PPCSubtarget::hasLazyResolverStub(const GlobalValue *GV,
|
|
|
|
const TargetMachine &TM) const {
|
2010-11-15 02:46:57 +00:00
|
|
|
// We never have stubs if HasLazyResolverStubs=false or if in static mode.
|
2006-12-11 23:22:45 +00:00
|
|
|
if (!HasLazyResolverStubs || TM.getRelocationModel() == Reloc::Static)
|
|
|
|
return false;
|
2008-12-05 01:06:39 +00: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-27 20:34:15 +00:00
|
|
|
bool isDecl = GV->isDeclaration() && !GV->isMaterializable();
|
2008-12-05 01:06:39 +00:00
|
|
|
if (GV->hasHiddenVisibility() && !isDecl && !GV->hasCommonLinkage())
|
|
|
|
return false;
|
2006-12-11 23:22:45 +00:00
|
|
|
return GV->hasWeakLinkage() || GV->hasLinkOnceLinkage() ||
|
2008-12-05 01:06:39 +00:00
|
|
|
GV->hasCommonLinkage() || isDecl;
|
2005-08-04 07:12:09 +00:00
|
|
|
}
|
2011-12-02 04:58:02 +00:00
|
|
|
|
|
|
|
bool PPCSubtarget::enablePostRAScheduler(
|
|
|
|
CodeGenOpt::Level OptLevel,
|
|
|
|
TargetSubtargetInfo::AntiDepBreakMode& Mode,
|
|
|
|
RegClassVector& CriticalPathRCs) const {
|
2013-09-12 05:24:49 +00:00
|
|
|
Mode = TargetSubtargetInfo::ANTIDEP_ALL;
|
2011-12-02 04:58:02 +00:00
|
|
|
|
|
|
|
CriticalPathRCs.clear();
|
|
|
|
|
|
|
|
if (isPPC64())
|
|
|
|
CriticalPathRCs.push_back(&PPC::G8RCRegClass);
|
|
|
|
else
|
|
|
|
CriticalPathRCs.push_back(&PPC::GPRCRegClass);
|
2012-06-10 11:15:36 +00:00
|
|
|
|
2011-12-02 04:58:02 +00:00
|
|
|
return OptLevel >= CodeGenOpt::Default;
|
|
|
|
}
|
|
|
|
|
2013-09-11 23:05:25 +00:00
|
|
|
// Embedded cores need aggressive scheduling.
|
|
|
|
static bool needsAggressiveScheduling(unsigned Directive) {
|
|
|
|
switch (Directive) {
|
|
|
|
default: return false;
|
|
|
|
case PPC::DIR_440:
|
|
|
|
case PPC::DIR_A2:
|
|
|
|
case PPC::DIR_E500mc:
|
|
|
|
case PPC::DIR_E5500:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PPCSubtarget::enableMachineScheduler() const {
|
|
|
|
// Enable MI scheduling for the embedded cores.
|
|
|
|
// FIXME: Enable this for all cores (some additional modeling
|
|
|
|
// may be necessary).
|
|
|
|
return needsAggressiveScheduling(DarwinDirective);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
|
|
|
|
MachineInstr *begin,
|
|
|
|
MachineInstr *end,
|
|
|
|
unsigned NumRegionInstrs) const {
|
|
|
|
if (needsAggressiveScheduling(DarwinDirective)) {
|
|
|
|
Policy.OnlyTopDown = false;
|
|
|
|
Policy.OnlyBottomUp = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Spilling is generally expensive on all PPC cores, so always enable
|
|
|
|
// register-pressure tracking.
|
|
|
|
Policy.ShouldTrackPressure = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool PPCSubtarget::useAA() const {
|
|
|
|
// Use AA during code generation for the embedded cores.
|
|
|
|
return needsAggressiveScheduling(DarwinDirective);
|
|
|
|
}
|
|
|
|
|