//===--- JSON.h - JSON values, parsing and serialization -------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------------------------------------------------===// /// /// \file /// This file supports working with JSON data. /// /// It comprises: /// /// - classes which hold dynamically-typed parsed JSON structures /// These are value types that can be composed, inspected, and modified. /// See json::Value, and the related types json::Object and json::Array. /// /// - functions to parse JSON text into Values, and to serialize Values to text. /// See parse(), operator<<, and format_provider. /// /// - a convention and helpers for mapping between json::Value and user-defined /// types. See fromJSON(), ObjectMapper, and the class comment on Value. /// /// - an output API json::OStream which can emit JSON without materializing /// all structures as json::Value. /// /// Typically, JSON data would be read from an external source, parsed into /// a Value, and then converted into some native data structure before doing /// real work on it. (And vice versa when writing). /// /// Other serialization mechanisms you may consider: /// /// - YAML is also text-based, and more human-readable than JSON. It's a more /// complex format and data model, and YAML parsers aren't ubiquitous. /// YAMLParser.h is a streaming parser suitable for parsing large documents /// (including JSON, as YAML is a superset). It can be awkward to use /// directly. YAML I/O (YAMLTraits.h) provides data mapping that is more /// declarative than the toJSON/fromJSON conventions here. /// /// - LLVM bitstream is a space- and CPU- efficient binary format. Typically it /// encodes LLVM IR ("bitcode"), but it can be a container for other data. /// Low-level reader/writer libraries are in Bitstream/Bitstream*.h /// //===---------------------------------------------------------------------===// #ifndef LLVM_SUPPORT_JSON_H #define LLVM_SUPPORT_JSON_H #include "llvm/ADT/DenseMap.h" #include "llvm/ADT/SmallVector.h" #include "llvm/ADT/StringRef.h" #include "llvm/Support/Error.h" #include "llvm/Support/FormatVariadic.h" #include "llvm/Support/raw_ostream.h" #include namespace llvm { namespace json { // === String encodings === // // JSON strings are character sequences (not byte sequences like std::string). // We need to know the encoding, and for simplicity only support UTF-8. // // - When parsing, invalid UTF-8 is a syntax error like any other // // - When creating Values from strings, callers must ensure they are UTF-8. // with asserts on, invalid UTF-8 will crash the program // with asserts off, we'll substitute the replacement character (U+FFFD) // Callers can use json::isUTF8() and json::fixUTF8() for validation. // // - When retrieving strings from Values (e.g. asString()), the result will // always be valid UTF-8. /// Returns true if \p S is valid UTF-8, which is required for use as JSON. /// If it returns false, \p Offset is set to a byte offset near the first error. bool isUTF8(llvm::StringRef S, size_t *ErrOffset = nullptr); /// Replaces invalid UTF-8 sequences in \p S with the replacement character /// (U+FFFD). The returned string is valid UTF-8. /// This is much slower than isUTF8, so test that first. std::string fixUTF8(llvm::StringRef S); class Array; class ObjectKey; class Value; template Value toJSON(const llvm::Optional &Opt); /// An Object is a JSON object, which maps strings to heterogenous JSON values. /// It simulates DenseMap. ObjectKey is a maybe-owned string. class Object { using Storage = DenseMap>; Storage M; public: using key_type = ObjectKey; using mapped_type = Value; using value_type = Storage::value_type; using iterator = Storage::iterator; using const_iterator = Storage::const_iterator; Object() = default; // KV is a trivial key-value struct for list-initialization. // (using std::pair forces extra copies). struct KV; explicit Object(std::initializer_list Properties); iterator begin() { return M.begin(); } const_iterator begin() const { return M.begin(); } iterator end() { return M.end(); } const_iterator end() const { return M.end(); } bool empty() const { return M.empty(); } size_t size() const { return M.size(); } void clear() { M.clear(); } std::pair insert(KV E); template std::pair try_emplace(const ObjectKey &K, Ts &&... Args) { return M.try_emplace(K, std::forward(Args)...); } template std::pair try_emplace(ObjectKey &&K, Ts &&... Args) { return M.try_emplace(std::move(K), std::forward(Args)...); } bool erase(StringRef K); void erase(iterator I) { M.erase(I); } iterator find(StringRef K) { return M.find_as(K); } const_iterator find(StringRef K) const { return M.find_as(K); } // operator[] acts as if Value was default-constructible as null. Value &operator[](const ObjectKey &K); Value &operator[](ObjectKey &&K); // Look up a property, returning nullptr if it doesn't exist. Value *get(StringRef K); const Value *get(StringRef K) const; // Typed accessors return None/nullptr if // - the property doesn't exist // - or it has the wrong type llvm::Optional getNull(StringRef K) const; llvm::Optional getBoolean(StringRef K) const; llvm::Optional getNumber(StringRef K) const; llvm::Optional getInteger(StringRef K) const; llvm::Optional getString(StringRef K) const; const json::Object *getObject(StringRef K) const; json::Object *getObject(StringRef K); const json::Array *getArray(StringRef K) const; json::Array *getArray(StringRef K); }; bool operator==(const Object &LHS, const Object &RHS); inline bool operator!=(const Object &LHS, const Object &RHS) { return !(LHS == RHS); } /// An Array is a JSON array, which contains heterogeneous JSON values. /// It simulates std::vector. class Array { std::vector V; public: using value_type = Value; using iterator = std::vector::iterator; using const_iterator = std::vector::const_iterator; Array() = default; explicit Array(std::initializer_list Elements); template explicit Array(const Collection &C) { for (const auto &V : C) emplace_back(V); } Value &operator[](size_t I) { return V[I]; } const Value &operator[](size_t I) const { return V[I]; } Value &front() { return V.front(); } const Value &front() const { return V.front(); } Value &back() { return V.back(); } const Value &back() const { return V.back(); } Value *data() { return V.data(); } const Value *data() const { return V.data(); } iterator begin() { return V.begin(); } const_iterator begin() const { return V.begin(); } iterator end() { return V.end(); } const_iterator end() const { return V.end(); } bool empty() const { return V.empty(); } size_t size() const { return V.size(); } void reserve(size_t S) { V.reserve(S); } void clear() { V.clear(); } void push_back(const Value &E) { V.push_back(E); } void push_back(Value &&E) { V.push_back(std::move(E)); } template void emplace_back(Args &&... A) { V.emplace_back(std::forward(A)...); } void pop_back() { V.pop_back(); } // FIXME: insert() takes const_iterator since C++11, old libstdc++ disagrees. iterator insert(iterator P, const Value &E) { return V.insert(P, E); } iterator insert(iterator P, Value &&E) { return V.insert(P, std::move(E)); } template iterator insert(iterator P, It A, It Z) { return V.insert(P, A, Z); } template iterator emplace(const_iterator P, Args &&... A) { return V.emplace(P, std::forward(A)...); } friend bool operator==(const Array &L, const Array &R) { return L.V == R.V; } }; inline bool operator!=(const Array &L, const Array &R) { return !(L == R); } /// A Value is an JSON value of unknown type. /// They can be copied, but should generally be moved. /// /// === Composing values === /// /// You can implicitly construct Values from: /// - strings: std::string, SmallString, formatv, StringRef, char* /// (char*, and StringRef are references, not copies!) /// - numbers /// - booleans /// - null: nullptr /// - arrays: {"foo", 42.0, false} /// - serializable things: types with toJSON(const T&)->Value, found by ADL /// /// They can also be constructed from object/array helpers: /// - json::Object is a type like map /// - json::Array is a type like vector /// These can be list-initialized, or used to build up collections in a loop. /// json::ary(Collection) converts all items in a collection to Values. /// /// === Inspecting values === /// /// Each Value is one of the JSON kinds: /// null (nullptr_t) /// boolean (bool) /// number (double or int64) /// string (StringRef) /// array (json::Array) /// object (json::Object) /// /// The kind can be queried directly, or implicitly via the typed accessors: /// if (Optional S = E.getAsString() /// assert(E.kind() == Value::String); /// /// Array and Object also have typed indexing accessors for easy traversal: /// Expected E = parse(R"( {"options": {"font": "sans-serif"}} )"); /// if (Object* O = E->getAsObject()) /// if (Object* Opts = O->getObject("options")) /// if (Optional Font = Opts->getString("font")) /// assert(Opts->at("font").kind() == Value::String); /// /// === Converting JSON values to C++ types === /// /// The convention is to have a deserializer function findable via ADL: /// fromJSON(const json::Value&, T&)->bool /// Deserializers are provided for: /// - bool /// - int and int64_t /// - double /// - std::string /// - vector, where T is deserializable /// - map, where T is deserializable /// - Optional, where T is deserializable /// ObjectMapper can help writing fromJSON() functions for object types. /// /// For conversion in the other direction, the serializer function is: /// toJSON(const T&) -> json::Value /// If this exists, then it also allows constructing Value from T, and can /// be used to serialize vector, map, and Optional. /// /// === Serialization === /// /// Values can be serialized to JSON: /// 1) raw_ostream << Value // Basic formatting. /// 2) raw_ostream << formatv("{0}", Value) // Basic formatting. /// 3) raw_ostream << formatv("{0:2}", Value) // Pretty-print with indent 2. /// /// And parsed: /// Expected E = json::parse("[1, 2, null]"); /// assert(E && E->kind() == Value::Array); class Value { public: enum Kind { Null, Boolean, /// Number values can store both int64s and doubles at full precision, /// depending on what they were constructed/parsed from. Number, String, Array, Object, }; // It would be nice to have Value() be null. But that would make {} null too. Value(const Value &M) { copyFrom(M); } Value(Value &&M) { moveFrom(std::move(M)); } Value(std::initializer_list Elements); Value(json::Array &&Elements) : Type(T_Array) { create(std::move(Elements)); } template Value(const std::vector &C) : Value(json::Array(C)) {} Value(json::Object &&Properties) : Type(T_Object) { create(std::move(Properties)); } template Value(const std::map &C) : Value(json::Object(C)) {} // Strings: types with value semantics. Must be valid UTF-8. Value(std::string V) : Type(T_String) { if (LLVM_UNLIKELY(!isUTF8(V))) { assert(false && "Invalid UTF-8 in value used as JSON"); V = fixUTF8(std::move(V)); } create(std::move(V)); } Value(const llvm::SmallVectorImpl &V) : Value(std::string(V.begin(), V.end())) {} Value(const llvm::formatv_object_base &V) : Value(V.str()) {} // Strings: types with reference semantics. Must be valid UTF-8. Value(StringRef V) : Type(T_StringRef) { create(V); if (LLVM_UNLIKELY(!isUTF8(V))) { assert(false && "Invalid UTF-8 in value used as JSON"); *this = Value(fixUTF8(V)); } } Value(const char *V) : Value(StringRef(V)) {} Value(std::nullptr_t) : Type(T_Null) {} // Boolean (disallow implicit conversions). // (The last template parameter is a dummy to keep templates distinct.) template ::value>, bool = false> Value(T B) : Type(T_Boolean) { create(B); } // Integers (except boolean). Must be non-narrowing convertible to int64_t. template ::value>, typename = std::enable_if_t::value>> Value(T I) : Type(T_Integer) { create(int64_t{I}); } // Floating point. Must be non-narrowing convertible to double. template ::value>, double * = nullptr> Value(T D) : Type(T_Double) { create(double{D}); } // Serializable types: with a toJSON(const T&)->Value function, found by ADL. template ::value>, Value * = nullptr> Value(const T &V) : Value(toJSON(V)) {} Value &operator=(const Value &M) { destroy(); copyFrom(M); return *this; } Value &operator=(Value &&M) { destroy(); moveFrom(std::move(M)); return *this; } ~Value() { destroy(); } Kind kind() const { switch (Type) { case T_Null: return Null; case T_Boolean: return Boolean; case T_Double: case T_Integer: return Number; case T_String: case T_StringRef: return String; case T_Object: return Object; case T_Array: return Array; } llvm_unreachable("Unknown kind"); } // Typed accessors return None/nullptr if the Value is not of this type. llvm::Optional getAsNull() const { if (LLVM_LIKELY(Type == T_Null)) return nullptr; return llvm::None; } llvm::Optional getAsBoolean() const { if (LLVM_LIKELY(Type == T_Boolean)) return as(); return llvm::None; } llvm::Optional getAsNumber() const { if (LLVM_LIKELY(Type == T_Double)) return as(); if (LLVM_LIKELY(Type == T_Integer)) return as(); return llvm::None; } // Succeeds if the Value is a Number, and exactly representable as int64_t. llvm::Optional getAsInteger() const { if (LLVM_LIKELY(Type == T_Integer)) return as(); if (LLVM_LIKELY(Type == T_Double)) { double D = as(); if (LLVM_LIKELY(std::modf(D, &D) == 0.0 && D >= double(std::numeric_limits::min()) && D <= double(std::numeric_limits::max()))) return D; } return llvm::None; } llvm::Optional getAsString() const { if (Type == T_String) return llvm::StringRef(as()); if (LLVM_LIKELY(Type == T_StringRef)) return as(); return llvm::None; } const json::Object *getAsObject() const { return LLVM_LIKELY(Type == T_Object) ? &as() : nullptr; } json::Object *getAsObject() { return LLVM_LIKELY(Type == T_Object) ? &as() : nullptr; } const json::Array *getAsArray() const { return LLVM_LIKELY(Type == T_Array) ? &as() : nullptr; } json::Array *getAsArray() { return LLVM_LIKELY(Type == T_Array) ? &as() : nullptr; } private: void destroy(); void copyFrom(const Value &M); // We allow moving from *const* Values, by marking all members as mutable! // This hack is needed to support initializer-list syntax efficiently. // (std::initializer_list is a container of const T). void moveFrom(const Value &&M); friend class Array; friend class Object; template void create(U &&... V) { new (reinterpret_cast(Union.buffer)) T(std::forward(V)...); } template T &as() const { // Using this two-step static_cast via void * instead of reinterpret_cast // silences a -Wstrict-aliasing false positive from GCC6 and earlier. void *Storage = static_cast(Union.buffer); return *static_cast(Storage); } friend class OStream; enum ValueType : char { T_Null, T_Boolean, T_Double, T_Integer, T_StringRef, T_String, T_Object, T_Array, }; // All members mutable, see moveFrom(). mutable ValueType Type; mutable llvm::AlignedCharArrayUnion Union; friend bool operator==(const Value &, const Value &); }; bool operator==(const Value &, const Value &); inline bool operator!=(const Value &L, const Value &R) { return !(L == R); } /// ObjectKey is a used to capture keys in Object. Like Value but: /// - only strings are allowed /// - it's optimized for the string literal case (Owned == nullptr) /// Like Value, strings must be UTF-8. See isUTF8 documentation for details. class ObjectKey { public: ObjectKey(const char *S) : ObjectKey(StringRef(S)) {} ObjectKey(std::string S) : Owned(new std::string(std::move(S))) { if (LLVM_UNLIKELY(!isUTF8(*Owned))) { assert(false && "Invalid UTF-8 in value used as JSON"); *Owned = fixUTF8(std::move(*Owned)); } Data = *Owned; } ObjectKey(llvm::StringRef S) : Data(S) { if (LLVM_UNLIKELY(!isUTF8(Data))) { assert(false && "Invalid UTF-8 in value used as JSON"); *this = ObjectKey(fixUTF8(S)); } } ObjectKey(const llvm::SmallVectorImpl &V) : ObjectKey(std::string(V.begin(), V.end())) {} ObjectKey(const llvm::formatv_object_base &V) : ObjectKey(V.str()) {} ObjectKey(const ObjectKey &C) { *this = C; } ObjectKey(ObjectKey &&C) : ObjectKey(static_cast(C)) {} ObjectKey &operator=(const ObjectKey &C) { if (C.Owned) { Owned.reset(new std::string(*C.Owned)); Data = *Owned; } else { Data = C.Data; } return *this; } ObjectKey &operator=(ObjectKey &&) = default; operator llvm::StringRef() const { return Data; } std::string str() const { return Data.str(); } private: // FIXME: this is unneccesarily large (3 pointers). Pointer + length + owned // could be 2 pointers at most. std::unique_ptr Owned; llvm::StringRef Data; }; inline bool operator==(const ObjectKey &L, const ObjectKey &R) { return llvm::StringRef(L) == llvm::StringRef(R); } inline bool operator!=(const ObjectKey &L, const ObjectKey &R) { return !(L == R); } inline bool operator<(const ObjectKey &L, const ObjectKey &R) { return StringRef(L) < StringRef(R); } struct Object::KV { ObjectKey K; Value V; }; inline Object::Object(std::initializer_list Properties) { for (const auto &P : Properties) { auto R = try_emplace(P.K, nullptr); if (R.second) R.first->getSecond().moveFrom(std::move(P.V)); } } inline std::pair Object::insert(KV E) { return try_emplace(std::move(E.K), std::move(E.V)); } inline bool Object::erase(StringRef K) { return M.erase(ObjectKey(K)); } // Standard deserializers are provided for primitive types. // See comments on Value. inline bool fromJSON(const Value &E, std::string &Out) { if (auto S = E.getAsString()) { Out = std::string(*S); return true; } return false; } inline bool fromJSON(const Value &E, int &Out) { if (auto S = E.getAsInteger()) { Out = *S; return true; } return false; } inline bool fromJSON(const Value &E, int64_t &Out) { if (auto S = E.getAsInteger()) { Out = *S; return true; } return false; } inline bool fromJSON(const Value &E, double &Out) { if (auto S = E.getAsNumber()) { Out = *S; return true; } return false; } inline bool fromJSON(const Value &E, bool &Out) { if (auto S = E.getAsBoolean()) { Out = *S; return true; } return false; } inline bool fromJSON(const Value &E, std::nullptr_t &Out) { if (auto S = E.getAsNull()) { Out = *S; return true; } return false; } template bool fromJSON(const Value &E, llvm::Optional &Out) { if (E.getAsNull()) { Out = llvm::None; return true; } T Result; if (!fromJSON(E, Result)) return false; Out = std::move(Result); return true; } template bool fromJSON(const Value &E, std::vector &Out) { if (auto *A = E.getAsArray()) { Out.clear(); Out.resize(A->size()); for (size_t I = 0; I < A->size(); ++I) if (!fromJSON((*A)[I], Out[I])) return false; return true; } return false; } template bool fromJSON(const Value &E, std::map &Out) { if (auto *O = E.getAsObject()) { Out.clear(); for (const auto &KV : *O) if (!fromJSON(KV.second, Out[std::string(llvm::StringRef(KV.first))])) return false; return true; } return false; } // Allow serialization of Optional for supported T. template Value toJSON(const llvm::Optional &Opt) { return Opt ? Value(*Opt) : Value(nullptr); } /// Helper for mapping JSON objects onto protocol structs. /// /// Example: /// \code /// bool fromJSON(const Value &E, MyStruct &R) { /// ObjectMapper O(E); /// if (!O || !O.map("mandatory_field", R.MandatoryField)) /// return false; /// O.map("optional_field", R.OptionalField); /// return true; /// } /// \endcode class ObjectMapper { public: ObjectMapper(const Value &E) : O(E.getAsObject()) {} /// True if the expression is an object. /// Must be checked before calling map(). operator bool() { return O; } /// Maps a property to a field, if it exists. template bool map(StringRef Prop, T &Out) { assert(*this && "Must check this is an object before calling map()"); if (const Value *E = O->get(Prop)) return fromJSON(*E, Out); return false; } /// Maps a property to a field, if it exists. /// (Optional requires special handling, because missing keys are OK). template bool map(StringRef Prop, llvm::Optional &Out) { assert(*this && "Must check this is an object before calling map()"); if (const Value *E = O->get(Prop)) return fromJSON(*E, Out); Out = llvm::None; return true; } private: const Object *O; }; /// Parses the provided JSON source, or returns a ParseError. /// The returned Value is self-contained and owns its strings (they do not refer /// to the original source). llvm::Expected parse(llvm::StringRef JSON); class ParseError : public llvm::ErrorInfo { const char *Msg; unsigned Line, Column, Offset; public: static char ID; ParseError(const char *Msg, unsigned Line, unsigned Column, unsigned Offset) : Msg(Msg), Line(Line), Column(Column), Offset(Offset) {} void log(llvm::raw_ostream &OS) const override { OS << llvm::formatv("[{0}:{1}, byte={2}]: {3}", Line, Column, Offset, Msg); } std::error_code convertToErrorCode() const override { return llvm::inconvertibleErrorCode(); } }; /// json::OStream allows writing well-formed JSON without materializing /// all structures as json::Value ahead of time. /// It's faster, lower-level, and less safe than OS << json::Value. /// /// Only one "top-level" object can be written to a stream. /// Simplest usage involves passing lambdas (Blocks) to fill in containers: /// /// json::OStream J(OS); /// J.array([&]{ /// for (const Event &E : Events) /// J.object([&] { /// J.attribute("timestamp", int64_t(E.Time)); /// J.attributeArray("participants", [&] { /// for (const Participant &P : E.Participants) /// J.value(P.toString()); /// }); /// }); /// }); /// /// This would produce JSON like: /// /// [ /// { /// "timestamp": 19287398741, /// "participants": [ /// "King Kong", /// "Miley Cyrus", /// "Cleopatra" /// ] /// }, /// ... /// ] /// /// The lower level begin/end methods (arrayBegin()) are more flexible but /// care must be taken to pair them correctly: /// /// json::OStream J(OS); // J.arrayBegin(); /// for (const Event &E : Events) { /// J.objectBegin(); /// J.attribute("timestamp", int64_t(E.Time)); /// J.attributeBegin("participants"); /// for (const Participant &P : E.Participants) /// J.value(P.toString()); /// J.attributeEnd(); /// J.objectEnd(); /// } /// J.arrayEnd(); /// /// If the call sequence isn't valid JSON, asserts will fire in debug mode. /// This can be mismatched begin()/end() pairs, trying to emit attributes inside /// an array, and so on. /// With asserts disabled, this is undefined behavior. class OStream { public: using Block = llvm::function_ref; // If IndentSize is nonzero, output is pretty-printed. explicit OStream(llvm::raw_ostream &OS, unsigned IndentSize = 0) : OS(OS), IndentSize(IndentSize) { Stack.emplace_back(); } ~OStream() { assert(Stack.size() == 1 && "Unmatched begin()/end()"); assert(Stack.back().Ctx == Singleton); assert(Stack.back().HasValue && "Did not write top-level value"); } /// Flushes the underlying ostream. OStream does not buffer internally. void flush() { OS.flush(); } // High level functions to output a value. // Valid at top-level (exactly once), in an attribute value (exactly once), // or in an array (any number of times). /// Emit a self-contained value (number, string, vector etc). void value(const Value &V); /// Emit an array whose elements are emitted in the provided Block. void array(Block Contents) { arrayBegin(); Contents(); arrayEnd(); } /// Emit an object whose elements are emitted in the provided Block. void object(Block Contents) { objectBegin(); Contents(); objectEnd(); } // High level functions to output object attributes. // Valid only within an object (any number of times). /// Emit an attribute whose value is self-contained (number, vector etc). void attribute(llvm::StringRef Key, const Value& Contents) { attributeImpl(Key, [&] { value(Contents); }); } /// Emit an attribute whose value is an array with elements from the Block. void attributeArray(llvm::StringRef Key, Block Contents) { attributeImpl(Key, [&] { array(Contents); }); } /// Emit an attribute whose value is an object with attributes from the Block. void attributeObject(llvm::StringRef Key, Block Contents) { attributeImpl(Key, [&] { object(Contents); }); } // Low-level begin/end functions to output arrays, objects, and attributes. // Must be correctly paired. Allowed contexts are as above. void arrayBegin(); void arrayEnd(); void objectBegin(); void objectEnd(); void attributeBegin(llvm::StringRef Key); void attributeEnd(); private: void attributeImpl(llvm::StringRef Key, Block Contents) { attributeBegin(Key); Contents(); attributeEnd(); } void valueBegin(); void newline(); enum Context { Singleton, // Top level, or object attribute. Array, Object, }; struct State { Context Ctx = Singleton; bool HasValue = false; }; llvm::SmallVector Stack; // Never empty. llvm::raw_ostream &OS; unsigned IndentSize; unsigned Indent = 0; }; /// Serializes this Value to JSON, writing it to the provided stream. /// The formatting is compact (no extra whitespace) and deterministic. /// For pretty-printing, use the formatv() format_provider below. inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Value &V) { OStream(OS).value(V); return OS; } } // namespace json /// Allow printing json::Value with formatv(). /// The default style is basic/compact formatting, like operator<<. /// A format string like formatv("{0:2}", Value) pretty-prints with indent 2. template <> struct format_provider { static void format(const llvm::json::Value &, raw_ostream &, StringRef); }; } // namespace llvm #endif