From a655710ce00ba8b82cdaac15d675c26f909bd7d2 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Fri, 28 Mar 2014 19:14:43 +0000 Subject: 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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205032 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/EndianStream.h | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 include/llvm/Support/EndianStream.h (limited to 'include/llvm/Support/EndianStream.h') diff --git a/include/llvm/Support/EndianStream.h b/include/llvm/Support/EndianStream.h new file mode 100644 index 0000000000..89c66d3b84 --- /dev/null +++ b/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 +#include + +namespace llvm { +namespace support { + +namespace endian { +/// Adapter to write values to a stream in a particular byte order. +template struct Writer { + raw_ostream &OS; + Writer(raw_ostream &OS) : OS(OS) {} + template void write(value_type Val) { + Val = byte_swap(Val); + OS.write((const char *)&Val, sizeof(value_type)); + } +}; +} // end namespace endian + +} // end namespace support +} // end namespace llvm + +#endif // _LLVM_SUPPORT_ENDIAN_STREAM_H_ -- cgit v1.2.3