[webkit-reviews] review denied: [Bug 214142] [WTF] Fix PackedAlignedPtr for X86_64 canonical addresses : [Attachment 404218] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jul 14 06:29:41 PDT 2020


Mark Lam <mark.lam at apple.com> has denied Jim Mason <jmason at ibinx.com>'s request
for review:
Bug 214142: [WTF] Fix PackedAlignedPtr for X86_64 canonical addresses
https://bugs.webkit.org/show_bug.cgi?id=214142

Attachment 404218: Patch

https://bugs.webkit.org/attachment.cgi?id=404218&action=review




--- Comment #32 from Mark Lam <mark.lam at apple.com> ---
Comment on attachment 404218
  --> https://bugs.webkit.org/attachment.cgi?id=404218
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=404218&action=review

r- because of the missing ChangeLog.

> Tools/TestWebKitAPI/Tests/WTF/Packed.cpp:69
> +#if CPU(X86_64) && !(OS(DARWIN) || OS(LINUX) || OS(WINDOWS))

nit: while you’re adding the ChangeLog, can you also flip these 2 cases so that
we can test for CPU(X86_64) && (OS(DARWIN) || OS(LINUX) || OS(WINDOWS))
instead?  It’s better to test for a positive condition than a negative one.

> Tools/TestWebKitAPI/Tests/WTF/Packed.cpp:73
> +	       // Other OSes will never allocate user space addresses with

Since we’re no testing for OS(SOLARIS), can you change this comment to say
“These OSes” instead of “Other OSes”?


More information about the webkit-reviews mailing list