Skip to content
Snippets Groups Projects
Commit 3f7a0911 authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[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
......@@ -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 ;
......
......@@ -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 preffixed 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"]. *)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment