aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2014-03-28 19:14:43 +0000
committerJustin Bogner <mail@justinbogner.com>2014-03-28 19:14:43 +0000
commit96ba6270075ffbe7e333d3ebdc84a4c589894902 (patch)
tree2c7657bb0a5bb058064b0e3c9d6eff31f7156657
parentc44c26b4e13d5cbbc22231a73e9240c1d425b9c6 (diff)
downloadllvm-96ba6270075ffbe7e333d3ebdc84a4c589894902.zip
llvm-96ba6270075ffbe7e333d3ebdc84a4c589894902.tar.gz
llvm-96ba6270075ffbe7e333d3ebdc84a4c589894902.tar.bz2
Support: Functions for writing endian specific data to streams.
This adds a new header, EndianStream.h, which supplies an adaptor for writing endian specific data to a raw_ostream. llvm-svn: 205032
-rw-r--r--llvm/include/llvm/Support/EndianStream.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/llvm/include/llvm/Support/EndianStream.h b/llvm/include/llvm/Support/EndianStream.h
new file mode 100644
index 0000000..89c66d3
--- /dev/null
+++ b/llvm/include/llvm/Support/EndianStream.h
@@ -0,0 +1,39 @@
+//===- EndianStream.h - Stream ops with endian specific data ----*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines utilities for operating on streams that have endian
+// specific data.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef _LLVM_SUPPORT_ENDIAN_STREAM_H_
+#define _LLVM_SUPPORT_ENDIAN_STREAM_H_
+
+#include <llvm/Support/Endian.h>
+#include <llvm/Support/raw_ostream.h>
+
+namespace llvm {
+namespace support {
+
+namespace endian {
+/// Adapter to write values to a stream in a particular byte order.
+template <endianness endian> struct Writer {
+ raw_ostream &OS;
+ Writer(raw_ostream &OS) : OS(OS) {}
+ template <typename value_type> void write(value_type Val) {
+ Val = byte_swap<value_type, endian>(Val);
+ OS.write((const char *)&Val, sizeof(value_type));
+ }
+};
+} // end namespace endian
+
+} // end namespace support
+} // end namespace llvm
+
+#endif // _LLVM_SUPPORT_ENDIAN_STREAM_H_