Bug 241743
Summary: | Introducing RawHex, a counterpart to RawPointer. | ||
---|---|---|---|
Product: | WebKit | Reporter: | Mark Lam <mark.lam> |
Component: | JavaScriptCore | Assignee: | 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
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 | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Mark Lam
Pull request: https://github.com/WebKit/WebKit/pull/1613
EWS
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
<rdar://problem/95471948>