2017-06-20 06:43:19 +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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2016-11-23 06:09:03 +08:00
|
|
|
/// \file This file describes the general parts of a Subtarget.
|
2005-07-12 09:41:54 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-06-20 06:43:19 +08:00
|
|
|
#include "llvm/ADT/Optional.h"
|
2017-04-14 15:44:23 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstr.h"
|
|
|
|
#include "llvm/CodeGen/TargetSchedule.h"
|
2017-06-20 06:43:19 +08:00
|
|
|
#include "llvm/MC/MCInst.h"
|
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
|
|
|
#include "llvm/Support/Format.h"
|
2017-04-14 15:44:23 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2017-06-20 06:43:19 +08:00
|
|
|
#include <string>
|
|
|
|
|
2005-07-12 09:41:54 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
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
|
|
|
|
2017-06-20 06:43:19 +08:00
|
|
|
TargetSubtargetInfo::~TargetSubtargetInfo() = default;
|
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;
|
|
|
|
}
|
2017-04-14 15:44:23 +08:00
|
|
|
|
|
|
|
static std::string createSchedInfoStr(unsigned Latency,
|
|
|
|
Optional<double> RThroughput) {
|
|
|
|
static const char *SchedPrefix = " sched: [";
|
|
|
|
std::string Comment;
|
|
|
|
raw_string_ostream CS(Comment);
|
|
|
|
if (Latency > 0 && RThroughput.hasValue())
|
|
|
|
CS << SchedPrefix << Latency << format(":%2.2f", RThroughput.getValue())
|
|
|
|
<< "]";
|
|
|
|
else if (Latency > 0)
|
|
|
|
CS << SchedPrefix << Latency << ":?]";
|
|
|
|
else if (RThroughput.hasValue())
|
|
|
|
CS << SchedPrefix << "?:" << RThroughput.getValue() << "]";
|
|
|
|
CS.flush();
|
|
|
|
return Comment;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns string representation of scheduler comment
|
|
|
|
std::string TargetSubtargetInfo::getSchedInfoStr(const MachineInstr &MI) const {
|
|
|
|
if (MI.isPseudo() || MI.isTerminator())
|
|
|
|
return std::string();
|
|
|
|
// We don't cache TSchedModel because it depends on TargetInstrInfo
|
|
|
|
// that could be changed during the compilation
|
|
|
|
TargetSchedModel TSchedModel;
|
|
|
|
TSchedModel.init(getSchedModel(), this, getInstrInfo());
|
|
|
|
unsigned Latency = TSchedModel.computeInstrLatency(&MI);
|
|
|
|
Optional<double> RThroughput = TSchedModel.computeInstrRThroughput(&MI);
|
|
|
|
return createSchedInfoStr(Latency, RThroughput);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns string representation of scheduler comment
|
|
|
|
std::string TargetSubtargetInfo::getSchedInfoStr(MCInst const &MCI) const {
|
|
|
|
// We don't cache TSchedModel because it depends on TargetInstrInfo
|
|
|
|
// that could be changed during the compilation
|
|
|
|
TargetSchedModel TSchedModel;
|
|
|
|
TSchedModel.init(getSchedModel(), this, getInstrInfo());
|
|
|
|
if (!TSchedModel.hasInstrSchedModel())
|
|
|
|
return std::string();
|
|
|
|
unsigned Latency = TSchedModel.computeInstrLatency(MCI.getOpcode());
|
|
|
|
Optional<double> RThroughput =
|
|
|
|
TSchedModel.computeInstrRThroughput(MCI.getOpcode());
|
|
|
|
return createSchedInfoStr(Latency, RThroughput);
|
|
|
|
}
|