[clang] [hmaptool] Add JSON dump option (PR #102648)
Shoaib Meenai via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 9 10:19:52 PDT 2024
https://github.com/smeenai created https://github.com/llvm/llvm-project/pull/102648
The idea is that the output of `hmaptool dump --json` can be fed
directly back to `hmaptool write` for easy round-tripping.
>From 140a930607b34d2795defee00bbac59baf4c23c5 Mon Sep 17 00:00:00 2001
From: Shoaib Meenai <smeenai at fb.com>
Date: Sun, 23 Jan 2022 18:14:00 -0800
Subject: [PATCH] [hmaptool] Add JSON dump option
The idea is that the output of `hmaptool dump --json` can be fed
directly back to `hmaptool write` for easy round-tripping.
---
clang/utils/hmaptool/hmaptool | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/clang/utils/hmaptool/hmaptool b/clang/utils/hmaptool/hmaptool
index d7754632b162bf..ccbb9f7d8a1450 100755
--- a/clang/utils/hmaptool/hmaptool
+++ b/clang/utils/hmaptool/hmaptool
@@ -120,6 +120,9 @@ def action_dump(name, args):
parser.add_option("-v", "--verbose", dest="verbose",
help="show more verbose output [%default]",
action="store_true", default=False)
+ parser.add_option("--json", dest="json",
+ help="output as JSON [%default]",
+ action="store_true", default=False)
(opts, args) = parser.parse_args(args)
if len(args) != 1:
@@ -130,7 +133,6 @@ def action_dump(name, args):
hmap = HeaderMap.frompath(path)
# Dump all of the buckets.
- print ('Header Map: %s' % (path,))
if opts.verbose:
print ('headermap: %r' % (path,))
print (' num entries: %d' % (hmap.num_entries,))
@@ -149,7 +151,10 @@ def action_dump(name, args):
print (" bucket[%d]: %r -> (%r, %r) -- %d" % (
i, key, prefix, suffix, (hmap_hash(key) & (len(hmap.buckets) - 1))))
+ elif opts.json:
+ print(json.dumps({"mappings": dict(hmap.mappings)}, indent=4))
else:
+ print ('Header Map: %s' % (path,))
mappings = sorted(hmap.mappings)
for key,value in mappings:
print ("%s -> %s" % (key, value))
More information about the cfe-commits
mailing list