[llvm] 9f30815 - [JSON][NFC] Support `print` and `dump` methods in `json::Value` (#129302)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 06:59:47 PDT 2025
Author: Nikolay Panchenko
Date: 2025-03-11T09:59:44-04:00
New Revision: 9f30815b1c3ee0a20954ea596ea2aa5612bf5ec3
URL: https://github.com/llvm/llvm-project/commit/9f30815b1c3ee0a20954ea596ea2aa5612bf5ec3
DIFF: https://github.com/llvm/llvm-project/commit/9f30815b1c3ee0a20954ea596ea2aa5612bf5ec3.diff
LOG: [JSON][NFC] Support `print` and `dump` methods in `json::Value` (#129302)
Added:
Modified:
llvm/include/llvm/Support/JSON.h
llvm/lib/Support/JSON.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/Support/JSON.h b/llvm/include/llvm/Support/JSON.h
index 14a5c7142ed8c..3e3f783ffb857 100644
--- a/llvm/include/llvm/Support/JSON.h
+++ b/llvm/include/llvm/Support/JSON.h
@@ -472,6 +472,14 @@ class Value {
return LLVM_LIKELY(Type == T_Array) ? &as<json::Array>() : nullptr;
}
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
+ void print(llvm::raw_ostream &OS) const;
+ LLVM_DUMP_METHOD void dump() const {
+ print(llvm::dbgs());
+ llvm::dbgs() << '\n';
+ }
+#endif // !NDEBUG || LLVM_ENABLE_DUMP
+
private:
void destroy();
void copyFrom(const Value &M);
diff --git a/llvm/lib/Support/JSON.cpp b/llvm/lib/Support/JSON.cpp
index a5c617bb4a076..98fef5dcf68a3 100644
--- a/llvm/lib/Support/JSON.cpp
+++ b/llvm/lib/Support/JSON.cpp
@@ -182,6 +182,10 @@ void Value::destroy() {
}
}
+#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
+void Value::print(llvm::raw_ostream &OS) const { OS << *this; }
+#endif // !NDEBUG || LLVM_ENABLE_DUMP
+
bool operator==(const Value &L, const Value &R) {
if (L.kind() != R.kind())
return false;
More information about the llvm-commits
mailing list