From 8787bc9b4def9dd6cc989b0617cb73eed2a83f8a Mon Sep 17 00:00:00 2001 From: Patrick Plenefisch Date: Thu, 14 Dec 2023 06:37:01 -0500 Subject: [PATCH] pioasm: Add JSON output format for machine consumption (#1394) --- tools/pioasm/CMakeLists.txt | 1 + tools/pioasm/json_output.cpp | 139 +++++++++++++++++++++++++++++++++++ 2 files changed, 140 insertions(+) create mode 100644 tools/pioasm/json_output.cpp diff --git a/tools/pioasm/CMakeLists.txt b/tools/pioasm/CMakeLists.txt index 14f2c94b4..83eb4bc63 100644 --- a/tools/pioasm/CMakeLists.txt +++ b/tools/pioasm/CMakeLists.txt @@ -23,6 +23,7 @@ add_executable(pioasm target_sources(pioasm PRIVATE c_sdk_output.cpp) target_sources(pioasm PRIVATE python_output.cpp) target_sources(pioasm PRIVATE hex_output.cpp) +target_sources(pioasm PRIVATE json_output.cpp) target_sources(pioasm PRIVATE ada_output.cpp) target_sources(pioasm PRIVATE ${PIOASM_EXTRA_SOURCE_FILES}) diff --git a/tools/pioasm/json_output.cpp b/tools/pioasm/json_output.cpp new file mode 100644 index 000000000..de2c8c011 --- /dev/null +++ b/tools/pioasm/json_output.cpp @@ -0,0 +1,139 @@ +/* + * Copyright (c) 2020 Raspberry Pi (Trading) Ltd. + * + * SPDX-License-Identifier: BSD-3-Clause + */ + +#include +#include +#include "output_format.h" +#include "pio_disassembler.h" + +struct json_output : public output_format { + struct factory { + factory() { + output_format::add(new json_output()); + } + }; + + json_output() : output_format("json") {} + + std::string get_description() override { + return "Machine-formatted output for integrating with external tools"; + } + + void output_symbols(FILE *out, bool output_labels, std::string prefix, const std::vector &symbols) { + + fprintf(out, "%s\"publicSymbols\": {\n", prefix.c_str()); + bool first = true; + for (const auto &s : symbols) { + if (!s.is_label) { + // output trailing comma if necessary + if (!first) { + fprintf(out, ",\n"); + } else { + first = false; + } + fprintf(out, "%s\t\"%s\": %d", prefix.c_str(), s.name.c_str(), s.value); + } + } + if (!first) + fprintf(out, "\n"); + fprintf(out, "%s},\n", prefix.c_str()); + + if (!output_labels) + return; + + fprintf(out, "%s\"publicLabels\": {\n", prefix.c_str()); + first = true; + for (const auto &s : symbols) { + if (s.is_label) { + // output trailing comma if necessary + if (!first) { + fprintf(out, ",\n"); + } else { + first = false; + } + fprintf(out, "%s\t\"%s\": %d", prefix.c_str(), s.name.c_str(), s.value); + } + } + if (!first) + fprintf(out, "\n"); + fprintf(out, "%s},\n", prefix.c_str()); + } + + int output(std::string destination, std::vector output_options, + const compiled_source &source) override { + + for (const auto &program : source.programs) { + for(const auto &p : program.lang_opts) { + if (p.first.size() >= name.size() && p.first.compare(0, name.size(), name) == 0) { + std::cerr << "warning: " << name << " does not support output options; " << p.first << " lang_opt ignored.\n"; + } + } + } + FILE *out = open_single_output(destination); + if (!out) return 1; + + fprintf(out, "{\n"); + bool first = true; + + output_symbols(out, false, "\t", source.global_symbols); + + const char* tabs = "\t\t\t"; + fprintf(out, "\t\"programs\": [\n"); + + for (const auto &program : source.programs) { + // output trailing comma if necessary + if (!first) { + fprintf(out, ",\n"); + } else { + first = false; + } + fprintf(out, "\t\t{\n"); + + fprintf(out, "%s\"name\": \"%s\",\n", tabs, program.name.c_str()); + fprintf(out, "%s\"wrapTarget\": %d,\n", tabs, program.wrap_target); + fprintf(out, "%s\"wrap\": %d,\n", tabs, program.wrap); + fprintf(out, "%s\"origin\": %d,\n", tabs, program.origin.get()); + + if (program.sideset_bits_including_opt.is_specified()) { + fprintf(out, "%s\"sideset\": {\"size\": %d, \"optional\": %s, \"pindirs\": %s},\n", tabs, program.sideset_bits_including_opt.get(), + program.sideset_opt ? "true" : "false", + program.sideset_pindirs ? "true" : "false"); + } else { + fprintf(out, "%s\"sideset\": {\"size\": 0, \"optional\": false, \"pindirs\": false},\n", tabs, program.origin.get()); + } + + output_symbols(out, true, tabs, program.symbols); + + fprintf(out, "%s\"instructions\": [\n", tabs); + bool first_inst = true; + for (int i = 0; i < (int)program.instructions.size(); i++) { + const auto &inst = program.instructions[i]; + // output trailing comma if necessary + if (!first_inst) { + fprintf(out, ",\n"); + } else { + first_inst = false; + } + // TODO: find a nice, supportable, output format for instruction disassembly. + // Note that may require tearing apart pio_disassembler to return to us something + // that we could output as {"instr":"mov", args: ["x", "~y"], side: 3, delay: 1} + // but that will likely wait for now + fprintf(out, "%s\t{\"hex\": \"%04X\"}",// \"disassembly\": \"%s\"}", + tabs, inst + //, disassemble(inst, program.sideset_bits_including_opt.get(), program.sideset_opt).c_str() + ); + } + fprintf(out, "\n"); + fprintf(out, "%s]\n", tabs); + fprintf(out, "\t\t}"); + } + fprintf(out, "\n\t]\n}\n"); + if (out != stdout) { fclose(out); } + return 0; + } +}; + +static json_output::factory creator;