[webkit-reviews] review granted: [Bug 129228] Compile attribute value matching : [Attachment 224995] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Feb 24 15:31:41 PST 2014


Geoffrey Garen <ggaren at apple.com> has granted Benjamin Poulain
<benjamin at webkit.org>'s request for review:
Bug 129228: Compile attribute value matching
https://bugs.webkit.org/show_bug.cgi?id=129228

Attachment 224995: Patch
https://bugs.webkit.org/attachment.cgi?id=224995&action=review

------- Additional Comments from Geoffrey Garen <ggaren at apple.com>
View in context: https://bugs.webkit.org/attachment.cgi?id=224995&action=review


r=me

> Source/WebCore/cssjit/FunctionCall.h:85
> +	   // x86 can swap without side effect. On other platforms, we need to
be careful with the registers we use.

I think you mean "swap without a temporary register".

On other platforms, we need to allocate a register, and avoid conflicts with
other allocated registers.

> Source/WebCore/cssjit/FunctionCall.h:99
> +	       JSC::MacroAssembler::RegisterID freeRegister;
> +	       for (unsigned i = 0; i <
m_registerAllocator.allocatedRegisters().size(); ++i) {

It looks funny, at first glance, to assign from something called "allocated
registers" into something called "freeRegister". how about renaming
"freeRegister" to "pushedRegister"?

> Source/WebCore/cssjit/SelectorCompiler.cpp:401
> +static inline bool attributeValueTestingRequiresExtraRegister(const
AttributeMatchingInfo& attributeInfo)

Should we call this "attributeValueTestingRequiresCaseFoldingRegister"?

> Source/WebCore/cssjit/SelectorCompiler.cpp:1172
> +    // We make the assumption that name matching fails in most case and we
keep value matching outside

"cases"

> Source/WebCore/cssjit/SelectorCompiler.cpp:1189
> +    if (attributeSelector.m_match == CSSSelector::Exact)

Can we make this an ASSERT?


More information about the webkit-reviews mailing list