2011-07-02 05:01:15 +08:00
|
|
|
//===-- TargetSubtargetInfo.cpp - General Target Information ---------------==//
|
2005-07-12 09:41:54 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-07-12 09:41:54 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the general parts of a Subtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-09-26 13:53:35 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-11-10 08:48:55 +08:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2014-01-07 19:48:04 +08:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2005-07-12 09:41:54 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2011-07-02 05:01:15 +08:00
|
|
|
// TargetSubtargetInfo Class
|
2005-07-12 09:41:54 +08:00
|
|
|
//
|
2015-07-11 06:43:42 +08:00
|
|
|
TargetSubtargetInfo::TargetSubtargetInfo(
|
2015-09-16 00:17:27 +08:00
|
|
|
const Triple &TT, StringRef CPU, StringRef FS,
|
2015-07-11 06:43:42 +08:00
|
|
|
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) {
|
|
|
|
}
|
2005-07-12 09:41:54 +08:00
|
|
|
|
2011-07-02 05:01:15 +08:00
|
|
|
TargetSubtargetInfo::~TargetSubtargetInfo() {}
|
2009-11-10 08:48:55 +08:00
|
|
|
|
2014-08-22 05:50:01 +08:00
|
|
|
bool TargetSubtargetInfo::enableAtomicExpand() const {
|
2014-06-20 05:03:04 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-13 16:47:29 +08:00
|
|
|
bool TargetSubtargetInfo::enableMachineScheduler() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-12 06:56:10 +08:00
|
|
|
bool TargetSubtargetInfo::enableJoinGlobalCopies() const {
|
|
|
|
return enableMachineScheduler();
|
|
|
|
}
|
|
|
|
|
2014-07-03 02:32:04 +08:00
|
|
|
bool TargetSubtargetInfo::enableRALocalReassignment(
|
|
|
|
CodeGenOpt::Level OptLevel) const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-13 11:42:16 +08:00
|
|
|
bool TargetSubtargetInfo::enablePostRAScheduler() const {
|
2014-09-03 01:43:54 +08:00
|
|
|
return getSchedModel().PostRAScheduler;
|
2009-11-10 08:48:55 +08:00
|
|
|
}
|
|
|
|
|
2013-08-29 11:25:05 +08:00
|
|
|
bool TargetSubtargetInfo::useAA() const {
|
|
|
|
return false;
|
|
|
|
}
|