2012-02-18 12:03:15 +00:00
|
|
|
//===-- ARMSubtarget.cpp - ARM Subtarget Information ----------------------===//
|
2007-01-19 07:51:42 +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.
|
2007-01-19 07:51:42 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2011-07-01 21:01:15 +00:00
|
|
|
// This file implements the ARM specific subclass of TargetSubtargetInfo.
|
2007-01-19 07:51:42 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "ARMSubtarget.h"
|
2012-09-18 03:18:56 +00:00
|
|
|
#include "ARMBaseInstrInfo.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "ARMBaseRegisterInfo.h"
|
2009-08-28 23:18:09 +00:00
|
|
|
#include "llvm/GlobalValue.h"
|
2009-06-22 21:01:46 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2012-12-03 16:50:05 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
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 "ARMGenSubtargetInfo.inc"
|
2011-07-01 20:45:01 +00:00
|
|
|
|
2007-01-19 07:51:42 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2009-06-22 21:01:46 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
ReserveR9("arm-reserve-r9", cl::Hidden,
|
|
|
|
cl::desc("Reserve R9, making it unavailable as GPR"));
|
|
|
|
|
2009-11-24 00:44:37 +00:00
|
|
|
static cl::opt<bool>
|
2011-01-21 18:55:51 +00:00
|
|
|
DarwinUseMOVT("arm-darwin-use-movt", cl::init(true), cl::Hidden);
|
2009-11-24 00:44:37 +00:00
|
|
|
|
2012-09-29 21:43:49 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
UseFusedMulOps("arm-use-mulops",
|
|
|
|
cl::init(true), cl::Hidden);
|
|
|
|
|
2010-09-28 04:09:35 +00:00
|
|
|
static cl::opt<bool>
|
|
|
|
StrictAlign("arm-strict-align", cl::Hidden,
|
|
|
|
cl::desc("Disallow all unaligned memory accesses"));
|
|
|
|
|
2011-06-30 01:53:36 +00:00
|
|
|
ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU,
|
2011-07-07 00:08:19 +00:00
|
|
|
const std::string &FS)
|
2011-07-07 07:07:08 +00:00
|
|
|
: ARMGenSubtargetInfo(TT, CPU, FS)
|
2010-09-10 01:29:16 +00:00
|
|
|
, ARMProcFamily(Others)
|
2011-07-07 03:55:05 +00:00
|
|
|
, HasV4TOps(false)
|
|
|
|
, HasV5TOps(false)
|
|
|
|
, HasV5TEOps(false)
|
|
|
|
, HasV6Ops(false)
|
|
|
|
, HasV6T2Ops(false)
|
|
|
|
, HasV7Ops(false)
|
|
|
|
, HasVFPv2(false)
|
|
|
|
, HasVFPv3(false)
|
2012-01-22 12:07:33 +00:00
|
|
|
, HasVFPv4(false)
|
2011-07-07 03:55:05 +00:00
|
|
|
, HasNEON(false)
|
2010-03-25 23:47:34 +00:00
|
|
|
, UseNEONForSinglePrecisionFP(false)
|
2012-09-29 21:43:49 +00:00
|
|
|
, UseMulOps(UseFusedMulOps)
|
2010-12-05 22:04:16 +00:00
|
|
|
, SlowFPVMLx(false)
|
2011-04-01 09:20:31 +00:00
|
|
|
, HasVMLxForwarding(false)
|
2010-08-09 19:19:36 +00:00
|
|
|
, SlowFPBrcc(false)
|
2011-07-07 19:05:12 +00:00
|
|
|
, InThumbMode(false)
|
2011-07-07 00:08:19 +00:00
|
|
|
, HasThumb2(false)
|
2011-09-28 14:21:38 +00:00
|
|
|
, IsMClass(false)
|
2010-08-11 07:17:46 +00:00
|
|
|
, NoARM(false)
|
2009-09-30 00:10:16 +00:00
|
|
|
, PostRAScheduler(false)
|
2009-06-22 21:01:46 +00:00
|
|
|
, IsR9Reserved(ReserveR9)
|
2011-01-17 08:03:18 +00:00
|
|
|
, UseMovt(false)
|
2011-10-07 17:17:49 +00:00
|
|
|
, SupportsTailCall(false)
|
2010-03-14 18:42:38 +00:00
|
|
|
, HasFP16(false)
|
2010-10-12 16:22:47 +00:00
|
|
|
, HasD16(false)
|
2010-05-05 23:44:43 +00:00
|
|
|
, HasHardwareDivide(false)
|
2012-09-29 21:43:49 +00:00
|
|
|
, HasHardwareDivideInARM(false)
|
2010-05-05 23:44:43 +00:00
|
|
|
, HasT2ExtractPack(false)
|
2010-08-11 06:22:01 +00:00
|
|
|
, HasDataBarrier(false)
|
2010-08-09 19:19:36 +00:00
|
|
|
, Pref32BitThumb(false)
|
2011-04-19 18:11:49 +00:00
|
|
|
, AvoidCPSRPartialUpdate(false)
|
2012-04-22 11:52:41 +00:00
|
|
|
, HasRAS(false)
|
2010-11-03 06:34:55 +00:00
|
|
|
, HasMPExtension(false)
|
2010-08-11 15:44:15 +00:00
|
|
|
, FPOnlySP(false)
|
2010-09-28 04:09:35 +00:00
|
|
|
, AllowsUnalignedMem(false)
|
2011-07-01 21:12:19 +00:00
|
|
|
, Thumb2DSP(false)
|
2007-02-13 19:52:28 +00:00
|
|
|
, stackAlignment(4)
|
2011-06-30 01:53:36 +00:00
|
|
|
, CPUString(CPU)
|
2011-01-11 21:46:47 +00:00
|
|
|
, TargetTriple(TT)
|
2007-02-13 19:52:28 +00:00
|
|
|
, TargetABI(ARM_ABI_APCS) {
|
2007-01-19 07:51:42 +00:00
|
|
|
// Determine default and user specified characteristics
|
2011-06-30 01:53:36 +00:00
|
|
|
if (CPUString.empty())
|
|
|
|
CPUString = "generic";
|
2009-03-08 04:02:49 +00:00
|
|
|
|
2011-06-30 02:12:44 +00:00
|
|
|
// Insert the architecture feature derived from the target triple into the
|
|
|
|
// feature string. This is important for setting features that are implied
|
|
|
|
// based on the architecture version.
|
2012-04-26 01:13:36 +00:00
|
|
|
std::string ArchFS = ARM_MC::ParseARMTriple(TT, CPUString);
|
2011-07-07 00:08:19 +00:00
|
|
|
if (!FS.empty()) {
|
|
|
|
if (!ArchFS.empty())
|
|
|
|
ArchFS = ArchFS + "," + FS;
|
|
|
|
else
|
|
|
|
ArchFS = FS;
|
|
|
|
}
|
2011-07-07 07:07:08 +00:00
|
|
|
ParseSubtargetFeatures(CPUString, ArchFS);
|
2011-07-07 00:08:19 +00:00
|
|
|
|
|
|
|
// Thumb2 implies at least V6T2. FIXME: Fix tests to explicitly specify a
|
|
|
|
// ARM version or CPU and then remove this.
|
2011-07-07 03:55:05 +00:00
|
|
|
if (!HasV6T2Ops && hasThumb2())
|
|
|
|
HasV4TOps = HasV5TOps = HasV5TEOps = HasV6Ops = HasV6T2Ops = true;
|
2010-11-09 22:50:47 +00:00
|
|
|
|
2012-08-08 02:44:16 +00:00
|
|
|
// Keep a pointer to static instruction cost data for the specified CPU.
|
|
|
|
SchedModel = getSchedModelForCPU(CPUString);
|
|
|
|
|
2011-07-01 20:45:01 +00:00
|
|
|
// Initialize scheduling itinerary for the specified CPU.
|
|
|
|
InstrItins = getInstrItineraryForCPU(CPUString);
|
|
|
|
|
2012-04-27 02:11:10 +00:00
|
|
|
if ((TT.find("eabi") != std::string::npos) || (isTargetIOS() && isMClass()))
|
2012-02-21 20:46:00 +00:00
|
|
|
// FIXME: We might want to separate AAPCS and EABI. Some systems, e.g.
|
|
|
|
// Darwin-EABI conforms to AACPS but not the rest of EABI.
|
2011-07-07 07:07:08 +00:00
|
|
|
TargetABI = ARM_ABI_AAPCS;
|
|
|
|
|
2007-02-13 19:52:28 +00:00
|
|
|
if (isAAPCS_ABI())
|
|
|
|
stackAlignment = 8;
|
|
|
|
|
2011-12-20 18:26:50 +00:00
|
|
|
if (!isTargetIOS())
|
2011-01-17 08:03:18 +00:00
|
|
|
UseMovt = hasV6T2Ops();
|
|
|
|
else {
|
2011-07-07 03:55:05 +00:00
|
|
|
IsR9Reserved = ReserveR9 | !HasV6Ops;
|
2011-01-21 18:55:51 +00:00
|
|
|
UseMovt = DarwinUseMOVT && hasV6T2Ops();
|
2012-02-21 20:46:00 +00:00
|
|
|
SupportsTailCall = !getTargetTriple().isOSVersionLT(5, 0);
|
2011-01-17 08:03:18 +00:00
|
|
|
}
|
2009-10-01 21:46:35 +00:00
|
|
|
|
2009-10-16 06:11:08 +00:00
|
|
|
if (!isThumb() || hasThumb2())
|
|
|
|
PostRAScheduler = true;
|
2010-09-28 04:09:35 +00:00
|
|
|
|
|
|
|
// v6+ may or may not support unaligned mem access depending on the system
|
|
|
|
// configuration.
|
|
|
|
if (!StrictAlign && hasV6Ops() && isTargetDarwin())
|
|
|
|
AllowsUnalignedMem = true;
|
2007-01-19 07:51:42 +00:00
|
|
|
}
|
2009-08-28 23:18:09 +00:00
|
|
|
|
|
|
|
/// GVIsIndirectSymbol - true if the GV will be accessed via an indirect symbol.
|
2009-09-03 07:04:02 +00:00
|
|
|
bool
|
2010-04-15 01:51:59 +00:00
|
|
|
ARMSubtarget::GVIsIndirectSymbol(const GlobalValue *GV,
|
|
|
|
Reloc::Model RelocM) const {
|
2009-09-03 07:04:02 +00:00
|
|
|
if (RelocM == Reloc::Static)
|
2009-08-28 23:18:09 +00:00
|
|
|
return false;
|
2009-09-03 07:04:02 +00:00
|
|
|
|
2010-01-27 20:34:15 +00:00
|
|
|
// Materializable GVs (in JIT lazy compilation mode) do not require an extra
|
|
|
|
// load from stub.
|
2011-02-22 06:58:34 +00:00
|
|
|
bool isDecl = GV->hasAvailableExternallyLinkage();
|
|
|
|
if (GV->isDeclaration() && !GV->isMaterializable())
|
|
|
|
isDecl = true;
|
2009-09-03 07:04:02 +00:00
|
|
|
|
|
|
|
if (!isTargetDarwin()) {
|
|
|
|
// Extra load is needed for all externally visible.
|
|
|
|
if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
if (RelocM == Reloc::PIC_) {
|
|
|
|
// If this is a strong reference to a definition, it is definitely not
|
|
|
|
// through a stub.
|
|
|
|
if (!isDecl && !GV->isWeakForLinker())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Unless we have a symbol with hidden visibility, we have to go through a
|
|
|
|
// normal $non_lazy_ptr stub because this symbol might be resolved late.
|
|
|
|
if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// If symbol visibility is hidden, we have a stub for common symbol
|
|
|
|
// references and external declarations.
|
|
|
|
if (isDecl || GV->hasCommonLinkage())
|
|
|
|
// Hidden $non_lazy_ptr reference.
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
// If this is a strong reference to a definition, it is definitely not
|
|
|
|
// through a stub.
|
|
|
|
if (!isDecl && !GV->isWeakForLinker())
|
|
|
|
return false;
|
2010-12-24 04:28:06 +00:00
|
|
|
|
2009-09-03 07:04:02 +00:00
|
|
|
// Unless we have a symbol with hidden visibility, we have to go through a
|
|
|
|
// normal $non_lazy_ptr stub because this symbol might be resolved late.
|
|
|
|
if (!GV->hasHiddenVisibility()) // Non-hidden $non_lazy_ptr reference.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2009-08-28 23:18:09 +00:00
|
|
|
}
|
2009-11-10 00:48:55 +00:00
|
|
|
|
2010-09-28 21:57:50 +00:00
|
|
|
unsigned ARMSubtarget::getMispredictionPenalty() const {
|
2012-08-08 02:44:16 +00:00
|
|
|
return SchedModel->MispredictPenalty;
|
2010-09-28 21:57:50 +00:00
|
|
|
}
|
|
|
|
|
2009-11-10 00:48:55 +00:00
|
|
|
bool ARMSubtarget::enablePostRAScheduler(
|
|
|
|
CodeGenOpt::Level OptLevel,
|
2011-07-01 21:01:15 +00:00
|
|
|
TargetSubtargetInfo::AntiDepBreakMode& Mode,
|
2009-11-13 19:52:48 +00:00
|
|
|
RegClassVector& CriticalPathRCs) const {
|
2011-07-01 21:01:15 +00:00
|
|
|
Mode = TargetSubtargetInfo::ANTIDEP_CRITICAL;
|
2009-11-13 19:52:48 +00:00
|
|
|
CriticalPathRCs.clear();
|
|
|
|
CriticalPathRCs.push_back(&ARM::GPRRegClass);
|
2009-11-10 00:48:55 +00:00
|
|
|
return PostRAScheduler && OptLevel >= CodeGenOpt::Default;
|
|
|
|
}
|