2012-02-18 12:03:15 +00:00
|
|
|
//===-- PPCSubtarget.h - Define Subtarget for the PPC ----------*- C++ -*--===//
|
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 declares the PowerPC specific subclass of TargetSubtargetInfo.
|
2005-08-04 07:12:09 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef POWERPCSUBTARGET_H
|
|
|
|
#define POWERPCSUBTARGET_H
|
|
|
|
|
2011-06-29 01:14:12 +00:00
|
|
|
#include "llvm/ADT/Triple.h"
|
2012-12-04 07:12:27 +00:00
|
|
|
#include "llvm/MC/MCInstrItineraries.h"
|
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2005-09-01 21:38:21 +00:00
|
|
|
#include <string>
|
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
2011-07-01 22:36:09 +00:00
|
|
|
#include "PPCGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2007-01-19 04:36:02 +00:00
|
|
|
// GCC #defines PPC on Linux but we use it as our namespace name
|
|
|
|
#undef PPC
|
|
|
|
|
2005-08-04 07:12:09 +00:00
|
|
|
namespace llvm {
|
2011-07-07 07:07:08 +00:00
|
|
|
class StringRef;
|
2006-12-12 20:57:08 +00:00
|
|
|
|
|
|
|
namespace PPC {
|
|
|
|
// -m directive values.
|
|
|
|
enum {
|
2008-02-14 23:35:16 +00:00
|
|
|
DIR_NONE,
|
2006-12-12 20:57:08 +00:00
|
|
|
DIR_32,
|
2012-10-29 15:51:35 +00:00
|
|
|
DIR_440,
|
|
|
|
DIR_601,
|
|
|
|
DIR_602,
|
|
|
|
DIR_603,
|
2006-12-12 20:57:08 +00:00
|
|
|
DIR_7400,
|
2012-10-29 15:51:35 +00:00
|
|
|
DIR_750,
|
|
|
|
DIR_970,
|
2012-04-01 19:22:40 +00:00
|
|
|
DIR_A2,
|
2012-08-28 16:12:39 +00:00
|
|
|
DIR_E500mc,
|
|
|
|
DIR_E5500,
|
2013-02-01 22:59:51 +00:00
|
|
|
DIR_PWR3,
|
|
|
|
DIR_PWR4,
|
|
|
|
DIR_PWR5,
|
|
|
|
DIR_PWR5X,
|
2012-06-11 15:43:08 +00:00
|
|
|
DIR_PWR6,
|
2013-02-01 22:59:51 +00:00
|
|
|
DIR_PWR6X,
|
2012-06-11 15:43:08 +00:00
|
|
|
DIR_PWR7,
|
2012-10-29 15:51:35 +00:00
|
|
|
DIR_64
|
2006-12-12 20:57:08 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2006-12-11 23:22:45 +00:00
|
|
|
class GlobalValue;
|
|
|
|
class TargetMachine;
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
class PPCSubtarget : public PPCGenSubtargetInfo {
|
2005-08-04 07:12:09 +00:00
|
|
|
protected:
|
|
|
|
/// stackAlignment - The minimum alignment known to hold of the stack frame on
|
|
|
|
/// entry to the function and which must be maintained by every function.
|
2005-08-05 22:05:03 +00:00
|
|
|
unsigned StackAlignment;
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2005-11-01 20:06:59 +00:00
|
|
|
/// Selected instruction itineraries (one entry per itinerary class.)
|
|
|
|
InstrItineraryData InstrItins;
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2006-12-12 20:57:08 +00:00
|
|
|
/// Which cpu directive was used.
|
|
|
|
unsigned DarwinDirective;
|
2005-08-04 07:12:09 +00:00
|
|
|
|
|
|
|
/// Used by the ISel to turn in optimizations for POWER4-derived architectures
|
2012-06-11 19:57:01 +00:00
|
|
|
bool HasMFOCRF;
|
2006-06-16 17:34:12 +00:00
|
|
|
bool Has64BitSupport;
|
|
|
|
bool Use64BitRegs;
|
2006-06-16 17:50:12 +00:00
|
|
|
bool IsPPC64;
|
2005-10-26 17:30:34 +00:00
|
|
|
bool HasAltivec;
|
2013-01-30 21:17:42 +00:00
|
|
|
bool HasQPX;
|
2013-10-16 20:38:58 +00:00
|
|
|
bool HasVSX;
|
2013-08-19 05:01:02 +00:00
|
|
|
bool HasFCPSGN;
|
2005-09-02 18:33:05 +00:00
|
|
|
bool HasFSQRT;
|
2013-04-03 04:01:11 +00:00
|
|
|
bool HasFRE, HasFRES, HasFRSQRTE, HasFRSQRTES;
|
|
|
|
bool HasRecipPrec;
|
2006-02-28 07:08:22 +00:00
|
|
|
bool HasSTFIWX;
|
2013-03-31 10:12:51 +00:00
|
|
|
bool HasLFIWAX;
|
2013-03-29 08:57:48 +00:00
|
|
|
bool HasFPRND;
|
2013-04-01 17:52:07 +00:00
|
|
|
bool HasFPCVT;
|
2012-06-22 23:10:08 +00:00
|
|
|
bool HasISEL;
|
2013-03-28 13:29:47 +00:00
|
|
|
bool HasPOPCNTD;
|
2013-03-28 19:25:55 +00:00
|
|
|
bool HasLDBRX;
|
2011-10-17 04:03:49 +00:00
|
|
|
bool IsBookE;
|
2013-09-12 14:40:06 +00:00
|
|
|
bool DeprecatedMFTB;
|
|
|
|
bool DeprecatedDST;
|
2006-12-11 23:22:45 +00:00
|
|
|
bool HasLazyResolverStubs;
|
2010-08-04 20:47:44 +00:00
|
|
|
bool IsJITCodeModel;
|
2013-07-26 01:35:43 +00:00
|
|
|
bool IsLittleEndian;
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2011-04-19 20:54:28 +00:00
|
|
|
/// TargetTriple - What processor and OS we're targeting.
|
|
|
|
Triple TargetTriple;
|
|
|
|
|
2005-08-04 07:12:09 +00:00
|
|
|
public:
|
|
|
|
/// This constructor initializes the data members to match that
|
2009-08-02 22:11:08 +00:00
|
|
|
/// of the specified triple.
|
2005-08-04 07:12:09 +00:00
|
|
|
///
|
2011-06-30 01:53:36 +00:00
|
|
|
PPCSubtarget(const std::string &TT, const std::string &CPU,
|
|
|
|
const std::string &FS, bool is64Bit);
|
2012-10-29 15:51:35 +00:00
|
|
|
|
|
|
|
/// ParseSubtargetFeatures - Parses features string setting specified
|
2005-10-26 18:07:50 +00:00
|
|
|
/// subtarget options. Definition of function is auto generated by tblgen.
|
2011-07-07 07:07:08 +00:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2012-10-29 15:51:35 +00:00
|
|
|
|
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 SetJITMode();
|
2005-08-04 07:12:09 +00:00
|
|
|
|
|
|
|
/// getStackAlignment - Returns the minimum alignment known to hold of the
|
|
|
|
/// stack frame on entry to the function and which must be maintained by every
|
|
|
|
/// function for this subtarget.
|
2005-08-05 22:05:03 +00:00
|
|
|
unsigned getStackAlignment() const { return StackAlignment; }
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2006-12-12 20:57:08 +00:00
|
|
|
/// getDarwinDirective - Returns the -m directive specified for the cpu.
|
|
|
|
///
|
|
|
|
unsigned getDarwinDirective() const { return DarwinDirective; }
|
2012-10-29 15:51:35 +00:00
|
|
|
|
|
|
|
/// getInstrItins - Return the instruction itineraies based on subtarget
|
2005-11-01 20:06:59 +00:00
|
|
|
/// selection.
|
2006-12-11 21:42:55 +00:00
|
|
|
const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
|
2006-06-16 17:50:12 +00:00
|
|
|
|
2013-07-15 22:29:40 +00:00
|
|
|
/// \brief Reset the features for the PowerPC target.
|
|
|
|
virtual void resetSubtargetFeatures(const MachineFunction *MF);
|
|
|
|
private:
|
|
|
|
void initializeEnvironment();
|
|
|
|
void resetSubtargetFeatures(StringRef CPU, StringRef FS);
|
|
|
|
|
|
|
|
public:
|
2006-06-16 17:50:12 +00:00
|
|
|
/// isPPC64 - Return true if we are generating code for 64-bit pointer mode.
|
|
|
|
///
|
|
|
|
bool isPPC64() const { return IsPPC64; }
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2006-06-16 17:50:12 +00:00
|
|
|
/// has64BitSupport - Return true if the selected CPU supports 64-bit
|
|
|
|
/// instructions, regardless of whether we are in 32-bit or 64-bit mode.
|
|
|
|
bool has64BitSupport() const { return Has64BitSupport; }
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2006-06-16 17:50:12 +00:00
|
|
|
/// use64BitRegs - Return true if in 64-bit mode or if we should use 64-bit
|
|
|
|
/// registers in 32-bit mode when possible. This can only true if
|
|
|
|
/// has64BitSupport() returns true.
|
|
|
|
bool use64BitRegs() const { return Use64BitRegs; }
|
2012-10-29 15:51:35 +00:00
|
|
|
|
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.
|
2012-10-29 15:51:35 +00:00
|
|
|
bool hasLazyResolverStub(const GlobalValue *GV,
|
2009-08-02 22:11:08 +00:00
|
|
|
const TargetMachine &TM) const;
|
2012-10-29 15:51:35 +00:00
|
|
|
|
2010-08-04 20:47:44 +00:00
|
|
|
// isJITCodeModel - True if we're generating code for the JIT
|
|
|
|
bool isJITCodeModel() const { return IsJITCodeModel; }
|
|
|
|
|
2013-07-26 01:35:43 +00:00
|
|
|
// isLittleEndian - True if generating little-endian code
|
|
|
|
bool isLittleEndian() const { return IsLittleEndian; }
|
|
|
|
|
2006-06-16 17:50:12 +00:00
|
|
|
// Specific obvious features.
|
2013-08-19 05:01:02 +00:00
|
|
|
bool hasFCPSGN() const { return HasFCPSGN; }
|
2005-09-02 18:33:05 +00:00
|
|
|
bool hasFSQRT() const { return HasFSQRT; }
|
2013-04-03 04:01:11 +00:00
|
|
|
bool hasFRE() const { return HasFRE; }
|
|
|
|
bool hasFRES() const { return HasFRES; }
|
|
|
|
bool hasFRSQRTE() const { return HasFRSQRTE; }
|
|
|
|
bool hasFRSQRTES() const { return HasFRSQRTES; }
|
|
|
|
bool hasRecipPrec() const { return HasRecipPrec; }
|
2006-02-28 07:08:22 +00:00
|
|
|
bool hasSTFIWX() const { return HasSTFIWX; }
|
2013-03-31 10:12:51 +00:00
|
|
|
bool hasLFIWAX() const { return HasLFIWAX; }
|
2013-03-29 08:57:48 +00:00
|
|
|
bool hasFPRND() const { return HasFPRND; }
|
2013-04-01 17:52:07 +00:00
|
|
|
bool hasFPCVT() const { return HasFPCVT; }
|
2005-10-26 17:30:34 +00:00
|
|
|
bool hasAltivec() const { return HasAltivec; }
|
2013-01-30 21:17:42 +00:00
|
|
|
bool hasQPX() const { return HasQPX; }
|
2012-06-11 19:57:01 +00:00
|
|
|
bool hasMFOCRF() const { return HasMFOCRF; }
|
2012-06-22 23:10:08 +00:00
|
|
|
bool hasISEL() const { return HasISEL; }
|
2013-03-28 13:29:47 +00:00
|
|
|
bool hasPOPCNTD() const { return HasPOPCNTD; }
|
2013-03-28 19:25:55 +00:00
|
|
|
bool hasLDBRX() const { return HasLDBRX; }
|
2011-10-17 04:03:49 +00:00
|
|
|
bool isBookE() const { return IsBookE; }
|
2013-09-12 14:40:06 +00:00
|
|
|
bool isDeprecatedMFTB() const { return DeprecatedMFTB; }
|
|
|
|
bool isDeprecatedDST() const { return DeprecatedDST; }
|
2007-01-16 09:29:17 +00:00
|
|
|
|
2011-04-19 20:54:28 +00:00
|
|
|
const Triple &getTargetTriple() const { return TargetTriple; }
|
|
|
|
|
2008-01-02 19:35:16 +00:00
|
|
|
/// isDarwin - True if this is any darwin platform.
|
2011-04-20 00:14:25 +00:00
|
|
|
bool isDarwin() const { return TargetTriple.isMacOSX(); }
|
2012-04-02 19:09:04 +00:00
|
|
|
/// isBGP - True if this is a BG/P platform.
|
|
|
|
bool isBGP() const { return TargetTriple.getVendor() == Triple::BGP; }
|
2013-01-29 00:22:47 +00:00
|
|
|
/// isBGQ - True if this is a BG/Q platform.
|
|
|
|
bool isBGQ() const { return TargetTriple.getVendor() == Triple::BGQ; }
|
2008-12-19 10:55:56 +00:00
|
|
|
|
2009-08-15 11:54:46 +00:00
|
|
|
bool isDarwinABI() const { return isDarwin(); }
|
|
|
|
bool isSVR4ABI() const { return !isDarwin(); }
|
|
|
|
|
2011-12-02 04:58:02 +00:00
|
|
|
/// enablePostRAScheduler - True at 'More' optimization.
|
|
|
|
bool enablePostRAScheduler(CodeGenOpt::Level OptLevel,
|
|
|
|
TargetSubtargetInfo::AntiDepBreakMode& Mode,
|
|
|
|
RegClassVector& CriticalPathRCs) const;
|
2013-09-11 23:05:25 +00:00
|
|
|
|
|
|
|
// Scheduling customization.
|
|
|
|
bool enableMachineScheduler() const;
|
|
|
|
void overrideSchedPolicy(MachineSchedPolicy &Policy,
|
|
|
|
MachineInstr *begin,
|
|
|
|
MachineInstr *end,
|
|
|
|
unsigned NumRegionInstrs) const;
|
|
|
|
bool useAA() const;
|
2005-08-04 07:12:09 +00:00
|
|
|
};
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|