2011-07-01 21:01:15 +00:00
|
|
|
//===-- TargetSubtargetInfo.cpp - General Target Information ---------------==//
|
2005-07-12 01:41:54 +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.
|
2005-07-12 01:41:54 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file describes the general parts of a Subtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-09-26 05:53:35 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2009-11-10 00:48:55 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2014-01-07 11:48:04 +00:00
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
2005-07-12 01:41:54 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
2011-07-01 21:01:15 +00:00
|
|
|
// TargetSubtargetInfo Class
|
2005-07-12 01:41:54 +00:00
|
|
|
//
|
2015-07-10 22:43:42 +00:00
|
|
|
TargetSubtargetInfo::TargetSubtargetInfo(
|
Re-commit r247683: Replace Triple with a new TargetTuple in MCTargetDesc/* and related. NFC.
Summary:
This is the first patch in the series to migrate Triple's (which are ambiguous)
to TargetTuple's (which aren't).
For the moment, TargetTuple simply passes all requests to the Triple object it
holds. Once it has replaced Triple, it will start to implement the interface in
a more suitable way.
This change makes some changes to the public C++ API. In particular,
InitMCSubtargetInfo(), createMCRelocationInfo(), and createMCSymbolizer()
now take TargetTuples instead of Triples. The other public C++ API's have
been left as-is for the moment to reduce patch size.
This commit also contains a trivial patch to clang to account for the C++ API
change. Thanks go to Pavel Labath for fixing LLDB for me.
Reviewers: rengolin
Subscribers: jyknight, dschuff, arsenm, rampitec, danalbert, srhines, javed.absar, dsanders, echristo, emaste, jholewinski, tberghammer, ted, jfb, llvm-commits, rengolin
Differential Revision: http://reviews.llvm.org/D10969
llvm-svn: 247692
2015-09-15 14:08:28 +00:00
|
|
|
const TargetTuple &TT, StringRef CPU, StringRef FS,
|
2015-07-10 22:43:42 +00: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 01:41:54 +00:00
|
|
|
|
2011-07-01 21:01:15 +00:00
|
|
|
TargetSubtargetInfo::~TargetSubtargetInfo() {}
|
2009-11-10 00:48:55 +00:00
|
|
|
|
2014-08-21 21:50:01 +00:00
|
|
|
bool TargetSubtargetInfo::enableAtomicExpand() const {
|
2014-06-19 21:03:04 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-11-13 08:47:29 +00:00
|
|
|
bool TargetSubtargetInfo::enableMachineScheduler() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-11 22:56:10 +00:00
|
|
|
bool TargetSubtargetInfo::enableJoinGlobalCopies() const {
|
|
|
|
return enableMachineScheduler();
|
|
|
|
}
|
|
|
|
|
2014-07-02 18:32:04 +00:00
|
|
|
bool TargetSubtargetInfo::enableRALocalReassignment(
|
|
|
|
CodeGenOpt::Level OptLevel) const {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-13 03:42:16 +00:00
|
|
|
bool TargetSubtargetInfo::enablePostRAScheduler() const {
|
2014-09-02 17:43:54 +00:00
|
|
|
return getSchedModel().PostRAScheduler;
|
2009-11-10 00:48:55 +00:00
|
|
|
}
|
|
|
|
|
2013-08-29 03:25:05 +00:00
|
|
|
bool TargetSubtargetInfo::useAA() const {
|
|
|
|
return false;
|
|
|
|
}
|