| /* |
| * Copyright 2016 WebAssembly Community Group participants |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| // |
| // Prints the call graph in .dot format. You can use http://www.graphviz.org/ to |
| // view .dot files. |
| // |
| |
| #include <iomanip> |
| #include <memory> |
| |
| #include "ir/element-utils.h" |
| #include "ir/module-utils.h" |
| #include "ir/utils.h" |
| #include "pass.h" |
| #include "wasm.h" |
| |
| namespace wasm { |
| |
| struct PrintCallGraph : public Pass { |
| bool modifiesBinaryenIR() override { return false; } |
| |
| void run(Module* module) override { |
| std::ostream& o = std::cout; |
| o << "digraph call {\n" |
| " rankdir = LR;\n" |
| " subgraph cluster_key {\n" |
| " node [shape=box, fontname=courier, fontsize=10];\n" |
| " edge [fontname=courier, fontsize=10];\n" |
| " label = \"Key\";\n" |
| " \"Import\" [style=\"filled\", fillcolor=\"turquoise\"];\n" |
| " \"Export\" [style=\"filled\", fillcolor=\"gray\"];\n" |
| " \"Indirect Target\" [style=\"filled, rounded\", " |
| "fillcolor=\"white\"];\n" |
| " \"A\" -> \"B\" [style=\"filled, rounded\", label = \"Direct " |
| "Call\"];\n" |
| " }\n\n" |
| " node [shape=box, fontname=courier, fontsize=10];\n"; |
| |
| // Defined functions |
| ModuleUtils::iterDefinedFunctions(*module, [&](Function* curr) { |
| std::cout << " \"" << curr->name |
| << "\" [style=\"filled\", fillcolor=\"white\"];\n"; |
| }); |
| |
| // Imported functions |
| ModuleUtils::iterImportedFunctions(*module, [&](Function* curr) { |
| o << " \"" << curr->name |
| << "\" [style=\"filled\", fillcolor=\"turquoise\"];\n"; |
| }); |
| |
| // Exports |
| for (auto& curr : module->exports) { |
| if (curr->kind == ExternalKind::Function) { |
| Function* func = module->getFunction(curr->value); |
| o << " \"" << func->name |
| << "\" [style=\"filled\", fillcolor=\"gray\"];\n"; |
| } |
| } |
| |
| struct CallPrinter : public PostWalker<CallPrinter> { |
| Module* module; |
| Function* currFunction; |
| std::set<Name> visitedTargets; // Used to avoid printing duplicate edges. |
| std::vector<Function*> allIndirectTargets; |
| CallPrinter(Module* module) : module(module) { |
| // Walk function bodies. |
| ModuleUtils::iterDefinedFunctions(*module, [&](Function* curr) { |
| currFunction = curr; |
| visitedTargets.clear(); |
| walk(curr->body); |
| }); |
| } |
| void visitCall(Call* curr) { |
| auto* target = module->getFunction(curr->target); |
| if (!visitedTargets.emplace(target->name).second) { |
| return; |
| } |
| std::cout << " \"" << currFunction->name << "\" -> \"" << target->name |
| << "\"; // call\n"; |
| } |
| }; |
| CallPrinter printer(module); |
| |
| // Indirect Targets |
| ElementUtils::iterAllElementFunctionNames(module, [&](Name& name) { |
| auto* func = module->getFunction(name); |
| o << " \"" << func->name << "\" [style=\"filled, rounded\"];\n"; |
| }); |
| |
| o << "}\n"; |
| } |
| }; |
| |
| Pass* createPrintCallGraphPass() { return new PrintCallGraph(); } |
| |
| } // namespace wasm |