LLVM 19.0.0git
Classes | Namespaces | Enumerations
MsgPackReader.h File Reference
#include "llvm/Support/Error.h"
#include "llvm/Support/MemoryBufferRef.h"
#include <cstdint>

Go to the source code of this file.

Classes

struct  llvm::msgpack::ExtensionType
 Extension types are composed of a user-defined type ID and an uninterpreted sequence of bytes. More...
 
struct  llvm::msgpack::Object
 MessagePack object, represented as a tagged union of C++ types. More...
 
class  llvm::msgpack::Reader
 Reads MessagePack objects from memory, one at a time. More...
 

Namespaces

namespace  llvm
 This is an optimization pass for GlobalISel generic memory operations.
 
namespace  llvm::msgpack
 

Enumerations

enum class  llvm::msgpack::Type : uint8_t {
  llvm::msgpack::Int , llvm::msgpack::UInt , llvm::msgpack::Nil , llvm::msgpack::Boolean ,
  llvm::msgpack::Float , llvm::msgpack::String , llvm::msgpack::Binary , llvm::msgpack::Array ,
  llvm::msgpack::Map , llvm::msgpack::Extension , llvm::msgpack::Empty
}
 MessagePack types as defined in the standard, with the exception of Integer being divided into a signed Int and unsigned UInt variant in order to map directly to C++ types. More...