Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
fmt
Commits
e5422db4
Commit
e5422db4
authored
Jun 12, 2019
by
Victor Zverovich
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix handling of uintptr_t
parent
9d7b64a2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
28 deletions
+11
-28
include/fmt/format-inl.h
include/fmt/format-inl.h
+1
-1
include/fmt/format.h
include/fmt/format.h
+9
-26
test/format-impl-test.cc
test/format-impl-test.cc
+1
-1
No files found.
include/fmt/format-inl.h
View file @
e5422db4
...
...
@@ -236,7 +236,7 @@ FMT_FUNC void system_error::init(int err_code, string_view format_str,
namespace
internal
{
template
<
>
FMT_FUNC
int
count_digits
<
4
>
(
internal
::
uintptr
_t
n
)
{
template
<
>
FMT_FUNC
int
count_digits
<
4
>
(
internal
::
uintptr
n
)
{
// Assume little endian; pointer formatting is implementation-defined anyway.
int
i
=
static_cast
<
int
>
(
sizeof
(
void
*
))
-
1
;
while
(
i
>
0
&&
n
.
value
[
i
]
==
0
)
--
i
;
...
...
include/fmt/format.h
View file @
e5422db4
...
...
@@ -243,13 +243,14 @@ namespace internal {
#endif
// A fallback implementation of uintptr_t for systems that lack it.
namespace
uintptr
{
struct
uintptr_t
{
struct
uintptr
{
unsigned
char
value
[
sizeof
(
void
*
)];
};
}
// namespace uintptr
using
uintptr
::
uintptr_t
;
typedef
std
::
numeric_limits
<
uintptr_t
>
numutil
;
#ifdef UINTPTR_MAX
using
uintptr_t
=
::
uintptr_t
;
#else
using
uintptr_t
=
uintptr
;
#endif
template
<
typename
T
>
inline
bool
use_grisu
()
{
return
FMT_USE_GRISU
&&
std
::
numeric_limits
<
double
>::
is_iec559
&&
...
...
@@ -303,25 +304,7 @@ typename Allocator::value_type* allocate(Allocator& alloc, std::size_t n) {
#endif
}
}
// namespace internal
FMT_END_NAMESPACE
namespace
std
{
using
namespace
fmt
::
v5
::
internal
::
uintptr
;
// Standard permits specialization of std::numeric_limits. This specialization
// is used to detect presence of uintptr_t.
template
<
>
class
numeric_limits
<
fmt
::
internal
::
uintptr_t
>
:
public
std
::
numeric_limits
<
int
>
{
public:
typedef
uintptr_t
uintptr_type
;
static
uintptr_type
to_uint
(
const
void
*
p
)
{
return
fmt
::
internal
::
bit_cast
<
uintptr_type
>
(
p
);
}
};
}
// namespace std
FMT_BEGIN_NAMESPACE
template
<
typename
Range
>
class
basic_writer
;
template
<
typename
OutputIt
,
typename
T
=
typename
OutputIt
::
value_type
>
...
...
@@ -751,7 +734,7 @@ template <unsigned BITS, typename UInt> inline int count_digits(UInt n) {
return
num_digits
;
}
template
<
>
int
count_digits
<
4
>
(
internal
::
uintptr
_t
n
);
template
<
>
int
count_digits
<
4
>
(
internal
::
uintptr
n
);
template
<
typename
Char
>
inline
size_t
count_code_points
(
basic_string_view
<
Char
>
s
)
{
...
...
@@ -980,7 +963,7 @@ inline Char* format_uint(Char* buffer, UInt value, int num_digits,
}
template
<
unsigned
BASE_BITS
,
typename
Char
>
Char
*
format_uint
(
Char
*
buffer
,
internal
::
uintptr
_t
n
,
int
num_digits
,
Char
*
format_uint
(
Char
*
buffer
,
internal
::
uintptr
n
,
int
num_digits
,
bool
=
false
)
{
auto
char_digits
=
std
::
numeric_limits
<
unsigned
char
>::
digits
/
4
;
int
start
=
(
num_digits
+
char_digits
-
1
)
/
char_digits
-
1
;
...
...
@@ -1411,7 +1394,7 @@ class arg_formatter_base {
}
void
write_pointer
(
const
void
*
p
)
{
writer_
.
write_pointer
(
internal
::
numutil
::
to_uint
(
p
),
specs_
);
writer_
.
write_pointer
(
internal
::
bit_cast
<
internal
::
uintptr_t
>
(
p
),
specs_
);
}
protected:
...
...
test/format-impl-test.cc
View file @
e5422db4
...
...
@@ -257,7 +257,7 @@ TEST(UtilTest, CountDigits) {
TEST
(
UtilTest
,
WriteUIntPtr
)
{
fmt
::
memory_buffer
buf
;
fmt
::
writer
writer
(
buf
);
writer
.
write_pointer
(
fmt
::
internal
::
bit_cast
<
fmt
::
internal
::
uintptr
_t
>
(
writer
.
write_pointer
(
fmt
::
internal
::
bit_cast
<
fmt
::
internal
::
uintptr
>
(
reinterpret_cast
<
void
*>
(
0xface
)),
nullptr
);
EXPECT_EQ
(
"0xface"
,
to_string
(
buf
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment