Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
3f7a0911
Commit
3f7a0911
authored
6 years ago
by
Virgile Prevosto
Browse files
Options
Downloads
Patches
Plain Diff
[lib] ensures Integer.pp_{bin,hex} output at least a single (0) bit.
parent
0f67b121
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libraries/stdlib/integer.ml
+4
-2
4 additions, 2 deletions
src/libraries/stdlib/integer.ml
src/libraries/stdlib/integer.mli
+6
-4
6 additions, 4 deletions
src/libraries/stdlib/integer.mli
with
10 additions
and
6 deletions
src/libraries/stdlib/integer.ml
+
4
−
2
View file @
3f7a0911
...
...
@@ -165,7 +165,8 @@ let popcount = Z.popcount
d
.
pp
fmt
r
;
end
let
pp_bin
?
(
nbits
=
0
)
?
(
sep
=
""
)
fmt
v
=
let
pp_bin
?
(
nbits
=
1
)
?
(
sep
=
""
)
fmt
v
=
let
nbits
=
if
nbits
<=
0
then
1
else
nbits
in
if
le
zero
v
then
(
Format
.
pp_print_string
fmt
"0b"
;
pp_digits
{
nbits
;
sep
;
bsize
=
4
;
...
...
@@ -175,7 +176,8 @@ let popcount = Z.popcount
pp_digits
{
nbits
;
sep
;
bsize
=
4
;
bmask
=
bmask_bin
;
pp
=
pp_bin_neg
}
fmt
0
(
Z
.
lognot
v
)
)
let
pp_hex
?
(
nbits
=
0
)
?
(
sep
=
""
)
fmt
v
=
let
pp_hex
?
(
nbits
=
1
)
?
(
sep
=
""
)
fmt
v
=
let
nbits
=
if
nbits
<=
0
then
1
else
nbits
in
if
le
zero
v
then
(
Format
.
pp_print_string
fmt
"0x"
;
pp_digits
{
nbits
;
sep
;
bsize
=
16
;
...
...
This diff is collapsed.
Click to expand it.
src/libraries/stdlib/integer.mli
+
6
−
4
View file @
3f7a0911
...
...
@@ -151,15 +151,17 @@ val popcount: t -> int
val
pretty
:
?
hexa
:
bool
->
t
Pretty_utils
.
formatter
val
pp_bin
:
?
nbits
:
int
->
?
sep
:
string
->
t
Pretty_utils
.
formatter
(** Print binary format. Digits are output by blocs of 4 bits
separated by [~sep] with at least [~nbits] total bits.
(** Print binary format. Digits are output by blocs of 4 bits
separated by [~sep] with at least [~nbits] total bits. If [nbits] is
non positive, it will be ignored.
Positive values are pref
f
ixed with ["0b"] and negative values
Positive values are prefixed with ["0b"] and negative values
are printed as their 2-complement ([lnot]) with prefix ["1b"]. *)
val
pp_hex
:
?
nbits
:
int
->
?
sep
:
string
->
t
Pretty_utils
.
formatter
(** Print hexadecimal format. Digits are output by blocs of 16 bits
(4 hex digits) separated by [~sep] with at least [~nbits] total bits.
(4 hex digits) separated by [~sep] with at least [~nbits] total bits.
If [nbits] is non positive, it will be ignored.
Positive values are preffixed with ["0x"] and negative values
are printed as their 2-complement ([lnot]) with prefix ["1x"]. *)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment