11using namespace std::string_literals;
20template<
class T> std::string
escape(
const T& val) {
21 std::ostringstream oss;
31 Dot(std::ostream& ostream,
bool types,
const Def* root =
nullptr)
37 (tab_++).
println(os_,
"digraph {{");
38 tab_.println(os_,
"ordering=out;");
39 tab_.println(os_,
"splines=false;");
40 tab_.println(os_,
"node [shape=box,style=filled];");
43 void epilogue() { (--tab_).
println(os_,
"}}"); }
45 void run(
const Def* root, uint32_t max) {
51 void recurse(
const Def* def, uint32_t max) {
52 if (max == 0 || !done_.emplace(def).second)
return;
53 tab_.print(os_,
"_{}[", def->gid());
56 os_ <<
"style=\"filled,diagonals,bold\"";
58 os_ <<
"style=\"filled,diagonals\"";
59 else if (def == root_)
60 os_ <<
"style=\"filled,bold\"";
63 if (def->free_vars().empty()) os_ <<
"rank=min,";
64 tooltip(def) <<
"];\n";
66 if (!def->is_set())
return;
68 for (
size_t i = 0, e = def->num_ops(); i != e; ++i) {
71 tab_.print(os_,
"_{} -> _{}[taillabel=\"{}\",", def->gid(),
op->
gid(), i);
73 print(os_,
"fontcolor=\"#00000000\",color=\"#00000000\",constraint=false];\n");
78 if (
auto t = def->type(); t && types_) {
80 tab_.println(os_,
"_{} -> _{}[color=\"#00000000\",constraint=false,style=dashed];", def->gid(),
t->gid());
84 std::ostream& label(
const Def* def) {
85 print(os_,
"label=<{}<br/>", def->unique_name());
86 if (
auto lit = def->isa<
Lit>())
89 os_ << def->node_name();
93 std::ostream& color(
const Def* def) {
94 return print(os_,
"fillcolor=\"{} 0.5 0.75\"",
float(def->node()) /
float(
Num_Nodes));
97 std::ostream& tooltip(
const Def* def) {
98 static constexpr auto NL =
" ";
99 auto loc =
escape(def->loc());
100 auto type =
escape(def->type());
102 print(os_,
"tooltip=\"");
103 print(os_,
"<b>expr:</b> {}{}", def, NL);
104 print(os_,
"<b>type:</b> {}{}", type, NL);
105 print(os_,
"<b>name:</b> {}{}", def->sym(), NL);
106 print(os_,
"<b>gid:</b> {}{}", def->gid(), NL);
107 print(os_,
"<b>flags:</b> 0x{x}{}", def->flags(), NL);
108 print(os_,
"<b>mark:</b> 0x{x}{}", def->mark(), NL);
109 print(os_,
"<b>local_muts:</b> {, }{}", def->local_muts(), NL);
110 print(os_,
"<b>local_vars:</b> {, }{}", def->local_vars(), NL);
111 print(os_,
"<b>free_vars:</b> {, }{}", def->free_vars(), NL);
112 if (
auto mut = def->isa_mut())
print(os_,
"<b>users:</b> {{{, }}}{}", mut->users(), NL);
113 print(os_,
"<b>loc:</b> {}", loc);
114 return print(os_,
"\"");
127void Def::dot(std::ostream& ostream, uint32_t max,
bool types)
const { Dot(ostream, types,
this).run(
this, max); }
129void Def::dot(
const char* file, uint32_t max,
bool types)
const {
131 dot(std::cout, max, types);
133 auto of = std::ofstream(file);
142 auto of = std::ofstream(file);
147void World::dot(std::ostream& os,
bool anx,
bool types)
const {
164 auto of = std::ofstream(file);
171 (tab++).
println(os,
"digraph {{");
172 tab.
println(os,
"ordering=out;");
173 tab.
println(os,
"node [shape=box,style=filled];");
174 root()->dot(tab, os);
178void Nest::Node::dot(
Tab tab, std::ostream& os)
const {
180 for (
const auto& scc : topo_) {
182 for (
auto sep =
""s;
auto n : *scc) {
183 s += sep + n->name();
190 tab.
println(os,
"\"{}\":s -> \"{}\":s [style=dashed,constraint=false,splines=true]", this->
name(), dep->name());
void dot(std::ostream &os, uint32_t max=0xFFFFFF, bool types=false) const
const Def * op(size_t i) const noexcept
constexpr u32 gid() const noexcept
Global id - unique number for this Def.
const Node * child(Def *mut) const
bool is_directly_recursive() const
bool is_mutually_recursive() const
uint32_t loop_depth() const
void dot(std::ostream &os) const
const Node * root() const
Keeps track of indentation level.
std::ostream & println(std::ostream &os, const char *s, Args &&... args)
Same as Tab::print but appends a std::endl to os.
const Def * annex(Id id)
Lookup annex by Axiom::id.
Def * external(Sym name)
Lookup by name.
void dot(std::ostream &os, bool annexes=false, bool types=false) const
Dumps DOT to os.
const Def * op(trait o, const Def *type)
int run(std::string cmd, std::string args={})
Wraps sys::system and puts .exe at the back (Windows) and ./ at the front (otherwise) of cmd.
std::string escape(const std::filesystem::path &path)
Returns the path as std::string and escapes all whitespaces with backslash.
std::ostream & print(std::ostream &os, const char *s)
Base case.
void find_and_replace(std::string &str, std::string_view what, std::string_view repl)
Replaces all occurrences of what with repl.
GIDSet< const Def * > DefSet
static constexpr size_t Num_Nodes
std::ostream & println(std::ostream &os, const char *fmt, Args &&... args)
As above but end with std::endl.