From: David Neto Date: Wed, 10 Aug 2016 19:28:11 +0000 (-0400) Subject: Use friendly names for Ids X-Git-Tag: upstream/2018.6~1138 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a5ce18f12dc8c222d69f46af439a932fce305e7;p=platform%2Fupstream%2FSPIRV-Tools.git Use friendly names for Ids --- diff --git a/tools/cfg/bin_to_dot.cpp b/tools/cfg/bin_to_dot.cpp index 41e7ea5..841d1f7 100644 --- a/tools/cfg/bin_to_dot.cpp +++ b/tools/cfg/bin_to_dot.cpp @@ -31,6 +31,7 @@ #include #include "assembly_grammar.h" +#include "name_mapper.h" namespace { @@ -41,7 +42,8 @@ const char* kContinueStyle = "style=dotted"; // a SPIR-V module. class DotConverter { public: - DotConverter(std::iostream* out) : out_(*out) {} + DotConverter(libspirv::NameMapper name_mapper, std::iostream* out) + : name_mapper_(name_mapper), out_(*out) {} // Emits the graph preamble. void Begin() const { @@ -81,6 +83,9 @@ class DotConverter { // otherwise. uint32_t continue_target_ = 0; + // An object for mapping Ids to names. + libspirv::NameMapper name_mapper_; + // The output stream. std::ostream& out_; }; @@ -137,10 +142,11 @@ spv_result_t DotConverter::HandleInstruction( void DotConverter::FlushBlock(const std::vector& successors) { out_ << current_block_id_; if (!seen_function_entry_block_) { - out_ << " [label=\"" << current_block_id_ << "\nFn " << current_function_id_ - << " entry\", shape=box]"; + out_ << " [label=\"" << name_mapper_(current_block_id_) << "\nFn " + << name_mapper_(current_function_id_) << " entry\", shape=box];\n"; + } else { + out_ << " [label=\"" << name_mapper_(current_block_id_) << "\"];\n"; } - out_ << ";\n"; for (auto successor : successors) { out_ << current_block_id_ << " -> " << successor << ";\n"; @@ -179,7 +185,8 @@ spv_result_t BinaryToDot(const spv_const_context context, const uint32_t* words, const libspirv::AssemblyGrammar grammar(context); if (!grammar.isValid()) return SPV_ERROR_INVALID_TABLE; - DotConverter converter(out); + libspirv::FriendlyNameMapper friendly_mapper(context, words, num_words); + DotConverter converter(friendly_mapper.GetNameMapper(), out); converter.Begin(); if (auto error = spvBinaryParse(context, &converter, words, num_words, nullptr, HandleInstruction, diagnostic)) {