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.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
//
|
2017-01-02 14:17:04 -05:00
|
|
|
/// \file This file describes the general parts of a Subtarget.
|
2009-06-02 13:52:33 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
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
|
|
|
//
|
2015-08-07 19:01:33 -04:00
|
|
|
TargetSubtargetInfo::TargetSubtargetInfo(
|
|
|
|
|
const Triple &TT, StringRef CPU, StringRef FS,
|
|
|
|
|
ArrayRef<SubtargetFeatureKV> PF, ArrayRef<SubtargetFeatureKV> PD,
|
|
|
|
|
const SubtargetInfoKV *ProcSched, const MCWriteProcResEntry *WPR,
|
|
|
|
|
const MCWriteLatencyEntry *WL, const MCReadAdvanceEntry *RA,
|
|
|
|
|
const InstrStage *IS, const unsigned *OC, const unsigned *FP)
|
|
|
|
|
: MCSubtargetInfo(TT, CPU, FS, PF, PD, ProcSched, WPR, WL, RA, IS, OC, FP) {
|
|
|
|
|
}
|
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
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-27 14:44:32 -04:00
|
|
|
bool TargetSubtargetInfo::enableJoinGlobalCopies() const {
|
|
|
|
|
return enableMachineScheduler();
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-24 04:08:18 -05:00
|
|
|
bool TargetSubtargetInfo::enableRALocalReassignment(
|
|
|
|
|
CodeGenOpt::Level OptLevel) const {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-21 09:59:01 -04:00
|
|
|
bool TargetSubtargetInfo::enablePostRAScheduler() 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;
|
|
|
|
|
}
|