Functions and class for high precision Q64.64 fixed point arithmetic.
More...
|
#define | HEXHILOW(hi, lo) |
| Print the high and low words of an int64x64 in hex, for debugging.
|
|
|
int64x64_t | ns3::Abs (const int64x64_t &value) |
| Absolute value.
|
|
int64x64_t | ns3::Max (const int64x64_t &a, const int64x64_t &b) |
| Maximum.
|
|
int64x64_t | ns3::Min (const int64x64_t &a, const int64x64_t &b) |
| Minimum.
|
|
bool | ns3::operator!= (const int64x64_t &lhs, const int64x64_t &rhs) |
| Inequality operator.
|
|
int64x64_t | ns3::operator* (const int64x64_t &lhs, const int64x64_t &rhs) |
| Multiplication operator.
|
|
int64x64_t | ns3::operator+ (const int64x64_t &lhs, const int64x64_t &rhs) |
| Addition operator.
|
|
int64x64_t | ns3::operator- (const int64x64_t &lhs, const int64x64_t &rhs) |
| Subtraction operator.
|
|
int64x64_t | ns3::operator/ (const int64x64_t &lhs, const int64x64_t &rhs) |
| Division operator.
|
|
std::ostream & | ns3::operator<< (std::ostream &os, const int64x64_t &value) |
| Output streamer for int64x64_t.
|
|
bool | ns3::operator<= (const int64x64_t &lhs, const int64x64_t &rhs) |
| Less or equal operator.
|
|
bool | ns3::operator>= (const int64x64_t &lhs, const int64x64_t &rhs) |
| Greater or equal operator.
|
|
std::istream & | ns3::operator>> (std::istream &is, int64x64_t &value) |
| Input streamer for int64x64_t.
|
|
static bool | ns3::output_sign (const cairo_int128_t sa, const cairo_int128_t sb, cairo_uint128_t &ua, cairo_uint128_t &ub) |
| Compute the sign of the result of multiplying or dividing Q64.64 fixed precision operands.
|
|
static bool | ns3::output_sign (const int128_t sa, const int128_t sb, uint128_t &ua, uint128_t &ub) |
| Compute the sign of the result of multiplying or dividing Q64.64 fixed precision operands.
|
|
static uint64_t | ns3::ReadHiDigits (std::string str) |
| Read the integer portion of a number from a string containing just the integral digits (no decimal point or fractional part).
|
|
static uint64_t | ns3::ReadLoDigits (std::string str) |
| Read the fractional part of a number from a string containing just the decimal digits of the fractional part (no integral part or decimal point).
|
|
Functions and class for high precision Q64.64 fixed point arithmetic.
A Q64.64 fixed precision number consists of:
Bits | Function |
1 | Sign bit |
63 | Integer portion |
64 | Fractional portion |
The high
word consists of the sign bit and integer value; the low
word is the fractional part, unscaled.
All standard arithmetic operations are supported:
Category | Operators |
Computation | + , += , - , -= , * , *= , / , /= |
Comparison | == , != , < , <= , > , >= |
Unary | + , - , ! |
◆ HEXHILOW
#define HEXHILOW |
( |
|
hi, |
|
|
|
lo |
|
) |
| |
Value: std::hex << std::setfill('0') << std::right << " (0x" << std::setw(16) << hi << " " \
<< std::setw(16) << lo << std::dec << std::setfill(' ') << std::left << ")"
Print the high and low words of an int64x64 in hex, for debugging.
- Parameters
-
[in] | hi | The high (integer) word. |
[in] | lo | The low (fractional) work. |
Definition at line 51 of file int64x64.cc.
◆ Abs()
◆ Max()
Maximum.
- Parameters
-
[in] | a | The first value. |
[in] | b | The second value. |
- Returns
- The larger of the arguments.
Definition at line 243 of file int64x64.h.
◆ Min()
◆ operator!=()
Inequality operator.
- Parameters
-
[in] | lhs | Left hand argument |
[in] | rhs | Right hand argument |
- Returns
- The result of the operator.
Definition at line 148 of file int64x64.h.
◆ operator*()
Multiplication operator.
- Parameters
-
[in] | lhs | Left hand argument |
[in] | rhs | Right hand argument |
- Returns
- The result of the operator.
Definition at line 118 of file int64x64.h.
◆ operator+()
Addition operator.
- Parameters
-
[in] | lhs | Left hand argument |
[in] | rhs | Right hand argument |
- Returns
- The result of the operator.
Definition at line 88 of file int64x64.h.
◆ operator-()
Subtraction operator.
- Parameters
-
[in] | lhs | Left hand argument |
[in] | rhs | Right hand argument |
- Returns
- The result of the operator.
Definition at line 103 of file int64x64.h.
◆ operator/()
Division operator.
- Parameters
-
[in] | lhs | Left hand argument |
[in] | rhs | Right hand argument |
- Returns
- The result of the operator.
Definition at line 133 of file int64x64.h.
◆ operator<<()
std::ostream & ns3::operator<< |
( |
std::ostream & |
os, |
|
|
const int64x64_t & |
value |
|
) |
| |
Output streamer for int64x64_t.
- Internal:
- This algorithm is exact to the precision requested, up to the full 64 decimal digits required to exactly represent a 64-bit fraction.
Proper rounding turns out to be surprisingly hard. In y.xxxx5|6
, where the |
marks follows the last output digit, rounding the 5|6
to 6|
is straightforward. However, rounding y.xxx99|6
should result in y.xx100|
. Notice the effect of rounding percolates to higher digits. We accumulate the output digits in a string, then carry out the rounding in the string directly.
Values are printed with the following format flags (independent of the stream flags):
The stream width
is ignored. If floatfield
is set, precision
decimal places are printed. If floatfield
is not set, all digits of the fractional part are printed, up to the representation limit of 20 digits; trailing zeros are omitted.
- Parameters
-
[in,out] | os | The output stream. |
[in] | value | The numerical value to print. |
- Returns
- The stream.
Definition at line 68 of file int64x64.cc.
References ns3::int64x64_t::GetHigh(), ns3::int64x64_t::GetLow(), HEXHILOW, NS_ASSERT_MSG, and NS_LOG_LOGIC.
◆ operator<=()
Less or equal operator.
- Parameters
-
[in] | lhs | Left hand argument |
[in] | rhs | Right hand argument |
- Returns
- The result of the operator.
Definition at line 160 of file int64x64.h.
◆ operator>=()
Greater or equal operator.
- Parameters
-
[in] | lhs | Left hand argument |
[in] | rhs | Right hand argument |
- Returns
- The result of the operator.
Definition at line 174 of file int64x64.h.
◆ operator>>()
std::istream & ns3::operator>> |
( |
std::istream & |
is, |
|
|
int64x64_t & |
value |
|
) |
| |
◆ output_sign() [1/2]
Compute the sign of the result of multiplying or dividing Q64.64 fixed precision operands.
- Parameters
-
[in] | sa | The signed value of the first operand. |
[in] | sb | The signed value of the second operand. |
[out] | ua | The unsigned magnitude of the first operand. |
[out] | ub | The unsigned magnitude of the second operand. |
- Returns
- True if the result will be negative.
Definition at line 61 of file int64x64-cairo.cc.
References _cairo_int128_negative, _cairo_int128_to_uint128, and _cairo_uint128_negate().
◆ output_sign() [2/2]
static bool ns3::output_sign |
( |
const int128_t |
sa, |
|
|
const int128_t |
sb, |
|
|
uint128_t & |
ua, |
|
|
uint128_t & |
ub |
|
) |
| |
|
inlinestatic |
Compute the sign of the result of multiplying or dividing Q64.64 fixed precision operands.
- Parameters
-
[in] | sa | The signed value of the first operand. |
[in] | sb | The signed value of the second operand. |
[out] | ua | The unsigned magnitude of the first operand. |
[out] | ub | The unsigned magnitude of the second operand. |
- Returns
true
if the result will be negative.
Definition at line 51 of file int64x64-128.cc.
Referenced by ns3::int64x64_t::Div(), and ns3::int64x64_t::Mul().
◆ ReadHiDigits()
static uint64_t ns3::ReadHiDigits |
( |
std::string |
str | ) |
|
|
static |
Read the integer portion of a number from a string containing just the integral digits (no decimal point or fractional part).
- Parameters
-
[in] | str | The string representation of the integral part of a number, with no fractional part or decimal point. |
- Returns
- The integer.
Definition at line 172 of file int64x64.cc.
Referenced by ns3::operator>>().
◆ ReadLoDigits()
static uint64_t ns3::ReadLoDigits |
( |
std::string |
str | ) |
|
|
static |
Read the fractional part of a number from a string containing just the decimal digits of the fractional part (no integral part or decimal point).
- Parameters
-
[in] | str | The string representation of the fractional part of a number, without integral part or decimal point. |
- Returns
- The decimal portion of the input number.
Definition at line 196 of file int64x64.cc.
References ns3::int64x64_t::GetLow(), and NS_ASSERT_MSG.
Referenced by ns3::operator>>().