51#ifdef EXPENSIVE_CHECKS
63 cl::desc(
"Print before passes that change them"),
70 cl::desc(
"system dot used by change reporters"));
98 cl::desc(
"Generate dot files into specified directory for changed IRs"),
103 "print-on-crash-path",
104 cl::desc(
"Print the last form of the IR before crash to a file"),
109 cl::desc(
"Print the last form of the IR before crash (use -print-on-crash-path to dump to a file)"),
113 "opt-bisect-print-ir-path",
118 cl::desc(
"Print pass names and their ordinals"));
122 cl::desc(
"Print IR before the passes with specified numbers as "
123 "reported by print-pass-numbers"));
127 cl::desc(
"Print IR after the passes with specified numbers as "
128 "reported by print-pass-numbers"));
132 cl::desc(
"If specified, IR printed using the "
133 "-print-[before|after]{-all} options will be dumped into "
134 "files in this directory rather than written to stderr"),
139 cl::desc(
"Dump dropped debug variables stats"),
153 cl::desc(
"exe called with module IR after each pass that "
166 return F->getParent();
173 return F.getParent();
176 assert(!Force &&
"Expected a module");
181 const Function *
F =
L->getHeader()->getParent();
184 return F->getParent();
190 return MF->getFunction().getParent();
204 M->print(OS,
nullptr);
206 for (
const auto &
F : M->functions()) {
222 const Function *
F = L->getHeader()->getParent();
239 return F->getName().str();
245 return "loop %" + L->getName().str() +
" in function " +
246 L->getHeader()->getParent()->getName().str();
254bool moduleContainsFilterPrintFunc(
const Module &M) {
255 return any_of(M.functions(),
257 return isFunctionInPrintList(F.getName());
272 return moduleContainsFilterPrintFunc(*M);
278 return sccContainsFilterPrintFunc(*
C);
291 if (!shouldPrintIR(
IR))
295 auto *M = unwrapModule(
IR);
296 assert(M &&
"should have unwrapped module");
331 {
"PassManager",
"PassAdaptor",
"AnalysisManagerProxy",
332 "DevirtSCCRepeatedPass",
"ModuleInlinerWrapperPass",
333 "VerifierPass",
"PrintModulePass",
"PrintMIRPass",
334 "PrintMIRPreparePass",
"RequireAnalysisPass",
335 "InvalidateAnalysisPass"});
343 S.append(Clean.
str());
347 S.append(SR[0] ==
'<' ?
"<" :
">");
358 return C->begin()->getFunction().getParent();
362bool isInterestingFunction(
const Function &
F) {
372 return isInterestingFunction(*
F);
410 std::string Name = getIRName(
IR);
412 if (isIgnored(PassID)) {
426 if (Before == After) {
451 PIC.registerBeforeNonSkippedPassCallback(
456 PIC.registerAfterPassCallback(
460 PIC.registerAfterPassInvalidatedCallback(
474 auto *M = unwrapModule(
IR,
true);
475 assert(M &&
"Expected module to be unwrapped when forced.");
476 Out <<
"*** IR Dump At Start ***\n";
477 M->print(
Out,
nullptr);
482 Out <<
formatv(
"*** IR Dump After {0} on {1} omitted because no change ***\n",
488 Out <<
formatv(
"*** IR Pass {0} invalidated ***\n", PassID);
495 formatv(
"*** IR Dump After {0} on {1} filtered out ***\n", PassID, Name);
501 Out <<
formatv(
"*** IR Pass {0} on {1} ignored ***\n", PassID, Name);
513 std::string &Output) {
515 unwrapAndPrint(OS,
IR);
520 const std::string &Before,
524 Out <<
"*** IR Dump Before " << PassID <<
" on " << Name <<
" ***\n"
530 Out <<
"*** IR Deleted After " << PassID <<
" on " << Name <<
" ***\n";
534 Out <<
"*** IR Dump After " << PassID <<
" on " << Name <<
" ***\n" << After;
540 if (TestChanged !=
"")
550 dbgs() <<
"Unable to create temporary file.";
555 dbgs() <<
"Unable to find test-changed executable.";
559 StringRef Args[] = {TestChanged, FileName[0], PassID};
562 dbgs() <<
"Error executing test-changed executable.";
567 dbgs() <<
"Unable to remove temporary file.";
583 const std::string &Before,
592 const auto &BFD = Before.
getData();
593 const auto &AFD = After.
getData();
594 std::vector<std::string>::const_iterator BI = Before.
getOrder().begin();
595 std::vector<std::string>::const_iterator BE = Before.
getOrder().end();
596 std::vector<std::string>::const_iterator AI = After.
getOrder().begin();
597 std::vector<std::string>::const_iterator AE = After.
getOrder().end();
599 auto HandlePotentiallyRemovedData = [&](std::string S) {
603 HandlePair(&BFD.find(*BI)->getValue(),
nullptr);
606 auto HandleNewData = [&](std::vector<const T *> &Q) {
608 for (
const T *NBI : Q)
609 HandlePair(
nullptr, NBI);
622 std::vector<const T *> NewDataQueue;
624 if (!BFD.count(*AI)) {
627 NewDataQueue.emplace_back(&AFD.find(*AI)->getValue());
636 while (BI != BE && *BI != *AI) {
637 HandlePotentiallyRemovedData(*BI);
641 HandleNewData(NewDataQueue);
643 const T &AData = AFD.find(*AI)->getValue();
644 const T &BData = BFD.find(*AI)->getValue();
645 HandlePair(&BData, &AData);
653 HandlePotentiallyRemovedData(*BI);
657 HandleNewData(NewDataQueue);
663 std::function<
void(
bool InModule,
unsigned Minor,
666 if (!CompareModule) {
669 "Expected only one function.");
670 CompareFunc(
false, 0,
Before.getData().begin()->getValue(),
671 After.getData().begin()->getValue());
679 assert((
B ||
A) &&
"Both functions cannot be missing.");
684 CompareFunc(
true, Minor++, *
B, *
A);
690 if (
const Module *M = getModuleForComparison(
IR)) {
703 auto *
F = L->getHeader()->getParent();
725template <
typename FunctionT>
730 for (
const auto &
B :
F) {
731 std::string BBName =
B.getName().str();
732 if (BBName.empty()) {
739 Data.getOrder().emplace_back(
F.getName());
740 Data.getData().insert({
F.getName(), FD});
747 assert(PassRunDescriptorStack.empty() &&
748 "PassRunDescriptorStack is not empty at exit");
752 const Module *M = unwrapModule(
IR,
true);
753 assert(M &&
"should have unwrapped module");
755 unsigned MaxHashWidth =
sizeof(
uint64_t) * 2;
758 ResultStream <<
"-module";
760 ResultStream <<
"-function-";
765 ResultStream <<
"-scc-";
769 ResultStream <<
"-loop-";
773 ResultStream <<
"-machine-function-";
789StringRef PrintIRInstrumentation::getFileSuffix(IRDumpFileSuffixType
Type) {
790 static constexpr std::array FileSuffixes = {
"-before.ll",
"-after.ll",
792 return FileSuffixes[
static_cast<size_t>(
Type)];
795std::string PrintIRInstrumentation::fetchDumpFilename(
797 IRDumpFileSuffixType SuffixType) {
799 "The flag -ir-dump-directory must be passed to dump IR to files");
802 raw_svector_ostream FilenameStream(
Filename);
803 FilenameStream << PassNumber;
804 FilenameStream <<
'-' << IRFileDisplayName <<
'-';
806 FilenameStream << getFileSuffix(SuffixType);
808 SmallString<128> ResultPath;
810 return std::string(ResultPath);
813void PrintIRInstrumentation::pushPassRunDescriptor(
StringRef PassID,
815 unsigned PassNumber) {
818 getIRName(
IR), PassID);
821PrintIRInstrumentation::PassRunDescriptor
822PrintIRInstrumentation::popPassRunDescriptor(
StringRef PassID) {
823 assert(!PassRunDescriptorStack.empty() &&
"empty PassRunDescriptorStack");
824 PassRunDescriptor Descriptor = PassRunDescriptorStack.pop_back_val();
825 assert(Descriptor.PassID == PassID &&
"malformed PassRunDescriptorStack");
833 if (!ParentPath.empty()) {
837 " to support -ir-dump-directory: " + EC.message());
844 " to support -ir-dump-directory: " + EC.message());
849 if (isIgnored(PassID))
856 if (shouldPrintAfterPass(PassID))
857 pushPassRunDescriptor(PassID,
IR, CurrentPassNumber);
859 if (!shouldPrintIR(
IR))
864 if (shouldPrintPassNumbers())
865 dbgs() <<
" Running pass " << CurrentPassNumber <<
" " << PassID
866 <<
" on " << getIRName(
IR) <<
"\n";
868 if (shouldPrintAfterCurrentPassNumber())
869 pushPassRunDescriptor(PassID,
IR, CurrentPassNumber);
871 if (!shouldPrintBeforePass(PassID) && !shouldPrintBeforeCurrentPassNumber())
874 auto WriteIRToStream = [&](raw_ostream &Stream) {
875 Stream <<
"; *** IR Dump Before ";
876 if (shouldPrintBeforeSomePassNumber())
877 Stream << CurrentPassNumber <<
"-";
878 Stream << PassID <<
" on " << getIRName(
IR) <<
" ***\n";
879 unwrapAndPrint(Stream,
IR);
883 std::string DumpIRFilename =
885 IRDumpFileSuffixType::Before);
886 llvm::raw_fd_ostream DumpIRFileStream{
888 WriteIRToStream(DumpIRFileStream);
890 WriteIRToStream(
dbgs());
895 if (isIgnored(PassID))
898 if (!shouldPrintAfterPass(PassID) && !shouldPrintAfterCurrentPassNumber())
901 auto [
M, PassNumber, IRFileDisplayName, IRName, StoredPassID] =
902 popPassRunDescriptor(PassID);
903 assert(StoredPassID == PassID &&
"mismatched PassID");
905 if (!shouldPrintIR(
IR) ||
906 (!shouldPrintAfterPass(PassID) && !shouldPrintAfterCurrentPassNumber()))
909 auto WriteIRToStream = [&](raw_ostream &Stream,
const StringRef IRName) {
910 Stream <<
"; *** IR Dump After ";
911 if (shouldPrintAfterSomePassNumber())
912 Stream << CurrentPassNumber <<
"-";
913 Stream << StringRef(
formatv(
"{0}", PassID)) <<
" on " << IRName <<
" ***\n";
914 unwrapAndPrint(Stream,
IR);
918 std::string DumpIRFilename =
920 IRDumpFileSuffixType::After);
921 llvm::raw_fd_ostream DumpIRFileStream{
924 WriteIRToStream(DumpIRFileStream, IRName);
926 WriteIRToStream(
dbgs(), IRName);
930void PrintIRInstrumentation::printAfterPassInvalidated(
StringRef PassID) {
931 if (isIgnored(PassID))
934 if (!shouldPrintAfterPass(PassID) && !shouldPrintAfterCurrentPassNumber())
937 auto [
M, PassNumber, IRFileDisplayName, IRName, StoredPassID] =
938 popPassRunDescriptor(PassID);
939 assert(StoredPassID == PassID &&
"mismatched PassID");
943 (!shouldPrintAfterPass(PassID) && !shouldPrintAfterCurrentPassNumber()))
946 auto WriteIRToStream = [&](raw_ostream &Stream,
const Module *
M,
947 const StringRef IRName) {
948 SmallString<20> Banner;
949 Banner =
formatv(
"; *** IR Dump After {0} on {1} (invalidated) ***", PassID,
951 Stream << Banner <<
"\n";
956 std::string DumpIRFilename =
957 fetchDumpFilename(PassID, IRFileDisplayName, PassNumber,
958 IRDumpFileSuffixType::Invalidated);
959 llvm::raw_fd_ostream DumpIRFileStream{
962 WriteIRToStream(DumpIRFileStream, M, IRName);
964 WriteIRToStream(
dbgs(), M, IRName);
968bool PrintIRInstrumentation::shouldPrintBeforePass(
StringRef PassID) {
972 StringRef
PassName = PIC->getPassNameForClassName(PassID);
976bool PrintIRInstrumentation::shouldPrintAfterPass(
StringRef PassID) {
980 StringRef
PassName = PIC->getPassNameForClassName(PassID);
984bool PrintIRInstrumentation::shouldPrintBeforeCurrentPassNumber() {
985 return shouldPrintBeforeSomePassNumber() &&
989bool PrintIRInstrumentation::shouldPrintAfterCurrentPassNumber() {
990 return shouldPrintAfterSomePassNumber() &&
994bool PrintIRInstrumentation::shouldPrintPassNumbers() {
998bool PrintIRInstrumentation::shouldPrintBeforeSomePassNumber() {
1002bool PrintIRInstrumentation::shouldPrintAfterSomePassNumber() {
1013 if (shouldPrintPassNumbers() || shouldPrintBeforeSomePassNumber() ||
1020 PIC.registerAfterPassCallback(
1022 this->printAfterPass(
P,
IR);
1024 PIC.registerAfterPassInvalidatedCallback(
1026 this->printAfterPassInvalidated(
P);
1033 PIC.registerShouldRunOptionalPassCallback(
1038 bool ShouldRun =
true;
1040 ShouldRun = !
F->hasOptNone();
1042 ShouldRun = !L->getHeader()->getParent()->hasOptNone();
1046 if (!ShouldRun && DebugLogging) {
1047 errs() <<
"Skipping pass " << PassID <<
" on " << getIRName(
IR)
1048 <<
" due to optnone attribute\n";
1058 Context.getOptPassGate().shouldRunPass(
PassName, getIRName(
IR));
1062 this->HasWrittenIR =
true;
1063 const Module *M = unwrapModule(
IR,
true);
1064 assert((M && &M->getContext() == &Context) &&
"Missing/Mismatching Module");
1069 M->print(OS,
nullptr);
1076 const OptPassGate &PassGate = Context.getOptPassGate();
1080 PIC.registerShouldRunOptionalPassCallback(
1102 std::vector<StringRef> SpecialPasses;
1103 if (!Opts.Verbose) {
1104 SpecialPasses.emplace_back(
"PassManager");
1105 SpecialPasses.emplace_back(
"PassAdaptor");
1108 PIC.registerBeforeSkippedPassCallback([
this, SpecialPasses](
StringRef PassID,
1111 "Unexpectedly skipping special pass");
1113 print() <<
"Skipping pass: " << PassID <<
" on " << getIRName(
IR) <<
"\n";
1115 PIC.registerBeforeNonSkippedPassCallback(
1121 OS <<
"Running pass: " << PassID <<
" on " << getIRName(
IR);
1123 unsigned Count =
F->getInstructionCount();
1124 OS <<
" (" <<
Count <<
" instruction";
1130 OS <<
" (" <<
Count <<
" node";
1138 PIC.registerAfterPassCallback(
1146 PIC.registerAfterPassInvalidatedCallback(
1154 if (!Opts.SkipAnalyses) {
1156 print() <<
"Running analysis: " << PassID <<
" on " << getIRName(
IR)
1160 PIC.registerAfterAnalysisCallback(
1162 PIC.registerAnalysisInvalidatedCallback([
this](
StringRef PassID,
1164 print() <<
"Invalidating analysis: " << PassID <<
" on " << getIRName(
IR)
1167 PIC.registerAnalysesClearedCallback([
this](
StringRef IRName) {
1168 print() <<
"Clearing all analysis results for: " << IRName <<
"\n";
1174 bool TrackBBLifetime) {
1175 if (TrackBBLifetime)
1177 for (
const auto &BB : *
F) {
1179 BBGuards->try_emplace(intptr_t(&BB), &BB);
1183 BBGuards->try_emplace(intptr_t(Succ), Succ);
1190 out << BB->
getName() <<
"<" << BB <<
">";
1195 out <<
"unnamed_removed<" << BB <<
">";
1201 <<
"<" << BB <<
">";
1205 unsigned FuncOrderBlockNum = 0;
1209 FuncOrderBlockNum++;
1211 out <<
"unnamed_" << FuncOrderBlockNum <<
"<" << BB <<
">";
1219 out <<
"Some blocks were deleted\n";
1224 if (Before.
Graph.size() != After.
Graph.size())
1225 out <<
"Different number of non-leaf basic blocks: before="
1226 << Before.
Graph.size() <<
", after=" << After.
Graph.size() <<
"\n";
1228 for (
auto &BB : Before.
Graph) {
1229 auto BA = After.
Graph.find(BB.first);
1230 if (BA == After.
Graph.end()) {
1231 out <<
"Non-leaf block ";
1233 out <<
" is removed (" << BB.second.size() <<
" successors)\n";
1237 for (
auto &BA : After.
Graph) {
1238 auto BB = Before.
Graph.find(BA.first);
1239 if (BB == Before.
Graph.end()) {
1240 out <<
"Non-leaf block ";
1242 out <<
" is added (" << BA.second.size() <<
" successors)\n";
1246 if (BB->second == BA.second)
1249 out <<
"Different successors of block ";
1251 out <<
" (unordered):\n";
1252 out <<
"- before (" << BB->second.size() <<
"): ";
1253 for (
auto &SuccB : BB->second) {
1255 if (SuccB.second != 1)
1256 out <<
"(" << SuccB.second <<
"), ";
1261 out <<
"- after (" << BA.second.size() <<
"): ";
1262 for (
auto &SuccA : BA.second) {
1264 if (SuccA.second != 1)
1265 out <<
"(" << SuccA.second <<
"), ";
1336 FunctionAnalysisManager::Invalidator &) {
1346 Functions.push_back(
const_cast<Function *
>(MaybeF));
1349 Functions.push_back(&
F);
1359 bool Registered =
false;
1360 PIC.registerBeforeNonSkippedPassCallback([
this, &
MAM,
1363#if LLVM_ENABLE_ABI_BREAKING_CHECKS
1364 assert(&PassStack.emplace_back(
P));
1369 *
const_cast<Module *
>(unwrapModule(
IR,
true)))
1385 auto &M = *
const_cast<Module *
>(MPtr);
1390 PIC.registerAfterPassInvalidatedCallback(
1392#if LLVM_ENABLE_ABI_BREAKING_CHECKS
1393 assert(PassStack.pop_back_val() ==
P &&
1394 "Before and After callbacks must correspond");
1401#if LLVM_ENABLE_ABI_BREAKING_CHECKS
1402 assert(PassStack.pop_back_val() ==
P &&
1403 "Before and After callbacks must correspond");
1411 *
const_cast<Module *
>(unwrapModule(
IR,
true)))
1415 if (
auto *HashBefore =
1419 "Function @{0} changed by {1} without invalidating analyses",
1425 const CFG &GraphBefore,
const CFG &GraphAfter) {
1426 if (GraphAfter == GraphBefore)
1430 <<
"Error: " <<
Pass
1431 <<
" does not invalidate CFG analyses but CFG changes detected in "
1433 << FuncName <<
":\n";
1438 if (
auto *GraphBefore =
1440 CheckCFG(
P,
F->getName(), *GraphBefore,
1444 auto &M = *
const_cast<Module *
>(MPtr);
1445 if (
auto *HashBefore =
1449 "Module changed by {0} without invalidating analyses",
P));
1458 PIC.registerAfterPassCallback(
1460 if (isIgnored(
P) ||
P ==
"VerifierPass")
1465 F = L->getHeader()->getParent();
1470 dbgs() <<
"Verifying function " <<
F->getName() <<
"\n";
1474 "\"{0}\", compilation aborted!",
1480 M =
C->begin()->getFunction().getParent();
1485 dbgs() <<
"Verifying module " << M->getName() <<
"\n";
1489 "\"{0}\", compilation aborted!",
1495 dbgs() <<
"Verifying machine function " << MF->
getName() <<
'\n';
1496 std::string Banner =
1497 formatv(
"Broken machine function found after pass "
1498 "\"{0}\", compilation aborted!",
1528 formatv(
"*** IR Dump After {0} on {1} ***\n", PassID, Name);
1532 [&](
bool InModule,
unsigned Minor,
1536 Minor, Before, After);
1547 Out <<
"\n*** IR for function " << Name <<
" ***\n";
1554 const std::string Removed =
1555 UseColour ?
"\033[31m-%l\033[0m\n" :
"-%l\n";
1556 const std::string Added =
UseColour ?
"\033[32m+%l\033[0m\n" :
"+%l\n";
1557 const std::string NoChange =
" %l\n";
1576 PIC.registerBeforeNonSkippedPassCallback(
1578 PIC.registerAfterPassCallback(
1580 this->runAfterPass();
1583 PIC.registerAfterPassInvalidatedCallback(
1586 PIC.registerBeforeAnalysisCallback(
1588 PIC.registerAfterAnalysisCallback(
1601class DotCfgDiffDisplayGraph;
1604class DisplayElement {
1607 StringRef getColour()
const {
return Colour; }
1610 DisplayElement(StringRef Colour) : Colour(Colour) {}
1611 const StringRef Colour;
1616class DisplayEdge :
public DisplayElement {
1618 DisplayEdge(std::string
Value, DisplayNode &Node, StringRef Colour)
1623 const DisplayNode &getDestinationNode()
const {
return Node; }
1627 const DisplayNode &
Node;
1631class DisplayNode :
public DisplayElement {
1635 DisplayNode(std::string Content, StringRef Colour)
1636 : DisplayElement(Colour), Content(Content) {}
1639 using ChildIterator = SmallPtrSet<DisplayNode *, 0>::const_iterator;
1640 ChildIterator children_begin()
const {
return Children.begin(); }
1641 ChildIterator children_end()
const {
return Children.end(); }
1644 using EdgeIterator = std::vector<DisplayEdge *>::const_iterator;
1645 EdgeIterator edges_begin()
const {
return EdgePtrs.cbegin(); }
1646 EdgeIterator edges_end()
const {
return EdgePtrs.cend(); }
1649 void createEdge(StringRef
Value, DisplayNode &Node, StringRef Colour);
1652 std::string getContent()
const {
return Content; }
1655 const DisplayEdge &getEdge(
const DisplayNode &To)
const {
1656 assert(EdgeMap.find(&To) != EdgeMap.end() &&
"Expected to find edge.");
1657 return *EdgeMap.find(&To)->second;
1662 std::string getEdgeSourceLabel(
const DisplayNode &Sink)
const {
1663 return getEdge(Sink).getValue();
1666 void createEdgeMap();
1669 const std::string Content;
1674 std::vector<DisplayEdge> Edges;
1676 std::vector<DisplayEdge *> EdgePtrs;
1677 SmallPtrSet<DisplayNode *, 0>
Children;
1678 DenseMap<const DisplayNode *, const DisplayEdge *> EdgeMap;
1681 bool AllEdgesCreated =
false;
1685class DotCfgDiffDisplayGraph {
1687 DotCfgDiffDisplayGraph(std::string Name) : GraphName(
Name) {}
1690 void generateDotFile(StringRef DotFile);
1693 using NodeIterator = std::vector<DisplayNode *>::const_iterator;
1694 NodeIterator nodes_begin()
const {
1695 assert(NodeGenerationComplete &&
"Unexpected children iterator creation");
1696 return NodePtrs.cbegin();
1698 NodeIterator nodes_end()
const {
1699 assert(NodeGenerationComplete &&
"Unexpected children iterator creation");
1700 return NodePtrs.cend();
1705 void setEntryNode(
unsigned N) {
1707 assert(!NodeGenerationComplete &&
"Unexpected node creation");
1708 NodeGenerationComplete =
true;
1709 for (
auto &
N : Nodes)
1710 NodePtrs.emplace_back(&
N);
1712 EntryNode = NodePtrs[
N];
1716 void createNode(std::string
C, StringRef Colour) {
1717 assert(!NodeGenerationComplete &&
"Unexpected node creation");
1718 Nodes.emplace_back(
C, Colour);
1722 assert(
N < Nodes.size() &&
"Node is out of bounds");
1725 unsigned size()
const {
1726 assert(NodeGenerationComplete &&
"Unexpected children iterator creation");
1727 return Nodes.size();
1731 std::string getGraphName()
const {
return GraphName; }
1735 std::string
getNodeLabel(
const DisplayNode &Node)
const {
1736 return Node.getContent();
1740 std::string getNodeAttributes(
const DisplayNode &Node)
const {
1741 return attribute(
Node.getColour());
1745 std::string getEdgeColorAttr(
const DisplayNode &From,
1746 const DisplayNode &To)
const {
1747 return attribute(From.getEdge(To).getColour());
1751 DisplayNode *getEntryNode()
const {
1752 assert(NodeGenerationComplete &&
"Unexpected children iterator creation");
1758 std::string attribute(StringRef Colour)
const {
1759 return "color=" + Colour.
str();
1762 bool NodeGenerationComplete =
false;
1763 const std::string GraphName;
1764 std::vector<DisplayNode> Nodes;
1765 std::vector<DisplayNode *> NodePtrs;
1766 DisplayNode *EntryNode =
nullptr;
1769void DisplayNode::createEdge(StringRef
Value, DisplayNode &Node,
1771 assert(!AllEdgesCreated &&
"Expected to be able to still create edges.");
1772 Edges.emplace_back(
Value.str(), Node, Colour);
1776void DisplayNode::createEdgeMap() {
1779 AllEdgesCreated =
true;
1780 for (
auto &
E : Edges)
1781 EdgeMap.insert({&
E.getDestinationNode(), &
E});
1784class DotCfgDiffNode;
1788class DotCfgDiffNode {
1790 DotCfgDiffNode() =
delete;
1794 DotCfgDiffNode(DotCfgDiff &
G,
unsigned N,
const BlockDataT<DCData> &BD,
1796 : Graph(
G),
N(
N),
Data{&BD, nullptr}, Colour(Colour) {}
1797 DotCfgDiffNode(
const DotCfgDiffNode &DN)
1802 unsigned getIndex()
const {
return N; }
1805 StringRef getLabel()
const {
1806 assert(
Data[0] &&
"Expected Data[0] to be set.");
1807 return Data[0]->getLabel();
1810 StringRef getColour()
const {
return Colour; }
1813 void setCommon(
const BlockDataT<DCData> &
Other) {
1814 assert(!
Data[1] &&
"Expected only one block datum");
1819 void addEdge(
unsigned E, StringRef
Value, StringRef Colour) {
1822 "Unexpected edge count and color.");
1823 EdgesMap[
E] = {
Value.str(), Colour};
1829 StringRef getEdgeColour(
const unsigned S)
const {
1830 assert(EdgesMap.count(S) == 1 &&
"Expected to find edge.");
1831 return EdgesMap.at(S).second;
1835 std::string getBodyContent()
const;
1837 void createDisplayEdges(DotCfgDiffDisplayGraph &Graph,
unsigned DisplayNode,
1838 std::map<const unsigned, unsigned> &NodeMap)
const;
1843 const BlockDataT<DCData> *
Data[2];
1845 std::map<const unsigned, std::pair<std::string, StringRef>> EdgesMap;
1847 std::vector<unsigned> Edges;
1857 DotCfgDiff(StringRef Title,
const FuncDataT<DCData> &Before,
1858 const FuncDataT<DCData> &After);
1860 DotCfgDiff(
const DotCfgDiff &) =
delete;
1861 DotCfgDiff &operator=(
const DotCfgDiff &) =
delete;
1863 DotCfgDiffDisplayGraph createDisplayGraph(StringRef Title,
1864 StringRef EntryNodeName);
1870 StringRef getEdgeSourceLabel(
const unsigned &Source,
1871 const unsigned &Sink)
const {
1873 getNode(Source).getLabel().str() +
" " +
getNode(Sink).getLabel().str();
1874 assert(EdgeLabels.count(S) == 1 &&
"Expected to find edge label.");
1875 return EdgeLabels.find(S)->getValue();
1879 unsigned size()
const {
return Nodes.size(); }
1881 const DotCfgDiffNode &
getNode(
unsigned N)
const {
1882 assert(
N < Nodes.size() &&
"Unexpected index for node reference");
1888 std::string colourize(std::string S, StringRef Colour)
const;
1890 void createNode(StringRef Label,
const BlockDataT<DCData> &BD, StringRef
C) {
1891 unsigned Pos = Nodes.size();
1892 Nodes.emplace_back(*
this, Pos, BD,
C);
1893 NodePosition.insert({
Label, Pos});
1899 std::vector<DotCfgDiffNode> Nodes;
1900 StringMap<unsigned> NodePosition;
1901 const std::string GraphName;
1903 StringMap<std::string> EdgeLabels;
1906std::string DotCfgDiffNode::getBodyContent()
const {
1908 assert(
Data[1] &&
"Expected Data[1] to be set.");
1911 for (
unsigned I = 0;
I < 2; ++
I) {
1912 SR[
I] =
Data[
I]->getBody();
1916 SR[
I] = SR[
I].
drop_until([](
char C) {
return C ==
'\n'; }).drop_front();
1919 SmallString<80> OldLineFormat =
formatv(
1920 "<FONT COLOR=\"{0}\">%l</FONT><BR align=\"left\"/>",
BeforeColour);
1921 SmallString<80> NewLineFormat =
formatv(
1922 "<FONT COLOR=\"{0}\">%l</FONT><BR align=\"left\"/>",
AfterColour);
1923 SmallString<80> UnchangedLineFormat =
formatv(
1924 "<FONT COLOR=\"{0}\">%l</FONT><BR align=\"left\"/>",
CommonColour);
1925 std::string Diff =
Data[0]->getLabel().str();
1926 Diff +=
":\n<BR align=\"left\"/>" +
1927 doSystemDiff(makeHTMLReady(SR[0]), makeHTMLReady(SR[1]),
1928 OldLineFormat, NewLineFormat, UnchangedLineFormat);
1933 Regex R(
"<FONT COLOR=\"\\w+\"></FONT>");
1936 std::string S =
R.sub(
"", Diff, &
Error);
1947 assert(!
Data[1] &&
"Data[1] is set unexpectedly.");
1948 std::string Body = makeHTMLReady(
Data[0]->getBody());
1949 const StringRef BS = Body;
1952 if (BS.
front() ==
'\n')
1957 BS1 = BS1.
drop_until([](
char C) {
return C ==
'\n'; }).drop_front();
1959 std::string S =
"<FONT COLOR=\"" + Colour.
str() +
"\">" +
Label.str() +
":";
1962 while (BS1.
size()) {
1963 S.append(
"<BR align=\"left\"/>");
1965 S.append(
Line.str());
1968 S.append(
"<BR align=\"left\"/></FONT>");
1972std::string DotCfgDiff::colourize(std::string S, StringRef Colour)
const {
1973 if (S.length() == 0)
1975 return "<FONT COLOR=\"" + Colour.
str() +
"\">" + S +
"</FONT>";
1978DotCfgDiff::DotCfgDiff(StringRef Title,
const FuncDataT<DCData> &Before,
1979 const FuncDataT<DCData> &After)
1980 : GraphName(Title.str()) {
1981 StringMap<StringRef> EdgesMap;
1985 StringRef Label = B.getKey();
1986 const BlockDataT<DCData> &BD = B.getValue();
1987 createNode(Label, BD, BeforeColour);
1991 for (StringMap<std::string>::const_iterator Sink = BD.getData().begin(),
1992 E = BD.getData().end();
1993 Sink != E; ++Sink) {
1994 std::string Key = (Label +
" " + Sink->getKey().str()).str() +
" " +
1995 BD.getData().getSuccessorLabel(Sink->getKey()).str();
1996 EdgesMap.insert({Key, BeforeColour});
2002 StringRef Label = A.getKey();
2003 const BlockDataT<DCData> &BD = A.getValue();
2004 auto It = NodePosition.find(Label);
2005 if (It == NodePosition.end())
2007 createNode(Label, BD, AfterColour);
2009 Nodes[It->second].setCommon(BD);
2011 for (StringMap<std::string>::const_iterator Sink = BD.getData().begin(),
2012 E = BD.getData().end();
2013 Sink != E; ++Sink) {
2014 std::string Key = (Label +
" " + Sink->getKey().str()).str() +
" " +
2015 BD.getData().getSuccessorLabel(Sink->getKey()).str();
2016 auto [It, Inserted] = EdgesMap.try_emplace(Key, AfterColour);
2018 It->second = CommonColour;
2023 for (
auto &
E : EdgesMap) {
2026 auto SP1 = S.
rsplit(
' ');
2027 auto &SourceSink = SP1.first;
2028 auto SP2 = SourceSink.split(
' ');
2033 assert(NodePosition.count(Source) == 1 &&
"Expected to find node.");
2034 DotCfgDiffNode &SourceNode = Nodes[NodePosition[
Source]];
2035 assert(NodePosition.count(Sink) == 1 &&
"Expected to find node.");
2036 unsigned SinkNode = NodePosition[
Sink];
2040 auto [It,
Inserted] = EdgeLabels.try_emplace(SourceSink);
2042 It->getValue() = colourize(
Value.str(), Colour);
2045 std::string
NV = colourize(
V.str() +
" " +
Value.str(), Colour);
2047 It->getValue() =
NV;
2049 SourceNode.addEdge(SinkNode,
Value, Colour);
2051 for (
auto &
I : Nodes)
2055DotCfgDiffDisplayGraph DotCfgDiff::createDisplayGraph(
StringRef Title,
2057 assert(NodePosition.count(EntryNodeName) == 1 &&
2058 "Expected to find entry block in map.");
2059 unsigned Entry = NodePosition[EntryNodeName];
2060 assert(Entry < Nodes.size() &&
"Expected to find entry node");
2061 DotCfgDiffDisplayGraph
G(Title.
str());
2063 std::map<const unsigned, unsigned> NodeMap;
2065 int EntryIndex = -1;
2067 for (
auto &
I : Nodes) {
2068 if (
I.getIndex() == Entry)
2070 G.createNode(
I.getBodyContent(),
I.getColour());
2071 NodeMap.insert({
I.getIndex(),
Index++});
2073 assert(EntryIndex >= 0 &&
"Expected entry node index to be set.");
2074 G.setEntryNode(EntryIndex);
2076 for (
auto &
I : NodeMap) {
2077 unsigned SourceNode =
I.first;
2078 unsigned DisplayNode =
I.second;
2079 getNode(SourceNode).createDisplayEdges(
G, DisplayNode, NodeMap);
2084void DotCfgDiffNode::createDisplayEdges(
2085 DotCfgDiffDisplayGraph &
DisplayGraph,
unsigned DisplayNodeIndex,
2086 std::map<const unsigned, unsigned> &NodeMap)
const {
2088 DisplayNode &SourceDisplayNode =
DisplayGraph.getNode(DisplayNodeIndex);
2090 for (
auto I : Edges) {
2091 unsigned SinkNodeIndex =
I;
2092 StringRef Colour = getEdgeColour(SinkNodeIndex);
2093 const DotCfgDiffNode *SinkNode = &Graph.getNode(SinkNodeIndex);
2095 StringRef Label = Graph.getEdgeSourceLabel(getIndex(), SinkNodeIndex);
2096 DisplayNode &SinkDisplayNode =
DisplayGraph.getNode(SinkNode->getIndex());
2097 SourceDisplayNode.createEdge(Label, SinkDisplayNode, Colour);
2099 SourceDisplayNode.createEdgeMap();
2102void DotCfgDiffNode::finalize(DotCfgDiff &
G) {
2103 for (
auto E : EdgesMap) {
2105 Edges.emplace_back(
E.first);
2121 return G->getEntryNode();
2124 return N->children_begin();
2128 return G->nodes_begin();
2131 return G->nodes_end();
2134 return N->edges_begin();
2138 static unsigned size(
const DotCfgDiffDisplayGraph *
G) {
return G->size(); }
2148 return DiffData->getGraphName();
2152 return "\tsize=\"190, 190\";\n";
2155 const DotCfgDiffDisplayGraph *DiffData) {
2156 return DiffData->getNodeLabel(*
Node);
2159 const DotCfgDiffDisplayGraph *DiffData) {
2160 return DiffData->getNodeAttributes(*
Node);
2163 DisplayNode::ChildIterator &To) {
2164 return From->getEdgeSourceLabel(**To);
2167 DisplayNode::ChildIterator &To,
2168 const DotCfgDiffDisplayGraph *DiffData) {
2169 return DiffData->getEdgeColorAttr(*From, **To);
2177void DotCfgDiffDisplayGraph::generateDotFile(StringRef DotFile) {
2179 raw_fd_ostream OutStream(DotFile, EC);
2181 errs() <<
"Error: " <<
EC.message() <<
"\n";
2202 for (
auto &
C : Sw->cases()) {
2203 assert(
C.getCaseValue() &&
"Expected to find case value.");
2224 assert(
HTML &&
"Expected outstream to be set");
2229 Extender =
formatv(
"{0}_{1}",
N, Minor);
2238 std::string DotFile =
Twine(SV).
str();
2246 DotCfgDiff Diff(
Text, Before, After);
2249 if (EntryBlockName ==
"")
2251 assert(EntryBlockName !=
"" &&
"Expected to find entry block");
2253 DotCfgDiffDisplayGraph DG = Diff.createDisplayGraph(
Text, EntryBlockName);
2254 DG.generateDotFile(DotFile);
2259 errs() <<
"Error: " << EC.message() <<
"\n";
2268 return "Unable to find dot executable.";
2273 return "Error executing system dot.";
2277 " <a href=\"{0}\" target=\"_blank\">{1}</a><br/>\n", PDFFileName,
Text);
2282 assert(
HTML &&
"Expected outstream to be set");
2283 *
HTML <<
"<button type=\"button\" class=\"collapsible\">0. "
2284 <<
"Initial IR (by function)</button>\n"
2285 <<
"<div class=\"content\">\n"
2294 [&](
bool InModule,
unsigned Minor,
2298 Minor, Before, After);
2312 assert(
HTML &&
"Expected outstream to be set");
2314 formatv(
" <a>{0}. Pass {1} on {2} omitted because no change</a><br/>\n",
2315 N, makeHTMLReady(PassID), Name);
2324 assert(
HTML &&
"Expected outstream to be set");
2327 [&](
bool InModule,
unsigned Minor,
2331 Minor, Before, After);
2333 *
HTML <<
" </p></div>\n";
2338 assert(
HTML &&
"Expected outstream to be set");
2340 formatv(
" <a>{0}. {1} invalidated</a><br/>\n",
N, makeHTMLReady(PassID));
2346 assert(
HTML &&
"Expected outstream to be set");
2348 formatv(
" <a>{0}. Pass {1} on {2} filtered out</a><br/>\n",
N,
2349 makeHTMLReady(PassID), Name);
2355 assert(
HTML &&
"Expected outstream to be set");
2357 makeHTMLReady(PassID), Name);
2364 HTML = std::make_unique<raw_fd_ostream>(
DotCfgDir +
"/passes.html", EC);
2370 *
HTML <<
"<!doctype html>"
2373 <<
"<style>.collapsible { "
2374 <<
"background-color: #777;"
2376 <<
" cursor: pointer;"
2377 <<
" padding: 18px;"
2380 <<
" text-align: left;"
2381 <<
" outline: none;"
2382 <<
" font-size: 15px;"
2383 <<
"} .active, .collapsible:hover {"
2384 <<
" background-color: #555;"
2386 <<
" padding: 0 18px;"
2387 <<
" display: none;"
2388 <<
" overflow: hidden;"
2389 <<
" background-color: #f1f1f1;"
2392 <<
"<title>passes.html</title>"
2402 <<
"<script>var coll = document.getElementsByClassName(\"collapsible\");"
2404 <<
"for (i = 0; i < coll.length; i++) {"
2405 <<
"coll[i].addEventListener(\"click\", function() {"
2406 <<
" this.classList.toggle(\"active\");"
2407 <<
" var content = this.nextElementSibling;"
2408 <<
" if (content.style.display === \"block\"){"
2409 <<
" content.style.display = \"none\";"
2412 <<
" content.style.display= \"block\";"
2430 assert(!OutputDir.
empty() &&
"expected output dir to be non-empty");
2436 dbgs() <<
"Unable to open output stream for -cfg-dot-changed\n";
2441 LLVMContext &Context,
bool DebugLogging,
bool VerifyEach,
2443 : PrintPass(DebugLogging, PrintPassOpts), OptNone(DebugLogging),
2444 OptPassGate(Context),
2452 VerifyEach(VerifyEach) {}
2469void PrintCrashIRInstrumentation::SignalHandler(
void *) {
2476 "Did not expect to get here without option set.");
2485 "Did not expect to get here without option set.");
2486 CrashReporter =
nullptr;
2495 CrashReporter =
this;
2497 PIC.registerBeforeNonSkippedPassCallback(
2501 OS <<
formatv(
"; *** Dump of {0}IR Before Last Pass {1}",
2504 OS <<
" Filtered Out ***\n";
2507 OS <<
" Started ***\n";
2508 unwrapAndPrint(OS,
IR);
2514 PrintIR.registerCallbacks(
PIC);
2515 PrintPass.registerCallbacks(
PIC);
2516 TimePasses.registerCallbacks(
PIC);
2517 OptNone.registerCallbacks(
PIC);
2518 OptPassGate.registerCallbacks(
PIC);
2519 PrintChangedIR.registerCallbacks(
PIC);
2520 PseudoProbeVerification.registerCallbacks(
PIC);
2522 Verify.registerCallbacks(
PIC,
MAM);
2523 PrintChangedDiff.registerCallbacks(
PIC);
2524 WebsiteChangeReporter.registerCallbacks(
PIC);
2525 ChangeTester.registerCallbacks(
PIC);
2526 PrintCrashIR.registerCallbacks(
PIC);
2527 DroppedStatsIR.registerCallbacks(
PIC);
2529 PreservedCFGChecker.registerCallbacks(
PIC, *
MAM);
2537 TimeProfilingPasses.registerCallbacks(
PIC);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static msgpack::DocNode getNode(msgpack::DocNode DN, msgpack::Type Type, MCValue Val)
static const Function * getParent(const Value *V)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines the DenseMap class.
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L, ScalarEvolution *SE, LoopInfo *LI)
isInteresting - Test whether the given expression is "interesting" when used by the given expression,...
static constexpr Value * getValue(Ty &ValueOrUse)
static void addEdge(SmallVectorImpl< LazyCallGraph::Edge > &Edges, DenseMap< LazyCallGraph::Node *, int > &EdgeIndexMap, LazyCallGraph::Node &N, LazyCallGraph::Edge::Kind EK)
Implements a lazy call graph analysis and related passes for the new pass manager.
Legalize the Machine IR a function s Machine IR
static std::string getNodeLabel(const ValueInfo &VI, GlobalValueSummary *GVS)
static constexpr StringLiteral Filename
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
PassInstrumentationCallbacks PIC
This file defines the Pass Instrumentation classes that provide instrumentation points into the pass ...
verify safepoint Safepoint IR Verifier
This file defines the SmallPtrSet class.
static cl::opt< std::string > BeforeColour("dot-cfg-before-color", cl::desc("Color for dot-cfg before elements"), cl::Hidden, cl::init("red"))
static cl::opt< std::string > IRDumpDirectory("ir-dump-directory", cl::desc("If specified, IR printed using the " "-print-[before|after]{-all} options will be dumped into " "files in this directory rather than written to stderr"), cl::Hidden, cl::value_desc("filename"))
static cl::opt< bool > DroppedVarStats("dropped-variable-stats", cl::Hidden, cl::desc("Dump dropped debug variables stats"), cl::init(false))
static cl::opt< std::string > OptBisectPrintIRPath("opt-bisect-print-ir-path", cl::desc("Print IR to path when opt-bisect-limit is reached"), cl::Hidden)
static cl::opt< bool > PrintChangedBefore("print-before-changed", cl::desc("Print before passes that change them"), cl::init(false), cl::Hidden)
static cl::opt< std::string > DotCfgDir("dot-cfg-dir", cl::desc("Generate dot files into specified directory for changed IRs"), cl::Hidden, cl::init("./"))
static cl::list< unsigned > PrintBeforePassNumber("print-before-pass-number", cl::CommaSeparated, cl::Hidden, cl::desc("Print IR before the passes with specified numbers as " "reported by print-pass-numbers"))
static cl::opt< bool > VerifyAnalysisInvalidation("verify-analysis-invalidation", cl::Hidden, cl::init(false))
static cl::opt< std::string > CommonColour("dot-cfg-common-color", cl::desc("Color for dot-cfg common elements"), cl::Hidden, cl::init("black"))
static SmallVector< Function *, 1 > GetFunctions(IRUnitRef IR)
static void printBBName(raw_ostream &out, const BasicBlock *BB)
static cl::opt< std::string > DotBinary("print-changed-dot-path", cl::Hidden, cl::init("dot"), cl::desc("system dot used by change reporters"))
static bool shouldGenerateData(const Function &F)
static cl::list< unsigned > PrintAfterPassNumber("print-after-pass-number", cl::CommaSeparated, cl::Hidden, cl::desc("Print IR after the passes with specified numbers as " "reported by print-pass-numbers"))
static int prepareDumpIRFileDescriptor(const StringRef DumpIRFilename)
static cl::opt< std::string > AfterColour("dot-cfg-after-color", cl::desc("Color for dot-cfg after elements"), cl::Hidden, cl::init("forestgreen"))
static void writeIRFileDisplayName(raw_ostream &ResultStream, IRUnitRef IR)
static std::string getIRFileDisplayName(IRUnitRef IR)
static cl::opt< bool > PrintOnCrash("print-on-crash", cl::desc("Print the last form of the IR before crash (use -print-on-crash-path to dump to a file)"), cl::Hidden)
static cl::opt< bool > PrintPassNumbers("print-pass-numbers", cl::init(false), cl::Hidden, cl::desc("Print pass names and their ordinals"))
static cl::opt< std::string > PrintOnCrashPath("print-on-crash-path", cl::desc("Print the last form of the IR before crash to a file"), cl::Hidden)
This header defines a class that provides bookkeeping for all standard (i.e in-tree) pass instrumenta...
static const char PassName[]
This templated class represents "all analyses that operate over <aparticular IR unit>" (e....
LLVM Basic Block Representation.
const Function * getParent() const
Return the enclosing method, or null if none.
LLVM_ABI bool isEntryBlock() const
Return true if this is the entry block of the containing function.
Represents analyses that only rely on functions' control flow.
virtual void handleFiltered(StringRef PassID, std::string &Name)=0
virtual void handleInitialIR(IRUnitRef IR)=0
virtual void generateIRRepresentation(IRUnitRef IR, StringRef PassID, IRUnitT &Output)=0
virtual void handleIgnored(StringRef PassID, std::string &Name)=0
void handleIRAfterPass(IRUnitRef IR, StringRef PassID, StringRef PassName)
void saveIRBeforePass(IRUnitRef IR, StringRef PassID, StringRef PassName)
virtual void handleAfter(StringRef PassID, std::string &Name, const IRUnitT &Before, const IRUnitT &After, IRUnitRef)=0
virtual void handleInvalidated(StringRef PassID)=0
void registerRequiredCallbacks(PassInstrumentationCallbacks &PIC)
std::vector< IRUnitT > BeforeStack
virtual void omitAfter(StringRef PassID, std::string &Name)=0
void handleInvalidatedPass(StringRef PassID)
ChangeReporter(bool RunInVerboseMode)
virtual ~ChangeReporter()
Conditional Branch instruction.
void addSuccessorLabel(StringRef Succ, StringRef Label)
LLVM_ABI DCData(const BasicBlock &B)
void generateIRRepresentation(IRUnitRef IR, StringRef PassID, IRDataT< DCData > &Output) override
std::unique_ptr< raw_fd_ostream > HTML
void handleInvalidated(StringRef PassID) override
static std::string genHTML(StringRef Text, StringRef DotFile, StringRef PDFFileName)
void handleAfter(StringRef PassID, std::string &Name, const IRDataT< DCData > &Before, const IRDataT< DCData > &After, IRUnitRef) override
void handleFunctionCompare(StringRef Name, StringRef Prefix, StringRef PassID, StringRef Divider, bool InModule, unsigned Minor, const FuncDataT< DCData > &Before, const FuncDataT< DCData > &After)
void registerCallbacks(PassInstrumentationCallbacks &PIC)
DotCfgChangeReporter(bool Verbose)
void handleIgnored(StringRef PassID, std::string &Name) override
~DotCfgChangeReporter() override
void handleInitialIR(IRUnitRef IR) override
void handleFiltered(StringRef PassID, std::string &Name) override
void omitAfter(StringRef PassID, std::string &Name) override
Represents either an error or a value T.
std::string getEntryBlockName() const
bool hasOptNone() const
Do not optimize this function (-O0).
~IRChangedPrinter() override
void registerCallbacks(PassInstrumentationCallbacks &PIC)
void handleAfter(StringRef PassID, std::string &Name, const std::string &Before, const std::string &After, IRUnitRef) override
void generateIRRepresentation(IRUnitRef IR, StringRef PassID, std::string &Output) override
void handleIgnored(StringRef PassID, std::string &Name) override
void handleAfter(StringRef PassID, std::string &Name, const std::string &Before, const std::string &After, IRUnitRef) override
void omitAfter(StringRef PassID, std::string &Name) override
void handleInvalidated(StringRef PassID) override
void handleIR(const std::string &IR, StringRef PassID)
void registerCallbacks(PassInstrumentationCallbacks &PIC)
void handleFiltered(StringRef PassID, std::string &Name) override
~IRChangedTester() override
void handleInitialIR(IRUnitRef IR) override
const IRDataT< T > & Before
static bool generateFunctionData(IRDataT< T > &Data, const FunctionT &F)
static void analyzeIR(IRUnitRef IR, IRDataT< T > &Data)
const IRDataT< T > & After
void compare(bool CompareModule, std::function< void(bool InModule, unsigned Minor, const FuncDataT< T > &Before, const FuncDataT< T > &After)> CompareFunc)
A type-erased reference to the IR unit a pass or analysis is running on, together with the kind of IR...
void generateIRRepresentation(IRUnitRef IR, StringRef PassID, IRDataT< EmptyData > &Output) override
void registerCallbacks(PassInstrumentationCallbacks &PIC)
~InLineChangePrinter() override
void handleAfter(StringRef PassID, std::string &Name, const IRDataT< EmptyData > &Before, const IRDataT< EmptyData > &After, IRUnitRef) override
void handleFunctionCompare(StringRef Name, StringRef Prefix, StringRef PassID, StringRef Divider, bool InModule, unsigned Minor, const FuncDataT< EmptyData > &Before, const FuncDataT< EmptyData > &After)
This is an important class for using LLVM in a threaded context.
A node in the call graph.
An SCC of the call graph.
Represents a single loop in the control flow graph.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
Function & getFunction()
Return the LLVM function that this machine code represents.
void print(raw_ostream &OS, const SlotIndexes *=nullptr) const
print - Print out the MachineFunction in a format suitable for debugging to the specified stream.
A Module instance is used to store all the information related to an LLVM module.
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC)
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC)
LLVM_ABI bool shouldRun(StringRef PassName, IRUnitRef IR)
Extensions to this class implement mechanisms to disable passes and individual optimizations at compi...
virtual bool isEnabled() const
isEnabled() should return true before calling shouldRunPass().
static void report(const OrderedChangedData &Before, const OrderedChangedData &After, function_ref< void(const T *, const T *)> HandlePair)
StringMap< T > & getData()
std::vector< std::string > & getOrder()
This class manages callbacks registration, as well as provides a way for PassInstrumentation to pass ...
void registerBeforeNonSkippedPassCallback(CallableT C)
Pass interface - Implemented by all 'passes'.
A set of analyses that are preserved following a run of a transformation pass.
PreservedAnalysisChecker getChecker() const
Build a checker for this PreservedAnalyses and the specified analysis type.
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC, ModuleAnalysisManager &MAM)
LLVM_ABI void reportCrashIR()
LLVM_ABI ~PrintCrashIRInstrumentation()
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC)
LLVM_ABI ~PrintIRInstrumentation()
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC)
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC)
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC, ModuleAnalysisManager *MAM=nullptr)
LLVM_ABI StandardInstrumentations(LLVMContext &Context, bool DebugLogging, bool VerifyEach=false, PrintPassOptions PrintPassOpts=PrintPassOptions())
bool insert(MapEntryTy *KeyValue)
insert - Insert the specified key/value pair into the map.
Represent a constant reference to a string, i.e.
std::string str() const
Get the contents as an std::string.
StringRef drop_front(size_t N=1) const
Return a StringRef equal to 'this' but with the first N elements dropped.
StringRef drop_until(function_ref< bool(char)> F) const
Return a StringRef equal to 'this', but with all characters not satisfying the given predicate droppe...
constexpr size_t size() const
Get the string size.
char front() const
Get the first character in the string.
StringRef take_until(function_ref< bool(char)> F) const
Return the longest prefix of 'this' such that no character in the prefix satisfies the given predicat...
std::pair< StringRef, StringRef > rsplit(StringRef Separator) const
Split into two substrings around the last occurrence of a separator string.
bool consume_front(char Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
void handleInvalidated(StringRef PassID) override
void handleInitialIR(IRUnitRef IR) override
TextChangeReporter(bool Verbose)
void omitAfter(StringRef PassID, std::string &Name) override
void handleIgnored(StringRef PassID, std::string &Name) override
void handleFiltered(StringRef PassID, std::string &Name) override
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC)
LLVM_ABI TimeProfilingPassesHandler()
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
LLVM_ABI std::string str() const
Return the twine contents as a std::string.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI void registerCallbacks(PassInstrumentationCallbacks &PIC, ModuleAnalysisManager *MAM)
An efficient, type-erasing, non-owning reference to a callable.
A raw_ostream that writes to a file descriptor.
This class implements an extremely fast bulk output stream that can only output to a stream.
raw_ostream & indent(unsigned NumSpaces)
indent - Insert 'NumSpaces' spaces.
A raw_ostream that writes to an std::string.
std::string & str()
Returns the string's reference.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
initializer< Ty > init(const Ty &Val)
DiagnosticInfoOptimizationBase::Argument NV
NodeAddr< NodeBase * > Node
LLVM_ABI std::error_code openFile(const Twine &Name, int &ResultFD, CreationDisposition Disp, FileAccess Access, OpenFlags Flags, unsigned Mode=0666)
Opens a file with the specified creation disposition, access mode, and flags and returns a file descr...
@ OF_Text
The file should be opened in text mode on platforms like z/OS that make this distinction.
LLVM_ABI void expand_tilde(const Twine &path, SmallVectorImpl< char > &output)
Expands ~ expressions to the user's home directory.
LLVM_ABI std::error_code remove(const Twine &path, bool IgnoreNonExisting=true)
Remove path.
@ CD_OpenAlways
CD_OpenAlways - When opening a file:
LLVM_ABI void createUniquePath(const Twine &Model, SmallVectorImpl< char > &ResultPath, bool MakeAbsolute)
Create a potentially unique file name but does not create it.
LLVM_ABI std::error_code create_directories(const Twine &path, bool IgnoreExisting=true, perms Perms=owner_all|group_all)
Create all the non-existent directories in path.
LLVM_ABI std::error_code make_absolute(SmallVectorImpl< char > &path)
Make path an absolute path.
LLVM_ABI StringRef parent_path(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get parent path.
LLVM_ABI void append(SmallVectorImpl< char > &path, const Twine &a, const Twine &b="", const Twine &c="", const Twine &d="")
Append to path.
LLVM_ABI void AddSignalHandler(SignalHandlerCallback FnPtr, void *Cookie, bool NeedsPOSIXUtilitySignalHandling=false)
Add a function to be called when an abort/kill signal is delivered to the process.
LLVM_ABI ErrorOr< std::string > findProgramByName(StringRef Name, ArrayRef< StringRef > Paths={})
Find the first executable file Name in Paths.
LLVM_ABI int ExecuteAndWait(StringRef Program, ArrayRef< StringRef > Args, std::optional< ArrayRef< StringRef > > Env=std::nullopt, ArrayRef< std::optional< StringRef > > Redirects={}, unsigned SecondsToWait=0, unsigned MemoryLimit=0, std::string *ErrMsg=nullptr, bool *ExecutionFailed=nullptr, std::optional< ProcessStatistics > *ProcStat=nullptr, BitVector *AffinityMask=nullptr)
This function executes the program using the arguments provided.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI std::error_code prepareTempFiles(SmallVector< int > &FD, ArrayRef< StringRef > SR, SmallVector< std::string > &FileName)
auto size(R &&Range, std::enable_if_t< std::is_base_of< std::random_access_iterator_tag, typename std::iterator_traits< decltype(Range.begin())>::iterator_category >::value, void > *=nullptr)
Get the size of a range.
LLVM_ABI bool forcePrintModuleIR()
LLVM_ABI std::vector< std::string > printAfterPasses()
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
uint64_t xxh3_64bits(ArrayRef< uint8_t > data)
Inline ArrayRef overloads of the xxhash entry points declared out-of-line in llvm/Support/xxhash....
LLVM_ABI bool verifyFunction(const Function &F, raw_ostream *OS=nullptr)
Check a function for errors, useful for use when debugging a pass.
auto successors(const MachineBasicBlock *BB)
LLVM_ABI bool DisplayGraph(StringRef Filename, bool wait=true, GraphProgram::Name program=GraphProgram::DOT)
LLVM_ABI bool shouldPrintBeforeAll()
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
raw_ostream & WriteGraph(raw_ostream &O, const GraphType &G, bool ShortNames=false, const Twine &Title="")
LLVM_ABI bool shouldPrintAfterAll()
LLVM_ABI cl::opt< ChangePrinter > PrintChanged
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
LLVM_ABI TimeTraceProfiler * getTimeTraceProfilerInstance()
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI std::vector< std::string > printBeforePasses()
LLVM_ABI bool shouldPrintBeforeSomePass()
This is a helper to determine whether to print IR before or after a pass.
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
LLVM_ABI bool shouldPrintAfterSomePass()
LLVM_ABI void verifyMachineFunction(const std::string &Banner, const MachineFunction &MF)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI bool isFunctionInPrintList(StringRef FunctionName)
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
LLVM_ABI bool isPassInPrintList(StringRef PassName)
LLVM_ABI bool isSpecialPass(StringRef PassID, const std::vector< StringRef > &Specials)
LLVM_ABI void timeTraceProfilerEnd()
Manually end the last time section.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI std::error_code cleanUpTempFiles(ArrayRef< std::string > FileName)
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
InnerAnalysisManagerProxy< MachineFunctionAnalysisManager, Module > MachineFunctionAnalysisManagerModuleProxy
LLVM_ABI void printLoop(const Loop &L, raw_ostream &OS, const std::string &Banner="")
Function to print a loop's contents as LLVM's text IR assembly.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
LLVM_ABI void write_hex(raw_ostream &S, uint64_t N, HexPrintStyle Style, std::optional< size_t > Width=std::nullopt)
LLVM_ABI std::string doSystemDiff(StringRef Before, StringRef After, StringRef OldLineFormat, StringRef NewLineFormat, StringRef UnchangedLineFormat)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
LLVM_ABI Error errorCodeToError(std::error_code EC)
Helper for converting an std::error_code to a Error.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI stable_hash StructuralHash(const Function &F, bool DetailedHash=false)
Returns a hash of the function F.
LLVM_ABI bool verifyModule(const Module &M, raw_ostream *OS=nullptr, bool *BrokenDebugInfo=nullptr)
Check a module for errors.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
LLVM_ABI TimeTraceProfilerEntry * timeTraceProfilerBegin(StringRef Name, StringRef Detail)
Manually begin a time section, with the given Name and Detail.
Result run(Function &F, FunctionAnalysisManager &FAM)
Run the analysis pass over a function and produce CFG.
PreservedCFGCheckerInstrumentation::CFG Result
Provide the result type for this analysis pass.
Result run(Function &F, FunctionAnalysisManager &FAM)
Result run(Module &F, ModuleAnalysisManager &FAM)
A CRTP mix-in that provides informational APIs needed for analysis passes.
A special type used by analysis passes to provide an address that identifies that particular analysis...
static std::string getEdgeAttributes(const DisplayNode *From, DisplayNode::ChildIterator &To, const DotCfgDiffDisplayGraph *DiffData)
static std::string getGraphName(const DotCfgDiffDisplayGraph *DiffData)
static std::string getEdgeSourceLabel(const DisplayNode *From, DisplayNode::ChildIterator &To)
static std::string getNodeAttributes(const DisplayNode *Node, const DotCfgDiffDisplayGraph *DiffData)
static std::string getNodeLabel(const DisplayNode *Node, const DotCfgDiffDisplayGraph *DiffData)
static bool renderNodesUsingHTML()
static std::string getGraphProperties(const DotCfgDiffDisplayGraph *DiffData)
DOTGraphTraits(bool Simple=false)
DefaultDOTGraphTraits(bool simple=false)
static ChildEdgeIterator child_edge_end(NodeRef N)
static unsigned size(const DotCfgDiffDisplayGraph *G)
static NodeRef getEntryNode(const DotCfgDiffDisplayGraph *G)
DisplayNode::EdgeIterator ChildEdgeIterator
static ChildIteratorType child_begin(NodeRef N)
const DisplayEdge * EdgeRef
static ChildIteratorType child_end(NodeRef N)
const DisplayNode * NodeRef
static NodeRef edge_dest(EdgeRef E)
DotCfgDiffDisplayGraph::NodeIterator nodes_iterator
DisplayNode::ChildIterator ChildIteratorType
static nodes_iterator nodes_begin(const DotCfgDiffDisplayGraph *G)
static ChildEdgeIterator child_edge_begin(NodeRef N)
static nodes_iterator nodes_end(const DotCfgDiffDisplayGraph *G)
std::optional< DenseMap< intptr_t, BBGuard > > BBGuards
static LLVM_ABI void printDiff(raw_ostream &out, const CFG &Before, const CFG &After)
LLVM_ABI CFG(const Function *F, bool TrackBBLifetime)
LLVM_ABI bool invalidate(Function &F, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &)
DenseMap< const BasicBlock *, DenseMap< const BasicBlock *, unsigned > > Graph
bool Indent
Indent based on hierarchy.