Bug 241743

Summary: Introducing RawHex, a counterpart to RawPointer.
Product: WebKit Reporter: Mark Lam <mark.lam>
Component: JavaScriptCoreAssignee: Mark Lam <mark.lam>
Status: RESOLVED FIXED    
Severity: Normal CC: webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   

Mark Lam
Reported 2022-06-18 01:52:51 PDT
RawHex is for dumping integral values in hex just like RawPointer is for dumping pointers. And similarly, RawHex is meant to be used with PrintStream. For example: dataLog(RawHex(42)); // prints 0x2a dataLog(RawHex(0x42); // prints 0x42 dataLog(RawHex(256)); // prints 0x100 dataLog(RawHex(65536); // prints 0x10000 dataLog(RawHex(4294967295); // prints 0xffffffff dataLog(RawHex(4294967296); // prints 0x100000000 dataLog(RawHex(INT8_MIN); // prints 0x80 dataLog(RawHex(INT16_MIN); // prints 0x8000 dataLog(RawHex(INT32_MIN); // prints 0x80000000 dataLog(RawHex(-1); // prints 0xffffffff dataLog(RawHex(INT64_MIN); // prints 0x8000000000000000 dataLog(RawHex(INT64_MAX); // prints 0x7fffffffffffffff dataLog(RawHex(UINT64_MAX); // prints 0xffffffffffffffff
Attachments
Mark Lam
Comment 1 2022-06-18 02:04:24 PDT
EWS
Comment 2 2022-06-18 21:08:24 PDT
Committed r295660 (251665@main): <https://commits.webkit.org/251665@main> Reviewed commits have been landed. Closing PR #1613 and removing active labels.
Radar WebKit Bug Importer
Comment 3 2022-06-18 21:09:13 PDT
Note You need to log in before you can comment on or make changes to this bug.