2011-07-17 11:36:56 -04:00
|
|
|
//===-- TargetSubtargetInfo.cpp - General Target Information ---------------==//
|
2009-06-02 13:52:33 -04: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-21 19:04:03 -05:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-11-18 09:58:34 -05:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2014-11-24 04:08:18 -05:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2009-06-02 13:52:33 -04:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2011-07-17 11:36:56 -04:00
|
|
|
// TargetSubtargetInfo Class
|
2009-06-02 13:52:33 -04:00
|
|
|
//
|
2011-07-17 11:36:56 -04:00
|
|
|
TargetSubtargetInfo::TargetSubtargetInfo() {}
|
2009-06-02 13:52:33 -04:00
|
|
|
|
2011-07-17 11:36:56 -04:00
|
|
|
TargetSubtargetInfo::~TargetSubtargetInfo() {}
|
2009-11-18 09:58:34 -05:00
|
|
|
|
2013-12-21 19:04:03 -05:00
|
|
|
// Temporary option to compare overall performance change when moving from the
|
2014-11-24 04:08:18 -05: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-21 19:04:03 -05: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 11:17:27 -05:00
|
|
|
bool TargetSubtargetInfo::enableAtomicExpand() const {
|
2014-11-24 04:08:18 -05:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-08 14:41:23 -04:00
|
|
|
bool TargetSubtargetInfo::enableMachineScheduler() const {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-24 04:08:18 -05:00
|
|
|
bool TargetSubtargetInfo::enableRALocalReassignment(
|
|
|
|
|
CodeGenOpt::Level OptLevel) const {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool TargetSubtargetInfo::enablePostMachineScheduler() const {
|
2015-01-18 11:17:27 -05:00
|
|
|
return getSchedModel().PostRAScheduler;
|
2009-11-18 09:58:34 -05:00
|
|
|
}
|
|
|
|
|
|
2013-12-21 19:04:03 -05:00
|
|
|
bool TargetSubtargetInfo::useAA() const {
|
|
|
|
|
return false;
|
|
|
|
|
}
|