QP/C++ 6.9.3
qs_fp.cpp
Go to the documentation of this file.
1 
39 #define QP_IMPL // this is QF/QK implementation
40 #include "qs_port.hpp" // QS port
41 #include "qs_pkg.hpp" // QS package-scope internal interface
42 
43 namespace QP {
44 
45 //****************************************************************************
49 void QS::f32_fmt_(std::uint8_t format, float32_t const d) noexcept {
50  union F32Rep {
51  float32_t f;
52  std::uint32_t u;
53  } fu32; // the internal binary representation
54  std::uint8_t chksum_ = priv_.chksum; // put in a temporary (register)
55  std::uint8_t * const buf_ = priv_.buf; // put in a temporary (register)
56  QSCtr head_ = priv_.head; // put in a temporary (register)
57  QSCtr const end_ = priv_.end; // put in a temporary (register)
58 
59  fu32.f = d; // assign the binary representation
60 
61  priv_.used += 5U; // 5 bytes about to be added
62  QS_INSERT_ESC_BYTE_(format) // insert the format byte
63 
64  for (std::uint_fast8_t i = 4U; i != 0U; --i) {
65  format = static_cast<std::uint8_t>(fu32.u);
66  QS_INSERT_ESC_BYTE_(format)
67  fu32.u >>= 8U;
68  }
69 
70  priv_.head = head_; // save the head
71  priv_.chksum = chksum_; // save the checksum
72 }
73 
74 //****************************************************************************
78 void QS::f64_fmt_(std::uint8_t format, float64_t const d) noexcept {
79  union F64Rep {
80  float64_t d;
81  std::uint32_t u[2];
82  } fu64; // the internal binary representation
83  std::uint8_t chksum_ = priv_.chksum;
84  std::uint8_t * const buf_ = priv_.buf;
85  QSCtr head_ = priv_.head;
86  QSCtr const end_ = priv_.end;
87  std::uint32_t i;
88  // static constant untion to detect endianness of the machine
89  static union U32Rep {
90  std::uint32_t u32;
91  std::uint8_t u8;
92  } const endian = { 1U };
93 
94  fu64.d = d; // assign the binary representation
95 
96  // is this a big-endian machine?
97  if (endian.u8 == 0U) {
98  // swap fu64.u[0] <-> fu64.u[1]...
99  i = fu64.u[0];
100  fu64.u[0] = fu64.u[1];
101  fu64.u[1] = i;
102  }
103 
104  priv_.used += 9U; // 9 bytes about to be added
105  QS_INSERT_ESC_BYTE_(format) // insert the format byte
106 
107  // output 4 bytes from fu64.u[0]...
108  for (i = 4U; i != 0U; --i) {
109  QS_INSERT_ESC_BYTE_(static_cast<std::uint8_t>(fu64.u[0]))
110  fu64.u[0] >>= 8U;
111  }
112 
113  // output 4 bytes from fu64.u[1]...
114  for (i = 4U; i != 0U; --i) {
115  QS_INSERT_ESC_BYTE_(static_cast<std::uint8_t>(fu64.u[1]))
116  fu64.u[1] >>= 8U;
117  }
118 
119  priv_.head = head_; // update the head
120  priv_.chksum = chksum_; // update the checksum
121 }
122 
123 } // namespace QP
124 
unsigned long int uint32_t
exact-width 32-bit unsigned int
Definition: 16bit/stdint.h:31
unsigned char uint8_t
exact-width 8-bit unsigned int
Definition: 16bit/stdint.h:29
unsigned int uint_fast8_t
fast at-least 8-bit unsigned int
Definition: 16bit/stdint.h:36
static void f64_fmt_(std::uint8_t format, float64_t const d) noexcept
Output 64-bit floating point data element with format information.
Definition: qs_fp.cpp:78
static void f32_fmt_(std::uint8_t format, float32_t const d) noexcept
Output 32-bit floating point data element with format information.
Definition: qs_fp.cpp:49
namespace associated with the QP/C++ framework
Definition: struct.dox:1
std::uint_fast16_t QSCtr
QS ring buffer counter and offset type.
Definition: qs.hpp:292
float float32_t
alias for 32-bit IEEE 754 floating point numbers
Definition: qep.hpp:91
double float64_t
alias for 64-bit IEEE 754 floating point numbers
Definition: qep.hpp:100
Internal (package scope) QS/C++ interface.
#define QS_INSERT_ESC_BYTE_(b_)
Internal QS macro to insert an escaped byte into the QS buffer.
Definition: qs_pkg.hpp:51
QS/C++ port to a 32-bit CPU, generic compiler.