LLVM  8.0.1
EndianStream.h
Go to the documentation of this file.
1 //===- EndianStream.h - Stream ops with endian specific data ----*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines utilities for operating on streams that have endian
11 // specific data.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #ifndef LLVM_SUPPORT_ENDIANSTREAM_H
16 #define LLVM_SUPPORT_ENDIANSTREAM_H
17 
18 #include "llvm/ADT/ArrayRef.h"
19 #include "llvm/Support/Endian.h"
21 
22 namespace llvm {
23 namespace support {
24 
25 namespace endian {
26 
27 template <typename value_type>
28 inline void write(raw_ostream &os, value_type value, endianness endian) {
29  value = byte_swap<value_type>(value, endian);
30  os.write((const char *)&value, sizeof(value_type));
31 }
32 
33 template <>
34 inline void write<float>(raw_ostream &os, float value, endianness endian) {
35  write(os, FloatToBits(value), endian);
36 }
37 
38 template <>
39 inline void write<double>(raw_ostream &os, double value,
40  endianness endian) {
41  write(os, DoubleToBits(value), endian);
42 }
43 
44 template <typename value_type>
45 inline void write(raw_ostream &os, ArrayRef<value_type> vals,
46  endianness endian) {
47  for (value_type v : vals)
48  write(os, v, endian);
49 }
50 
51 /// Adapter to write values to a stream in a particular byte order.
52 struct Writer {
55  Writer(raw_ostream &OS, endianness Endian) : OS(OS), Endian(Endian) {}
56  template <typename value_type> void write(ArrayRef<value_type> Val) {
57  endian::write(OS, Val, Endian);
58  }
59  template <typename value_type> void write(value_type Val) {
60  endian::write(OS, Val, Endian);
61  }
62 };
63 
64 } // end namespace endian
65 
66 } // end namespace support
67 } // end namespace llvm
68 
69 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
void write(value_type Val)
Definition: EndianStream.h:59
Writer(raw_ostream &OS, endianness Endian)
Definition: EndianStream.h:55
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
uint32_t FloatToBits(float Float)
This function takes a float and returns the bit equivalent 32-bit integer.
Definition: MathExtras.h:601
void write(void *memory, value_type value, endianness endian)
Write a value to memory with a particular endianness.
Definition: Endian.h:100
void write< float >(raw_ostream &os, float value, endianness endian)
Definition: EndianStream.h:34
raw_ostream & write(unsigned char C)
void write(ArrayRef< value_type > Val)
Definition: EndianStream.h:56
uint64_t DoubleToBits(double Double)
This function takes a double and returns the bit equivalent 64-bit integer.
Definition: MathExtras.h:591
Adapter to write values to a stream in a particular byte order.
Definition: EndianStream.h:52
void write< double >(raw_ostream &os, double value, endianness endian)
Definition: EndianStream.h:39
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46