mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-12 07:37:34 +00:00
Render MachineFunctions to HTML pages, with options to render register
pressure estimates and liveness alongside. Still experimental. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108698 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b68f7aea33
commit
54cc2efb4e
include/llvm/CodeGen
lib/CodeGen
@ -494,6 +494,11 @@ namespace llvm {
|
||||
return SlotIndex(front(), 0);
|
||||
}
|
||||
|
||||
/// Returns the base index of the last slot in this analysis.
|
||||
SlotIndex getLastIndex() {
|
||||
return SlotIndex(back(), 0);
|
||||
}
|
||||
|
||||
/// Returns the invalid index marker for this analysis.
|
||||
SlotIndex getInvalidIndex() {
|
||||
return getZeroIndex();
|
||||
|
@ -34,6 +34,7 @@
|
||||
#include "PBQP/HeuristicSolver.h"
|
||||
#include "PBQP/Graph.h"
|
||||
#include "PBQP/Heuristics/Briggs.h"
|
||||
#include "RenderMachineFunction.h"
|
||||
#include "Splitter.h"
|
||||
#include "VirtRegMap.h"
|
||||
#include "VirtRegRewriter.h"
|
||||
@ -105,6 +106,7 @@ namespace {
|
||||
if (pbqpPreSplitting)
|
||||
au.addRequired<LoopSplitter>();
|
||||
au.addRequired<VirtRegMap>();
|
||||
au.addRequired<RenderMachineFunction>();
|
||||
MachineFunctionPass::getAnalysisUsage(au);
|
||||
}
|
||||
|
||||
@ -866,6 +868,9 @@ bool PBQPRegAlloc::runOnMachineFunction(MachineFunction &MF) {
|
||||
|
||||
vrm = &getAnalysis<VirtRegMap>();
|
||||
|
||||
RenderMachineFunction *rmf = &getAnalysis<RenderMachineFunction>();
|
||||
rmf->renderMachineFunction("Prior to PBQP register allocation.");
|
||||
|
||||
DEBUG(dbgs() << "PBQP Register Allocating for " << mf->getFunction()->getName() << "\n");
|
||||
|
||||
// Allocator main loop:
|
||||
|
834
lib/CodeGen/RenderMachineFunction.cpp
Normal file
834
lib/CodeGen/RenderMachineFunction.cpp
Normal file
@ -0,0 +1,834 @@
|
||||
//===-- llvm/CodeGen/RenderMachineFunction.cpp - MF->HTML -----s-----------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#define DEBUG_TYPE "rendermf"
|
||||
|
||||
#include "RenderMachineFunction.h"
|
||||
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/CodeGen/LiveIntervalAnalysis.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineInstr.h"
|
||||
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/raw_ostream.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
|
||||
#include <sstream>
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
char RenderMachineFunction::ID = 0;
|
||||
static RegisterPass<RenderMachineFunction>
|
||||
X("rendermf", "Render machine functions (and related info) to HTML pages");
|
||||
|
||||
static cl::opt<std::string>
|
||||
outputFileSuffix("rmf-file-suffix",
|
||||
cl::desc("Appended to function name to get output file name "
|
||||
"(default: \".html\")"),
|
||||
cl::init(".html"), cl::Hidden);
|
||||
|
||||
static cl::opt<std::string>
|
||||
machineFuncsToRender("rmf-funcs",
|
||||
cl::desc("Coma seperated list of functions to render"
|
||||
", or \"*\"."),
|
||||
cl::init(""), cl::Hidden);
|
||||
|
||||
static cl::opt<std::string>
|
||||
pressureClasses("rmf-classes",
|
||||
cl::desc("Register classes to render pressure for."),
|
||||
cl::init(""), cl::Hidden);
|
||||
|
||||
static cl::opt<std::string>
|
||||
showIntervals("rmf-intervals",
|
||||
cl::desc("Live intervals to show alongside code."),
|
||||
cl::init(""), cl::Hidden);
|
||||
|
||||
static cl::opt<bool>
|
||||
showEmptyIndexes("rmf-empty-indexes",
|
||||
cl::desc("Render indexes not associated with instructions or "
|
||||
"MBB starts."),
|
||||
cl::init(false), cl::Hidden);
|
||||
|
||||
static cl::opt<bool>
|
||||
useFancyVerticals("rmf-fancy-verts",
|
||||
cl::desc("Use SVG for vertical text."),
|
||||
cl::init(true), cl::Hidden);
|
||||
|
||||
namespace llvm {
|
||||
|
||||
bool MFRenderingOptions::renderingOptionsProcessed;
|
||||
std::set<std::string> MFRenderingOptions::mfNamesToRender;
|
||||
bool MFRenderingOptions::renderAllMFs = false;
|
||||
|
||||
std::set<std::string> MFRenderingOptions::classNamesToRender;
|
||||
bool MFRenderingOptions::renderAllClasses = false;
|
||||
|
||||
std::set<std::pair<unsigned, unsigned> >
|
||||
MFRenderingOptions::intervalNumsToRender;
|
||||
unsigned MFRenderingOptions::intervalTypesToRender = ExplicitOnly;
|
||||
|
||||
template <typename OutputItr>
|
||||
void MFRenderingOptions::splitComaSeperatedList(const std::string &s,
|
||||
OutputItr outItr) {
|
||||
std::string::const_iterator curPos = s.begin();
|
||||
std::string::const_iterator nextComa = std::find(curPos, s.end(), ',');
|
||||
while (nextComa != s.end()) {
|
||||
std::string elem;
|
||||
std::copy(curPos, nextComa, std::back_inserter(elem));
|
||||
*outItr = elem;
|
||||
++outItr;
|
||||
curPos = llvm::next(nextComa);
|
||||
nextComa = std::find(curPos, s.end(), ',');
|
||||
}
|
||||
|
||||
if (curPos != s.end()) {
|
||||
std::string elem;
|
||||
std::copy(curPos, s.end(), std::back_inserter(elem));
|
||||
*outItr = elem;
|
||||
++outItr;
|
||||
}
|
||||
}
|
||||
|
||||
void MFRenderingOptions::processOptions() {
|
||||
if (!renderingOptionsProcessed) {
|
||||
processFuncNames();
|
||||
processRegClassNames();
|
||||
processIntervalNumbers();
|
||||
renderingOptionsProcessed = true;
|
||||
}
|
||||
}
|
||||
|
||||
void MFRenderingOptions::processFuncNames() {
|
||||
if (machineFuncsToRender == "*") {
|
||||
renderAllMFs = true;
|
||||
} else {
|
||||
splitComaSeperatedList(machineFuncsToRender,
|
||||
std::inserter(mfNamesToRender,
|
||||
mfNamesToRender.begin()));
|
||||
}
|
||||
}
|
||||
|
||||
void MFRenderingOptions::processRegClassNames() {
|
||||
if (pressureClasses == "*") {
|
||||
renderAllClasses = true;
|
||||
} else {
|
||||
splitComaSeperatedList(pressureClasses,
|
||||
std::inserter(classNamesToRender,
|
||||
classNamesToRender.begin()));
|
||||
}
|
||||
}
|
||||
|
||||
void MFRenderingOptions::processIntervalNumbers() {
|
||||
std::set<std::string> intervalRanges;
|
||||
splitComaSeperatedList(showIntervals,
|
||||
std::inserter(intervalRanges,
|
||||
intervalRanges.begin()));
|
||||
std::for_each(intervalRanges.begin(), intervalRanges.end(),
|
||||
processIntervalRange);
|
||||
}
|
||||
|
||||
void MFRenderingOptions::processIntervalRange(
|
||||
const std::string &intervalRangeStr) {
|
||||
if (intervalRangeStr == "*") {
|
||||
intervalTypesToRender |= All;
|
||||
} else if (intervalRangeStr == "virt*") {
|
||||
intervalTypesToRender |= VirtPlusExplicit;
|
||||
} else if (intervalRangeStr == "phys*") {
|
||||
intervalTypesToRender |= PhysPlusExplicit;
|
||||
} else {
|
||||
std::istringstream iss(intervalRangeStr);
|
||||
unsigned reg1, reg2;
|
||||
if ((iss >> reg1 >> std::ws)) {
|
||||
if (iss.eof()) {
|
||||
intervalNumsToRender.insert(std::make_pair(reg1, reg1 + 1));
|
||||
} else {
|
||||
char c;
|
||||
iss >> c;
|
||||
if (c == '-' && (iss >> reg2)) {
|
||||
intervalNumsToRender.insert(std::make_pair(reg1, reg2 + 1));
|
||||
} else {
|
||||
dbgs() << "Warning: Invalid interval range \""
|
||||
<< intervalRangeStr << "\" in -rmf-intervals. Skipping.\n";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
dbgs() << "Warning: Invalid interval number \""
|
||||
<< intervalRangeStr << "\" in -rmf-intervals. Skipping.\n";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void MFRenderingOptions::setup(MachineFunction *mf,
|
||||
const TargetRegisterInfo *tri,
|
||||
LiveIntervals *lis) {
|
||||
this->mf = mf;
|
||||
this->tri = tri;
|
||||
this->lis = lis;
|
||||
|
||||
clear();
|
||||
}
|
||||
|
||||
void MFRenderingOptions::clear() {
|
||||
regClassesTranslatedToCurrentFunction = false;
|
||||
regClassSet.clear();
|
||||
|
||||
intervalsTranslatedToCurrentFunction = false;
|
||||
intervalSet.clear();
|
||||
}
|
||||
|
||||
void MFRenderingOptions::resetRenderSpecificOptions() {
|
||||
intervalSet.clear();
|
||||
intervalsTranslatedToCurrentFunction = false;
|
||||
}
|
||||
|
||||
bool MFRenderingOptions::shouldRenderCurrentMachineFunction() const {
|
||||
processOptions();
|
||||
|
||||
return (renderAllMFs ||
|
||||
mfNamesToRender.find(mf->getFunction()->getName()) !=
|
||||
mfNamesToRender.end());
|
||||
}
|
||||
|
||||
const MFRenderingOptions::RegClassSet& MFRenderingOptions::regClasses() const{
|
||||
translateRegClassNamesToCurrentFunction();
|
||||
return regClassSet;
|
||||
}
|
||||
|
||||
const MFRenderingOptions::IntervalSet& MFRenderingOptions::intervals() const {
|
||||
translateIntervalNumbersToCurrentFunction();
|
||||
return intervalSet;
|
||||
}
|
||||
|
||||
bool MFRenderingOptions::renderEmptyIndexes() const {
|
||||
return showEmptyIndexes;
|
||||
}
|
||||
|
||||
bool MFRenderingOptions::fancyVerticals() const {
|
||||
return useFancyVerticals;
|
||||
}
|
||||
|
||||
void MFRenderingOptions::translateRegClassNamesToCurrentFunction() const {
|
||||
if (!regClassesTranslatedToCurrentFunction) {
|
||||
processOptions();
|
||||
for (TargetRegisterInfo::regclass_iterator rcItr = tri->regclass_begin(),
|
||||
rcEnd = tri->regclass_end();
|
||||
rcItr != rcEnd; ++rcItr) {
|
||||
const TargetRegisterClass *trc = *rcItr;
|
||||
if (renderAllClasses ||
|
||||
classNamesToRender.find(trc->getName()) !=
|
||||
classNamesToRender.end()) {
|
||||
regClassSet.insert(trc);
|
||||
}
|
||||
}
|
||||
regClassesTranslatedToCurrentFunction = true;
|
||||
}
|
||||
}
|
||||
|
||||
void MFRenderingOptions::translateIntervalNumbersToCurrentFunction() const {
|
||||
if (!intervalsTranslatedToCurrentFunction) {
|
||||
processOptions();
|
||||
|
||||
// If we're not just doing explicit then do a copy over all matching
|
||||
// types.
|
||||
if (intervalTypesToRender != ExplicitOnly) {
|
||||
for (LiveIntervals::iterator liItr = lis->begin(), liEnd = lis->end();
|
||||
liItr != liEnd; ++liItr) {
|
||||
|
||||
if ((TargetRegisterInfo::isPhysicalRegister(liItr->first) &&
|
||||
(intervalTypesToRender & PhysPlusExplicit)) ||
|
||||
(TargetRegisterInfo::isVirtualRegister(liItr->first) &&
|
||||
(intervalTypesToRender & VirtPlusExplicit))) {
|
||||
intervalSet.insert(liItr->second);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// If we need to process the explicit list...
|
||||
if (intervalTypesToRender != All) {
|
||||
for (std::set<std::pair<unsigned, unsigned> >::const_iterator
|
||||
regRangeItr = intervalNumsToRender.begin(),
|
||||
regRangeEnd = intervalNumsToRender.end();
|
||||
regRangeItr != regRangeEnd; ++regRangeItr) {
|
||||
const std::pair<unsigned, unsigned> &range = *regRangeItr;
|
||||
for (unsigned reg = range.first; reg != range.second; ++reg) {
|
||||
if (lis->hasInterval(reg)) {
|
||||
intervalSet.insert(&lis->getInterval(reg));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
intervalsTranslatedToCurrentFunction = true;
|
||||
}
|
||||
}
|
||||
|
||||
// ---------- TargetRegisterExtraInformation implementation ----------
|
||||
|
||||
TargetRegisterExtraInfo::TargetRegisterExtraInfo()
|
||||
: mapsPopulated(false) {
|
||||
}
|
||||
|
||||
void TargetRegisterExtraInfo::setup(MachineFunction *mf,
|
||||
MachineRegisterInfo *mri,
|
||||
const TargetRegisterInfo *tri,
|
||||
LiveIntervals *lis) {
|
||||
this->mf = mf;
|
||||
this->mri = mri;
|
||||
this->tri = tri;
|
||||
this->lis = lis;
|
||||
}
|
||||
|
||||
void TargetRegisterExtraInfo::reset() {
|
||||
if (!mapsPopulated) {
|
||||
initWorst();
|
||||
//initBounds();
|
||||
initCapacity();
|
||||
mapsPopulated = true;
|
||||
}
|
||||
|
||||
resetPressureAndLiveStates();
|
||||
}
|
||||
|
||||
void TargetRegisterExtraInfo::clear() {
|
||||
prWorst.clear();
|
||||
vrWorst.clear();
|
||||
capacityMap.clear();
|
||||
pressureMap.clear();
|
||||
//liveStatesMap.clear();
|
||||
mapsPopulated = false;
|
||||
}
|
||||
|
||||
void TargetRegisterExtraInfo::initWorst() {
|
||||
assert(!mapsPopulated && prWorst.empty() && vrWorst.empty() &&
|
||||
"Worst map already initialised?");
|
||||
|
||||
// Start with the physical registers.
|
||||
for (unsigned preg = 1; preg < tri->getNumRegs(); ++preg) {
|
||||
WorstMapLine &pregLine = prWorst[preg];
|
||||
|
||||
for (TargetRegisterInfo::regclass_iterator rcItr = tri->regclass_begin(),
|
||||
rcEnd = tri->regclass_end();
|
||||
rcItr != rcEnd; ++rcItr) {
|
||||
const TargetRegisterClass *trc = *rcItr;
|
||||
|
||||
unsigned numOverlaps = 0;
|
||||
for (TargetRegisterClass::iterator rItr = trc->begin(),
|
||||
rEnd = trc->end();
|
||||
rItr != rEnd; ++rItr) {
|
||||
unsigned trcPReg = *rItr;
|
||||
if (tri->regsOverlap(preg, trcPReg))
|
||||
++numOverlaps;
|
||||
}
|
||||
|
||||
pregLine[trc] = numOverlaps;
|
||||
}
|
||||
}
|
||||
|
||||
// Now the register classes.
|
||||
for (TargetRegisterInfo::regclass_iterator rc1Itr = tri->regclass_begin(),
|
||||
rcEnd = tri->regclass_end();
|
||||
rc1Itr != rcEnd; ++rc1Itr) {
|
||||
const TargetRegisterClass *trc1 = *rc1Itr;
|
||||
WorstMapLine &classLine = vrWorst[trc1];
|
||||
|
||||
for (TargetRegisterInfo::regclass_iterator rc2Itr = tri->regclass_begin();
|
||||
rc2Itr != rcEnd; ++rc2Itr) {
|
||||
const TargetRegisterClass *trc2 = *rc2Itr;
|
||||
|
||||
unsigned worst = 0;
|
||||
|
||||
for (TargetRegisterClass::iterator trc1Itr = trc1->begin(),
|
||||
trc1End = trc1->end();
|
||||
trc1Itr != trc1End; ++trc1Itr) {
|
||||
unsigned trc1Reg = *trc1Itr;
|
||||
unsigned trc1RegWorst = 0;
|
||||
|
||||
for (TargetRegisterClass::iterator trc2Itr = trc2->begin(),
|
||||
trc2End = trc2->end();
|
||||
trc2Itr != trc2End; ++trc2Itr) {
|
||||
unsigned trc2Reg = *trc2Itr;
|
||||
if (tri->regsOverlap(trc1Reg, trc2Reg))
|
||||
++trc1RegWorst;
|
||||
}
|
||||
if (trc1RegWorst > worst) {
|
||||
worst = trc1RegWorst;
|
||||
}
|
||||
}
|
||||
|
||||
if (worst != 0) {
|
||||
classLine[trc2] = worst;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
unsigned TargetRegisterExtraInfo::getWorst(
|
||||
unsigned reg,
|
||||
const TargetRegisterClass *trc) const {
|
||||
const WorstMapLine *wml = 0;
|
||||
if (TargetRegisterInfo::isPhysicalRegister(reg)) {
|
||||
PRWorstMap::const_iterator prwItr = prWorst.find(reg);
|
||||
assert(prwItr != prWorst.end() && "Missing prWorst entry.");
|
||||
wml = &prwItr->second;
|
||||
} else {
|
||||
const TargetRegisterClass *regTRC = mri->getRegClass(reg);
|
||||
VRWorstMap::const_iterator vrwItr = vrWorst.find(regTRC);
|
||||
assert(vrwItr != vrWorst.end() && "Missing vrWorst entry.");
|
||||
wml = &vrwItr->second;
|
||||
}
|
||||
|
||||
WorstMapLine::const_iterator wmlItr = wml->find(trc);
|
||||
if (wmlItr == wml->end())
|
||||
return 0;
|
||||
|
||||
return wmlItr->second;
|
||||
}
|
||||
|
||||
void TargetRegisterExtraInfo::initCapacity() {
|
||||
assert(!mapsPopulated && capacityMap.empty() &&
|
||||
"Capacity map already initialised?");
|
||||
|
||||
for (TargetRegisterInfo::regclass_iterator rcItr = tri->regclass_begin(),
|
||||
rcEnd = tri->regclass_end();
|
||||
rcItr != rcEnd; ++rcItr) {
|
||||
const TargetRegisterClass *trc = *rcItr;
|
||||
unsigned capacity = std::distance(trc->allocation_order_begin(*mf),
|
||||
trc->allocation_order_end(*mf));
|
||||
|
||||
if (capacity != 0)
|
||||
capacityMap[trc] = capacity;
|
||||
}
|
||||
}
|
||||
|
||||
unsigned TargetRegisterExtraInfo::getCapacity(
|
||||
const TargetRegisterClass *trc) const {
|
||||
CapacityMap::const_iterator cmItr = capacityMap.find(trc);
|
||||
assert(cmItr != capacityMap.end() &&
|
||||
"vreg with unallocable register class");
|
||||
return cmItr->second;
|
||||
}
|
||||
|
||||
void TargetRegisterExtraInfo::resetPressureAndLiveStates() {
|
||||
pressureMap.clear();
|
||||
//liveStatesMap.clear();
|
||||
|
||||
// Iterate over all slots.
|
||||
|
||||
|
||||
// Iterate over all live intervals.
|
||||
for (LiveIntervals::iterator liItr = lis->begin(),
|
||||
liEnd = lis->end();
|
||||
liItr != liEnd; ++liItr) {
|
||||
LiveInterval *li = liItr->second;
|
||||
|
||||
const TargetRegisterClass *liTRC;
|
||||
|
||||
if (TargetRegisterInfo::isPhysicalRegister(li->reg))
|
||||
continue;
|
||||
|
||||
liTRC = mri->getRegClass(li->reg);
|
||||
|
||||
|
||||
// For all ranges in the current interal.
|
||||
for (LiveInterval::iterator lrItr = li->begin(),
|
||||
lrEnd = li->end();
|
||||
lrItr != lrEnd; ++lrItr) {
|
||||
LiveRange *lr = &*lrItr;
|
||||
|
||||
// For all slots in the current range.
|
||||
for (SlotIndex i = lr->start; i != lr->end; i = i.getNextSlot()) {
|
||||
|
||||
// Record increased pressure at index for all overlapping classes.
|
||||
for (TargetRegisterInfo::regclass_iterator
|
||||
rcItr = tri->regclass_begin(),
|
||||
rcEnd = tri->regclass_end();
|
||||
rcItr != rcEnd; ++rcItr) {
|
||||
const TargetRegisterClass *trc = *rcItr;
|
||||
|
||||
if (trc->allocation_order_begin(*mf) ==
|
||||
trc->allocation_order_end(*mf))
|
||||
continue;
|
||||
|
||||
unsigned worstAtI = getWorst(li->reg, trc);
|
||||
|
||||
if (worstAtI != 0) {
|
||||
pressureMap[i][trc] += worstAtI;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
unsigned TargetRegisterExtraInfo::getPressureAtSlot(
|
||||
const TargetRegisterClass *trc,
|
||||
SlotIndex i) const {
|
||||
PressureMap::const_iterator pmItr = pressureMap.find(i);
|
||||
if (pmItr == pressureMap.end())
|
||||
return 0;
|
||||
const PressureMapLine &pmLine = pmItr->second;
|
||||
PressureMapLine::const_iterator pmlItr = pmLine.find(trc);
|
||||
if (pmlItr == pmLine.end())
|
||||
return 0;
|
||||
return pmlItr->second;
|
||||
}
|
||||
|
||||
bool TargetRegisterExtraInfo::classOverCapacityAtSlot(
|
||||
const TargetRegisterClass *trc,
|
||||
SlotIndex i) const {
|
||||
return (getPressureAtSlot(trc, i) > getCapacity(trc));
|
||||
}
|
||||
|
||||
// ---------- MachineFunctionRenderer implementation ----------
|
||||
|
||||
template <typename Iterator>
|
||||
std::string RenderMachineFunction::escapeChars(Iterator sBegin, Iterator sEnd) const {
|
||||
std::string r;
|
||||
|
||||
for (Iterator sItr = sBegin; sItr != sEnd; ++sItr) {
|
||||
char c = *sItr;
|
||||
|
||||
switch (c) {
|
||||
case '<': r.append("<"); break;
|
||||
case '>': r.append(">"); break;
|
||||
case '&': r.append("&"); break;
|
||||
case ' ': r.append(" "); break;
|
||||
case '\"': r.append("""); break;
|
||||
default: r.push_back(c); break;
|
||||
}
|
||||
}
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
template <typename OStream, typename T>
|
||||
void RenderMachineFunction::renderVertical(const std::string &indent,
|
||||
OStream &os,
|
||||
const T &t) const {
|
||||
if (ro.fancyVerticals()) {
|
||||
os << indent << "<object\n"
|
||||
<< indent << " class=\"obj\"\n"
|
||||
<< indent << " type=\"image/svg+xml\"\n"
|
||||
<< indent << " width=\"14px\"\n"
|
||||
<< indent << " height=\"55px\"\n"
|
||||
<< indent << " data=\"data:image/svg+xml,\n"
|
||||
<< indent << " <svg xmlns='http://www.w3.org/2000/svg'>\n"
|
||||
<< indent << " <text x='-55' y='10' "
|
||||
"font-family='Courier' font-size='12' "
|
||||
"transform='rotate(-90)' text-rendering='optimizeSpeed' "
|
||||
"fill='#000'>" << t << "</text>\n"
|
||||
<< indent << " </svg>\">\n"
|
||||
<< indent << "</object>\n";
|
||||
} else {
|
||||
std::ostringstream oss;
|
||||
oss << t;
|
||||
std::string tStr(oss.str());
|
||||
|
||||
os << indent;
|
||||
for (std::string::iterator tStrItr = tStr.begin(), tStrEnd = tStr.end();
|
||||
tStrItr != tStrEnd; ++tStrItr) {
|
||||
os << *tStrItr << "<br/> ";
|
||||
}
|
||||
os << "\n";
|
||||
}
|
||||
}
|
||||
|
||||
template <typename OStream>
|
||||
void RenderMachineFunction::insertCSS(const std::string &indent,
|
||||
OStream &os) const {
|
||||
os << indent << "<style type=\"text/css\">\n"
|
||||
<< indent << " body { font-color: black; }\n"
|
||||
<< indent << " table.code td { font-family: monospace; "
|
||||
"border-width: 0px; border-style: solid; "
|
||||
"border-bottom: 1px solid #dddddd; white-space: nowrap; }\n"
|
||||
<< indent << " table.code td.s-zp { background-color: #000000; }\n"
|
||||
<< indent << " table.code td.s-up { background-color: #00ff00; }\n"
|
||||
<< indent << " table.code td.s-op { background-color: #ff0000; }\n"
|
||||
<< indent << " table.code td.l-na { background-color: #ffffff; }\n"
|
||||
<< indent << " table.code td.l-def { background-color: #ff0000; }\n"
|
||||
<< indent << " table.code td.l-use { background-color: #ffff00; }\n"
|
||||
<< indent << " table.code td.l-sa { background-color: #000000; }\n"
|
||||
<< indent << " table.code th { border-width: 0px; "
|
||||
"border-style: solid; }\n"
|
||||
<< indent << "</style>\n";
|
||||
}
|
||||
|
||||
template <typename OStream>
|
||||
void RenderMachineFunction::renderFunctionSummary(
|
||||
const std::string &indent, OStream &os,
|
||||
const char * const renderContextStr) const {
|
||||
os << indent << "<h1>Function: " << mf->getFunction()->getName()
|
||||
<< "</h1>\n"
|
||||
<< indent << "<h2>Rendering context: " << renderContextStr << "</h2>\n";
|
||||
}
|
||||
|
||||
|
||||
template <typename OStream>
|
||||
void RenderMachineFunction::renderPressureTableLegend(
|
||||
const std::string &indent,
|
||||
OStream &os) const {
|
||||
os << indent << "<h2>Rendering Pressure Legend:</h2>\n"
|
||||
<< indent << "<table class=\"code\">\n"
|
||||
<< indent << " <tr>\n"
|
||||
<< indent << " <th>Pressure</th><th>Description</th>"
|
||||
"<th>Appearance</th>\n"
|
||||
<< indent << " </tr>\n"
|
||||
<< indent << " <tr>\n"
|
||||
<< indent << " <td>No Pressure</td>"
|
||||
" <td>No physical registers of this class requested.</td>"
|
||||
" <td class=\"s-zp\"> </td>\n"
|
||||
<< indent << " </tr>\n"
|
||||
<< indent << " <tr>\n"
|
||||
<< indent << " <td>Low Pressure</td>"
|
||||
" <td>Sufficient physical registers to meet demand.</td>"
|
||||
" <td class=\"s-up\"> </td>\n"
|
||||
<< indent << " </tr>\n"
|
||||
<< indent << " <tr>\n"
|
||||
<< indent << " <td>High Pressure</td>"
|
||||
" <td>Potentially insufficient physical registers to meet demand.</td>"
|
||||
" <td class=\"s-op\"> </td>\n"
|
||||
<< indent << " </tr>\n"
|
||||
<< indent << "</table>\n";
|
||||
}
|
||||
|
||||
template <typename OStream>
|
||||
void RenderMachineFunction::renderCodeTablePlusPI(const std::string & indent,
|
||||
OStream &os) const {
|
||||
|
||||
os << indent << "<table cellpadding=0 cellspacing=0 class=\"code\">\n"
|
||||
<< indent << " <tr>\n"
|
||||
<< indent << " <th>index</th>\n"
|
||||
<< indent << " <th>instr</th>\n";
|
||||
|
||||
// Header row:
|
||||
|
||||
if (!ro.regClasses().empty()) {
|
||||
for (MFRenderingOptions::RegClassSet::const_iterator
|
||||
rcItr = ro.regClasses().begin(),
|
||||
rcEnd = ro.regClasses().end();
|
||||
rcItr != rcEnd; ++rcItr) {
|
||||
const TargetRegisterClass *trc = *rcItr;
|
||||
os << indent << " <th>\n";
|
||||
renderVertical(indent + " ", os, trc->getName());
|
||||
os << indent << " </th>\n";
|
||||
}
|
||||
}
|
||||
|
||||
// FIXME: Is there a nicer way to insert space between columns in HTML?
|
||||
if (!ro.regClasses().empty() && !ro.intervals().empty())
|
||||
os << indent << " <th> </th>\n";
|
||||
|
||||
if (!ro.intervals().empty()) {
|
||||
for (MFRenderingOptions::IntervalSet::const_iterator
|
||||
liItr = ro.intervals().begin(),
|
||||
liEnd = ro.intervals().end();
|
||||
liItr != liEnd; ++liItr) {
|
||||
|
||||
const LiveInterval *li = *liItr;
|
||||
os << indent << " <th>\n";
|
||||
renderVertical(indent + " ", os, li->reg);
|
||||
os << indent << " </th>\n";
|
||||
}
|
||||
}
|
||||
|
||||
os << indent << " </tr>\n";
|
||||
|
||||
MachineInstr *mi = 0;
|
||||
|
||||
// Data rows:
|
||||
for (SlotIndex i = sis->getZeroIndex(); i != sis->getLastIndex();
|
||||
i = i.getNextSlot()) {
|
||||
|
||||
os << indent << " <tr height=6ex>\n";
|
||||
|
||||
if (i.getSlot() == SlotIndex::LOAD) {
|
||||
MachineBasicBlock *mbb = sis->getMBBFromIndex(i);
|
||||
mi = sis->getInstructionFromIndex(i);
|
||||
|
||||
if (i == sis->getMBBStartIdx(mbb) || mi != 0 ||
|
||||
ro.renderEmptyIndexes()) {
|
||||
os << indent << " <td rowspan=4>" << i << " </td>\n"
|
||||
<< indent << " <td rowspan=4>\n";
|
||||
|
||||
if (i == sis->getMBBStartIdx(mbb)) {
|
||||
os << indent << " BB#" << mbb->getNumber() << ": \n";
|
||||
} else if (mi != 0) {
|
||||
os << indent << " " << escapeChars(mi) << "\n";
|
||||
} else {
|
||||
os << indent << " \n";
|
||||
}
|
||||
os << indent << " </td>\n";
|
||||
} else {
|
||||
i = i.getStoreIndex(); // <- Will be incremented to the next index.
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
if (!ro.regClasses().empty()) {
|
||||
for (MFRenderingOptions::RegClassSet::const_iterator
|
||||
rcItr = ro.regClasses().begin(),
|
||||
rcEnd = ro.regClasses().end();
|
||||
rcItr != rcEnd; ++rcItr) {
|
||||
const TargetRegisterClass *trc = *rcItr;
|
||||
|
||||
os << indent << " <td class=\"";
|
||||
|
||||
if (trei.getPressureAtSlot(trc, i) == 0) {
|
||||
os << "s-zp";
|
||||
} else if (trei.classOverCapacityAtSlot(trc, i)){
|
||||
os << "s-op";
|
||||
} else {
|
||||
os << "s-up";
|
||||
}
|
||||
|
||||
os << "\"></td>\n";
|
||||
}
|
||||
}
|
||||
|
||||
// FIXME: Is there a nicer way to insert space between columns in HTML?
|
||||
if (!ro.regClasses().empty() && !ro.intervals().empty())
|
||||
os << indent << " <td width=2em></td>\n";
|
||||
|
||||
if (!ro.intervals().empty()) {
|
||||
for (MFRenderingOptions::IntervalSet::const_iterator
|
||||
liItr = ro.intervals().begin(),
|
||||
liEnd = ro.intervals().end();
|
||||
liItr != liEnd; ++liItr) {
|
||||
const LiveInterval *li = *liItr;
|
||||
os << indent << " <td class=\"";
|
||||
if (li->liveAt(i)) {
|
||||
if (mi == 0) {
|
||||
os << "l-sa";
|
||||
} else {
|
||||
if (i.getSlot() == SlotIndex::DEF &&
|
||||
mi->definesRegister(li->reg, tri)) {
|
||||
os << "l-def";
|
||||
} else if (i.getSlot() == SlotIndex::USE &&
|
||||
mi->readsRegister(li->reg)) {
|
||||
os << "l-use";
|
||||
} else {
|
||||
os << "l-sa";
|
||||
}
|
||||
}
|
||||
} else {
|
||||
os << "l-na";
|
||||
}
|
||||
os << "\"></td>\n";
|
||||
}
|
||||
}
|
||||
os << indent << " </tr>\n";
|
||||
}
|
||||
|
||||
os << indent << "</table>\n";
|
||||
|
||||
if (!ro.regClasses().empty())
|
||||
renderPressureTableLegend(indent, os);
|
||||
}
|
||||
|
||||
template <typename OStream>
|
||||
void RenderMachineFunction::renderWarnings(const std::string &indent,
|
||||
OStream &os) const {
|
||||
}
|
||||
|
||||
template <typename OStream>
|
||||
void RenderMachineFunction::renderFunctionPage(
|
||||
OStream &os,
|
||||
const char * const renderContextStr) const {
|
||||
os << "<html>\n"
|
||||
<< " <head>\n"
|
||||
<< " <title>" << fqn << "</title>\n";
|
||||
|
||||
insertCSS(" ", os);
|
||||
|
||||
os << " <head>\n"
|
||||
<< " <body >\n";
|
||||
|
||||
renderFunctionSummary(" ", os, renderContextStr);
|
||||
|
||||
os << " <br/><br/><br/>\n";
|
||||
|
||||
//renderLiveIntervalInfoTable(" ", os);
|
||||
|
||||
os << " <br/><br/><br/>\n";
|
||||
|
||||
renderCodeTablePlusPI(" ", os);
|
||||
|
||||
os << " </body>\n"
|
||||
<< "</html>\n";
|
||||
}
|
||||
|
||||
void RenderMachineFunction::getAnalysisUsage(AnalysisUsage &au) const {
|
||||
au.addRequired<SlotIndexes>();
|
||||
au.addRequired<LiveIntervals>();
|
||||
au.setPreservesAll();
|
||||
MachineFunctionPass::getAnalysisUsage(au);
|
||||
}
|
||||
|
||||
bool RenderMachineFunction::runOnMachineFunction(MachineFunction &fn) {
|
||||
mf = &fn;
|
||||
mri = &mf->getRegInfo();
|
||||
tri = mf->getTarget().getRegisterInfo();
|
||||
lis = &getAnalysis<LiveIntervals>();
|
||||
sis = &getAnalysis<SlotIndexes>();
|
||||
|
||||
trei.setup(mf, mri, tri, lis);
|
||||
ro.setup(mf, tri, lis);
|
||||
|
||||
fqn = mf->getFunction()->getParent()->getModuleIdentifier() + "." +
|
||||
mf->getFunction()->getName().str();
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
void RenderMachineFunction::releaseMemory() {
|
||||
trei.clear();
|
||||
ro.clear();
|
||||
}
|
||||
|
||||
void RenderMachineFunction::renderMachineFunction(
|
||||
const char *renderContextStr,
|
||||
const char *renderSuffix) {
|
||||
if (!ro.shouldRenderCurrentMachineFunction())
|
||||
return;
|
||||
|
||||
trei.reset();
|
||||
|
||||
std::string rpFileName(mf->getFunction()->getName().str() +
|
||||
(renderSuffix ? renderSuffix : "") +
|
||||
outputFileSuffix);
|
||||
|
||||
std::string errMsg;
|
||||
raw_fd_ostream outFile(rpFileName.c_str(), errMsg, raw_fd_ostream::F_Binary);
|
||||
|
||||
renderFunctionPage(outFile, renderContextStr);
|
||||
|
||||
ro.resetRenderSpecificOptions();
|
||||
}
|
||||
|
||||
void RenderMachineFunction::setupRenderingOptions() {
|
||||
|
||||
}
|
||||
|
||||
std::string RenderMachineFunction::escapeChars(const std::string &s) const {
|
||||
return escapeChars(s.begin(), s.end());
|
||||
}
|
||||
|
||||
std::string RenderMachineFunction::escapeChars(const MachineInstr *mi) const {
|
||||
std::string s;
|
||||
raw_string_ostream os(s);
|
||||
os << *mi;
|
||||
std::string s2 = os.str();
|
||||
return escapeChars(s2);
|
||||
}
|
||||
|
||||
}
|
291
lib/CodeGen/RenderMachineFunction.h
Normal file
291
lib/CodeGen/RenderMachineFunction.h
Normal file
@ -0,0 +1,291 @@
|
||||
//===-- llvm/CodeGen/RenderMachineFunction.h - MF->HTML -*- C++ -*---------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_CODEGEN_RENDERMACHINEFUNCTION_H
|
||||
#define LLVM_CODEGEN_RENDERMACHINEFUNCTION_H
|
||||
|
||||
#include "llvm/CodeGen/LiveInterval.h"
|
||||
#include "llvm/CodeGen/MachineFunctionPass.h"
|
||||
#include "llvm/CodeGen/SlotIndexes.h"
|
||||
#include "llvm/Target/TargetRegisterInfo.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <string>
|
||||
|
||||
namespace llvm {
|
||||
|
||||
class LiveInterval;
|
||||
class LiveIntervals;
|
||||
class MachineInstr;
|
||||
class MachineRegisterInfo;
|
||||
class TargetRegisterClass;
|
||||
class TargetRegisterInfo;
|
||||
|
||||
|
||||
/// \brief Provide extra information about the physical and virtual registers
|
||||
/// in the function being compiled.
|
||||
class TargetRegisterExtraInfo {
|
||||
public:
|
||||
TargetRegisterExtraInfo();
|
||||
|
||||
/// \brief Set up TargetRegisterExtraInfo with pointers to necessary
|
||||
/// sources of information.
|
||||
void setup(MachineFunction *mf, MachineRegisterInfo *mri,
|
||||
const TargetRegisterInfo *tri, LiveIntervals *lis);
|
||||
|
||||
/// \brief Recompute tables for changed function.
|
||||
void reset();
|
||||
|
||||
/// \brief Free all tables in TargetRegisterExtraInfo.
|
||||
void clear();
|
||||
|
||||
/// \brief Maximum number of registers from trc which alias reg.
|
||||
unsigned getWorst(unsigned reg, const TargetRegisterClass *trc) const;
|
||||
|
||||
/// \brief Returns the number of allocable registers in trc.
|
||||
unsigned getCapacity(const TargetRegisterClass *trc) const;
|
||||
|
||||
/// \brief Return the number of registers of class trc that may be
|
||||
/// needed at slot i.
|
||||
unsigned getPressureAtSlot(const TargetRegisterClass *trc,
|
||||
SlotIndex i) const;
|
||||
|
||||
/// \brief Return true if the number of registers of type trc that may be
|
||||
/// needed at slot i is greater than the capacity of trc.
|
||||
bool classOverCapacityAtSlot(const TargetRegisterClass *trc,
|
||||
SlotIndex i) const;
|
||||
|
||||
private:
|
||||
|
||||
MachineFunction *mf;
|
||||
MachineRegisterInfo *mri;
|
||||
const TargetRegisterInfo *tri;
|
||||
LiveIntervals *lis;
|
||||
|
||||
typedef std::map<const TargetRegisterClass*, unsigned> WorstMapLine;
|
||||
typedef std::map<const TargetRegisterClass*, WorstMapLine> VRWorstMap;
|
||||
VRWorstMap vrWorst;
|
||||
|
||||
typedef std::map<unsigned, WorstMapLine> PRWorstMap;
|
||||
PRWorstMap prWorst;
|
||||
|
||||
typedef std::map<const TargetRegisterClass*, unsigned> CapacityMap;
|
||||
CapacityMap capacityMap;
|
||||
|
||||
typedef std::map<const TargetRegisterClass*, unsigned> PressureMapLine;
|
||||
typedef std::map<SlotIndex, PressureMapLine> PressureMap;
|
||||
PressureMap pressureMap;
|
||||
|
||||
bool mapsPopulated;
|
||||
|
||||
/// \brief Initialise the 'worst' table.
|
||||
void initWorst();
|
||||
|
||||
/// \brief Initialise the 'capacity' table.
|
||||
void initCapacity();
|
||||
|
||||
/// \brief Initialise/Reset the 'pressure' and live states tables.
|
||||
void resetPressureAndLiveStates();
|
||||
};
|
||||
|
||||
/// \brief Helper class to process rendering options. Tries to be as lazy as
|
||||
/// possible.
|
||||
class MFRenderingOptions {
|
||||
public:
|
||||
|
||||
struct RegClassComp {
|
||||
bool operator()(const TargetRegisterClass *trc1,
|
||||
const TargetRegisterClass *trc2) const {
|
||||
std::string trc1Name(trc1->getName()), trc2Name(trc2->getName());
|
||||
return std::lexicographical_compare(trc1Name.begin(), trc1Name.end(),
|
||||
trc2Name.begin(), trc2Name.end());
|
||||
}
|
||||
};
|
||||
|
||||
typedef std::set<const TargetRegisterClass*, RegClassComp> RegClassSet;
|
||||
|
||||
struct IntervalComp {
|
||||
bool operator()(const LiveInterval *li1, const LiveInterval *li2) const {
|
||||
return li1->reg < li2->reg;
|
||||
}
|
||||
};
|
||||
|
||||
typedef std::set<const LiveInterval*, IntervalComp> IntervalSet;
|
||||
|
||||
/// Initialise the rendering options.
|
||||
void setup(MachineFunction *mf, const TargetRegisterInfo *tri,
|
||||
LiveIntervals *lis);
|
||||
|
||||
/// Clear translations of options to the current function.
|
||||
void clear();
|
||||
|
||||
/// Reset any options computed for this specific rendering.
|
||||
void resetRenderSpecificOptions();
|
||||
|
||||
/// Should we render the current function.
|
||||
bool shouldRenderCurrentMachineFunction() const;
|
||||
|
||||
/// Return the set of register classes to render pressure for.
|
||||
const RegClassSet& regClasses() const;
|
||||
|
||||
/// Return the set of live intervals to render liveness for.
|
||||
const IntervalSet& intervals() const;
|
||||
|
||||
/// Render indexes which are not associated with instructions / MBB starts.
|
||||
bool renderEmptyIndexes() const;
|
||||
|
||||
/// Return whether or not to render using SVG for fancy vertical text.
|
||||
bool fancyVerticals() const;
|
||||
|
||||
private:
|
||||
|
||||
static bool renderingOptionsProcessed;
|
||||
static std::set<std::string> mfNamesToRender;
|
||||
static bool renderAllMFs;
|
||||
|
||||
static std::set<std::string> classNamesToRender;
|
||||
static bool renderAllClasses;
|
||||
|
||||
|
||||
static std::set<std::pair<unsigned, unsigned> > intervalNumsToRender;
|
||||
typedef enum { ExplicitOnly = 0,
|
||||
VirtPlusExplicit = 1,
|
||||
PhysPlusExplicit = 2,
|
||||
All = 3 }
|
||||
IntervalTypesToRender;
|
||||
static unsigned intervalTypesToRender;
|
||||
|
||||
template <typename OutputItr>
|
||||
static void splitComaSeperatedList(const std::string &s, OutputItr outItr);
|
||||
|
||||
static void processOptions();
|
||||
|
||||
static void processFuncNames();
|
||||
static void processRegClassNames();
|
||||
static void processIntervalNumbers();
|
||||
|
||||
static void processIntervalRange(const std::string &intervalRangeStr);
|
||||
|
||||
MachineFunction *mf;
|
||||
const TargetRegisterInfo *tri;
|
||||
LiveIntervals *lis;
|
||||
|
||||
mutable bool regClassesTranslatedToCurrentFunction;
|
||||
mutable RegClassSet regClassSet;
|
||||
|
||||
mutable bool intervalsTranslatedToCurrentFunction;
|
||||
mutable IntervalSet intervalSet;
|
||||
|
||||
void translateRegClassNamesToCurrentFunction() const;
|
||||
|
||||
void translateIntervalNumbersToCurrentFunction() const;
|
||||
};
|
||||
|
||||
/// \brief Render MachineFunction objects and related information to a HTML
|
||||
/// page.
|
||||
class RenderMachineFunction : public MachineFunctionPass {
|
||||
public:
|
||||
static char ID;
|
||||
|
||||
RenderMachineFunction() : MachineFunctionPass(&ID) {}
|
||||
|
||||
virtual void getAnalysisUsage(AnalysisUsage &au) const;
|
||||
|
||||
virtual bool runOnMachineFunction(MachineFunction &fn);
|
||||
|
||||
virtual void releaseMemory();
|
||||
|
||||
/// \brief Render this machine function to HTML.
|
||||
///
|
||||
/// @param renderContextStr This parameter will be included in the top of
|
||||
/// the html file to explain where (in the
|
||||
/// codegen pipeline) this function was rendered
|
||||
/// from. Set it to something like
|
||||
/// "Pre-register-allocation".
|
||||
/// @param renderFilePrefix This string will be appended to the function
|
||||
/// name (before the output file suffix) to enable
|
||||
/// multiple renderings from the same function.
|
||||
void renderMachineFunction(const char *renderContextStr,
|
||||
const char *renderSuffix = 0);
|
||||
|
||||
private:
|
||||
|
||||
std::string fqn;
|
||||
|
||||
MachineFunction *mf;
|
||||
MachineRegisterInfo *mri;
|
||||
const TargetRegisterInfo *tri;
|
||||
LiveIntervals *lis;
|
||||
SlotIndexes *sis;
|
||||
|
||||
TargetRegisterExtraInfo trei;
|
||||
MFRenderingOptions ro;
|
||||
|
||||
// ---------- Utility functions ----------
|
||||
|
||||
void setupRenderingOptions();
|
||||
|
||||
// ---------- Rendering methods ----------
|
||||
|
||||
template <typename Iterator>
|
||||
std::string escapeChars(Iterator sBegin, Iterator sEnd) const;
|
||||
|
||||
/// \brief Render vertical text.
|
||||
template <typename OStream, typename T>
|
||||
void renderVertical(const std::string &indent,
|
||||
OStream &os,
|
||||
const T &t) const;
|
||||
|
||||
/// \brief Insert CSS layout info.
|
||||
template <typename OStream>
|
||||
void insertCSS(const std::string &indent,
|
||||
OStream &os) const;
|
||||
|
||||
/// \brief Render a brief summary of the function (including rendering
|
||||
/// context).
|
||||
template <typename OStream>
|
||||
void renderFunctionSummary(const std::string &indent,
|
||||
OStream &os,
|
||||
const char * const renderContextStr) const;
|
||||
|
||||
/// \brief Render a legend for the pressure table.
|
||||
template <typename OStream>
|
||||
void renderPressureTableLegend(const std::string &indent,
|
||||
OStream &os) const;
|
||||
|
||||
/// \brief Render code listing, potentially with register pressure
|
||||
/// and live intervals shown alongside.
|
||||
template <typename OStream>
|
||||
void renderCodeTablePlusPI(const std::string &indent,
|
||||
OStream &os) const;
|
||||
|
||||
/// \brief Render warnings about the machine function, or weird rendering
|
||||
/// parameter combinations (e.g. rendering specified live intervals
|
||||
/// over more than one machine function).
|
||||
template <typename OStream>
|
||||
void renderWarnings(const std::string &indent,
|
||||
OStream &os) const;
|
||||
|
||||
/// \brief Render the HTML page representing the MachineFunction.
|
||||
template <typename OStream>
|
||||
void renderFunctionPage(OStream &os,
|
||||
const char * const renderContextStr) const;
|
||||
|
||||
std::string escapeChars(const std::string &s) const;
|
||||
|
||||
std::string escapeChars(const MachineInstr *mi) const;
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif /* LLVM_CODEGEN_RENDERMACHINEFUNCTION_H */
|
Loading…
x
Reference in New Issue
Block a user