2011-07-17 15:36:56 +00:00
|
|
|
//===-- TargetSubtargetInfo.cpp - General Target Information ---------------==//
|
2009-06-02 17:52:33 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the general parts of a Subtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-11-18 14:58:34 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2011-07-17 15:36:56 +00:00
|
|
|
// TargetSubtargetInfo Class
|
2009-06-02 17:52:33 +00:00
|
|
|
//
|
2011-07-17 15:36:56 +00:00
|
|
|
TargetSubtargetInfo::TargetSubtargetInfo() {}
|
2009-06-02 17:52:33 +00:00
|
|
|
|
2011-07-17 15:36:56 +00:00
|
|
|
TargetSubtargetInfo::~TargetSubtargetInfo() {}
|
2009-11-18 14:58:34 +00:00
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
// Temporary option to compare overall performance change when moving from the
|
2014-11-24 09:08:18 +00:00
|
|
|
// SD scheduler to the MachineScheduler pass pipeline. This is convenient for
|
|
|
|
// benchmarking during the transition from SD to MI scheduling. Once armv7 makes
|
|
|
|
// the switch, it should go away. The normal way to enable/disable the
|
|
|
|
// MachineScheduling pass itself is by using -enable-misched. For targets that
|
|
|
|
// already use MI sched (via MySubTarget::enableMachineScheduler())
|
|
|
|
// -misched-bench=false negates the subtarget hook.
|
2013-12-22 00:04:03 +00:00
|
|
|
static cl::opt<bool> BenchMachineSched("misched-bench", cl::Hidden,
|
|
|
|
cl::desc("Migrate from the target's default SD scheduler to MI scheduler"));
|
|
|
|
|
|
|
|
bool TargetSubtargetInfo::useMachineScheduler() const {
|
|
|
|
if (BenchMachineSched.getNumOccurrences())
|
|
|
|
return BenchMachineSched;
|
|
|
|
return enableMachineScheduler();
|
|
|
|
}
|
|
|
|
|
2015-01-18 16:17:27 +00:00
|
|
|
bool TargetSubtargetInfo::enableAtomicExpand() const {
|
2014-11-24 09:08:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-04-08 18:41:23 +00:00
|
|
|
bool TargetSubtargetInfo::enableMachineScheduler() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
bool TargetSubtargetInfo::enableRALocalReassignment(
|
|
|
|
CodeGenOpt::Level OptLevel) const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TargetSubtargetInfo::enablePostMachineScheduler() const {
|
2015-01-18 16:17:27 +00:00
|
|
|
return getSchedModel().PostRAScheduler;
|
2009-11-18 14:58:34 +00:00
|
|
|
}
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
bool TargetSubtargetInfo::useAA() const {
|
|
|
|
return false;
|
|
|
|
}
|