14template<
class T> std::string escape(
const T& val) {
15 std::ostringstream oss;
25 Dot(std::ostream& ostream,
bool types,
const Def* root =
nullptr)
31 (tab_++).
println(os_,
"digraph {{");
32 tab_.println(os_,
"ordering=out;");
33 tab_.println(os_,
"splines=false;");
34 tab_.println(os_,
"node [shape=box,style=filled];");
37 void epilogue() { (tab_--).
println(os_,
"}}"); }
39 void run(
const Def* root, uint32_t max) {
45 void recurse(
const Def* def, uint32_t max) {
46 if (max == 0 || !done_.emplace(def).second)
return;
47 tab_.print(os_,
"_{}[", def->gid());
50 os_ <<
"style=\"filled,diagonals,bold\"";
52 os_ <<
"style=\"filled,diagonals\"";
53 else if (def == root_)
54 os_ <<
"style=\"filled,bold\"";
57 if (def->free_vars().empty()) os_ <<
"rank=min,";
58 tooltip(def) <<
"];\n";
60 if (!def->is_set())
return;
62 for (
size_t i = 0, e = def->num_ops(); i != e; ++i) {
65 tab_.print(os_,
"_{} -> _{}[taillabel=\"{}\",", def->gid(),
op->
gid(), i);
66 if (
op->isa<Lit>() ||
op->isa<
Axiom>() || def->isa<
Var>() || def->isa<Nat>() || def->isa<Idx>())
67 print(os_,
"fontcolor=\"#00000000\",color=\"#00000000\",constraint=false];\n");
72 if (
auto t = def->type(); t && types_) {
74 tab_.println(os_,
"_{} -> _{}[color=\"#00000000\",constraint=false,style=dashed];", def->gid(),
t->gid());
78 std::ostream& label(
const Def* def) {
79 print(os_,
"label=<{}<br/>", def->unique_name());
80 if (
auto lit = def->isa<Lit>())
83 os_ << def->node_name();
87 std::ostream& color(
const Def* def) {
91 std::ostream& tooltip(
const Def* def) {
92 static constexpr auto NL =
" ";
93 auto loc = escape(def->loc());
94 auto type = escape(def->type());
96 print(os_,
"tooltip=\"");
97 print(os_,
"<b>expr:</b> {}{}", def, NL);
98 print(os_,
"<b>type:</b> {}{}", type, NL);
99 print(os_,
"<b>name:</b> {}{}", def->sym(), NL);
100 print(os_,
"<b>gid:</b> {}{}", def->gid(), NL);
101 print(os_,
"<b>flags:</b> 0x{x}{}", def->flags(), NL);
102 print(os_,
"<b>free_vars:</b> {{{, }}}{}", def->free_vars(), NL);
103 print(os_,
"<b>local_vars:</b> {{{, }}}{}", def->local_vars(), NL);
104 print(os_,
"<b>local_muts:</b> {{{, }}}{}", def->local_muts(), NL);
105 if (
auto mut = def->isa_mut())
print(os_,
"<b>fv_consumers:</b> {{{, }}}{}", mut->fv_consumers(), NL);
106 print(os_,
"<b>loc:</b> {}", loc);
107 return print(os_,
"\"");
120void Def::dot(std::ostream& ostream, uint32_t max,
bool types)
const { Dot(ostream, types,
this).run(
this, max); }
122void Def::dot(
const char* file, uint32_t max,
bool types)
const {
124 dot(std::cout, max, types);
126 auto of = std::ofstream(file);
131void World::dot(
const char* file,
bool annexes,
bool types)
const {
135 auto of = std::ofstream(file);
140void World::dot(std::ostream& os,
bool anx,
bool types)
const {
void dot(std::ostream &os, uint32_t max=0xFFFFFF, bool types=false) const
const Def * op(size_t i) const
const auto & annexes() const
const auto & externals() const
Def * external(Sym name)
Lookup by name.
void dot(std::ostream &os, bool annexes=false, bool types=false) const
const Def * annex()
Get Axiom from a plugin.
Ref op(trait o, Ref 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::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
std::ostream & println(std::ostream &os, const char *fmt, Args &&... args)
As above but end with std::endl.